From fc082daed9917a8a49b5667c0c4a730f23bbe99c Mon Sep 17 00:00:00 2001 From: David Rogers Date: Tue, 19 Nov 2024 18:12:23 -0800 Subject: [PATCH] refactor: use catalog and catalog-build to hold the data and build files (#79) (#80) --- .prettierignore | 1 + README.md | 29 +- catalog-build/.gitignore | 4 + catalog-build/README.md | 38 + .../build-annotations.py | 10 +- .../build-assemblies.py | 8 +- {files => catalog-build}/build-catalog.ts | 26 +- .../build-sequencing-data.py | 10 +- {files => catalog-build}/buildHelp.py | 0 {files => catalog-build}/entities.ts | 0 catalog-build/requirements.txt | 4 + .../source/alignments.csv | 0 .../source/annotations.csv | 0 .../source/assemblies.csv | 0 catalog-build/source/sequencing-data.csv | 3444 + .../unprocessed_files/.gitkeep | 0 {files/out => catalog}/alignments.json | 0 {files/out => catalog}/annotations.json | 0 {files/out => catalog}/assemblies.json | 0 .../sequencing-data.json | 237344 +++++++++------ files/requirements.txt | 11 - files/source/raw-sequencing-data.csv | 2536 - package.json | 3 +- .../local/index/alignmentEntityConfig.ts | 2 +- .../local/index/annotationEntityConfig.ts | 2 +- .../local/index/assemblyEntityConfig.ts | 2 +- .../index/rawSequencingDataEntityConfig.ts | 2 +- 27 files changed, 151721 insertions(+), 91755 deletions(-) create mode 100644 catalog-build/.gitignore create mode 100644 catalog-build/README.md rename files/build-annotations-data.py => catalog-build/build-annotations.py (91%) rename files/build-assemblies-data.py => catalog-build/build-assemblies.py (95%) rename {files => catalog-build}/build-catalog.ts (92%) rename files/build-raw-sequencing-files.py => catalog-build/build-sequencing-data.py (89%) rename {files => catalog-build}/buildHelp.py (100%) rename {files => catalog-build}/entities.ts (100%) create mode 100644 catalog-build/requirements.txt rename {files => catalog-build}/source/alignments.csv (100%) rename {files => catalog-build}/source/annotations.csv (100%) rename {files => catalog-build}/source/assemblies.csv (100%) create mode 100644 catalog-build/source/sequencing-data.csv rename {files => catalog-build}/unprocessed_files/.gitkeep (100%) rename {files/out => catalog}/alignments.json (100%) rename {files/out => catalog}/annotations.json (100%) rename {files/out => catalog}/assemblies.json (100%) rename files/out/raw-sequencing-data.json => catalog/sequencing-data.json (68%) delete mode 100644 files/requirements.txt delete mode 100644 files/source/raw-sequencing-data.csv diff --git a/.prettierignore b/.prettierignore index 61124e6..644bc8b 100644 --- a/.prettierignore +++ b/.prettierignore @@ -8,6 +8,7 @@ coverage # next.js .next out +catalog # production build diff --git a/README.md b/README.md index ba01c25..1d5f7ef 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ This app requires Node `20.10.0`. If you do not have Node installed, download it [n](https://www.npmjs.com/package/n/v/5.0.1) to select that version. Once you have Node installed with the correct version, clone the repository using: + ```shell git clone git@github.com:human-pangenomics/hprc-data-explorer.git ``` @@ -14,14 +15,7 @@ Then, install the required packages using: npm ci ``` -Check that the file `files/out/raw-sequencing-data.json` is present. -If it is not, build it by running: - -```shell -npm run build-hprc-db -``` - -You're now ready to go! With that file made, you can run the development server: +Run the development server ```shell npm run dev @@ -31,19 +25,6 @@ yarn dev Once the server is running, visit [localhost:3000](localhost:3000) to view the Explorer! -### Building the data source files -The raw seqencing, assemblies, and annotations data are generated through a Python script. To create a virtual environment -and install the required libraries, use the following commands from the root project directory: -```shell -python3 -m venv ./venv -source ./venv/bin/activate -pip install -r files/requirements.txt -``` -Then run the scripts with: -```shell -python3 files/build-raw-sequencing-files.py -python3 files/build-assemblies-data.py -python3 files/build-annotations-data.py -``` -The environment can be deactivated by running `deactivate`, and re-activated by running `source ./venv/bin/activate` -again. +## Building the Catalog Files + +To rebuild the catalog files see [catalog-build/README.md](catalog-build/README.md) diff --git a/catalog-build/.gitignore b/catalog-build/.gitignore new file mode 100644 index 0000000..ad5b304 --- /dev/null +++ b/catalog-build/.gitignore @@ -0,0 +1,4 @@ + +# Catalog input files +unprocessed_files/* +!unprocessed_files/.gitkeep diff --git a/catalog-build/README.md b/catalog-build/README.md new file mode 100644 index 0000000..7730308 --- /dev/null +++ b/catalog-build/README.md @@ -0,0 +1,38 @@ + + +## Building the catalog-build/source Files + +The raw sequencing, assemblies, and annotations source files are generated through Python scripts. + +To create a virtual environment and install the required libraries, use the following commands from the root project directory: + +```shell +python3 -m venv ./venv +source ./venv/bin/activate +pip install -r catalog-build/requirements.txt +``` + +Then run the scripts from this directory with: +```shell +python3 build-sequencing-data.py +python3 build-assemblies.py +python3 build-annotations.py +``` + + +This can also be accomplshed by running +```shell +npm run build-catalog-source +``` + +The environment can be deactivated by running `deactivate`, and re-activated by running `source ./venv/bin/activate` +again. + +## Building the Catalog Files + +Once the source files are generated, you can build the /catalog files with: + +```shell +npm run build-catalog +``` + diff --git a/files/build-annotations-data.py b/catalog-build/build-annotations.py similarity index 91% rename from files/build-annotations-data.py rename to catalog-build/build-annotations.py index ba4555c..0845742 100644 --- a/files/build-annotations-data.py +++ b/catalog-build/build-annotations.py @@ -1,3 +1,4 @@ +import os import pandas as pd import numpy as np from buildHelp import downloadFile @@ -13,8 +14,13 @@ "TRF": "https://raw.githubusercontent.com/human-pangenomics/HPP_Year1_Assemblies/main/annotation_index/Year1_assemblies_v2_genbank_TRF.index", } -DOWNLOADS_FOLDER_PATH = "./files/unprocessed_files" -OUTPUT_FILE_PATH = "./files/source/annotations.csv" +# Base directory of the script +BASE_DIR = os.path.dirname(os.path.abspath(__file__)) + +# Define paths relative to the script's directory +DOWNLOADS_FOLDER_PATH = os.path.join(BASE_DIR, "unprocessed_files") +OUTPUT_FILE_PATH = os.path.join(BASE_DIR, "source/annotations.csv") + CHM13 = "chm13" HG38 = "hg38" diff --git a/files/build-assemblies-data.py b/catalog-build/build-assemblies.py similarity index 95% rename from files/build-assemblies-data.py rename to catalog-build/build-assemblies.py index 4e6d790..b6d7dea 100644 --- a/files/build-assemblies-data.py +++ b/catalog-build/build-assemblies.py @@ -1,3 +1,4 @@ +import os import pandas as pd import numpy as np from buildHelp import downloadFile @@ -7,8 +8,11 @@ BIOSAMPLE_TABLE_URL = "https://raw.githubusercontent.com/human-pangenomics/HPRC_metadata/main/data/production/hprc-production-biosample-table.tsv" EXCLUDED_SAMPLE_IDS = ["CHM13_v1.1", "GRCh38_no_alt_analysis_set"] -DOWNLOADS_FOLDER_PATH = "./files/unprocessed_files" -OUTPUT_FILE_PATH = "./files/source/assemblies.csv" + +# Determine the base directory of the script +BASE_DIR = os.path.dirname(os.path.abspath(__file__)) +DOWNLOADS_FOLDER_PATH = os.path.join(BASE_DIR, "unprocessed_files") +OUTPUT_FILE_PATH = os.path.join(BASE_DIR, "source/assemblies.csv") HAPLOTYPES = ["maternal", "paternal"] MATERNAL_HAPLOTYPE_ID = 0 diff --git a/files/build-catalog.ts b/catalog-build/build-catalog.ts similarity index 92% rename from files/build-catalog.ts rename to catalog-build/build-catalog.ts index 4c2bcc3..9be37da 100644 --- a/files/build-catalog.ts +++ b/catalog-build/build-catalog.ts @@ -19,30 +19,34 @@ import { SourceRawSequencingData, } from "./entities"; -const SOURCE_PATH_RAW_SEQUENCING_DATA = "files/source/raw-sequencing-data.csv"; -const SOURCE_PATH_ASSEMBLIES = "files/source/assemblies.csv"; -const SOURCE_PATH_ANNOTATIONS = "files/source/annotations.csv"; -const SOURCE_PATH_ALIGNMENTS = "files/source/alignments.csv"; +const CATALOG_DIR = "catalog"; + +const SOURCE_PATH_RAW_SEQUENCING_DATA = + "catalog-build/source/sequencing-data.csv"; +const SOURCE_PATH_ASSEMBLIES = "catalog-build/source/assemblies.csv"; +const SOURCE_PATH_ANNOTATIONS = "catalog-build/source/annotations.csv"; +const SOURCE_PATH_ALIGNMENTS = "catalog-build/source/alignments.csv"; buildCatalog(); async function buildCatalog(): Promise { + console.log("Building catalog..."); const rawSequencingData = await buildRawSequencingData(); const assemblies = await buildAssemblies(); const annotations = await buildAnnotations(); const alignments = await buildAlignments(); - console.log("Raw sequencing data:", rawSequencingData.length); - await saveJson("files/out/raw-sequencing-data.json", rawSequencingData); + console.log("Sequencing data:", rawSequencingData.length); + await saveJson(`${CATALOG_DIR}/sequencing-data.json`, rawSequencingData); console.log("Assemblies:", assemblies.length); - await saveJson("files/out/assemblies.json", assemblies); + await saveJson(`${CATALOG_DIR}/assemblies.json`, assemblies); console.log("Annotations:", annotations.length); - await saveJson("files/out/annotations.json", annotations); + await saveJson(`${CATALOG_DIR}/annotations.json`, annotations); console.log("Alignments:", alignments.length); - await saveJson("files/out/alignments.json", alignments); + await saveJson(`${CATALOG_DIR}/alignments.json`, alignments); console.log("Done"); } @@ -55,7 +59,7 @@ async function buildRawSequencingData(): Promise< ); const mappedRows = sourceRows.map( (row): HPRCDataExplorerRawSequencingData => ({ - Gb: parseNumberOrNA(row.Gb).toString(), + Gb: LABEL.NA, accession: parseStringOrNull(row.Accession), assembly: parseStringOrNull(row.assembly), basecaller: row.basecaller, @@ -101,7 +105,7 @@ async function buildRawSequencingData(): Promise< quartile25: parseNumberOrNA(row.quartile_25).toString(), quartile50: parseNumberOrNA(row.quartile_50).toString(), quartile75: parseNumberOrNA(row.quartile_75).toString(), - readN50: parseNumberOrNA(row.read_N50).toString(), + readN50: LABEL.NA, result: row.result, sampleId: row.sample_ID, seqKit: row.seq_kit, diff --git a/files/build-raw-sequencing-files.py b/catalog-build/build-sequencing-data.py similarity index 89% rename from files/build-raw-sequencing-files.py rename to catalog-build/build-sequencing-data.py index 483d665..805bbb0 100644 --- a/files/build-raw-sequencing-files.py +++ b/catalog-build/build-sequencing-data.py @@ -1,9 +1,15 @@ +import os import pandas as pd import numpy as np from buildHelp import downloadFile -STORAGE_FOLDER_PATH = "./files/unprocessed_files/" -OUTPUT_PATH = "./files/source/raw-sequencing-data.csv" +# Determine the base directory of the script +BASE_DIR = os.path.dirname(os.path.abspath(__file__)) + +# Define paths relative to the script's directory +STORAGE_FOLDER_PATH = os.path.join(BASE_DIR, "unprocessed_files/") +OUTPUT_PATH = os.path.join(BASE_DIR, "source/sequencing-data.csv") + HIC_URL = "https://raw.githubusercontent.com/human-pangenomics/HPRC_metadata/main/data/hprc-data-explorer-tables/HPRC_HiC.tsv" ONT_URL = "https://raw.githubusercontent.com/human-pangenomics/HPRC_metadata/main/data/hprc-data-explorer-tables/HPRC_ONT.tsv" PACBIO_HIFI_URL = "https://raw.githubusercontent.com/human-pangenomics/HPRC_metadata/main/data/hprc-data-explorer-tables/HPRC_PacBio_HiFi.tsv" diff --git a/files/buildHelp.py b/catalog-build/buildHelp.py similarity index 100% rename from files/buildHelp.py rename to catalog-build/buildHelp.py diff --git a/files/entities.ts b/catalog-build/entities.ts similarity index 100% rename from files/entities.ts rename to catalog-build/entities.ts diff --git a/catalog-build/requirements.txt b/catalog-build/requirements.txt new file mode 100644 index 0000000..f9e2ab0 --- /dev/null +++ b/catalog-build/requirements.txt @@ -0,0 +1,4 @@ +numpy==2.0.1 +pandas==2.2.2 +requests==2.32.3 + diff --git a/files/source/alignments.csv b/catalog-build/source/alignments.csv similarity index 100% rename from files/source/alignments.csv rename to catalog-build/source/alignments.csv diff --git a/files/source/annotations.csv b/catalog-build/source/annotations.csv similarity index 100% rename from files/source/annotations.csv rename to catalog-build/source/annotations.csv diff --git a/files/source/assemblies.csv b/catalog-build/source/assemblies.csv similarity index 100% rename from files/source/assemblies.csv rename to catalog-build/source/assemblies.csv diff --git a/catalog-build/source/sequencing-data.csv b/catalog-build/source/sequencing-data.csv new file mode 100644 index 0000000..e868681 --- /dev/null +++ b/catalog-build/source/sequencing-data.csv @@ -0,0 +1,3444 @@ +100kb+,1Mb+,200kb+,300kb+,400kb+,500kb+,DeepConsensus_version,MM_tag,N25,N50,N75,accession,assembly,basecaller,basecaller_model,basecaller_version,bioproject_accession,biosample_accession,ccs_algorithm,coverage,data_type,design_description,filename,filetype,generator_contact,generator_facility,instrument_model,library_ID,library_layout,library_selection,library_source,library_strategy,max,mean,min,notes,ntsm_result,ntsm_score,path,platform,polymerase_version,quartile_25,quartile_50,quartile_75,result,sample_ID,sample_id,seq_kit,seq_plate_chemistry_version,shear_method,size_selection,study,title,total_Gbp,total_bp,total_reads,whales,Sample,Accession,familyID,Subpopulation,Superpopulation,Production Year +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613929,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237490,N/A,5.87,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00423-81d-1_S15_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00423-81d-1-1_S15_L001_R1_001-1_S15_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.568935,s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-1_S15_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00423,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00423,18.21,18206561943.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613928,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237490,N/A,5.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00423-81d-1_S15_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00423-81d-1-1_S15_L002_R1_001-1_S15_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.587264,s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-1_S15_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00423,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00423,18.28,18277431102.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613888,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237490,N/A,5.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00423-81d-1_S15_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00423-81d-1-1_S15_L003_R1_001-1_S15_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.518726,s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-1_S15_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00423,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00423,18.28,18277713152.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613695,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237490,N/A,5.92,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00423-81d-1_S15_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00423-81d-1-1_S15_L004_R1_001-1_S15_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.567746,s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-1_S15_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00423,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00423,18.35,18349525689.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613837,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237490,N/A,6.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00423-81d-2_S16_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00423-81d-2-2_S16_L001_R1_001-2_S16_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.57545,s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-2_S16_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00423,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00423,19.47,19474750712.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613668,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237490,N/A,6.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00423-81d-2_S16_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00423-81d-2-2_S16_L002_R1_001-2_S16_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.567801,s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-2_S16_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00423,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00423,19.54,19540903591.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613655,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237490,N/A,6.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00423-81d-2_S16_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00423-81d-2-2_S16_L003_R1_001-2_S16_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.543371,s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-2_S16_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00423,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00423,19.56,19557125825.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613823,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237490,N/A,6.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00423-81d-2_S16_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00423-81d-2-2_S16_L004_R1_001-2_S16_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.550402,s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-2_S16_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00423,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00423,19.64,19641695401.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613813,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237491,N/A,8.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00544-24ab-1_S1_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00544-24ab-1-1_S1_L001_R1_001-1_S1_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.52936,s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-1_S1_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00544,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00544,25.48,25480247832.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613731,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237491,N/A,8.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00544-24ab-1_S1_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00544-24ab-1-1_S1_L002_R1_001-1_S1_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.537102,s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-1_S1_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00544,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00544,25.35,25348619543.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613927,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237491,N/A,8.21,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00544-24ab-1_S1_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00544-24ab-1-1_S1_L003_R1_001-1_S1_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.521718,s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-1_S1_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00544,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00544,25.44,25442045007.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613916,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237491,N/A,7.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00544-24ab-1_S1_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00544-24ab-1-1_S1_L004_R1_001-1_S1_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.482918,s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-1_S1_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00544,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00544,24.63,24631525119.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613905,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237491,N/A,8.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00544-24ab-2_S2_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00544-24ab-2-2_S2_L001_R1_001-2_S2_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.533568,s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-2_S2_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00544,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00544,26.34,26340905434.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613798,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237491,N/A,8.46,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00544-24ab-2_S2_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00544-24ab-2-2_S2_L002_R1_001-2_S2_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.521346,s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-2_S2_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00544,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00544,26.22,26223483770.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613787,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237491,N/A,8.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00544-24ab-2_S2_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00544-24ab-2-2_S2_L003_R1_001-2_S2_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.505937,s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-2_S2_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00544,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00544,26.34,26343216176.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613715,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237491,N/A,8.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00544-24ab-2_S2_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00544-24ab-2-2_S2_L004_R1_001-2_S2_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.500233,s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-2_S2_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00544,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00544,25.38,25383174741.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613699,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237492,N/A,5.01,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00609-38a-1_S9_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00609-38a-1-1_S9_L001_R1_001-1_S9_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.52783,s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-1_S9_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00609,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00609,15.54,15539181423.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613637,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237492,N/A,3.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00609-38a-1_S9_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00609-38a-1-1_S9_L002_R1_001-1_S9_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577875,s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-1_S9_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00609,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00609,11.62,11618228831.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613648,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237492,N/A,3.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00609-38a-1_S9_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00609-38a-1-1_S9_L003_R1_001-1_S9_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.550621,s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-1_S9_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00609,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00609,12.22,12222236915.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613901,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237492,N/A,4.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00609-38a-1_S9_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00609-38a-1-1_S9_L004_R1_001-1_S9_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.539782,s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-1_S9_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00609,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00609,15.07,15069587773.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613887,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237492,N/A,4.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00609-38a-2_S10_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00609-38a-2-2_S10_L001_R1_001-2_S10_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.575816,s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-2_S10_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00609,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00609,12.95,12949249772.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613621,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237492,N/A,2.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00609-38a-2_S10_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00609-38a-2-2_S10_L002_R1_001-2_S10_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.611128,s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-2_S10_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00609,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00609,8.51,8513185331.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613769,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237492,N/A,3.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00609-38a-2_S10_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00609-38a-2-2_S10_L003_R1_001-2_S10_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.621931,s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-2_S10_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00609,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00609,9.63,9629510218.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613624,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237492,N/A,4.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00609-38a-2_S10_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00609-38a-2-2_S10_L004_R1_001-2_S10_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577953,s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-2_S10_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00609,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00609,12.49,12493735034.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613615,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267378,N/A,6.82,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00642-33b-1_S9_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00642-33b-1-1_S9_L001_R1_001-1_S9_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.484121,s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-1_S9_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00642,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00642,21.13,21128977021.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613606,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267378,N/A,6.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00642-33b-1_S9_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00642-33b-1-1_S9_L002_R1_001-1_S9_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.512407,s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-1_S9_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00642,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00642,20.69,20688069145.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613873,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267378,N/A,6.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00642-33b-1_S9_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00642-33b-1-1_S9_L003_R1_001-1_S9_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.478242,s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-1_S9_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00642,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00642,20.68,20676101807.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613860,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267378,N/A,6.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00642-33b-1_S9_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00642-33b-1-1_S9_L004_R1_001-1_S9_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.463337,s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-1_S9_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00642,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00642,20.23,20231917492.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613753,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267378,N/A,5.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00642-33b-2_S10_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00642-33b-2-2_S10_L001_R1_001-2_S10_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.488832,s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-2_S10_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00642,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00642,18.55,18552268209.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613744,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267378,N/A,5.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00642-33b-2_S10_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00642-33b-2-2_S10_L002_R1_001-2_S10_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.500443,s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-2_S10_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00642,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00642,18.17,18169055248.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613694,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267378,N/A,5.87,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00642-33b-2_S10_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00642-33b-2-2_S10_L003_R1_001-2_S10_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.494904,s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-2_S10_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00642,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00642,18.2,18199440590.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613683,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267378,N/A,5.72,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00642-33b-2_S10_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00642-33b-2-2_S10_L004_R1_001-2_S10_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.489863,s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-2_S10_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00642,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00642,17.74,17742358903.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613600,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706905,N/A,10.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00706-30b-1_S7_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00706-30b-1-1_S7_L001_R1_001-1_S7_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.504847,s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-1_S7_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00706,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00706,33.57,33571212335.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613586,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706905,N/A,10.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00706-30b-1_S7_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00706-30b-1-1_S7_L002_R1_001-1_S7_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.496394,s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-1_S7_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00706,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00706,31.3,31295353877.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613671,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706905,N/A,9.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00706-30b-1_S7_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00706-30b-1-1_S7_L003_R1_001-1_S7_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.46421,s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-1_S7_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00706,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00706,30.68,30677836995.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613844,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706905,N/A,10.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00706-30b-1_S7_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00706-30b-1-1_S7_L004_R1_001-1_S7_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.479003,s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-1_S7_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00706,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00706,33.66,33657736867.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613841,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706905,N/A,10.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00706-30b-2_S8_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00706-30b-2-2_S8_L001_R1_001-2_S8_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.464912,s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-2_S8_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00706,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00706,33.49,33494020868.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613840,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706905,N/A,10.49,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00706-30b-2_S8_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00706-30b-2-2_S8_L002_R1_001-2_S8_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.441177,s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-2_S8_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00706,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00706,32.51,32506555844.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613839,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706905,N/A,10.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00706-30b-2_S8_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00706-30b-2-2_S8_L003_R1_001-2_S8_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.49911,s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-2_S8_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00706,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00706,31.84,31843782777.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613838,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706905,N/A,10.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00706-30b-2_S8_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00706-30b-2-2_S8_L004_R1_001-2_S8_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.463297,s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-2_S8_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00706,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00706,33.95,33950462941.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613836,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237493,N/A,5.93,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00738-27a-1_S5_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00738-27a-1-1_S5_L001_R1_001-1_S5_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.523334,s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-1_S5_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00738,18.37,18367769859.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613580,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237493,N/A,4.97,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00738-27a-1_S5_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00738-27a-1-1_S5_L002_R1_001-1_S5_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.504746,s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-1_S5_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00738,15.42,15415024940.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613835,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237493,N/A,4.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00738-27a-1_S5_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00738-27a-1-1_S5_L003_R1_001-1_S5_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.541099,s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-1_S5_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00738,15.33,15325726571.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613834,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237493,N/A,5.78,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00738-27a-1_S5_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00738-27a-1-1_S5_L004_R1_001-1_S5_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.540128,s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-1_S5_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00738,17.92,17922615302.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613833,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237493,N/A,6.76,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00738-27a-2_S6_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00738-27a-2-2_S6_L001_R1_001-2_S6_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.499276,s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-2_S6_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00738,20.97,20966714303.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613829,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237493,N/A,5.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00738-27a-2_S6_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00738-27a-2-2_S6_L002_R1_001-2_S6_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.513316,s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-2_S6_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00738,18.18,18176641824.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613825,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237493,N/A,5.78,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00738-27a-2_S6_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00738-27a-2-2_S6_L003_R1_001-2_S6_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.527902,s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-2_S6_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00738,17.93,17927564334.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613824,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237493,N/A,6.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00738-27a-2_S6_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00738-27a-2-2_S6_L004_R1_001-2_S6_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.551244,s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-2_S6_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00738,20.5,20501818761.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613670,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237494,N/A,14.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01099-48d-1_S9_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01099-48d-1-1_S9_L001_R1_001-1_S9_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.446262,s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-1_S9_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01099,44.35,44345156707.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613669,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237494,N/A,14.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01099-48d-1_S9_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01099-48d-1-1_S9_L002_R1_001-1_S9_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.475752,s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-1_S9_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01099,44.25,44250179223.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613667,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237494,N/A,13.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01099-48d-1_S9_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01099-48d-1-1_S9_L003_R1_001-1_S9_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.463932,s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-1_S9_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01099,42.97,42973424503.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613666,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237494,N/A,13.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01099-48d-1_S9_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01099-48d-1-1_S9_L004_R1_001-1_S9_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.457563,s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-1_S9_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01099,41.65,41647099520.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613665,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237494,N/A,11.02,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01099-48d-2_S10_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01099-48d-2-2_S10_L001_R1_001-2_S10_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.489721,s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-2_S10_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01099,34.16,34159284495.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613663,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237494,N/A,10.92,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01099-48d-2_S10_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01099-48d-2-2_S10_L002_R1_001-2_S10_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.499502,s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-2_S10_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01099,33.84,33839554348.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613662,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237494,N/A,10.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01099-48d-2_S10_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01099-48d-2-2_S10_L003_R1_001-2_S10_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.476125,s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-2_S10_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01099,31.69,31688513653.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613660,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237494,N/A,9.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01099-48d-2_S10_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01099-48d-2-2_S10_L004_R1_001-2_S10_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.507264,s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-2_S10_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01099,29.79,29788957117.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613659,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237495,N/A,5.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01255-22b-1_S1_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01255-22b-1-1_S1_L001_R1_001-1_S1_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.529301,s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-1_S1_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01255,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01255,16.68,16681351404.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613658,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237495,N/A,5.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01255-22b-1_S1_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01255-22b-1-1_S1_L002_R1_001-1_S1_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.506356,s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-1_S1_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01255,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01255,16.2,16195169606.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613657,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237495,N/A,4.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01255-22b-1_S1_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01255-22b-1-1_S1_L003_R1_001-1_S1_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.563926,s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-1_S1_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01255,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01255,15.43,15429008129.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613656,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237495,N/A,5.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01255-22b-1_S1_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01255-22b-1-1_S1_L004_R1_001-1_S1_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.514441,s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-1_S1_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01255,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01255,16.62,16617551009.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613654,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237495,N/A,7.93,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01255-22b-2_S2_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01255-22b-2-2_S2_L001_R1_001-2_S2_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.467304,s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-2_S2_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01255,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01255,24.59,24589117638.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613652,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237495,N/A,7.14,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01255-22b-2_S2_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01255-22b-2-2_S2_L002_R1_001-2_S2_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.468712,s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-2_S2_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01255,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01255,22.13,22131125314.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613651,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237495,N/A,7.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01255-22b-2_S2_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01255-22b-2-2_S2_L003_R1_001-2_S2_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.474316,s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-2_S2_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01255,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01255,22.24,22238062415.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613650,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237495,N/A,7.97,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01255-22b-2_S2_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01255-22b-2-2_S2_L004_R1_001-2_S2_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.497556,s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-2_S2_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01255,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01255,24.72,24716422119.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613832,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267379,N/A,5.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01346-35a-1_S13_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01346-35a-1-1_S13_L001_R1_001-1_S13_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.531304,s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-1_S13_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01346,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01346,16.08,16080143956.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613830,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267379,N/A,5.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01346-35a-1_S13_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01346-35a-1-1_S13_L002_R1_001-1_S13_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.519959,s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-1_S13_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01346,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01346,15.78,15782722375.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613828,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267379,N/A,5.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01346-35a-1_S13_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01346-35a-1-1_S13_L003_R1_001-1_S13_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.510559,s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-1_S13_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01346,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01346,16.1,16095195043.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613672,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267379,N/A,4.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01346-35a-1_S13_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01346-35a-1-1_S13_L004_R1_001-1_S13_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.515589,s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-1_S13_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01346,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01346,15.38,15380919737.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613827,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267379,N/A,4.69,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01346-35a-2_S14_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01346-35a-2-2_S14_L001_R1_001-2_S14_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.543407,s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-2_S14_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01346,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01346,14.54,14544675512.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613826,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267379,N/A,4.6,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01346-35a-2_S14_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01346-35a-2-2_S14_L002_R1_001-2_S14_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.523963,s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-2_S14_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01346,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01346,14.27,14268195144.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613822,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267379,N/A,4.7,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01346-35a-2_S14_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01346-35a-2-2_S14_L003_R1_001-2_S14_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.556958,s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-2_S14_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01346,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01346,14.56,14561225280.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613821,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267379,N/A,4.49,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01346-35a-2_S14_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01346-35a-2-2_S14_L004_R1_001-2_S14_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.552218,s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-2_S14_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01346,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01346,13.93,13931683671.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613819,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237497,N/A,5.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01496-43a-1_S13_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01496-43a-1-1_S13_L001_R1_001-1_S13_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.534152,s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-1_S13_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01496,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01496,16.71,16707109865.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613818,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237497,N/A,4.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01496-43a-1_S13_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01496-43a-1-1_S13_L002_R1_001-1_S13_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.551344,s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-1_S13_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01496,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01496,13.63,13629250197.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613664,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237497,N/A,4.47,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01496-43a-1_S13_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01496-43a-1-1_S13_L003_R1_001-1_S13_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.569148,s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-1_S13_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01496,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01496,13.85,13851906875.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613817,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237497,N/A,5.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01496-43a-1_S13_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01496-43a-1-1_S13_L004_R1_001-1_S13_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.546852,s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-1_S13_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01496,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01496,16.45,16453739298.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613816,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237497,N/A,4.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01496-43a-2_S14_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01496-43a-2-2_S14_L001_R1_001-2_S14_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.554269,s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-2_S14_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01496,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01496,14.37,14366749798.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613661,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237497,N/A,3.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01496-43a-2_S14_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01496-43a-2-2_S14_L002_R1_001-2_S14_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.539892,s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-2_S14_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01496,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01496,11.79,11789935190.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613815,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237497,N/A,3.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01496-43a-2_S14_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01496-43a-2-2_S14_L003_R1_001-2_S14_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.573823,s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-2_S14_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01496,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01496,11.78,11778606793.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613814,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237497,N/A,4.52,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01496-43a-2_S14_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01496-43a-2-2_S14_L004_R1_001-2_S14_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.557804,s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-2_S14_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01496,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01496,14.0,14002944412.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613812,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267393,N/A,11.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01884-49d-1_S5_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01884-49d-1-1_S5_L001_R1_001-1_S5_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.480757,s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-1_S5_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01884,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01884,34.62,34623182101.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613811,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267393,N/A,11.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01884-49d-1_S5_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01884-49d-1-1_S5_L002_R1_001-1_S5_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.44543,s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-1_S5_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01884,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01884,34.68,34676518613.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613810,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267393,N/A,10.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01884-49d-1_S5_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01884-49d-1-1_S5_L003_R1_001-1_S5_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.490835,s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-1_S5_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01884,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01884,33.21,33214817044.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613809,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267393,N/A,10.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01884-49d-1_S5_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01884-49d-1-1_S5_L004_R1_001-1_S5_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.455756,s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-1_S5_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01884,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01884,32.37,32369409063.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613653,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267393,N/A,12.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01884-49d-2_S6_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01884-49d-2-2_S6_L001_R1_001-2_S6_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.452907,s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-2_S6_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01884,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01884,37.52,37516948189.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613808,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267393,N/A,12.06,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01884-49d-2_S6_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01884-49d-2-2_S6_L002_R1_001-2_S6_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.490871,s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-2_S6_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01884,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01884,37.39,37393333326.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613807,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267393,N/A,11.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01884-49d-2_S6_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01884-49d-2-2_S6_L003_R1_001-2_S6_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.466052,s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-2_S6_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01884,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01884,35.88,35880705852.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613734,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267393,N/A,11.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01884-49d-2_S6_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01884-49d-2-2_S6_L004_R1_001-2_S6_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.446011,s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-2_S6_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01884,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01884,34.64,34636292642.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613733,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237499,N/A,8.21,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01943-51f-1_S15_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01943-51f-1-1_S15_L001_R1_001-1_S15_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.548567,s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-1_S15_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01943,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01943,25.45,25449074066.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613732,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237499,N/A,8.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01943-51f-1_S15_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01943-51f-1-1_S15_L002_R1_001-1_S15_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.523962,s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-1_S15_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01943,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01943,25.36,25359743201.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613730,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237499,N/A,8.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01943-51f-1_S15_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01943-51f-1-1_S15_L003_R1_001-1_S15_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.539035,s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-1_S15_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01943,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01943,25.36,25356677236.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613729,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237499,N/A,7.77,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01943-51f-1_S15_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01943-51f-1-1_S15_L004_R1_001-1_S15_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.535382,s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-1_S15_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01943,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01943,24.09,24094137141.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613724,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237499,N/A,7.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01943-51f-2_S16_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01943-51f-2-2_S16_L001_R1_001-2_S16_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.495083,s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-2_S16_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01943,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01943,23.66,23659301954.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613723,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237499,N/A,7.58,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01943-51f-2_S16_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01943-51f-2-2_S16_L002_R1_001-2_S16_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.553269,s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-2_S16_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01943,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01943,23.49,23491487596.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613722,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237499,N/A,7.6,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01943-51f-2_S16_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01943-51f-2-2_S16_L003_R1_001-2_S16_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.550134,s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-2_S16_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01943,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01943,23.56,23559419984.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613728,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237499,N/A,7.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01943-51f-2_S16_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01943-51f-2-2_S16_L004_R1_001-2_S16_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.509613,s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-2_S16_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01943,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01943,22.43,22430718758.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613727,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237500,N/A,13.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01981-51d-1_S1_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01981-51d-1-1_S1_L001_R1_001-1_S1_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.474543,s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-1_S1_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01981,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01981,41.65,41653218805.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613820,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237500,N/A,13.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01981-51d-1_S1_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01981-51d-1-1_S1_L002_R1_001-1_S1_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.480367,s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-1_S1_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01981,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01981,41.48,41483446061.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613726,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237500,N/A,12.97,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01981-51d-1_S1_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01981-51d-1-1_S1_L003_R1_001-1_S1_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.486159,s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-1_S1_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01981,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01981,40.2,40201694104.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613725,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237500,N/A,12.58,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01981-51d-1_S1_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01981-51d-1-1_S1_L004_R1_001-1_S1_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.49117,s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-1_S1_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01981,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01981,39.0,38996126517.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613926,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237500,N/A,13.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01981-51d-2_S2_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01981-51d-2-2_S2_L001_R1_001-2_S2_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.51542,s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-2_S2_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01981,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01981,41.04,41035537380.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613925,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237500,N/A,13.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01981-51d-2_S2_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01981-51d-2-2_S2_L002_R1_001-2_S2_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.462307,s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-2_S2_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01981,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01981,41.02,41017123458.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613924,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237500,N/A,12.72,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01981-51d-2_S2_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01981-51d-2-2_S2_L003_R1_001-2_S2_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.485472,s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-2_S2_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01981,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01981,39.42,39422310710.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613923,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237500,N/A,12.33,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01981-51d-2_S2_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01981-51d-2-2_S2_L004_R1_001-2_S2_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.478379,s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-2_S2_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01981,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01981,38.23,38230911347.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613922,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237501,N/A,4.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01993-32a-1_S7_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01993-32a-1-1_S7_L001_R1_001-1_S7_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.533211,s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-1_S7_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01993,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01993,15.04,15039409706.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613921,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237501,N/A,4.76,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01993-32a-1_S7_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01993-32a-1-1_S7_L002_R1_001-1_S7_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.53817,s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-1_S7_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01993,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01993,14.75,14748632305.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613920,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237501,N/A,4.84,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01993-32a-1_S7_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01993-32a-1-1_S7_L003_R1_001-1_S7_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.530802,s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-1_S7_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01993,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01993,15.02,15016327874.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613919,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237501,N/A,4.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01993-32a-1_S7_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01993-32a-1-1_S7_L004_R1_001-1_S7_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.531523,s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-1_S7_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01993,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01993,14.41,14405613107.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613918,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237501,N/A,5.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01993-32a-2_S8_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01993-32a-2-2_S8_L001_R1_001-2_S8_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.501297,s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-2_S8_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01993,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01993,18.45,18451286661.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613917,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237501,N/A,5.84,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01993-32a-2_S8_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01993-32a-2-2_S8_L002_R1_001-2_S8_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.494803,s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-2_S8_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01993,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01993,18.11,18114911480.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613915,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237501,N/A,5.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01993-32a-2_S8_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01993-32a-2-2_S8_L003_R1_001-2_S8_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.503744,s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-2_S8_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01993,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01993,18.49,18488268913.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613914,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237501,N/A,5.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01993-32a-2_S8_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01993-32a-2-2_S8_L004_R1_001-2_S8_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.466547,s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-2_S8_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01993,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01993,17.69,17691191989.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613913,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237502,N/A,6.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02004-41a-1_S19_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02004-41a-1-1_S19_L001_R1_001-1_S19_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.559967,s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-1_S19_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02004,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02004,19.74,19743627057.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613912,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237502,N/A,4.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02004-41a-1_S19_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02004-41a-1-1_S19_L002_R1_001-1_S19_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.537074,s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-1_S19_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02004,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02004,15.19,15193807061.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613911,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237502,N/A,5.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02004-41a-1_S19_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02004-41a-1-1_S19_L003_R1_001-1_S19_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.588349,s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-1_S19_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02004,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02004,15.88,15882534487.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613910,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237502,N/A,6.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02004-41a-1_S19_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02004-41a-1-1_S19_L004_R1_001-1_S19_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.565979,s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-1_S19_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02004,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02004,19.31,19309597381.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613909,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237502,N/A,6.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02004-41a-2_S20_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02004-41a-2-2_S20_L001_R1_001-2_S20_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.549893,s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-2_S20_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02004,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02004,20.56,20562673901.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613908,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237502,N/A,5.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02004-41a-2_S20_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02004-41a-2-2_S20_L002_R1_001-2_S20_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.563956,s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-2_S20_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02004,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02004,16.17,16170996529.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613907,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237502,N/A,5.32,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02004-41a-2_S20_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02004-41a-2-2_S20_L003_R1_001-2_S20_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.560374,s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-2_S20_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02004,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02004,16.49,16488076013.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613906,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237502,N/A,6.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02004-41a-2_S20_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02004-41a-2-2_S20_L004_R1_001-2_S20_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.568568,s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-2_S20_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02004,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02004,19.94,19942114080.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613904,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267380,N/A,9.02,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02071-10a-1_S9_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02071-10a-1-1_S9_L001_R1_001-1_S9_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.508271,s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-1_S9_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02071,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02071,27.98,27976854046.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613903,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267380,N/A,8.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02071-10a-1_S9_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02071-10a-1-1_S9_L002_R1_001-1_S9_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.524602,s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-1_S9_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02071,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02071,27.56,27559239936.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613806,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267380,N/A,8.7,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02071-10a-1_S9_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02071-10a-1-1_S9_L003_R1_001-1_S9_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.511619,s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-1_S9_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02071,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02071,26.98,26981985480.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613805,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267380,N/A,8.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02071-10a-1_S9_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02071-10a-1-1_S9_L004_R1_001-1_S9_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.522843,s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-1_S9_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02071,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02071,26.84,26835668937.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613804,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267380,N/A,10.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02071-10a-2_S10_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02071-10a-2-2_S10_L001_R1_001-2_S10_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.487174,s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-2_S10_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02071,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02071,32.69,32687331195.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613803,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267380,N/A,10.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02071-10a-2_S10_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02071-10a-2-2_S10_L002_R1_001-2_S10_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.482137,s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-2_S10_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02071,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02071,32.17,32173438473.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613802,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267380,N/A,10.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02071-10a-2_S10_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02071-10a-2-2_S10_L003_R1_001-2_S10_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.510296,s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-2_S10_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02071,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02071,31.55,31547013386.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613801,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267380,N/A,10.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02071-10a-2_S10_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02071-10a-2-2_S10_L004_R1_001-2_S10_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.504286,s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-2_S10_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02071,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02071,31.39,31388041716.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613800,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267381,N/A,1.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02074-08c-1_S15_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02074-08c-1-1_S15_L001_R1_001-1_S15_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.683547,s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-1_S15_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02074,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02074,5.91,5908243760.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613799,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267381,N/A,1.87,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02074-08c-1_S15_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02074-08c-1-1_S15_L002_R1_001-1_S15_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.686717,s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-1_S15_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02074,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02074,5.8,5802746886.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613797,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267381,N/A,1.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02074-08c-1_S15_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02074-08c-1-1_S15_L003_R1_001-1_S15_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.699699,s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-1_S15_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02074,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02074,5.62,5616633788.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613796,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267381,N/A,1.78,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02074-08c-1_S15_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02074-08c-1-1_S15_L004_R1_001-1_S15_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.698373,s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-1_S15_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02074,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02074,5.53,5529386514.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613795,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267381,N/A,2.16,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02074-08c-2_S16_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02074-08c-2-2_S16_L001_R1_001-2_S16_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.655755,s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-2_S16_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02074,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02074,6.69,6685585465.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613794,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267381,N/A,2.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02074-08c-2_S16_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02074-08c-2-2_S16_L002_R1_001-2_S16_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.684823,s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-2_S16_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02074,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02074,6.56,6562148038.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613793,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267381,N/A,2.06,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02074-08c-2_S16_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02074-08c-2-2_S16_L003_R1_001-2_S16_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.654338,s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-2_S16_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02074,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02074,6.37,6373653019.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613792,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267381,N/A,2.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02074-08c-2_S16_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02074-08c-2-2_S16_L004_R1_001-2_S16_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.660558,s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-2_S16_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02074,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02074,6.3,6298946650.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613791,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267382,N/A,8.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02132-07a-1_S7_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02132-07a-1-1_S7_L001_R1_001-1_S7_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.505939,s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-1_S7_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02132,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02132,26.86,26861908818.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613790,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267382,N/A,8.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02132-07a-1_S7_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02132-07a-1-1_S7_L002_R1_001-1_S7_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.514339,s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-1_S7_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02132,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02132,26.75,26745946000.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613789,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267382,N/A,8.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02132-07a-1_S7_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02132-07a-1-1_S7_L003_R1_001-1_S7_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.538383,s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-1_S7_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02132,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02132,26.9,26900364270.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613788,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267382,N/A,8.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02132-07a-1_S7_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02132-07a-1-1_S7_L004_R1_001-1_S7_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.506325,s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-1_S7_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02132,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02132,26.57,26570538872.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613786,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267382,N/A,8.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02132-07a-2_S8_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02132-07a-2-2_S8_L001_R1_001-2_S8_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.525035,s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-2_S8_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02132,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02132,26.9,26896539353.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613785,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267382,N/A,8.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02132-07a-2_S8_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02132-07a-2-2_S8_L002_R1_001-2_S8_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.557201,s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-2_S8_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02132,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02132,26.84,26839389751.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613784,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267382,N/A,8.69,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02132-07a-2_S8_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02132-07a-2-2_S8_L003_R1_001-2_S8_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.509301,s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-2_S8_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02132,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02132,26.95,26949384022.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613783,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267382,N/A,8.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02132-07a-2_S8_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02132-07a-2-2_S8_L004_R1_001-2_S8_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.529282,s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-2_S8_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02132,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02132,26.48,26481437034.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613721,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267392,N/A,8.01,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02135-09a-1_S7_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02135-09a-1-1_S7_L001_R1_001-1_S7_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.530045,s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-1_S7_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02135,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02135,24.84,24844247576.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613720,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267392,N/A,7.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02135-09a-1_S7_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02135-09a-1-1_S7_L002_R1_001-1_S7_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.513137,s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-1_S7_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02135,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02135,24.47,24469886104.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613719,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267392,N/A,7.72,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02135-09a-1_S7_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02135-09a-1-1_S7_L003_R1_001-1_S7_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.501051,s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-1_S7_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02135,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02135,23.94,23942784576.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613718,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267392,N/A,7.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02135-09a-1_S7_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02135-09a-1-1_S7_L004_R1_001-1_S7_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.52006,s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-1_S7_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02135,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02135,23.82,23819749320.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613717,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267392,N/A,7.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02135-09a-2_S8_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02135-09a-2-2_S8_L001_R1_001-2_S8_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.528948,s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-2_S8_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02135,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02135,22.1,22099992098.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613716,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267392,N/A,7.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02135-09a-2_S8_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02135-09a-2-2_S8_L002_R1_001-2_S8_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.526848,s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-2_S8_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02135,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02135,21.82,21819724005.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613714,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267392,N/A,6.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02135-09a-2_S8_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02135-09a-2-2_S8_L003_R1_001-2_S8_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.527542,s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-2_S8_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02135,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02135,21.42,21420162997.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613713,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267392,N/A,6.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02135-09a-2_S8_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02135-09a-2-2_S8_L004_R1_001-2_S8_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.532,s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-2_S8_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02135,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02135,21.38,21380721875.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613712,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237505,N/A,8.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02280-46c-1_S13_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02280-46c-1-1_S13_L001_R1_001-1_S13_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.522887,s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-1_S13_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02280,27.01,27008156182.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613711,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237505,N/A,8.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02280-46c-1_S13_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02280-46c-1-1_S13_L002_R1_001-1_S13_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.511952,s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-1_S13_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02280,26.86,26855128295.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613710,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237505,N/A,8.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02280-46c-1_S13_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02280-46c-1-1_S13_L003_R1_001-1_S13_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.487675,s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-1_S13_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02280,26.91,26914104742.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613709,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237505,N/A,8.33,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02280-46c-1_S13_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02280-46c-1-1_S13_L004_R1_001-1_S13_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.49002,s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-1_S13_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02280,25.81,25813218097.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613708,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237505,N/A,7.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02280-46c-2_S14_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02280-46c-2-2_S14_L001_R1_001-2_S14_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.503248,s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-2_S14_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02280,23.65,23652581072.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613707,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237505,N/A,7.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02280-46c-2_S14_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02280-46c-2-2_S14_L002_R1_001-2_S14_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.496361,s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-2_S14_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02280,23.54,23538435510.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613649,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237505,N/A,7.6,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02280-46c-2_S14_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02280-46c-2-2_S14_L003_R1_001-2_S14_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.513924,s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-2_S14_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02280,23.56,23557222252.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613698,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237505,N/A,7.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02280-46c-2_S14_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02280-46c-2-2_S14_L004_R1_001-2_S14_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.524621,s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-2_S14_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02280,22.45,22452549290.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613700,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267394,N/A,11.47,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02293-54d-1_S7_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02293-54d-1-1_S7_L001_R1_001-1_S7_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.507875,s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-1_S7_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02293,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02293,35.54,35544148086.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613701,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267394,N/A,11.52,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02293-54d-1_S7_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02293-54d-1-1_S7_L002_R1_001-1_S7_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.494828,s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-1_S7_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02293,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02293,35.7,35698096103.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613702,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267394,N/A,10.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02293-54d-1_S7_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02293-54d-1-1_S7_L003_R1_001-1_S7_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.501216,s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-1_S7_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02293,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02293,33.99,33986673544.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613703,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267394,N/A,10.72,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02293-54d-1_S7_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02293-54d-1-1_S7_L004_R1_001-1_S7_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.517978,s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-1_S7_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02293,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02293,33.24,33242936617.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613704,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267394,N/A,9.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02293-54d-2_S8_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02293-54d-2-2_S8_L001_R1_001-2_S8_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.530094,s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-2_S8_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02293,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02293,30.39,30389466772.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613632,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267394,N/A,9.84,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02293-54d-2_S8_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02293-54d-2-2_S8_L002_R1_001-2_S8_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.513867,s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-2_S8_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02293,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02293,30.5,30496612405.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613633,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267394,N/A,9.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02293-54d-2_S8_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02293-54d-2-2_S8_L003_R1_001-2_S8_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.523132,s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-2_S8_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02293,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02293,28.76,28759993663.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613634,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267394,N/A,9.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02293-54d-2_S8_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02293-54d-2-2_S8_L004_R1_001-2_S8_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.534206,s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-2_S8_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02293,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02293,27.99,27985291020.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613705,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267395,N/A,4.77,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02300-42a-1_S21_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02300-42a-1-1_S21_L001_R1_001-1_S21_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.54504,s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-1_S21_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02300,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02300,14.8,14799769543.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613706,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267395,N/A,3.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02300-42a-1_S21_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02300-42a-1-1_S21_L002_R1_001-1_S21_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.586909,s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-1_S21_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02300,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02300,12.12,12119560720.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613638,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267395,N/A,3.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02300-42a-1_S21_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02300-42a-1-1_S21_L003_R1_001-1_S21_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.561484,s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-1_S21_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02300,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02300,12.27,12272889488.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613639,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267395,N/A,4.73,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02300-42a-1_S21_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02300-42a-1-1_S21_L004_R1_001-1_S21_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.581403,s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-1_S21_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02300,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02300,14.68,14677091989.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613640,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267395,N/A,6.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02300-42a-2_S22_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02300-42a-2-2_S22_L001_R1_001-2_S22_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.539397,s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-2_S22_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02300,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02300,21.38,21376618743.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613641,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267395,N/A,5.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02300-42a-2_S22_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02300-42a-2-2_S22_L002_R1_001-2_S22_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.530698,s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-2_S22_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02300,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02300,17.24,17244890394.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613642,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267395,N/A,5.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02300-42a-2_S22_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02300-42a-2-2_S22_L003_R1_001-2_S22_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.548393,s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-2_S22_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02300,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02300,17.61,17609457473.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613643,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267395,N/A,6.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02300-42a-2_S22_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02300-42a-2-2_S22_L004_R1_001-2_S22_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.521605,s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-2_S22_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02300,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02300,20.92,20918755729.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613644,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237507,N/A,9.47,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02602-11a-1_S11_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02602-11a-1-1_S11_L001_R1_001-1_S11_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.464317,s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-1_S11_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02602,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02602,29.37,29365153887.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613645,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237507,N/A,9.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02602-11a-1_S11_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02602-11a-1-1_S11_L002_R1_001-1_S11_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.515296,s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-1_S11_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02602,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02602,28.96,28958425127.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613646,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237507,N/A,9.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02602-11a-1_S11_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02602-11a-1-1_S11_L003_R1_001-1_S11_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.502609,s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-1_S11_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02602,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02602,28.46,28457708516.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613647,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237507,N/A,9.15,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02602-11a-1_S11_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02602-11a-1-1_S11_L004_R1_001-1_S11_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.49621,s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-1_S11_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02602,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02602,28.35,28354737124.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613636,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237507,N/A,12.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02602-11a-2_S12_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02602-11a-2-2_S12_L001_R1_001-2_S12_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.476914,s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-2_S12_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02602,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02602,37.74,37744699467.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613635,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237507,N/A,12.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02602-11a-2_S12_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02602-11a-2-2_S12_L002_R1_001-2_S12_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.495613,s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-2_S12_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02602,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02602,37.28,37281863189.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613631,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237507,N/A,11.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02602-11a-2_S12_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02602-11a-2-2_S12_L003_R1_001-2_S12_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.486889,s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-2_S12_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02602,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02602,36.73,36730245703.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613629,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237507,N/A,11.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02602-11a-2_S12_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02602-11a-2-2_S12_L004_R1_001-2_S12_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.475962,s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-2_S12_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02602,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02602,36.68,36677215873.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613628,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237508,N/A,6.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02615-25b-1_S3_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02615-25b-1-1_S3_L001_R1_001-1_S3_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.43481,s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-1_S3_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02615,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02615,20.9,20903231032.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613627,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237508,N/A,6.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02615-25b-1_S3_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02615-25b-1-1_S3_L002_R1_001-1_S3_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.468579,s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-1_S3_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02615,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02615,20.42,20422981930.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613626,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237508,N/A,6.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02615-25b-1_S3_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02615-25b-1-1_S3_L003_R1_001-1_S3_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.442761,s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-1_S3_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02615,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02615,20.25,20254836767.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613902,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237508,N/A,6.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02615-25b-1_S3_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02615-25b-1-1_S3_L004_R1_001-1_S3_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.430394,s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-1_S3_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02615,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02615,19.96,19961900162.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613781,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237508,N/A,5.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02615-25b-2_S4_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02615-25b-2-2_S4_L001_R1_001-2_S4_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.468902,s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-2_S4_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02615,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02615,16.03,16028993362.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613780,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237508,N/A,5.06,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02615-25b-2_S4_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02615-25b-2-2_S4_L002_R1_001-2_S4_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.490831,s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-2_S4_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02615,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02615,15.68,15683795932.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613898,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237508,N/A,5.06,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02615-25b-2_S4_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02615-25b-2-2_S4_L003_R1_001-2_S4_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.491961,s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-2_S4_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02615,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02615,15.69,15692482227.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613897,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237508,N/A,4.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02615-25b-2_S4_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02615-25b-2-2_S4_L004_R1_001-2_S4_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.485509,s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-2_S4_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02615,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02615,15.32,15315698466.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613896,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267383,N/A,6.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02647-36b-1_S19_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02647-36b-1-1_S19_L001_R1_001-1_S19_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.487939,s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-1_S19_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02647,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02647,19.7,19699514527.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613895,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267383,N/A,6.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02647-36b-1_S19_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02647-36b-1-1_S19_L002_R1_001-1_S19_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.522316,s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-1_S19_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02647,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02647,19.28,19282854093.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613894,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267383,N/A,6.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02647-36b-1_S19_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02647-36b-1-1_S19_L003_R1_001-1_S19_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.482972,s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-1_S19_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02647,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02647,19.52,19524552019.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613893,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267383,N/A,6.08,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02647-36b-1_S19_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02647-36b-1-1_S19_L004_R1_001-1_S19_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.462602,s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-1_S19_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02647,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02647,18.85,18850891579.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613892,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267383,N/A,8.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02647-36b-2_S20_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02647-36b-2-2_S20_L001_R1_001-2_S20_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.459788,s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-2_S20_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02647,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02647,25.74,25736108110.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613891,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267383,N/A,8.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02647-36b-2_S20_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02647-36b-2-2_S20_L002_R1_001-2_S20_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.443205,s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-2_S20_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02647,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02647,25.18,25179964732.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613890,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267383,N/A,8.16,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02647-36b-2_S20_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02647-36b-2-2_S20_L003_R1_001-2_S20_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.442448,s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-2_S20_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02647,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02647,25.28,25283674048.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613889,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267383,N/A,7.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02647-36b-2_S20_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02647-36b-2-2_S20_L004_R1_001-2_S20_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.456591,s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-2_S20_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02647,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02647,24.62,24619843972.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613886,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267384,N/A,4.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02683-44a-1_S15_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02683-44a-1-1_S15_L001_R1_001-1_S15_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.584515,s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-1_S15_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02683,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02683,14.72,14724594713.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613885,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267384,N/A,3.69,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02683-44a-1_S15_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02683-44a-1-1_S15_L002_R1_001-1_S15_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.591489,s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-1_S15_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02683,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02683,11.43,11432705966.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613884,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267384,N/A,3.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02683-44a-1_S15_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02683-44a-1-1_S15_L003_R1_001-1_S15_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.585145,s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-1_S15_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02683,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02683,11.78,11780052826.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613883,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267384,N/A,4.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02683-44a-1_S15_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02683-44a-1-1_S15_L004_R1_001-1_S15_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.578335,s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-1_S15_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02683,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02683,14.3,14303426953.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613630,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267384,N/A,5.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02683-44a-2_S16_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02683-44a-2-2_S16_L001_R1_001-2_S16_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.566428,s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-2_S16_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02683,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02683,16.84,16835958252.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613882,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267384,N/A,4.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02683-44a-2_S16_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02683-44a-2-2_S16_L002_R1_001-2_S16_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.580342,s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-2_S16_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02683,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02683,13.14,13143433747.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613881,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267384,N/A,4.33,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02683-44a-2_S16_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02683-44a-2-2_S16_L003_R1_001-2_S16_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.599722,s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-2_S16_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02683,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02683,13.43,13427045391.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613880,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267384,N/A,5.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02683-44a-2_S16_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02683-44a-2-2_S16_L004_R1_001-2_S16_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.576922,s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-2_S16_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02683,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02683,16.28,16275750862.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613879,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237509,N/A,3.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02698-18b-1_S19_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02698-18b-1-1_S19_L001_R1_001-1_S19_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.579203,s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-1_S19_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02698,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02698,10.23,10228693169.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613782,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237509,N/A,3.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02698-18b-1_S19_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02698-18b-1-1_S19_L002_R1_001-1_S19_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.65523,s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-1_S19_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02698,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02698,10.05,10051664745.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613900,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237509,N/A,3.15,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02698-18b-1_S19_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02698-18b-1-1_S19_L003_R1_001-1_S19_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.636875,s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-1_S19_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02698,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02698,9.75,9750032846.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613899,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237509,N/A,3.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02698-18b-1_S19_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02698-18b-1-1_S19_L004_R1_001-1_S19_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.635795,s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-1_S19_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02698,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02698,9.64,9637417088.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613779,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237509,N/A,1.99,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02698-18b-2_S20_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02698-18b-2-2_S20_L001_R1_001-2_S20_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.682254,s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-2_S20_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02698,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02698,6.18,6182153402.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613777,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237509,N/A,1.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02698-18b-2_S20_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02698-18b-2-2_S20_L002_R1_001-2_S20_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.668335,s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-2_S20_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02698,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02698,6.07,6071927153.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613776,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237509,N/A,1.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02698-18b-2_S20_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02698-18b-2-2_S20_L003_R1_001-2_S20_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.656097,s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-2_S20_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02698,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02698,5.9,5895167671.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613775,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237509,N/A,1.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02698-18b-2_S20_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02698-18b-2-2_S20_L004_R1_001-2_S20_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.662322,s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-2_S20_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02698,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02698,5.83,5825473271.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613774,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267396,N/A,7.51,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02738-40a-1_S17_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02738-40a-1-1_S17_L001_R1_001-1_S17_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.483227,s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-1_S17_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02738,23.28,23276416168.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613773,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267396,N/A,5.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02738-40a-1_S17_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02738-40a-1-1_S17_L002_R1_001-1_S17_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.505694,s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-1_S17_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02738,18.46,18461144017.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613772,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267396,N/A,6.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02738-40a-1_S17_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02738-40a-1-1_S17_L003_R1_001-1_S17_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.522761,s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-1_S17_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02738,18.72,18722292408.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613771,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267396,N/A,7.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02738-40a-1_S17_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02738-40a-1-1_S17_L004_R1_001-1_S17_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.508908,s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-1_S17_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02738,22.54,22541389657.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613768,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267396,N/A,6.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02738-40a-2_S18_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02738-40a-2-2_S18_L001_R1_001-2_S18_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.525075,s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-2_S18_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02738,19.83,19829787341.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613767,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267396,N/A,5.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02738-40a-2_S18_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02738-40a-2-2_S18_L002_R1_001-2_S18_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.504934,s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-2_S18_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02738,15.91,15908845443.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613766,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267396,N/A,5.21,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02738-40a-2_S18_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02738-40a-2-2_S18_L003_R1_001-2_S18_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.583415,s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-2_S18_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02738,16.16,16158536856.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613765,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267396,N/A,6.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02738-40a-2_S18_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02738-40a-2-2_S18_L004_R1_001-2_S18_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.535358,s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-2_S18_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02738,19.34,19344650439.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613763,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237510,N/A,13.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02809-52d-1_S3_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02809-52d-1-1_S3_L001_R1_001-1_S3_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.48962,s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-1_S3_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02809,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02809,43.02,43020035640.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613762,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237510,N/A,13.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02809-52d-1_S3_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02809-52d-1-1_S3_L002_R1_001-1_S3_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.486153,s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-1_S3_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02809,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02809,43.25,43245615112.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613761,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237510,N/A,13.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02809-52d-1_S3_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02809-52d-1-1_S3_L003_R1_001-1_S3_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.47823,s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-1_S3_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02809,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02809,42.51,42507010331.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613760,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237510,N/A,13.62,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02809-52d-1_S3_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02809-52d-1-1_S3_L004_R1_001-1_S3_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.472541,s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-1_S3_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02809,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02809,42.22,42222483426.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613759,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237510,N/A,13.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02809-52d-2_S4_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02809-52d-2-2_S4_L001_R1_001-2_S4_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.512187,s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-2_S4_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02809,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02809,42.37,42374811401.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613625,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237510,N/A,13.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02809-52d-2_S4_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02809-52d-2-2_S4_L002_R1_001-2_S4_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.463354,s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-2_S4_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02809,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02809,42.38,42380850731.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613623,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237510,N/A,13.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02809-52d-2_S4_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02809-52d-2-2_S4_L003_R1_001-2_S4_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.492153,s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-2_S4_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02809,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02809,41.54,41539194006.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613622,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237510,N/A,13.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02809-52d-2_S4_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02809-52d-2-2_S4_L004_R1_001-2_S4_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.493715,s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-2_S4_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02809,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02809,40.67,40668316356.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613877,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237512,N/A,6.41,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03669-26a-1_S3_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03669-26a-1-1_S3_L001_R1_001-1_S3_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.528137,s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-1_S3_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03669,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03669,19.87,19869906911.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613876,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237512,N/A,6.07,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03669-26a-1_S3_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03669-26a-1-1_S3_L002_R1_001-1_S3_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.561043,s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-1_S3_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03669,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03669,18.8,18802834522.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613778,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237512,N/A,5.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03669-26a-1_S3_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03669-26a-1-1_S3_L003_R1_001-1_S3_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.569307,s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-1_S3_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03669,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03669,17.71,17709235374.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613620,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237512,N/A,6.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03669-26a-1_S3_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03669-26a-1-1_S3_L004_R1_001-1_S3_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.563446,s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-1_S3_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03669,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03669,19.56,19556889119.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613619,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237512,N/A,4.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03669-26a-2_S4_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03669-26a-2-2_S4_L001_R1_001-2_S4_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.582132,s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-2_S4_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03669,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03669,13.32,13324278089.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613618,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237512,N/A,4.33,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03669-26a-2_S4_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03669-26a-2-2_S4_L002_R1_001-2_S4_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.538015,s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-2_S4_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03669,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03669,13.43,13428824069.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613617,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237512,N/A,4.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03669-26a-2_S4_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03669-26a-2-2_S4_L003_R1_001-2_S4_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.570245,s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-2_S4_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03669,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03669,12.76,12761568115.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613616,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237512,N/A,4.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03669-26a-2_S4_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03669-26a-2-2_S4_L004_R1_001-2_S4_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.559565,s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-2_S4_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03669,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03669,13.37,13365275906.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613614,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237513,N/A,4.62,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03710-17a-1_S3_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03710-17a-1-1_S3_L001_R1_001-1_S3_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.552401,s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-1_S3_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03710,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03710,14.33,14327833989.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613770,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237513,N/A,4.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03710-17a-1_S3_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03710-17a-1-1_S3_L002_R1_001-1_S3_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.536378,s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-1_S3_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03710,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03710,14.48,14475214817.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613613,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237513,N/A,4.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03710-17a-1_S3_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03710-17a-1-1_S3_L003_R1_001-1_S3_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.498094,s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-1_S3_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03710,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03710,14.73,14731125331.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613612,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237513,N/A,4.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03710-17a-1_S3_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03710-17a-1-1_S3_L004_R1_001-1_S3_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.533036,s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-1_S3_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03710,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03710,15.05,15048563124.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613611,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237513,N/A,3.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03710-17a-2_S4_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03710-17a-2-2_S4_L001_R1_001-2_S4_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.564442,s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-2_S4_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03710,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03710,9.64,9638919964.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613610,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237513,N/A,3.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03710-17a-2_S4_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03710-17a-2-2_S4_L002_R1_001-2_S4_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.558529,s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-2_S4_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03710,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03710,9.65,9646510596.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613609,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237513,N/A,3.16,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03710-17a-2_S4_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03710-17a-2-2_S4_L003_R1_001-2_S4_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.563055,s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-2_S4_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03710,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03710,9.78,9783227583.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613764,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237513,N/A,3.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03710-17a-2_S4_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03710-17a-2-2_S4_L004_R1_001-2_S4_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.569135,s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-2_S4_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03710,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03710,9.9,9899677710.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613608,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706907,N/A,8.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03804-06b-1_S5_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03804-06b-1-1_S5_L001_R1_001-1_S5_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.538126,s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-1_S5_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03804,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03804,26.82,26822031094.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613607,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706907,N/A,8.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03804-06b-1_S5_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03804-06b-1-1_S5_L002_R1_001-1_S5_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.510434,s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-1_S5_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03804,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03804,26.44,26444221197.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613605,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706907,N/A,8.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03804-06b-1_S5_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03804-06b-1-1_S5_L003_R1_001-1_S5_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.514055,s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-1_S5_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03804,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03804,25.99,25989593040.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613604,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706907,N/A,8.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03804-06b-1_S5_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03804-06b-1-1_S5_L004_R1_001-1_S5_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.538214,s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-1_S5_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03804,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03804,25.93,25926228915.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613603,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706907,N/A,6.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03804-06b-2_S6_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03804-06b-2-2_S6_L001_R1_001-2_S6_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.558338,s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-2_S6_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03804,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03804,20.6,20599997413.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613602,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706907,N/A,6.55,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03804-06b-2_S6_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03804-06b-2-2_S6_L002_R1_001-2_S6_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.563349,s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-2_S6_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03804,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03804,20.3,20298890067.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613878,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706907,N/A,6.42,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03804-06b-2_S6_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03804-06b-2-2_S6_L003_R1_001-2_S6_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.574776,s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-2_S6_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03804,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03804,19.9,19904479372.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613758,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706907,N/A,6.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03804-06b-2_S6_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03804-06b-2-2_S6_L004_R1_001-2_S6_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.540342,s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-2_S6_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03804,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03804,19.82,19815203183.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613757,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706908,N/A,10.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03816-01ab-1_S3_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03816-01ab-1-1_S3_L001_R1_001-1_S3_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.501235,s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-1_S3_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03816,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03816,31.78,31780307378.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613756,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706908,N/A,10.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03816-01ab-1_S3_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03816-01ab-1-1_S3_L002_R1_001-1_S3_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.506623,s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-1_S3_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03816,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03816,31.67,31667371682.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613875,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706908,N/A,10.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03816-01ab-1_S3_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03816-01ab-1-1_S3_L003_R1_001-1_S3_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.502938,s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-1_S3_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03816,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03816,31.82,31815414810.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613874,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706908,N/A,10.07,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03816-01ab-1_S3_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03816-01ab-1-1_S3_L004_R1_001-1_S3_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.495419,s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-1_S3_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03816,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03816,31.23,31232187295.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613872,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706908,N/A,10.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03816-01ab-2_S4_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03816-01ab-2-2_S4_L001_R1_001-2_S4_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.51494,s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-2_S4_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03816,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03816,31.4,31397362078.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613871,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706908,N/A,10.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03816-01ab-2_S4_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03816-01ab-2-2_S4_L002_R1_001-2_S4_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.511242,s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-2_S4_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03816,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03816,31.4,31399240762.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613870,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706908,N/A,10.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03816-01ab-2_S4_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03816-01ab-2-2_S4_L003_R1_001-2_S4_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.495473,s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-2_S4_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03816,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03816,31.52,31521679216.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613869,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706908,N/A,9.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03816-01ab-2_S4_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03816-01ab-2-2_S4_L004_R1_001-2_S4_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.473115,s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-2_S4_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03816,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03816,30.94,30937315032.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613868,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237514,N/A,6.02,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03831-37a-1_S15_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03831-37a-1-1_S15_L001_R1_001-1_S15_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.510115,s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-1_S15_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03831,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03831,18.67,18671577800.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613866,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237514,N/A,5.92,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03831-37a-1_S15_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03831-37a-1-1_S15_L002_R1_001-1_S15_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.498653,s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-1_S15_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03831,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03831,18.36,18363345183.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613865,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237514,N/A,6.07,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03831-37a-1_S15_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03831-37a-1-1_S15_L003_R1_001-1_S15_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.496633,s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-1_S15_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03831,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03831,18.83,18826943298.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613863,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237514,N/A,5.77,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03831-37a-1_S15_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03831-37a-1-1_S15_L004_R1_001-1_S15_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.494824,s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-1_S15_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03831,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03831,17.88,17877544503.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613862,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237514,N/A,5.69,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03831-37a-2_S16_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03831-37a-2-2_S16_L001_R1_001-2_S16_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.540423,s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-2_S16_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03831,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03831,17.65,17650486923.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613861,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237514,N/A,5.58,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03831-37a-2_S16_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03831-37a-2-2_S16_L002_R1_001-2_S16_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.500641,s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-2_S16_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03831,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03831,17.29,17289642616.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613859,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237514,N/A,5.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03831-37a-2_S16_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03831-37a-2-2_S16_L003_R1_001-2_S16_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.490855,s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-2_S16_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03831,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03831,17.46,17457179116.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613858,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237514,N/A,5.45,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03831-37a-2_S16_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03831-37a-2-2_S16_L004_R1_001-2_S16_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.510984,s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-2_S16_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03831,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03831,16.9,16895609440.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613857,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267386,N/A,6.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03927-31b-1_S5_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03927-31b-1-1_S5_L001_R1_001-1_S5_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.473743,s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-1_S5_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03927,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03927,19.93,19930937049.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613856,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267386,N/A,6.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03927-31b-1_S5_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03927-31b-1-1_S5_L002_R1_001-1_S5_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.46365,s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-1_S5_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03927,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03927,19.46,19463413043.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613855,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267386,N/A,6.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03927-31b-1_S5_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03927-31b-1-1_S5_L003_R1_001-1_S5_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.483884,s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-1_S5_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03927,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03927,19.33,19325757657.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613736,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267386,N/A,6.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03927-31b-1_S5_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03927-31b-1-1_S5_L004_R1_001-1_S5_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.484124,s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-1_S5_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03927,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03927,18.99,18992932982.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613697,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267386,N/A,6.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03927-31b-2_S6_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03927-31b-2-2_S6_L001_R1_001-2_S6_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.483243,s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-2_S6_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03927,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03927,19.96,19962262132.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613696,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267386,N/A,6.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03927-31b-2_S6_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03927-31b-2-2_S6_L002_R1_001-2_S6_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.482071,s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-2_S6_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03927,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03927,19.45,19452362183.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613755,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267386,N/A,6.21,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03927-31b-2_S6_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03927-31b-2-2_S6_L003_R1_001-2_S6_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.476121,s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-2_S6_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03927,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03927,19.27,19265354454.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613754,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267386,N/A,6.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03927-31b-2_S6_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03927-31b-2-2_S6_L004_R1_001-2_S6_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.465437,s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-2_S6_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03927,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03927,18.89,18894993843.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613752,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267387,N/A,2.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03942-03b-1_S17_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03942-03b-1-1_S17_L001_R1_001-1_S17_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.652074,s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-1_S17_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03942,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03942,7.84,7842999270.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613751,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267387,N/A,2.48,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03942-03b-1_S17_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03942-03b-1-1_S17_L002_R1_001-1_S17_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.638892,s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-1_S17_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03942,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03942,7.7,7698423314.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613750,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267387,N/A,2.41,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03942-03b-1_S17_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03942-03b-1-1_S17_L003_R1_001-1_S17_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.656856,s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-1_S17_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03942,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03942,7.48,7482753413.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613749,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267387,N/A,2.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03942-03b-1_S17_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03942-03b-1-1_S17_L004_R1_001-1_S17_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.646918,s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-1_S17_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03942,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03942,7.39,7389349118.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613867,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267387,N/A,2.72,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03942-03b-2_S18_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03942-03b-2-2_S18_L001_R1_001-2_S18_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.654647,s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-2_S18_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03942,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03942,8.43,8430523831.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613748,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267387,N/A,2.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03942-03b-2_S18_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03942-03b-2-2_S18_L002_R1_001-2_S18_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.601877,s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-2_S18_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03942,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03942,8.27,8274904375.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613747,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267387,N/A,2.6,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03942-03b-2_S18_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03942-03b-2-2_S18_L003_R1_001-2_S18_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.631587,s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-2_S18_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03942,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03942,8.05,8048733217.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613864,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267387,N/A,2.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03942-03b-2_S18_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03942-03b-2-2_S18_L004_R1_001-2_S18_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.64171,s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-2_S18_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03942,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03942,7.95,7951269056.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613746,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267388,N/A,6.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04115-13a-1_S13_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04115-13a-1-1_S13_L001_R1_001-1_S13_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.540219,s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-1_S13_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04115,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04115,20.62,20617883323.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613745,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267388,N/A,6.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04115-13a-1_S13_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04115-13a-1-1_S13_L002_R1_001-1_S13_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.549989,s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-1_S13_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04115,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04115,20.35,20352979861.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613743,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267388,N/A,6.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04115-13a-1_S13_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04115-13a-1-1_S13_L003_R1_001-1_S13_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.533649,s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-1_S13_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04115,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04115,19.97,19968408372.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613742,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267388,N/A,6.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04115-13a-1_S13_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04115-13a-1-1_S13_L004_R1_001-1_S13_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.545437,s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-1_S13_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04115,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04115,19.92,19919957611.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613741,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267388,N/A,20.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04115-13a-2_S14_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04115-13a-2-2_S14_L001_R1_001-2_S14_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.472046,s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-2_S14_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04115,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04115,61.99,61985927860.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613740,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267388,N/A,19.73,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04115-13a-2_S14_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04115-13a-2-2_S14_L002_R1_001-2_S14_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.502552,s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-2_S14_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04115,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04115,61.18,61176166187.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613739,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267388,N/A,19.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04115-13a-2_S14_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04115-13a-2-2_S14_L003_R1_001-2_S14_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.452494,s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-2_S14_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04115,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04115,60.25,60245706177.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613738,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267388,N/A,19.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04115-13a-2_S14_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04115-13a-2-2_S14_L004_R1_001-2_S14_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.485094,s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-2_S14_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04115,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04115,60.15,60147002875.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613737,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706909,N/A,9.6,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04157-05ab-1_S5_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04157-05ab-1-1_S5_L001_R1_001-1_S5_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.506971,s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-1_S5_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04157,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04157,29.75,29751939688.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613735,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706909,N/A,9.58,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04157-05ab-1_S5_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04157-05ab-1-1_S5_L002_R1_001-1_S5_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.47031,s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-1_S5_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04157,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04157,29.71,29713481157.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613674,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706909,N/A,9.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04157-05ab-1_S5_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04157-05ab-1-1_S5_L003_R1_001-1_S5_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.4956,s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-1_S5_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04157,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04157,29.79,29787634481.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613601,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706909,N/A,9.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04157-05ab-1_S5_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04157-05ab-1-1_S5_L004_R1_001-1_S5_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.507299,s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-1_S5_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04157,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04157,29.57,29571930294.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613693,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706909,N/A,9.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04157-05ab-2_S6_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04157-05ab-2-2_S6_L001_R1_001-2_S6_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.486119,s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-2_S6_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04157,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04157,30.23,30231796085.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613692,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706909,N/A,9.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04157-05ab-2_S6_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04157-05ab-2-2_S6_L002_R1_001-2_S6_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.486435,s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-2_S6_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04157,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04157,30.21,30211523180.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613691,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706909,N/A,9.78,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04157-05ab-2_S6_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04157-05ab-2-2_S6_L003_R1_001-2_S6_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.488748,s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-2_S6_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04157,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04157,30.33,30332207300.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613690,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706909,N/A,9.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04157-05ab-2_S6_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04157-05ab-2-2_S6_L004_R1_001-2_S6_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.474301,s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-2_S6_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04157,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04157,29.97,29968070158.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613689,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706910,N/A,3.07,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04160-02b-1_S1_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04160-02b-1-1_S1_L001_R1_001-1_S1_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.597358,s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-1_S1_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04160,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04160,9.53,9528554532.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613688,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706910,N/A,2.97,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04160-02b-1_S1_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04160-02b-1-1_S1_L002_R1_001-1_S1_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.649781,s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-1_S1_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04160,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04160,9.2,9198479754.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613687,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706910,N/A,2.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04160-02b-1_S1_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04160-02b-1-1_S1_L003_R1_001-1_S1_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.659831,s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-1_S1_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04160,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04160,8.77,8774084267.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613686,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706910,N/A,2.93,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04160-02b-1_S1_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04160-02b-1-1_S1_L004_R1_001-1_S1_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.63284,s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-1_S1_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04160,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04160,9.1,9096577243.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613685,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706910,N/A,3.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04160-02b-2_S2_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04160-02b-2-2_S2_L001_R1_001-2_S2_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.620343,s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-2_S2_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04160,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04160,10.05,10046127610.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613684,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706910,N/A,3.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04160-02b-2_S2_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04160-02b-2-2_S2_L002_R1_001-2_S2_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.622091,s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-2_S2_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04160,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04160,9.89,9893009893.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613682,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706910,N/A,3.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04160-02b-2_S2_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04160-02b-2-2_S2_L003_R1_001-2_S2_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.604697,s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-2_S2_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04160,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04160,9.66,9661773317.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613681,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706910,N/A,3.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04160-02b-2_S2_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04160-02b-2-2_S2_L004_R1_001-2_S2_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.636818,s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-2_S2_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04160,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04160,9.62,9619122860.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613680,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267397,N/A,5.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04184-39a-1_S11_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04184-39a-1-1_S11_L001_R1_001-1_S11_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.572385,s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-1_S11_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04184,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04184,16.47,16473593004.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613679,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267397,N/A,4.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04184-39a-1_S11_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04184-39a-1-1_S11_L002_R1_001-1_S11_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.560357,s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-1_S11_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04184,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04184,12.94,12938391197.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613678,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267397,N/A,4.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04184-39a-1_S11_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04184-39a-1-1_S11_L003_R1_001-1_S11_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.552283,s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-1_S11_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04184,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04184,13.26,13262134704.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613677,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267397,N/A,5.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04184-39a-1_S11_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04184-39a-1-1_S11_L004_R1_001-1_S11_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.582623,s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-1_S11_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04184,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04184,16.2,16200346143.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613676,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267397,N/A,5.78,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04184-39a-2_S12_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04184-39a-2-2_S12_L001_R1_001-2_S12_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.568062,s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-2_S12_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04184,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04184,17.91,17912106062.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613675,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267397,N/A,4.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04184-39a-2_S12_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04184-39a-2-2_S12_L002_R1_001-2_S12_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.533544,s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-2_S12_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04184,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04184,14.72,14722476944.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613853,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267397,N/A,4.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04184-39a-2_S12_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04184-39a-2-2_S12_L003_R1_001-2_S12_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.559762,s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-2_S12_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04184,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04184,14.72,14720518705.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613852,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267397,N/A,5.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04184-39a-2_S12_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04184-39a-2-2_S12_L004_R1_001-2_S12_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.579215,s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-2_S12_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04184,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04184,17.51,17507248896.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613599,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706911,N/A,2.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04187-04a-1_S3_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04187-04a-1-1_S3_L001_R1_001-1_S3_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.652759,s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-1_S3_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04187,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04187,7.41,7412885014.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613597,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706911,N/A,2.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04187-04a-1_S3_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04187-04a-1-1_S3_L002_R1_001-1_S3_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.64699,s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-1_S3_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04187,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04187,7.28,7283119087.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613594,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706911,N/A,2.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04187-04a-1_S3_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04187-04a-1-1_S3_L003_R1_001-1_S3_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.640155,s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-1_S3_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04187,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04187,7.1,7095096877.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613593,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706911,N/A,2.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04187-04a-1_S3_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04187-04a-1-1_S3_L004_R1_001-1_S3_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.664452,s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-1_S3_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04187,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04187,7.02,7021119798.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613592,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706911,N/A,2.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04187-04a-2_S4_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04187-04a-2-2_S4_L001_R1_001-2_S4_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.643164,s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-2_S4_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04187,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04187,8.08,8076269806.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613591,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706911,N/A,2.55,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04187-04a-2_S4_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04187-04a-2-2_S4_L002_R1_001-2_S4_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.64859,s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-2_S4_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04187,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04187,7.92,7918360548.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613590,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706911,N/A,2.48,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04187-04a-2_S4_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04187-04a-2-2_S4_L003_R1_001-2_S4_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.630789,s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-2_S4_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04187,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04187,7.68,7684364871.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613589,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706911,N/A,2.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04187-04a-2_S4_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04187-04a-2-2_S4_L004_R1_001-2_S4_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.644936,s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-2_S4_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04187,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04187,7.57,7572625001.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613588,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267389,N/A,7.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04199-20b-1_S17_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04199-20b-1-1_S17_L001_R1_001-1_S17_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.501454,s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-1_S17_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04199,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04199,22.1,22104664563.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613587,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267389,N/A,6.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04199-20b-1_S17_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04199-20b-1-1_S17_L002_R1_001-1_S17_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.46667,s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-1_S17_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04199,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04199,21.65,21652433204.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613585,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267389,N/A,7.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04199-20b-1_S17_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04199-20b-1-1_S17_L003_R1_001-1_S17_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.49386,s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-1_S17_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04199,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04199,21.79,21785446599.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613584,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267389,N/A,6.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04199-20b-1_S17_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04199-20b-1-1_S17_L004_R1_001-1_S17_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.488631,s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-1_S17_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04199,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04199,21.17,21168007527.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613583,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267389,N/A,6.64,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04199-20b-2_S18_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04199-20b-2-2_S18_L001_R1_001-2_S18_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.488571,s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-2_S18_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04199,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04199,20.57,20573932690.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613582,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267389,N/A,6.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04199-20b-2_S18_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04199-20b-2-2_S18_L002_R1_001-2_S18_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.508404,s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-2_S18_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04199,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04199,20.15,20154014253.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613581,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267389,N/A,6.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04199-20b-2_S18_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04199-20b-2-2_S18_L003_R1_001-2_S18_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.498263,s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-2_S18_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04199,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04199,20.32,20322141493.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613579,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267389,N/A,6.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04199-20b-2_S18_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04199-20b-2-2_S18_L004_R1_001-2_S18_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.508119,s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-2_S18_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04199,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04199,19.71,19705747983.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613578,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267390,N/A,7.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04204-14ab-1_S9_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04204-14ab-1-1_S9_L001_R1_001-1_S9_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.50671,s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-1_S9_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04204,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04204,22.92,22919963332.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613854,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267390,N/A,7.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04204-14ab-1_S9_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04204-14ab-1-1_S9_L002_R1_001-1_S9_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.528423,s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-1_S9_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04204,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04204,22.85,22853582650.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613831,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267390,N/A,7.41,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04204-14ab-1_S9_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04204-14ab-1-1_S9_L003_R1_001-1_S9_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.526581,s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-1_S9_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04204,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04204,22.96,22960045885.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613673,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267390,N/A,7.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04204-14ab-1_S9_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04204-14ab-1-1_S9_L004_R1_001-1_S9_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.515265,s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-1_S9_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04204,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04204,22.43,22432019992.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613851,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267390,N/A,9.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04204-14ab-2_S10_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04204-14ab-2-2_S10_L001_R1_001-2_S10_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.49237,s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-2_S10_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04204,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04204,30.73,30726992253.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613598,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267390,N/A,9.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04204-14ab-2_S10_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04204-14ab-2-2_S10_L002_R1_001-2_S10_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.486118,s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-2_S10_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04204,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04204,30.66,30661060447.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613850,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267390,N/A,9.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04204-14ab-2_S10_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04204-14ab-2-2_S10_L003_R1_001-2_S10_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.521087,s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-2_S10_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04204,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04204,30.73,30726041326.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613596,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267390,N/A,9.6,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04204-14ab-2_S10_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04204-14ab-2-2_S10_L004_R1_001-2_S10_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.501319,s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-2_S10_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04204,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04204,29.76,29758307306.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613595,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267391,N/A,8.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04228-12e-1_S11_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04228-12e-1-1_S11_L001_R1_001-1_S11_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.48664,s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-12e-1_S11_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04228,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04228,27.3,27295186773.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613849,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267391,N/A,8.82,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04228-12e-1_S11_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04228-12e-1-1_S11_L002_R1_001-1_S11_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.51923,s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-12e-1_S11_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04228,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04228,27.34,27344710534.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613848,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267391,N/A,8.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04228-12e-1_S11_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04228-12e-1-1_S11_L003_R1_001-1_S11_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.493989,s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-12e-1_S11_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04228,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04228,27.54,27537054764.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613847,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267391,N/A,8.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04228-12e-1_S11_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04228-12e-1-1_S11_L004_R1_001-1_S11_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.477459,s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-12e-1_S11_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04228,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04228,26.69,26689677371.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613846,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267391,N/A,9.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04228-22e-2_S12_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04228-22e-2-2_S12_L001_R1_001-2_S12_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.51371,s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-22e-2_S12_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04228,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04228,28.2,28200059013.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613845,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267391,N/A,9.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04228-22e-2_S12_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04228-22e-2-2_S12_L002_R1_001-2_S12_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.490196,s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-22e-2_S12_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04228,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04228,28.02,28015534623.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613843,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267391,N/A,9.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04228-22e-2_S12_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04228-22e-2-2_S12_L003_R1_001-2_S12_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.51087,s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-22e-2_S12_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04228,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04228,28.22,28216872503.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613842,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267391,N/A,8.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04228-22e-2_S12_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04228-22e-2-2_S12_L004_R1_001-2_S12_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.506095,s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-22e-2_S12_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04228,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04228,27.12,27115384871.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613929,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237490,N/A,5.87,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00423-81d-1_S15_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00423-81d-1-1_S15_L001_R1_001-1_S15_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.548333,s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-1_S15_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00423,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00423,18.21,18205859028.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613928,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237490,N/A,5.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00423-81d-1_S15_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00423-81d-1-1_S15_L002_R1_001-1_S15_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.55441,s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-1_S15_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00423,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00423,18.28,18276612828.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613888,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237490,N/A,5.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00423-81d-1_S15_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00423-81d-1-1_S15_L003_R1_001-1_S15_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.543274,s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-1_S15_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00423,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00423,18.28,18276972806.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613695,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237490,N/A,5.92,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00423-81d-1_S15_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00423-81d-1-1_S15_L004_R1_001-1_S15_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.543997,s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-1_S15_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00423,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00423,18.35,18348901564.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613837,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237490,N/A,6.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00423-81d-2_S16_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00423-81d-2-2_S16_L001_R1_001-2_S16_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.541185,s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-2_S16_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00423,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00423,19.47,19473878276.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613668,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237490,N/A,6.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00423-81d-2_S16_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00423-81d-2-2_S16_L002_R1_001-2_S16_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.560693,s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-2_S16_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00423,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00423,19.54,19539880777.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613655,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237490,N/A,6.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00423-81d-2_S16_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00423-81d-2-2_S16_L003_R1_001-2_S16_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.526359,s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-2_S16_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00423,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00423,19.56,19556191785.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613823,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237490,N/A,6.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00423-81d-2_S16_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00423-81d-2-2_S16_L004_R1_001-2_S16_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.553529,s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-2_S16_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00423,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00423,19.64,19640887124.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613813,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237491,N/A,8.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00544-24ab-1_S1_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00544-24ab-1-1_S1_L001_R1_001-1_S1_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.500524,s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-1_S1_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00544,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00544,25.48,25479513215.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613731,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237491,N/A,8.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00544-24ab-1_S1_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00544-24ab-1-1_S1_L002_R1_001-1_S1_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.491247,s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-1_S1_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00544,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00544,25.35,25347790881.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613927,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237491,N/A,8.21,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00544-24ab-1_S1_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00544-24ab-1-1_S1_L003_R1_001-1_S1_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.48624,s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-1_S1_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00544,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00544,25.44,25441102605.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613916,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237491,N/A,7.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00544-24ab-1_S1_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00544-24ab-1-1_S1_L004_R1_001-1_S1_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.513698,s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-1_S1_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00544,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00544,24.63,24630424908.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613905,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237491,N/A,8.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00544-24ab-2_S2_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00544-24ab-2-2_S2_L001_R1_001-2_S2_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.479951,s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-2_S2_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00544,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00544,26.34,26340003436.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613798,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237491,N/A,8.46,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00544-24ab-2_S2_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00544-24ab-2-2_S2_L002_R1_001-2_S2_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.451696,s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-2_S2_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00544,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00544,26.22,26222530879.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613787,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237491,N/A,8.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00544-24ab-2_S2_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00544-24ab-2-2_S2_L003_R1_001-2_S2_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.456688,s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-2_S2_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00544,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00544,26.34,26342190727.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613715,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237491,N/A,8.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00544-24ab-2_S2_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00544-24ab-2-2_S2_L004_R1_001-2_S2_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.498429,s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-2_S2_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00544,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00544,25.38,25382012070.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613699,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237492,N/A,5.01,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00609-38a-1_S9_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00609-38a-1-1_S9_L001_R1_001-1_S9_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.481616,s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-1_S9_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00609,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00609,15.54,15538962800.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613637,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237492,N/A,3.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00609-38a-1_S9_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00609-38a-1-1_S9_L002_R1_001-1_S9_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.537744,s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-1_S9_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00609,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00609,11.62,11618221393.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613648,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237492,N/A,3.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00609-38a-1_S9_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00609-38a-1-1_S9_L003_R1_001-1_S9_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.540724,s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-1_S9_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00609,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00609,12.22,12221960042.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613901,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237492,N/A,4.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00609-38a-1_S9_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00609-38a-1-1_S9_L004_R1_001-1_S9_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.512936,s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-1_S9_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00609,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00609,15.07,15069409755.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613887,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237492,N/A,4.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00609-38a-2_S10_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00609-38a-2-2_S10_L001_R1_001-2_S10_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.556853,s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-2_S10_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00609,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00609,12.95,12949041846.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613621,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237492,N/A,2.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00609-38a-2_S10_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00609-38a-2-2_S10_L002_R1_001-2_S10_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.567948,s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-2_S10_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00609,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00609,8.51,8513076121.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613769,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237492,N/A,3.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00609-38a-2_S10_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00609-38a-2-2_S10_L003_R1_001-2_S10_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.598919,s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-2_S10_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00609,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00609,9.63,9629272820.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613624,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237492,N/A,4.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00609-38a-2_S10_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00609-38a-2-2_S10_L004_R1_001-2_S10_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.544026,s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-2_S10_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00609,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00609,12.49,12493545109.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613615,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267378,N/A,6.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00642-33b-1_S9_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00642-33b-1-1_S9_L001_R1_001-1_S9_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.508042,s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-1_S9_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00642,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00642,21.12,21121058813.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613606,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267378,N/A,6.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00642-33b-1_S9_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00642-33b-1-1_S9_L002_R1_001-1_S9_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.542202,s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-1_S9_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00642,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00642,20.68,20680099632.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613873,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267378,N/A,6.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00642-33b-1_S9_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00642-33b-1-1_S9_L003_R1_001-1_S9_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.51377,s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-1_S9_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00642,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00642,20.67,20668110100.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613860,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267378,N/A,6.52,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00642-33b-1_S9_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00642-33b-1-1_S9_L004_R1_001-1_S9_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.50337,s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-1_S9_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00642,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00642,20.22,20223836184.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613753,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267378,N/A,5.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00642-33b-2_S10_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00642-33b-2-2_S10_L001_R1_001-2_S10_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.530213,s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-2_S10_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00642,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00642,18.55,18545179698.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613744,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267378,N/A,5.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00642-33b-2_S10_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00642-33b-2-2_S10_L002_R1_001-2_S10_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.517358,s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-2_S10_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00642,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00642,18.16,18161898712.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613694,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267378,N/A,5.87,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00642-33b-2_S10_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00642-33b-2-2_S10_L003_R1_001-2_S10_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.529195,s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-2_S10_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00642,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00642,18.19,18192290032.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613683,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267378,N/A,5.72,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00642-33b-2_S10_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00642-33b-2-2_S10_L004_R1_001-2_S10_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.519703,s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-2_S10_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00642,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00642,17.74,17735122754.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613600,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706905,N/A,10.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00706-30b-1_S7_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00706-30b-1-1_S7_L001_R1_001-1_S7_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.488216,s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-1_S7_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00706,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00706,33.57,33569856040.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613586,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706905,N/A,10.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00706-30b-1_S7_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00706-30b-1-1_S7_L002_R1_001-1_S7_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.435909,s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-1_S7_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00706,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00706,31.29,31294902568.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613671,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706905,N/A,9.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00706-30b-1_S7_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00706-30b-1-1_S7_L003_R1_001-1_S7_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.466868,s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-1_S7_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00706,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00706,30.68,30676226359.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613844,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706905,N/A,10.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00706-30b-1_S7_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00706-30b-1-1_S7_L004_R1_001-1_S7_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.455786,s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-1_S7_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00706,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00706,33.66,33656367347.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613841,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706905,N/A,10.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00706-30b-2_S8_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00706-30b-2-2_S8_L001_R1_001-2_S8_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.455354,s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-2_S8_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00706,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00706,33.49,33492693545.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613840,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706905,N/A,10.49,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00706-30b-2_S8_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00706-30b-2-2_S8_L002_R1_001-2_S8_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.458113,s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-2_S8_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00706,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00706,32.51,32506106723.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613839,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706905,N/A,10.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00706-30b-2_S8_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00706-30b-2-2_S8_L003_R1_001-2_S8_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.483548,s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-2_S8_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00706,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00706,31.84,31842089397.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613838,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706905,N/A,10.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00706-30b-2_S8_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00706-30b-2-2_S8_L004_R1_001-2_S8_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.485922,s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-2_S8_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00706,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00706,33.95,33949129096.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613836,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237493,N/A,5.92,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00738-27a-1_S5_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00738-27a-1-1_S5_L001_R1_001-1_S5_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.485473,s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-1_S5_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00738,18.37,18367159767.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613580,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237493,N/A,4.97,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00738-27a-1_S5_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00738-27a-1-1_S5_L002_R1_001-1_S5_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.506541,s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-1_S5_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00738,15.41,15414815373.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613835,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237493,N/A,4.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00738-27a-1_S5_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00738-27a-1-1_S5_L003_R1_001-1_S5_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.512644,s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-1_S5_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00738,15.33,15325075636.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613834,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237493,N/A,5.78,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00738-27a-1_S5_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00738-27a-1-1_S5_L004_R1_001-1_S5_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.509791,s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-1_S5_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00738,17.92,17922015478.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613833,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237493,N/A,6.76,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00738-27a-2_S6_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00738-27a-2-2_S6_L001_R1_001-2_S6_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.496646,s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-2_S6_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00738,20.97,20965932073.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613829,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237493,N/A,5.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00738-27a-2_S6_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00738-27a-2-2_S6_L002_R1_001-2_S6_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.460197,s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-2_S6_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00738,18.18,18176333768.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613825,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237493,N/A,5.78,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00738-27a-2_S6_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00738-27a-2-2_S6_L003_R1_001-2_S6_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.534164,s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-2_S6_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00738,17.93,17926650579.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613824,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237493,N/A,6.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00738-27a-2_S6_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00738-27a-2-2_S6_L004_R1_001-2_S6_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.522309,s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-2_S6_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00738,20.5,20501098777.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613670,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237494,N/A,14.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01099-48d-1_S9_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01099-48d-1-1_S9_L001_R1_001-1_S9_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.37174,s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-1_S9_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01099,44.34,44343408405.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613669,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237494,N/A,14.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01099-48d-1_S9_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01099-48d-1-1_S9_L002_R1_001-1_S9_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.398098,s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-1_S9_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01099,44.25,44248548020.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613667,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237494,N/A,13.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01099-48d-1_S9_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01099-48d-1-1_S9_L003_R1_001-1_S9_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.382227,s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-1_S9_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01099,42.97,42971929540.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613666,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237494,N/A,13.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01099-48d-1_S9_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01099-48d-1-1_S9_L004_R1_001-1_S9_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.388033,s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-1_S9_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01099,41.65,41645436252.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613665,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237494,N/A,11.02,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01099-48d-2_S10_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01099-48d-2-2_S10_L001_R1_001-2_S10_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.354635,s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-2_S10_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01099,34.16,34158924007.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613663,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237494,N/A,10.92,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01099-48d-2_S10_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01099-48d-2-2_S10_L002_R1_001-2_S10_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.370817,s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-2_S10_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01099,33.84,33839261342.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613662,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237494,N/A,10.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01099-48d-2_S10_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01099-48d-2-2_S10_L003_R1_001-2_S10_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.362405,s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-2_S10_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01099,31.69,31688676240.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613660,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237494,N/A,9.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01099-48d-2_S10_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01099-48d-2-2_S10_L004_R1_001-2_S10_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.36217,s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-2_S10_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01099,29.79,29788791558.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613659,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237495,N/A,5.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01255-22b-1_S1_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01255-22b-1-1_S1_L001_R1_001-1_S1_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.53322,s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-1_S1_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01255,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01255,16.68,16680693058.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613658,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237495,N/A,5.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01255-22b-1_S1_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01255-22b-1-1_S1_L002_R1_001-1_S1_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.51579,s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-1_S1_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01255,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01255,16.19,16194896399.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613657,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237495,N/A,4.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01255-22b-1_S1_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01255-22b-1-1_S1_L003_R1_001-1_S1_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.509006,s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-1_S1_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01255,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01255,15.43,15428182463.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613656,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237495,N/A,5.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01255-22b-1_S1_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01255-22b-1-1_S1_L004_R1_001-1_S1_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.527531,s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-1_S1_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01255,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01255,16.62,16616907605.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613654,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237495,N/A,7.93,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01255-22b-2_S2_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01255-22b-2-2_S2_L001_R1_001-2_S2_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.476012,s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-2_S2_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01255,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01255,24.59,24588270538.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613652,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237495,N/A,7.14,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01255-22b-2_S2_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01255-22b-2-2_S2_L002_R1_001-2_S2_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.489861,s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-2_S2_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01255,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01255,22.13,22130799487.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613651,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237495,N/A,7.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01255-22b-2_S2_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01255-22b-2-2_S2_L003_R1_001-2_S2_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.447274,s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-2_S2_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01255,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01255,22.24,22236991052.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613650,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237495,N/A,7.97,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01255-22b-2_S2_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01255-22b-2-2_S2_L004_R1_001-2_S2_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.475035,s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-2_S2_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01255,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01255,24.72,24715581993.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613832,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267379,N/A,5.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01346-35a-1_S13_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01346-35a-1-1_S13_L001_R1_001-1_S13_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.515223,s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-1_S13_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01346,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01346,16.08,16075708981.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613830,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267379,N/A,5.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01346-35a-1_S13_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01346-35a-1-1_S13_L002_R1_001-1_S13_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.537513,s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-1_S13_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01346,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01346,15.78,15778258111.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613828,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267379,N/A,5.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01346-35a-1_S13_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01346-35a-1-1_S13_L003_R1_001-1_S13_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.517624,s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-1_S13_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01346,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01346,16.09,16090720284.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613672,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267379,N/A,4.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01346-35a-1_S13_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01346-35a-1-1_S13_L004_R1_001-1_S13_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.533727,s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-1_S13_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01346,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01346,15.38,15376373585.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613827,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267379,N/A,4.69,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01346-35a-2_S14_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01346-35a-2-2_S14_L001_R1_001-2_S14_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.532021,s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-2_S14_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01346,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01346,14.54,14540872654.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613826,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267379,N/A,4.6,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01346-35a-2_S14_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01346-35a-2-2_S14_L002_R1_001-2_S14_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.524517,s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-2_S14_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01346,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01346,14.26,14264378370.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613822,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267379,N/A,4.7,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01346-35a-2_S14_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01346-35a-2-2_S14_L003_R1_001-2_S14_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.521915,s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-2_S14_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01346,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01346,14.56,14557434045.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613821,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267379,N/A,4.49,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01346-35a-2_S14_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01346-35a-2-2_S14_L004_R1_001-2_S14_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.524202,s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-2_S14_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01346,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01346,13.93,13927791487.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613819,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237497,N/A,5.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01496-43a-1_S13_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01496-43a-1-1_S13_L001_R1_001-1_S13_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.541157,s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-1_S13_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01496,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01496,16.71,16706671547.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613818,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237497,N/A,4.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01496-43a-1_S13_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01496-43a-1-1_S13_L002_R1_001-1_S13_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.540406,s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-1_S13_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01496,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01496,13.63,13629067481.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613664,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237497,N/A,4.47,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01496-43a-1_S13_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01496-43a-1-1_S13_L003_R1_001-1_S13_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.569272,s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-1_S13_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01496,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01496,13.85,13851340213.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613817,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237497,N/A,5.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01496-43a-1_S13_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01496-43a-1-1_S13_L004_R1_001-1_S13_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.539251,s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-1_S13_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01496,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01496,16.45,16453313558.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613816,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237497,N/A,4.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01496-43a-2_S14_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01496-43a-2-2_S14_L001_R1_001-2_S14_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.553595,s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-2_S14_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01496,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01496,14.37,14366469866.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613661,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237497,N/A,3.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01496-43a-2_S14_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01496-43a-2-2_S14_L002_R1_001-2_S14_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.571878,s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-2_S14_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01496,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01496,11.79,11789832013.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613815,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237497,N/A,3.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01496-43a-2_S14_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01496-43a-2-2_S14_L003_R1_001-2_S14_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.571718,s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-2_S14_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01496,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01496,11.78,11778261716.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613814,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237497,N/A,4.52,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01496-43a-2_S14_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01496-43a-2-2_S14_L004_R1_001-2_S14_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.534673,s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-2_S14_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01496,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01496,14.0,14002672404.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613812,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267393,N/A,11.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01884-49d-1_S5_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01884-49d-1-1_S5_L001_R1_001-1_S5_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.346364,s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-1_S5_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01884,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01884,34.62,34623021116.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613811,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267393,N/A,11.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01884-49d-1_S5_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01884-49d-1-1_S5_L002_R1_001-1_S5_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.324491,s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-1_S5_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01884,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01884,34.68,34676334433.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613810,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267393,N/A,10.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01884-49d-1_S5_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01884-49d-1-1_S5_L003_R1_001-1_S5_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.332678,s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-1_S5_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01884,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01884,33.22,33215039662.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613809,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267393,N/A,10.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01884-49d-1_S5_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01884-49d-1-1_S5_L004_R1_001-1_S5_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.31598,s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-1_S5_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01884,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01884,32.37,32369124151.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613653,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267393,N/A,12.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01884-49d-2_S6_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01884-49d-2-2_S6_L001_R1_001-2_S6_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.37222,s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-2_S6_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01884,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01884,37.52,37515467469.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613808,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267393,N/A,12.06,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01884-49d-2_S6_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01884-49d-2-2_S6_L002_R1_001-2_S6_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.355867,s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-2_S6_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01884,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01884,37.39,37391871211.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613807,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267393,N/A,11.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01884-49d-2_S6_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01884-49d-2-2_S6_L003_R1_001-2_S6_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.350383,s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-2_S6_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01884,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01884,35.88,35879440018.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613734,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267393,N/A,11.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01884-49d-2_S6_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01884-49d-2-2_S6_L004_R1_001-2_S6_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.366891,s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-2_S6_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01884,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01884,34.63,34634792364.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613733,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237499,N/A,8.21,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01943-51f-1_S15_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01943-51f-1-1_S15_L001_R1_001-1_S15_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.475063,s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-1_S15_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01943,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01943,25.45,25448190500.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613732,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237499,N/A,8.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01943-51f-1_S15_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01943-51f-1-1_S15_L002_R1_001-1_S15_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.457827,s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-1_S15_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01943,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01943,25.36,25358861260.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613730,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237499,N/A,8.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01943-51f-1_S15_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01943-51f-1-1_S15_L003_R1_001-1_S15_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.49187,s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-1_S15_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01943,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01943,25.36,25355683603.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613729,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237499,N/A,7.77,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01943-51f-1_S15_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01943-51f-1-1_S15_L004_R1_001-1_S15_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.497998,s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-1_S15_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01943,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01943,24.09,24093026177.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613724,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237499,N/A,7.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01943-51f-2_S16_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01943-51f-2-2_S16_L001_R1_001-2_S16_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.480733,s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-2_S16_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01943,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01943,23.66,23658501824.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613723,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237499,N/A,7.58,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01943-51f-2_S16_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01943-51f-2-2_S16_L002_R1_001-2_S16_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.478279,s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-2_S16_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01943,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01943,23.49,23490626642.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613722,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237499,N/A,7.6,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01943-51f-2_S16_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01943-51f-2-2_S16_L003_R1_001-2_S16_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.483036,s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-2_S16_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01943,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01943,23.56,23558501341.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613728,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237499,N/A,7.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01943-51f-2_S16_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01943-51f-2-2_S16_L004_R1_001-2_S16_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.46008,s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-2_S16_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01943,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01943,22.43,22429687793.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613727,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237500,N/A,13.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01981-51d-1_S1_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01981-51d-1-1_S1_L001_R1_001-1_S1_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.403594,s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-1_S1_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01981,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01981,41.65,41651984090.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613820,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237500,N/A,13.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01981-51d-1_S1_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01981-51d-1-1_S1_L002_R1_001-1_S1_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.366395,s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-1_S1_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01981,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01981,41.48,41482286592.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613726,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237500,N/A,12.97,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01981-51d-1_S1_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01981-51d-1-1_S1_L003_R1_001-1_S1_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.399258,s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-1_S1_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01981,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01981,40.2,40200790527.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613725,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237500,N/A,12.58,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01981-51d-1_S1_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01981-51d-1-1_S1_L004_R1_001-1_S1_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.376494,s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-1_S1_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01981,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01981,38.99,38994877614.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613926,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237500,N/A,13.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01981-51d-2_S2_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01981-51d-2-2_S2_L001_R1_001-2_S2_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.353882,s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-2_S2_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01981,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01981,41.03,41034585025.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613925,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237500,N/A,13.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01981-51d-2_S2_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01981-51d-2-2_S2_L002_R1_001-2_S2_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.357028,s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-2_S2_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01981,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01981,41.02,41016184901.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613924,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237500,N/A,12.72,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01981-51d-2_S2_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01981-51d-2-2_S2_L003_R1_001-2_S2_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.329355,s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-2_S2_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01981,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01981,39.42,39421903264.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613923,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237500,N/A,12.33,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01981-51d-2_S2_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01981-51d-2-2_S2_L004_R1_001-2_S2_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.344637,s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-2_S2_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01981,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01981,38.23,38230009956.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613922,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237501,N/A,4.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01993-32a-1_S7_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01993-32a-1-1_S7_L001_R1_001-1_S7_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.544515,s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-1_S7_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01993,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01993,15.04,15035465143.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613921,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237501,N/A,4.76,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01993-32a-1_S7_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01993-32a-1-1_S7_L002_R1_001-1_S7_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.583001,s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-1_S7_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01993,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01993,14.74,14744648656.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613920,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237501,N/A,4.84,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01993-32a-1_S7_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01993-32a-1-1_S7_L003_R1_001-1_S7_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.54599,s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-1_S7_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01993,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01993,15.01,15012311055.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613919,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237501,N/A,4.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01993-32a-1_S7_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01993-32a-1-1_S7_L004_R1_001-1_S7_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.569494,s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-1_S7_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01993,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01993,14.4,14401564846.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613918,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237501,N/A,5.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01993-32a-2_S8_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01993-32a-2-2_S8_L001_R1_001-2_S8_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.51883,s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-2_S8_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01993,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01993,18.45,18446819358.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613917,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237501,N/A,5.84,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01993-32a-2_S8_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01993-32a-2-2_S8_L002_R1_001-2_S8_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.503447,s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-2_S8_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01993,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01993,18.11,18110406973.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613915,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237501,N/A,5.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01993-32a-2_S8_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01993-32a-2-2_S8_L003_R1_001-2_S8_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.518475,s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-2_S8_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01993,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01993,18.48,18483757744.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613914,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237501,N/A,5.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01993-32a-2_S8_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01993-32a-2-2_S8_L004_R1_001-2_S8_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.508678,s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-2_S8_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01993,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01993,17.69,17686611142.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613913,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237502,N/A,6.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02004-41a-1_S19_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02004-41a-1-1_S19_L001_R1_001-1_S19_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.548643,s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-1_S19_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02004,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02004,19.74,19743164158.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613912,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237502,N/A,4.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02004-41a-1_S19_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02004-41a-1-1_S19_L002_R1_001-1_S19_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.507177,s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-1_S19_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02004,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02004,15.19,15193687155.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613911,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237502,N/A,5.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02004-41a-1_S19_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02004-41a-1-1_S19_L003_R1_001-1_S19_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.516906,s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-1_S19_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02004,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02004,15.88,15882024380.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613910,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237502,N/A,6.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02004-41a-1_S19_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02004-41a-1-1_S19_L004_R1_001-1_S19_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.531654,s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-1_S19_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02004,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02004,19.31,19309193760.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613909,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237502,N/A,6.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02004-41a-2_S20_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02004-41a-2-2_S20_L001_R1_001-2_S20_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.505175,s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-2_S20_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02004,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02004,20.56,20562443318.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613908,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237502,N/A,5.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02004-41a-2_S20_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02004-41a-2-2_S20_L002_R1_001-2_S20_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.532909,s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-2_S20_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02004,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02004,16.17,16171016865.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613907,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237502,N/A,5.32,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02004-41a-2_S20_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02004-41a-2-2_S20_L003_R1_001-2_S20_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.528333,s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-2_S20_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02004,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02004,16.49,16487741328.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613906,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237502,N/A,6.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02004-41a-2_S20_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02004-41a-2-2_S20_L004_R1_001-2_S20_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.513076,s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-2_S20_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02004,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02004,19.94,19941931383.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613904,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267380,N/A,9.02,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02071-10a-1_S9_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02071-10a-1-1_S9_L001_R1_001-1_S9_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.530192,s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-1_S9_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02071,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02071,27.97,27974427271.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613903,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267380,N/A,8.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02071-10a-1_S9_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02071-10a-1-1_S9_L002_R1_001-1_S9_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.513939,s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-1_S9_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02071,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02071,27.56,27556708929.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613806,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267380,N/A,8.7,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02071-10a-1_S9_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02071-10a-1-1_S9_L003_R1_001-1_S9_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.50155,s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-1_S9_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02071,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02071,26.98,26979161944.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613805,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267380,N/A,8.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02071-10a-1_S9_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02071-10a-1-1_S9_L004_R1_001-1_S9_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.515198,s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-1_S9_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02071,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02071,26.83,26833648157.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613804,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267380,N/A,10.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02071-10a-2_S10_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02071-10a-2-2_S10_L001_R1_001-2_S10_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.478376,s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-2_S10_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02071,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02071,32.68,32684521263.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613803,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267380,N/A,10.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02071-10a-2_S10_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02071-10a-2-2_S10_L002_R1_001-2_S10_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.464847,s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-2_S10_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02071,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02071,32.17,32170513666.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613802,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267380,N/A,10.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02071-10a-2_S10_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02071-10a-2-2_S10_L003_R1_001-2_S10_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.466128,s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-2_S10_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02071,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02071,31.54,31543755812.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613801,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267380,N/A,10.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02071-10a-2_S10_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02071-10a-2-2_S10_L004_R1_001-2_S10_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.498477,s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-2_S10_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02071,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02071,31.39,31385698636.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613800,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267381,N/A,1.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02074-08c-1_S15_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02074-08c-1-1_S15_L001_R1_001-1_S15_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.657624,s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-1_S15_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02074,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02074,5.91,5907920965.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613799,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267381,N/A,1.87,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02074-08c-1_S15_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02074-08c-1-1_S15_L002_R1_001-1_S15_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.672525,s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-1_S15_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02074,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02074,5.8,5802437763.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613797,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267381,N/A,1.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02074-08c-1_S15_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02074-08c-1-1_S15_L003_R1_001-1_S15_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.683277,s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-1_S15_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02074,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02074,5.62,5616271476.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613796,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267381,N/A,1.78,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02074-08c-1_S15_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02074-08c-1-1_S15_L004_R1_001-1_S15_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.664672,s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-1_S15_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02074,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02074,5.53,5529159150.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613795,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267381,N/A,2.16,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02074-08c-2_S16_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02074-08c-2-2_S16_L001_R1_001-2_S16_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.637199,s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-2_S16_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02074,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02074,6.69,6685173508.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613794,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267381,N/A,2.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02074-08c-2_S16_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02074-08c-2-2_S16_L002_R1_001-2_S16_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.656184,s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-2_S16_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02074,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02074,6.56,6561732846.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613793,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267381,N/A,2.06,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02074-08c-2_S16_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02074-08c-2-2_S16_L003_R1_001-2_S16_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.643486,s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-2_S16_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02074,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02074,6.37,6373198523.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613792,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267381,N/A,2.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02074-08c-2_S16_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02074-08c-2-2_S16_L004_R1_001-2_S16_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.645209,s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-2_S16_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02074,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02074,6.3,6298614337.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613791,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267382,N/A,8.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02132-07a-1_S7_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02132-07a-1-1_S7_L001_R1_001-1_S7_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.487649,s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-1_S7_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02132,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02132,26.86,26860809034.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613790,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267382,N/A,8.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02132-07a-1_S7_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02132-07a-1-1_S7_L002_R1_001-1_S7_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.476563,s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-1_S7_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02132,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02132,26.74,26744705770.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613789,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267382,N/A,8.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02132-07a-1_S7_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02132-07a-1-1_S7_L003_R1_001-1_S7_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.46151,s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-1_S7_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02132,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02132,26.9,26898942832.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613788,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267382,N/A,8.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02132-07a-1_S7_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02132-07a-1-1_S7_L004_R1_001-1_S7_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.509859,s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-1_S7_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02132,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02132,26.57,26568863486.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613786,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267382,N/A,8.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02132-07a-2_S8_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02132-07a-2-2_S8_L001_R1_001-2_S8_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.502362,s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-2_S8_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02132,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02132,26.9,26895588212.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613785,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267382,N/A,8.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02132-07a-2_S8_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02132-07a-2-2_S8_L002_R1_001-2_S8_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.516505,s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-2_S8_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02132,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02132,26.84,26838372759.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613784,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267382,N/A,8.69,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02132-07a-2_S8_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02132-07a-2-2_S8_L003_R1_001-2_S8_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.462373,s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-2_S8_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02132,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02132,26.95,26948184205.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613783,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267382,N/A,8.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02132-07a-2_S8_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02132-07a-2-2_S8_L004_R1_001-2_S8_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.517041,s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-2_S8_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02132,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02132,26.48,26480019915.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613721,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267392,N/A,8.01,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02135-09a-1_S7_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02135-09a-1-1_S7_L001_R1_001-1_S7_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.496731,s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-1_S7_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02135,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02135,24.84,24842068966.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613720,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267392,N/A,7.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02135-09a-1_S7_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02135-09a-1-1_S7_L002_R1_001-1_S7_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.525349,s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-1_S7_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02135,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02135,24.47,24467614879.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613719,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267392,N/A,7.72,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02135-09a-1_S7_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02135-09a-1-1_S7_L003_R1_001-1_S7_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.543505,s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-1_S7_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02135,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02135,23.94,23940236444.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613718,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267392,N/A,7.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02135-09a-1_S7_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02135-09a-1-1_S7_L004_R1_001-1_S7_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.507607,s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-1_S7_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02135,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02135,23.82,23817928834.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613717,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267392,N/A,7.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02135-09a-2_S8_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02135-09a-2-2_S8_L001_R1_001-2_S8_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.503621,s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-2_S8_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02135,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02135,22.1,22097891065.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613716,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267392,N/A,7.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02135-09a-2_S8_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02135-09a-2-2_S8_L002_R1_001-2_S8_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.517653,s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-2_S8_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02135,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02135,21.82,21817542943.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613714,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267392,N/A,6.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02135-09a-2_S8_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02135-09a-2-2_S8_L003_R1_001-2_S8_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.500882,s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-2_S8_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02135,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02135,21.42,21417665897.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613713,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267392,N/A,6.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02135-09a-2_S8_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02135-09a-2-2_S8_L004_R1_001-2_S8_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.515619,s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-2_S8_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02135,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02135,21.38,21378942973.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613712,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237505,N/A,8.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02280-46c-1_S13_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02280-46c-1-1_S13_L001_R1_001-1_S13_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.461734,s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-1_S13_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02280,27.01,27007036532.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613711,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237505,N/A,8.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02280-46c-1_S13_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02280-46c-1-1_S13_L002_R1_001-1_S13_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.491499,s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-1_S13_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02280,26.85,26853858187.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613710,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237505,N/A,8.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02280-46c-1_S13_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02280-46c-1-1_S13_L003_R1_001-1_S13_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.463409,s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-1_S13_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02280,26.91,26912776798.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613709,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237505,N/A,8.33,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02280-46c-1_S13_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02280-46c-1-1_S13_L004_R1_001-1_S13_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.469492,s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-1_S13_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02280,25.81,25811731567.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613708,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237505,N/A,7.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02280-46c-2_S14_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02280-46c-2-2_S14_L001_R1_001-2_S14_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.486619,s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-2_S14_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02280,23.65,23651138413.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613707,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237505,N/A,7.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02280-46c-2_S14_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02280-46c-2-2_S14_L002_R1_001-2_S14_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.478321,s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-2_S14_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02280,23.54,23536952548.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613649,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237505,N/A,7.6,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02280-46c-2_S14_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02280-46c-2-2_S14_L003_R1_001-2_S14_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.474581,s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-2_S14_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02280,23.56,23555669892.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613698,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237505,N/A,7.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02280-46c-2_S14_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02280-46c-2-2_S14_L004_R1_001-2_S14_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.471718,s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-2_S14_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02280,22.45,22450881162.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613700,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267394,N/A,11.47,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02293-54d-1_S7_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02293-54d-1-1_S7_L001_R1_001-1_S7_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.397108,s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-1_S7_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02293,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02293,35.54,35543050827.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613701,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267394,N/A,11.52,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02293-54d-1_S7_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02293-54d-1-1_S7_L002_R1_001-1_S7_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.37701,s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-1_S7_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02293,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02293,35.7,35697002817.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613702,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267394,N/A,10.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02293-54d-1_S7_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02293-54d-1-1_S7_L003_R1_001-1_S7_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.404327,s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-1_S7_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02293,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02293,33.99,33985769634.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613703,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267394,N/A,10.72,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02293-54d-1_S7_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02293-54d-1-1_S7_L004_R1_001-1_S7_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.402871,s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-1_S7_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02293,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02293,33.24,33241716084.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613704,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267394,N/A,9.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02293-54d-2_S8_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02293-54d-2-2_S8_L001_R1_001-2_S8_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.35135,s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-2_S8_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02293,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02293,30.39,30390117754.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613632,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267394,N/A,9.84,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02293-54d-2_S8_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02293-54d-2-2_S8_L002_R1_001-2_S8_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.366042,s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-2_S8_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02293,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02293,30.5,30497273150.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613633,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267394,N/A,9.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02293-54d-2_S8_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02293-54d-2-2_S8_L003_R1_001-2_S8_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.331801,s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-2_S8_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02293,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02293,28.76,28761038569.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613634,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267394,N/A,9.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02293-54d-2_S8_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02293-54d-2-2_S8_L004_R1_001-2_S8_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.364695,s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-2_S8_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02293,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02293,27.99,27985846212.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613705,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267395,N/A,4.77,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02300-42a-1_S21_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02300-42a-1-1_S21_L001_R1_001-1_S21_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.534988,s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-1_S21_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02300,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02300,14.8,14799529918.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613706,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267395,N/A,3.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02300-42a-1_S21_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02300-42a-1-1_S21_L002_R1_001-1_S21_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.540573,s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-1_S21_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02300,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02300,12.12,12119543983.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613638,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267395,N/A,3.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02300-42a-1_S21_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02300-42a-1-1_S21_L003_R1_001-1_S21_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.561617,s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-1_S21_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02300,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02300,12.27,12272585778.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613639,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267395,N/A,4.73,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02300-42a-1_S21_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02300-42a-1-1_S21_L004_R1_001-1_S21_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.549398,s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-1_S21_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02300,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02300,14.68,14676854580.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613640,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267395,N/A,6.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02300-42a-2_S22_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02300-42a-2-2_S22_L001_R1_001-2_S22_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.50402,s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-2_S22_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02300,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02300,21.38,21376118049.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613641,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267395,N/A,5.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02300-42a-2_S22_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02300-42a-2-2_S22_L002_R1_001-2_S22_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.496218,s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-2_S22_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02300,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02300,17.24,17244701908.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613642,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267395,N/A,5.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02300-42a-2_S22_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02300-42a-2-2_S22_L003_R1_001-2_S22_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.507868,s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-2_S22_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02300,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02300,17.61,17608804712.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613643,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267395,N/A,6.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02300-42a-2_S22_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02300-42a-2-2_S22_L004_R1_001-2_S22_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.498707,s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-2_S22_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02300,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02300,20.92,20918279897.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613644,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237507,N/A,9.47,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02602-11a-1_S11_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02602-11a-1-1_S11_L001_R1_001-1_S11_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.475527,s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-1_S11_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02602,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02602,29.36,29362515484.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613645,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237507,N/A,9.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02602-11a-1_S11_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02602-11a-1-1_S11_L002_R1_001-1_S11_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.492046,s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-1_S11_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02602,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02602,28.96,28955656142.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613646,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237507,N/A,9.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02602-11a-1_S11_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02602-11a-1-1_S11_L003_R1_001-1_S11_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.514056,s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-1_S11_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02602,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02602,28.45,28454619073.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613647,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237507,N/A,9.15,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02602-11a-1_S11_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02602-11a-1-1_S11_L004_R1_001-1_S11_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.472321,s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-1_S11_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02602,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02602,28.35,28352533479.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613636,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237507,N/A,12.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02602-11a-2_S12_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02602-11a-2-2_S12_L001_R1_001-2_S12_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.44853,s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-2_S12_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02602,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02602,37.74,37741342030.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613635,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237507,N/A,12.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02602-11a-2_S12_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02602-11a-2-2_S12_L002_R1_001-2_S12_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.497718,s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-2_S12_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02602,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02602,37.28,37278326244.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613631,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237507,N/A,11.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02602-11a-2_S12_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02602-11a-2-2_S12_L003_R1_001-2_S12_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.487179,s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-2_S12_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02602,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02602,36.73,36726240469.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613629,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237507,N/A,11.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02602-11a-2_S12_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02602-11a-2-2_S12_L004_R1_001-2_S12_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.482189,s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-2_S12_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02602,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02602,36.67,36674379870.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613628,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237508,N/A,6.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02615-25b-1_S3_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02615-25b-1-1_S3_L001_R1_001-1_S3_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.445679,s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-1_S3_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02615,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02615,20.89,20894328415.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613627,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237508,N/A,6.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02615-25b-1_S3_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02615-25b-1-1_S3_L002_R1_001-1_S3_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.493184,s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-1_S3_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02615,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02615,20.41,20413987000.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613626,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237508,N/A,6.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02615-25b-1_S3_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02615-25b-1-1_S3_L003_R1_001-1_S3_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.461418,s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-1_S3_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02615,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02615,20.25,20245909857.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613902,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237508,N/A,6.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02615-25b-1_S3_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02615-25b-1-1_S3_L004_R1_001-1_S3_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.472073,s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-1_S3_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02615,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02615,19.95,19952830466.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613781,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237508,N/A,5.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02615-25b-2_S4_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02615-25b-2-2_S4_L001_R1_001-2_S4_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.526642,s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-2_S4_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02615,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02615,16.02,16022687684.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613780,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237508,N/A,5.06,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02615-25b-2_S4_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02615-25b-2-2_S4_L002_R1_001-2_S4_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.515238,s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-2_S4_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02615,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02615,15.68,15677433707.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613898,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237508,N/A,5.06,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02615-25b-2_S4_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02615-25b-2-2_S4_L003_R1_001-2_S4_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.519644,s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-2_S4_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02615,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02615,15.69,15686118294.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613897,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237508,N/A,4.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02615-25b-2_S4_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02615-25b-2-2_S4_L004_R1_001-2_S4_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.528476,s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-2_S4_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02615,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02615,15.31,15309287164.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613896,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267383,N/A,6.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02647-36b-1_S19_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02647-36b-1-1_S19_L001_R1_001-1_S19_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.527906,s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-1_S19_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02647,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02647,19.69,19693914032.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613895,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267383,N/A,6.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02647-36b-1_S19_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02647-36b-1-1_S19_L002_R1_001-1_S19_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.543797,s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-1_S19_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02647,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02647,19.28,19277241850.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613894,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267383,N/A,6.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02647-36b-1_S19_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02647-36b-1-1_S19_L003_R1_001-1_S19_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.512521,s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-1_S19_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02647,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02647,19.52,19518860016.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613893,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267383,N/A,6.08,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02647-36b-1_S19_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02647-36b-1-1_S19_L004_R1_001-1_S19_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.525568,s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-1_S19_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02647,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02647,18.85,18845139952.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613892,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267383,N/A,8.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02647-36b-2_S20_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02647-36b-2-2_S20_L001_R1_001-2_S20_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.49437,s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-2_S20_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02647,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02647,25.73,25728408312.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613891,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267383,N/A,8.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02647-36b-2_S20_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02647-36b-2-2_S20_L002_R1_001-2_S20_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.459316,s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-2_S20_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02647,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02647,25.17,25172153085.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613890,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267383,N/A,8.15,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02647-36b-2_S20_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02647-36b-2-2_S20_L003_R1_001-2_S20_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.4828,s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-2_S20_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02647,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02647,25.28,25275830400.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613889,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267383,N/A,7.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02647-36b-2_S20_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02647-36b-2-2_S20_L004_R1_001-2_S20_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.509505,s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-2_S20_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02647,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02647,24.61,24611897082.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613886,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267384,N/A,4.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02683-44a-1_S15_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02683-44a-1-1_S15_L001_R1_001-1_S15_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.524019,s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-1_S15_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02683,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02683,14.72,14724277427.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613885,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267384,N/A,3.69,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02683-44a-1_S15_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02683-44a-1-1_S15_L002_R1_001-1_S15_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.525608,s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-1_S15_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02683,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02683,11.43,11432591604.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613884,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267384,N/A,3.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02683-44a-1_S15_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02683-44a-1-1_S15_L003_R1_001-1_S15_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.56278,s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-1_S15_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02683,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02683,11.78,11779678581.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613883,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267384,N/A,4.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02683-44a-1_S15_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02683-44a-1-1_S15_L004_R1_001-1_S15_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.557337,s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-1_S15_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02683,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02683,14.3,14303146146.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613630,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267384,N/A,5.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02683-44a-2_S16_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02683-44a-2-2_S16_L001_R1_001-2_S16_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.517295,s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-2_S16_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02683,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02683,16.84,16835558874.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613882,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267384,N/A,4.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02683-44a-2_S16_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02683-44a-2-2_S16_L002_R1_001-2_S16_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.554659,s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-2_S16_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02683,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02683,13.14,13143302143.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613881,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267384,N/A,4.33,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02683-44a-2_S16_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02683-44a-2-2_S16_L003_R1_001-2_S16_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.563412,s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-2_S16_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02683,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02683,13.43,13426617380.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613880,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267384,N/A,5.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02683-44a-2_S16_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02683-44a-2-2_S16_L004_R1_001-2_S16_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.527558,s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-2_S16_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02683,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02683,16.28,16275400010.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613879,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237509,N/A,3.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02698-18b-1_S19_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02698-18b-1-1_S19_L001_R1_001-1_S19_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.567836,s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-1_S19_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02698,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02698,10.23,10227885165.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613782,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237509,N/A,3.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02698-18b-1_S19_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02698-18b-1-1_S19_L002_R1_001-1_S19_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.614983,s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-1_S19_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02698,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02698,10.05,10050827317.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613900,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237509,N/A,3.14,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02698-18b-1_S19_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02698-18b-1-1_S19_L003_R1_001-1_S19_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.587885,s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-1_S19_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02698,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02698,9.75,9749067984.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613899,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237509,N/A,3.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02698-18b-1_S19_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02698-18b-1-1_S19_L004_R1_001-1_S19_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.598377,s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-1_S19_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02698,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02698,9.64,9636748289.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613779,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237509,N/A,1.99,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02698-18b-2_S20_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02698-18b-2-2_S20_L001_R1_001-2_S20_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.671863,s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-2_S20_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02698,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02698,6.18,6181689003.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613777,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237509,N/A,1.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02698-18b-2_S20_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02698-18b-2-2_S20_L002_R1_001-2_S20_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.63965,s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-2_S20_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02698,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02698,6.07,6071461229.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613776,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237509,N/A,1.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02698-18b-2_S20_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02698-18b-2-2_S20_L003_R1_001-2_S20_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.635592,s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-2_S20_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02698,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02698,5.89,5894670970.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613775,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237509,N/A,1.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02698-18b-2_S20_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02698-18b-2-2_S20_L004_R1_001-2_S20_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.640033,s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-2_S20_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02698,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02698,5.83,5825114248.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613774,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267396,N/A,7.51,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02738-40a-1_S17_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02738-40a-1-1_S17_L001_R1_001-1_S17_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.480865,s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-1_S17_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02738,23.28,23275990806.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613773,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267396,N/A,5.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02738-40a-1_S17_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02738-40a-1-1_S17_L002_R1_001-1_S17_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.485119,s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-1_S17_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02738,18.46,18460990879.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613772,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267396,N/A,6.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02738-40a-1_S17_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02738-40a-1-1_S17_L003_R1_001-1_S17_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.4831,s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-1_S17_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02738,18.72,18721750685.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613771,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267396,N/A,7.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02738-40a-1_S17_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02738-40a-1-1_S17_L004_R1_001-1_S17_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.494649,s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-1_S17_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02738,22.54,22541007397.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613768,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267396,N/A,6.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02738-40a-2_S18_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02738-40a-2-2_S18_L001_R1_001-2_S18_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.491658,s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-2_S18_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02738,19.83,19829362922.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613767,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267396,N/A,5.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02738-40a-2_S18_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02738-40a-2-2_S18_L002_R1_001-2_S18_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.512337,s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-2_S18_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02738,15.91,15908689119.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613766,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267396,N/A,5.21,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02738-40a-2_S18_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02738-40a-2-2_S18_L003_R1_001-2_S18_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.507474,s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-2_S18_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02738,16.16,16158035779.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613765,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267396,N/A,6.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02738-40a-2_S18_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02738-40a-2-2_S18_L004_R1_001-2_S18_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.52116,s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-2_S18_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02738,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02738,19.34,19344251814.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613763,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237510,N/A,13.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02809-52d-1_S3_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02809-52d-1-1_S3_L001_R1_001-1_S3_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.395624,s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-1_S3_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02809,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02809,43.02,43017436361.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613762,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237510,N/A,13.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02809-52d-1_S3_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02809-52d-1-1_S3_L002_R1_001-1_S3_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.377499,s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-1_S3_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02809,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02809,43.24,43243039753.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613761,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237510,N/A,13.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02809-52d-1_S3_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02809-52d-1-1_S3_L003_R1_001-1_S3_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.381823,s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-1_S3_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02809,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02809,42.5,42504580321.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613760,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237510,N/A,13.62,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02809-52d-1_S3_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02809-52d-1-1_S3_L004_R1_001-1_S3_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.38421,s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-1_S3_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02809,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02809,42.22,42219773971.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613759,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237510,N/A,13.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02809-52d-2_S4_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02809-52d-2-2_S4_L001_R1_001-2_S4_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.422987,s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-2_S4_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02809,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02809,42.37,42372798232.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613625,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237510,N/A,13.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02809-52d-2_S4_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02809-52d-2-2_S4_L002_R1_001-2_S4_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.415575,s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-2_S4_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02809,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02809,42.38,42378974763.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613623,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237510,N/A,13.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02809-52d-2_S4_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02809-52d-2-2_S4_L003_R1_001-2_S4_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.413717,s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-2_S4_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02809,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02809,41.54,41537278294.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613622,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237510,N/A,13.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02809-52d-2_S4_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02809-52d-2-2_S4_L004_R1_001-2_S4_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.405883,s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-2_S4_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02809,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02809,40.67,40666242486.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613877,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237512,N/A,6.41,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03669-26a-1_S3_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03669-26a-1-1_S3_L001_R1_001-1_S3_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.507607,s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-1_S3_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03669,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03669,19.87,19869171647.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613876,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237512,N/A,6.07,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03669-26a-1_S3_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03669-26a-1-1_S3_L002_R1_001-1_S3_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.499494,s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-1_S3_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03669,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03669,18.8,18802545695.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613778,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237512,N/A,5.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03669-26a-1_S3_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03669-26a-1-1_S3_L003_R1_001-1_S3_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.516357,s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-1_S3_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03669,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03669,17.71,17708385495.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613620,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237512,N/A,6.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03669-26a-1_S3_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03669-26a-1-1_S3_L004_R1_001-1_S3_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.521913,s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-1_S3_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03669,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03669,19.56,19556209542.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613619,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237512,N/A,4.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03669-26a-2_S4_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03669-26a-2-2_S4_L001_R1_001-2_S4_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.573685,s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-2_S4_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03669,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03669,13.32,13323696054.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613618,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237512,N/A,4.33,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03669-26a-2_S4_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03669-26a-2-2_S4_L002_R1_001-2_S4_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.545577,s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-2_S4_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03669,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03669,13.43,13428542441.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613617,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237512,N/A,4.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03669-26a-2_S4_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03669-26a-2-2_S4_L003_R1_001-2_S4_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.561149,s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-2_S4_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03669,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03669,12.76,12760767711.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613616,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237512,N/A,4.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03669-26a-2_S4_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03669-26a-2-2_S4_L004_R1_001-2_S4_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.573031,s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-2_S4_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03669,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03669,13.36,13364684174.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613614,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237513,N/A,4.62,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03710-17a-1_S3_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03710-17a-1-1_S3_L001_R1_001-1_S3_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.529608,s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-1_S3_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03710,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03710,14.33,14327552723.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613770,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237513,N/A,4.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03710-17a-1_S3_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03710-17a-1-1_S3_L002_R1_001-1_S3_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.525781,s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-1_S3_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03710,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03710,14.48,14475004769.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613613,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237513,N/A,4.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03710-17a-1_S3_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03710-17a-1-1_S3_L003_R1_001-1_S3_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.510377,s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-1_S3_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03710,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03710,14.73,14730710121.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613612,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237513,N/A,4.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03710-17a-1_S3_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03710-17a-1-1_S3_L004_R1_001-1_S3_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.530384,s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-1_S3_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03710,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03710,15.05,15048257469.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613611,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237513,N/A,3.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03710-17a-2_S4_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03710-17a-2-2_S4_L001_R1_001-2_S4_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.554635,s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-2_S4_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03710,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03710,9.64,9638800438.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613610,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237513,N/A,3.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03710-17a-2_S4_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03710-17a-2-2_S4_L002_R1_001-2_S4_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.534448,s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-2_S4_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03710,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03710,9.65,9646420196.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613609,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237513,N/A,3.16,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03710-17a-2_S4_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03710-17a-2-2_S4_L003_R1_001-2_S4_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.540463,s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-2_S4_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03710,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03710,9.78,9783011566.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613764,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237513,N/A,3.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03710-17a-2_S4_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03710-17a-2-2_S4_L004_R1_001-2_S4_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.580997,s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-2_S4_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03710,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03710,9.9,9899545541.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613608,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706907,N/A,8.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03804-06b-1_S5_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03804-06b-1-1_S5_L001_R1_001-1_S5_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.546349,s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-1_S5_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03804,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03804,26.82,26819757868.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613607,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706907,N/A,8.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03804-06b-1_S5_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03804-06b-1-1_S5_L002_R1_001-1_S5_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.537702,s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-1_S5_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03804,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03804,26.44,26441868051.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613605,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706907,N/A,8.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03804-06b-1_S5_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03804-06b-1-1_S5_L003_R1_001-1_S5_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.531756,s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-1_S5_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03804,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03804,25.99,25986948758.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613604,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706907,N/A,8.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03804-06b-1_S5_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03804-06b-1-1_S5_L004_R1_001-1_S5_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.530258,s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-1_S5_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03804,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03804,25.92,25924317485.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613603,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706907,N/A,6.64,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03804-06b-2_S6_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03804-06b-2-2_S6_L001_R1_001-2_S6_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.506364,s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-2_S6_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03804,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03804,20.6,20598245280.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613602,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706907,N/A,6.55,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03804-06b-2_S6_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03804-06b-2-2_S6_L002_R1_001-2_S6_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.532988,s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-2_S6_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03804,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03804,20.3,20297050591.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613878,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706907,N/A,6.42,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03804-06b-2_S6_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03804-06b-2-2_S6_L003_R1_001-2_S6_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.586377,s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-2_S6_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03804,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03804,19.9,19902408458.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613758,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706907,N/A,6.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03804-06b-2_S6_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03804-06b-2-2_S6_L004_R1_001-2_S6_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.540772,s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-2_S6_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03804,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03804,19.81,19813734808.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613757,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706908,N/A,10.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03816-01ab-1_S3_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03816-01ab-1-1_S3_L001_R1_001-1_S3_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.459029,s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-1_S3_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03816,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03816,31.78,31778819544.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613756,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706908,N/A,10.21,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03816-01ab-1_S3_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03816-01ab-1-1_S3_L002_R1_001-1_S3_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.454087,s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-1_S3_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03816,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03816,31.67,31665743155.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613875,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706908,N/A,10.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03816-01ab-1_S3_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03816-01ab-1-1_S3_L003_R1_001-1_S3_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.500328,s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-1_S3_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03816,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03816,31.81,31813630376.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613874,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706908,N/A,10.07,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03816-01ab-1_S3_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03816-01ab-1-1_S3_L004_R1_001-1_S3_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.46382,s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-1_S3_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03816,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03816,31.23,31230172299.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613872,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706908,N/A,10.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03816-01ab-2_S4_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03816-01ab-2-2_S4_L001_R1_001-2_S4_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.468232,s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-2_S4_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03816,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03816,31.4,31396043051.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613871,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706908,N/A,10.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03816-01ab-2_S4_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03816-01ab-2-2_S4_L002_R1_001-2_S4_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.479397,s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-2_S4_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03816,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03816,31.4,31397723868.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613870,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706908,N/A,10.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03816-01ab-2_S4_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03816-01ab-2-2_S4_L003_R1_001-2_S4_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.466131,s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-2_S4_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03816,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03816,31.52,31520032571.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613869,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706908,N/A,9.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03816-01ab-2_S4_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03816-01ab-2-2_S4_L004_R1_001-2_S4_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.488907,s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-2_S4_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03816,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03816,30.94,30935396516.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613868,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237514,N/A,6.02,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03831-37a-1_S15_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03831-37a-1-1_S15_L001_R1_001-1_S15_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.462677,s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-1_S15_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03831,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03831,18.67,18666958853.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613866,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237514,N/A,5.92,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03831-37a-1_S15_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03831-37a-1-1_S15_L002_R1_001-1_S15_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.50791,s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-1_S15_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03831,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03831,18.36,18358679504.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613865,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237514,N/A,6.07,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03831-37a-1_S15_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03831-37a-1-1_S15_L003_R1_001-1_S15_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.493563,s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-1_S15_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03831,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03831,18.82,18822363722.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613863,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237514,N/A,5.77,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03831-37a-1_S15_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03831-37a-1-1_S15_L004_R1_001-1_S15_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.476437,s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-1_S15_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03831,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03831,17.87,17872814838.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613862,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237514,N/A,5.69,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03831-37a-2_S16_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03831-37a-2-2_S16_L001_R1_001-2_S16_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.531355,s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-2_S16_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03831,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03831,17.65,17645290802.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613861,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237514,N/A,5.58,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03831-37a-2_S16_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03831-37a-2-2_S16_L002_R1_001-2_S16_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.503645,s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-2_S16_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03831,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03831,17.28,17284410414.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613859,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237514,N/A,5.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03831-37a-2_S16_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03831-37a-2-2_S16_L003_R1_001-2_S16_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.508258,s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-2_S16_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03831,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03831,17.45,17451965390.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613858,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26237514,N/A,5.45,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03831-37a-2_S16_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03831-37a-2-2_S16_L004_R1_001-2_S16_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.502183,s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-2_S16_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03831,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03831,16.89,16890282378.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613857,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267386,N/A,6.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03927-31b-1_S5_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03927-31b-1-1_S5_L001_R1_001-1_S5_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.511775,s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-1_S5_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03927,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03927,19.92,19922279998.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613856,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267386,N/A,6.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03927-31b-1_S5_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03927-31b-1-1_S5_L002_R1_001-1_S5_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.519732,s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-1_S5_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03927,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03927,19.45,19454706232.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613855,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267386,N/A,6.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03927-31b-1_S5_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03927-31b-1-1_S5_L003_R1_001-1_S5_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.520908,s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-1_S5_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03927,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03927,19.32,19317071059.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613736,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267386,N/A,6.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03927-31b-1_S5_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03927-31b-1-1_S5_L004_R1_001-1_S5_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.533644,s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-1_S5_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03927,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03927,18.98,18984147383.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613697,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267386,N/A,6.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03927-31b-2_S6_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03927-31b-2-2_S6_L001_R1_001-2_S6_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.508878,s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-2_S6_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03927,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03927,19.95,19952749701.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613696,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267386,N/A,6.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03927-31b-2_S6_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03927-31b-2-2_S6_L002_R1_001-2_S6_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.516763,s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-2_S6_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03927,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03927,19.44,19442773803.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613755,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267386,N/A,6.21,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03927-31b-2_S6_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03927-31b-2-2_S6_L003_R1_001-2_S6_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.529814,s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-2_S6_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03927,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03927,19.26,19255813715.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613754,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267386,N/A,6.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03927-31b-2_S6_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03927-31b-2-2_S6_L004_R1_001-2_S6_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.526175,s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-2_S6_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03927,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03927,18.89,18885377726.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613752,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267387,N/A,2.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03942-03b-1_S17_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03942-03b-1-1_S17_L001_R1_001-1_S17_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.635238,s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-1_S17_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03942,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03942,7.84,7842303571.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613751,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267387,N/A,2.48,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03942-03b-1_S17_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03942-03b-1-1_S17_L002_R1_001-1_S17_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.665578,s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-1_S17_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03942,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03942,7.7,7697706067.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613750,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267387,N/A,2.41,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03942-03b-1_S17_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03942-03b-1-1_S17_L003_R1_001-1_S17_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.66571,s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-1_S17_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03942,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03942,7.48,7481954402.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613749,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267387,N/A,2.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03942-03b-1_S17_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03942-03b-1-1_S17_L004_R1_001-1_S17_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.663754,s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-1_S17_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03942,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03942,7.39,7388766207.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613867,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267387,N/A,2.72,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03942-03b-2_S18_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03942-03b-2-2_S18_L001_R1_001-2_S18_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.636859,s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-2_S18_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03942,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03942,8.43,8429886466.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613748,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267387,N/A,2.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03942-03b-2_S18_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03942-03b-2-2_S18_L002_R1_001-2_S18_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.63905,s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-2_S18_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03942,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03942,8.27,8274235538.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613747,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267387,N/A,2.6,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03942-03b-2_S18_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03942-03b-2-2_S18_L003_R1_001-2_S18_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.629707,s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-2_S18_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03942,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03942,8.05,8047983330.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613864,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267387,N/A,2.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03942-03b-2_S18_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03942-03b-2-2_S18_L004_R1_001-2_S18_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.657614,s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-2_S18_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03942,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03942,7.95,7950760086.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613746,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267388,N/A,6.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04115-13a-1_S13_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04115-13a-1-1_S13_L001_R1_001-1_S13_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.531133,s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-1_S13_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04115,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04115,20.62,20615916990.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613745,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267388,N/A,6.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04115-13a-1_S13_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04115-13a-1-1_S13_L002_R1_001-1_S13_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.539785,s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-1_S13_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04115,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04115,20.35,20350944999.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613743,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267388,N/A,6.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04115-13a-1_S13_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04115-13a-1-1_S13_L003_R1_001-1_S13_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.532024,s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-1_S13_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04115,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04115,19.97,19966133111.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613742,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267388,N/A,6.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04115-13a-1_S13_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04115-13a-1-1_S13_L004_R1_001-1_S13_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.511184,s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-1_S13_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04115,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04115,19.92,19918289739.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613741,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267388,N/A,19.99,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04115-13a-2_S14_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04115-13a-2-2_S14_L001_R1_001-2_S14_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.474275,s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-2_S14_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04115,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04115,61.98,61980073015.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613740,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267388,N/A,19.73,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04115-13a-2_S14_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04115-13a-2-2_S14_L002_R1_001-2_S14_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.457035,s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-2_S14_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04115,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04115,61.17,61170163638.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613739,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267388,N/A,19.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04115-13a-2_S14_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04115-13a-2-2_S14_L003_R1_001-2_S14_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.4547,s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-2_S14_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04115,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04115,60.24,60238866306.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613738,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267388,N/A,19.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04115-13a-2_S14_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04115-13a-2-2_S14_L004_R1_001-2_S14_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.462515,s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-2_S14_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04115,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04115,60.14,60142087825.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613737,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706909,N/A,9.6,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04157-05ab-1_S5_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04157-05ab-1-1_S5_L001_R1_001-1_S5_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.462751,s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-1_S5_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04157,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04157,29.75,29750695033.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613735,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706909,N/A,9.58,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04157-05ab-1_S5_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04157-05ab-1-1_S5_L002_R1_001-1_S5_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.493741,s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-1_S5_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04157,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04157,29.71,29712134644.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613674,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706909,N/A,9.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04157-05ab-1_S5_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04157-05ab-1-1_S5_L003_R1_001-1_S5_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.502371,s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-1_S5_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04157,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04157,29.79,29786130368.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613601,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706909,N/A,9.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04157-05ab-1_S5_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04157-05ab-1-1_S5_L004_R1_001-1_S5_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.486058,s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-1_S5_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04157,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04157,29.57,29570131624.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613693,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706909,N/A,9.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04157-05ab-2_S6_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04157-05ab-2-2_S6_L001_R1_001-2_S6_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.471787,s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-2_S6_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04157,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04157,30.23,30230417094.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613692,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706909,N/A,9.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04157-05ab-2_S6_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04157-05ab-2-2_S6_L002_R1_001-2_S6_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.45341,s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-2_S6_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04157,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04157,30.21,30210016127.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613691,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706909,N/A,9.78,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04157-05ab-2_S6_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04157-05ab-2-2_S6_L003_R1_001-2_S6_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.478349,s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-2_S6_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04157,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04157,30.33,30330571618.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613690,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706909,N/A,9.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04157-05ab-2_S6_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04157-05ab-2-2_S6_L004_R1_001-2_S6_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.481968,s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-2_S6_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04157,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04157,29.97,29966136363.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613689,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706910,N/A,3.07,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04160-02b-1_S1_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04160-02b-1-1_S1_L001_R1_001-1_S1_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.624041,s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-1_S1_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04160,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04160,9.53,9527643282.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613688,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706910,N/A,2.97,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04160-02b-1_S1_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04160-02b-1-1_S1_L002_R1_001-1_S1_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.632486,s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-1_S1_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04160,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04160,9.2,9197550478.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613687,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706910,N/A,2.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04160-02b-1_S1_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04160-02b-1-1_S1_L003_R1_001-1_S1_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.622362,s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-1_S1_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04160,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04160,8.77,8773108336.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613686,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706910,N/A,2.93,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04160-02b-1_S1_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04160-02b-1-1_S1_L004_R1_001-1_S1_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.638265,s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-1_S1_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04160,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04160,9.1,9095821577.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613685,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706910,N/A,3.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04160-02b-2_S2_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04160-02b-2-2_S2_L001_R1_001-2_S2_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.615665,s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-2_S2_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04160,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04160,10.05,10045269440.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613684,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706910,N/A,3.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04160-02b-2_S2_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04160-02b-2-2_S2_L002_R1_001-2_S2_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.586769,s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-2_S2_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04160,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04160,9.89,9892142440.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613682,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706910,N/A,3.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04160-02b-2_S2_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04160-02b-2-2_S2_L003_R1_001-2_S2_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.583466,s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-2_S2_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04160,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04160,9.66,9660787742.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613681,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706910,N/A,3.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04160-02b-2_S2_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04160-02b-2-2_S2_L004_R1_001-2_S2_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.612808,s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-2_S2_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04160,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04160,9.62,9618407789.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613680,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267397,N/A,5.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04184-39a-1_S11_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04184-39a-1-1_S11_L001_R1_001-1_S11_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.513647,s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-1_S11_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04184,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04184,16.47,16473348787.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613679,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267397,N/A,4.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04184-39a-1_S11_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04184-39a-1-1_S11_L002_R1_001-1_S11_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.543364,s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-1_S11_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04184,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04184,12.94,12938409728.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613678,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267397,N/A,4.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04184-39a-1_S11_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04184-39a-1-1_S11_L003_R1_001-1_S11_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.540322,s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-1_S11_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04184,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04184,13.26,13261883008.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613677,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267397,N/A,5.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04184-39a-1_S11_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04184-39a-1-1_S11_L004_R1_001-1_S11_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.527235,s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-1_S11_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04184,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04184,16.2,16200161284.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613676,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267397,N/A,5.78,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04184-39a-2_S12_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04184-39a-2-2_S12_L001_R1_001-2_S12_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.56966,s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-2_S12_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04184,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04184,17.91,17911796334.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613675,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267397,N/A,4.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04184-39a-2_S12_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04184-39a-2-2_S12_L002_R1_001-2_S12_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.523464,s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-2_S12_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04184,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04184,14.72,14722479457.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613853,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267397,N/A,4.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04184-39a-2_S12_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04184-39a-2-2_S12_L003_R1_001-2_S12_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.562794,s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-2_S12_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04184,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04184,14.72,14720180387.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613852,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267397,N/A,5.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04184-39a-2_S12_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04184-39a-2-2_S12_L004_R1_001-2_S12_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.547098,s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-2_S12_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04184,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04184,17.51,17506977622.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613599,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706911,N/A,2.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04187-04a-1_S3_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04187-04a-1-1_S3_L001_R1_001-1_S3_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.658735,s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-1_S3_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04187,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04187,7.41,7412406924.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613597,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706911,N/A,2.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04187-04a-1_S3_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04187-04a-1-1_S3_L002_R1_001-1_S3_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.640276,s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-1_S3_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04187,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04187,7.28,7282642777.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613594,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706911,N/A,2.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04187-04a-1_S3_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04187-04a-1-1_S3_L003_R1_001-1_S3_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.650177,s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-1_S3_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04187,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04187,7.09,7094571948.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613593,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706911,N/A,2.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04187-04a-1_S3_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04187-04a-1-1_S3_L004_R1_001-1_S3_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.651562,s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-1_S3_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04187,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04187,7.02,7020760812.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613592,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706911,N/A,2.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04187-04a-2_S4_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04187-04a-2-2_S4_L001_R1_001-2_S4_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.627255,s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-2_S4_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04187,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04187,8.08,8075750788.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613591,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706911,N/A,2.55,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04187-04a-2_S4_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04187-04a-2-2_S4_L002_R1_001-2_S4_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.623265,s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-2_S4_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04187,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04187,7.92,7917829014.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613590,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706911,N/A,2.48,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04187-04a-2_S4_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04187-04a-2-2_S4_L003_R1_001-2_S4_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.631244,s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-2_S4_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04187,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04187,7.68,7683781430.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613589,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37706911,N/A,2.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04187-04a-2_S4_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04187-04a-2-2_S4_L004_R1_001-2_S4_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.636793,s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-2_S4_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04187,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04187,7.57,7572221424.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613588,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267389,N/A,7.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04199-20b-1_S17_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04199-20b-1-1_S17_L001_R1_001-1_S17_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.495599,s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-1_S17_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04199,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04199,22.1,22098303045.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613587,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267389,N/A,6.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04199-20b-1_S17_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04199-20b-1-1_S17_L002_R1_001-1_S17_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.519131,s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-1_S17_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04199,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04199,21.65,21646010581.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613585,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267389,N/A,7.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04199-20b-1_S17_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04199-20b-1-1_S17_L003_R1_001-1_S17_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.534843,s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-1_S17_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04199,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04199,21.78,21778992180.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613584,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267389,N/A,6.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04199-20b-1_S17_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04199-20b-1-1_S17_L004_R1_001-1_S17_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.513776,s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-1_S17_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04199,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04199,21.16,21161431823.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613583,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267389,N/A,6.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04199-20b-2_S18_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04199-20b-2-2_S18_L001_R1_001-2_S18_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.497236,s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-2_S18_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04199,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04199,20.57,20568029289.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613582,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267389,N/A,6.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04199-20b-2_S18_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04199-20b-2-2_S18_L002_R1_001-2_S18_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.498392,s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-2_S18_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04199,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04199,20.15,20148061601.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613581,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267389,N/A,6.55,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04199-20b-2_S18_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04199-20b-2-2_S18_L003_R1_001-2_S18_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.495167,s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-2_S18_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04199,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04199,20.32,20316165708.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613579,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267389,N/A,6.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04199-20b-2_S18_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04199-20b-2-2_S18_L004_R1_001-2_S18_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.510325,s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-2_S18_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04199,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04199,19.7,19699650413.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613578,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267390,N/A,7.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04204-14ab-1_S9_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04204-14ab-1-1_S9_L001_R1_001-1_S9_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.486848,s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-1_S9_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04204,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04204,22.92,22918997388.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613854,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267390,N/A,7.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04204-14ab-1_S9_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04204-14ab-1-1_S9_L002_R1_001-1_S9_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.519391,s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-1_S9_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04204,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04204,22.85,22852548333.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613831,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267390,N/A,7.41,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04204-14ab-1_S9_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04204-14ab-1-1_S9_L003_R1_001-1_S9_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.471858,s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-1_S9_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04204,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04204,22.96,22958892651.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613673,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267390,N/A,7.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04204-14ab-1_S9_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04204-14ab-1-1_S9_L004_R1_001-1_S9_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.466459,s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-1_S9_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04204,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04204,22.43,22430690513.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613851,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267390,N/A,9.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04204-14ab-2_S10_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04204-14ab-2-2_S10_L001_R1_001-2_S10_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.45822,s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-2_S10_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04204,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04204,30.73,30725938742.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613598,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267390,N/A,9.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04204-14ab-2_S10_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04204-14ab-2-2_S10_L002_R1_001-2_S10_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.483653,s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-2_S10_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04204,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04204,30.66,30659905262.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613850,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267390,N/A,9.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04204-14ab-2_S10_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04204-14ab-2-2_S10_L003_R1_001-2_S10_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.483107,s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-2_S10_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04204,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04204,30.72,30724760662.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613596,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267390,N/A,9.6,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04204-14ab-2_S10_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04204-14ab-2-2_S10_L004_R1_001-2_S10_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.462214,s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-2_S10_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04204,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04204,29.76,29756816044.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613595,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267391,N/A,8.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04228-12e-1_S11_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04228-12e-1-1_S11_L001_R1_001-1_S11_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.494534,s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-12e-1_S11_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04228,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04228,27.29,27294166590.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613849,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267391,N/A,8.82,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04228-12e-1_S11_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04228-12e-1-1_S11_L002_R1_001-1_S11_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.475097,s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-12e-1_S11_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04228,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04228,27.34,27343611285.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613848,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267391,N/A,8.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04228-12e-1_S11_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04228-12e-1-1_S11_L003_R1_001-1_S11_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.447014,s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-12e-1_S11_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04228,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04228,27.54,27535844322.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613847,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267391,N/A,8.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04228-12e-1_S11_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04228-12e-1-1_S11_L004_R1_001-1_S11_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.448493,s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-12e-1_S11_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04228,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04228,26.69,26688249764.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613846,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267391,N/A,9.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04228-22e-2_S12_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04228-22e-2-2_S12_L001_R1_001-2_S12_L001_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.448106,s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-22e-2_S12_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04228,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04228,28.2,28199056023.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613845,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267391,N/A,9.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04228-22e-2_S12_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04228-22e-2-2_S12_L002_R1_001-2_S12_L002_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.452897,s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-22e-2_S12_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04228,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04228,28.01,28014469975.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613843,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267391,N/A,9.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04228-22e-2_S12_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04228-22e-2-2_S12_L003_R1_001-2_S12_L003_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.461293,s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-22e-2_S12_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04228,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04228,28.22,28215751267.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30613842,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN26267391,N/A,8.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG04228-22e-2_S12_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG04228-22e-2-2_S12_L004_R1_001-2_S12_L004_R2_001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.465526,s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-22e-2_S12_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG04228,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG04228,27.11,27114094153.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242407,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-1_S20_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-1_S20_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.63141,s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-1_S20_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,10.45,10451741673.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242406,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-1_S20_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-1_S20_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.580328,s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-1_S20_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,11.27,11266122224.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242322,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-1_S20_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-1_S20_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577897,s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-1_S20_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,11.26,11263022499.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242307,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.6,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-1_S20_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-1_S20_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.610805,s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-1_S20_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,11.17,11172967086.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242271,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-2_S28_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-2_S28_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.607471,s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-2_S28_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,10.13,10131790358.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242256,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-2_S28_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-2_S28_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.634275,s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-2_S28_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,11.13,11131760226.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242245,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-2_S28_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-2_S28_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.639197,s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-2_S28_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,11.14,11135119794.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242475,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.55,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-2_S28_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-2_S28_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.602038,s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-2_S28_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,10.99,10993123748.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242464,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,11.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-1_S22_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-1_S22_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.525447,s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-1_S22_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,37.02,37024993829.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242456,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,12.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-1_S22_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-1_S22_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.510349,s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-1_S22_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,38.09,38093038178.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242405,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,11.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-1_S22_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-1_S22_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.497501,s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-1_S22_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,36.16,36160735792.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242394,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,12.02,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-1_S22_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-1_S22_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.464198,s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-1_S22_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,37.25,37251792722.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242383,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,3.76,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-2_S30_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-2_S30_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.605446,s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-2_S30_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,11.66,11657507684.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242372,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,3.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-2_S30_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-2_S30_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.595329,s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-2_S30_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,11.96,11961656403.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242364,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,3.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-2_S30_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-2_S30_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.605152,s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-2_S30_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,11.38,11381920704.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242350,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,3.77,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-2_S30_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-2_S30_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.611291,s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-2_S30_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,11.68,11682855823.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242339,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,9.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-1_S21_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-1_S21_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.511729,s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-1_S21_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,27.99,27990281383.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242235,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,9.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-1_S21_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-1_S21_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.527324,s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-1_S21_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,30.11,30106363791.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242224,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,9.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-1_S21_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-1_S21_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.525498,s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-1_S21_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,30.11,30105901448.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242333,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,9.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-1_S21_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-1_S21_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.528697,s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-1_S21_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,29.78,29777940263.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242321,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,3.6,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-2_S29_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-2_S29_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.596472,s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-2_S29_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,11.17,11174314891.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242314,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,3.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-2_S29_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-2_S29_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.594296,s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-2_S29_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,12.28,12278822216.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242175,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,3.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-2_S29_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-2_S29_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.585727,s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-2_S29_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,12.28,12282924436.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242526,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,3.92,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-2_S29_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-2_S29_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.579023,s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-2_S29_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,12.14,12137842068.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242517,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,3.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-1_S23_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-1_S23_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.668508,s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-1_S23_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,9.31,9307268830.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242506,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,3.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-1_S23_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-1_S23_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.624167,s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-1_S23_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,9.57,9572806260.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242207,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,2.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-1_S23_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-1_S23_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.663599,s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-1_S23_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,8.95,8948801097.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242196,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,2.99,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-1_S23_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-1_S23_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.628386,s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-1_S23_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,9.27,9273418950.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242449,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,4.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-2_S31_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-2_S31_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.586155,s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-2_S31_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,13.45,13454844253.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242438,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,4.46,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-2_S31_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-2_S31_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.629683,s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-2_S31_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,13.83,13831739909.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242306,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,4.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-2_S31_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-2_S31_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.604095,s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-2_S31_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,12.97,12967687388.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242493,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,4.33,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-2_S31_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-2_S31_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.581474,s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-2_S31_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,13.42,13422786440.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242502,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,5.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-1_S3_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-1_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.531106,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-1_S3_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,15.88,15881878484.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242424,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,5.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-1_S3_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-1_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.543372,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-1_S3_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,16.12,16121034186.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242480,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.93,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-1_S3_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-1_S3_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.518959,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-1_S3_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,15.27,15269723276.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242283,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-1_S3_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-1_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.547714,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-1_S3_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,15.15,15150778535.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242411,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.572679,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,14.15,14154859985.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242280,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.526389,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,14.37,14365907902.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242273,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.33,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.544446,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,13.42,13420324024.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242272,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.553314,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,13.48,13477345492.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242270,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,11.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.425715,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11i_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,35.83,35830722289.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242268,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,12.69,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.462949,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11i_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,39.35,39351820410.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242265,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,10.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.477153,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11i_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,33.98,33977811222.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242264,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,9.49,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.484091,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11i_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,29.4,29404032796.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242262,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797100,N/A,4.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01784-2_S31_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01784-2_S31_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.602602,s3://human-pangenomics/working/HPRC/HG01784/raw_data/hic/HG01784-2_S31_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01784,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01784,12.39,12386565567.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242479,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797100,N/A,4.32,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01784-2_S31_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01784-2_S31_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.592402,s3://human-pangenomics/working/HPRC/HG01784/raw_data/hic/HG01784-2_S31_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01784,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01784,13.38,13377187618.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242478,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797100,N/A,4.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01784-2_S31_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01784-2_S31_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.583023,s3://human-pangenomics/working/HPRC/HG01784/raw_data/hic/HG01784-2_S31_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01784,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01784,13.37,13371568307.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242259,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797100,N/A,4.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01784-2_S31_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01784-2_S31_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.605486,s3://human-pangenomics/working/HPRC/HG01784/raw_data/hic/HG01784-2_S31_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01784,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01784,13.25,13250775565.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242258,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,2.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-1_S1_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-1_S1_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.647356,s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-1_S1_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,8.29,8290570287.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242257,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,2.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-1_S1_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-1_S1_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.620614,s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-1_S1_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,8.98,8975206509.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242255,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,2.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-1_S1_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-1_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.622793,s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-1_S1_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,8.98,8977755556.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242254,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,2.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-1_S1_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-1_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.649502,s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-1_S1_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,8.86,8864041665.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242253,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,3.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-2_S9_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-2_S9_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.620916,s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-2_S9_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,9.65,9651428893.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242252,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,3.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-2_S9_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-2_S9_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.612289,s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-2_S9_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,10.54,10541830391.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242251,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,3.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-2_S9_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-2_S9_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.596701,s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-2_S9_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,10.54,10535978094.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242250,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,3.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-2_S9_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-2_S9_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.611257,s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-2_S9_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,10.37,10368682458.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242249,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,3.64,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-1_S24_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-1_S24_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.623241,s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-1_S24_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,11.3,11299227154.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242248,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,3.73,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-1_S24_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-1_S24_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.602946,s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-1_S24_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,11.57,11567425336.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242247,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,3.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-1_S24_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-1_S24_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.619456,s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-1_S24_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,11.07,11070056950.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242246,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,3.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-1_S24_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-1_S24_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.618786,s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-1_S24_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,11.32,11322530860.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242244,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,4.06,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-2_S32_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-2_S32_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.6,s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-2_S32_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,12.58,12578918553.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242243,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,4.16,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-2_S32_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-2_S32_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.570687,s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-2_S32_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,12.89,12886674344.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242242,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,3.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-2_S32_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-2_S32_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.588933,s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-2_S32_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,12.24,12241855001.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242241,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,4.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-2_S32_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-2_S32_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.596469,s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-2_S32_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,12.56,12561609829.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242240,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,1.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-1_S2_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-1_S2_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.690243,s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-1_S2_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,6.09,6089723758.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242461,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,2.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-1_S2_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-1_S2_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.661908,s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-1_S2_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,6.6,6601978749.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242460,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,2.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-1_S2_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-1_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.702147,s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-1_S2_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,6.61,6605231258.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242459,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,2.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-1_S2_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-1_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.668794,s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-1_S2_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,6.52,6519329233.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242477,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,3.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-2_S10_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-2_S10_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.659534,s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-2_S10_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,10.04,10042788187.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242476,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,3.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-2_S10_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-2_S10_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.611808,s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-2_S10_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,11.08,11079858825.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242474,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,3.58,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-2_S10_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-2_S10_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.634816,s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-2_S10_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,11.09,11090061438.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242473,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,3.52,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-2_S10_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-2_S10_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.632186,s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-2_S10_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,10.9,10897836302.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242472,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.567596,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,14.69,14685113009.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242471,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.56761,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,14.88,14883637778.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242470,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.55,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.513992,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,14.12,14119543280.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242469,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.51,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.502015,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,13.97,13969422876.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242468,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,9.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.490643,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17i_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,30.88,30877274276.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242467,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,10.42,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.456736,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17i_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,32.31,32305103519.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242466,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,8.62,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.506923,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17i_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,26.71,26710287853.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242465,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,7.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.49395,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17i_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,22.81,22807009905.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242463,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.598362,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,14.06,14063990321.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242462,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.62,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.581007,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,14.33,14326966085.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242182,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.602997,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,12.97,12970944182.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242181,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.608654,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,13.17,13174281820.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242180,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,11.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.495572,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19i_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,35.42,35420500740.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242179,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,13.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.506931,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19i_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,40.3,40301197724.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242178,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,10.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.507416,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19i_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,31.16,31160504966.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242177,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,8.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.562155,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19i_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,25.91,25907269627.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242458,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,3.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-1_S5_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-1_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.606866,s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-1_S5_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,10.85,10853036509.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242457,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,3.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-1_S5_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-1_S5_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.6135,s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-1_S5_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,11.82,11815698653.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242191,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,3.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-1_S5_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-1_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.601405,s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-1_S5_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,11.81,11814658427.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242190,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,3.77,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-1_S5_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-1_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.620551,s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-1_S5_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,11.68,11675066505.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242189,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,4.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-2_S13_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-2_S13_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577079,s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-2_S13_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,15.35,15353640937.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242188,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,5.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-2_S13_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-2_S13_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.565604,s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-2_S13_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,16.61,16613036709.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242187,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,5.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-2_S13_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-2_S13_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.549475,s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-2_S13_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,16.61,16614538681.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242186,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,5.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-2_S13_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-2_S13_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.584754,s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-2_S13_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,16.41,16407373892.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242185,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,5.06,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.541485,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,15.68,15679484213.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242184,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,5.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.566459,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,15.88,15878378348.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242176,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.560546,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,15.35,15353893039.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242183,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.534743,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,15.06,15058862575.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242404,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,11.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.45325,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18i_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,34.47,34473291574.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242403,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,11.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.497254,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18i_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,36.67,36674507291.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242402,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,10.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.460186,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18i_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,31.41,31405734054.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242401,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,8.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.485954,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18i_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,27.1,27099399518.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242400,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.559289,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,14.48,14475042591.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242399,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.73,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.541696,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,14.67,14674740969.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242398,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.7,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.569154,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,14.57,14568201510.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242397,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.52,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.54842,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,14.01,14013170961.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242396,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,9.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.448434,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20i_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,28.61,28606795597.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242395,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,9.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.495269,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20i_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,29.97,29969805791.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242393,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,8.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.516831,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20i_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,26.81,26806180472.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242392,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,7.55,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.504828,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20i_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,23.4,23402723198.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242391,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.52,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-1_S1_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-1_S1_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.628871,s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-1_S1_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,10.91,10909100017.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242390,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-1_S1_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-1_S1_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.594433,s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-1_S1_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,11.19,11188624282.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242389,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.49,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-1_S1_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-1_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.613123,s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-1_S1_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,10.8,10804113739.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242388,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-1_S1_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-1_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.601814,s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-1_S1_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,11.04,11042916113.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242387,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-2_S9_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-2_S9_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.617718,s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-2_S9_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,9.62,9617944611.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242386,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-2_S9_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-2_S9_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.576885,s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-2_S9_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,9.86,9855703706.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242385,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.06,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-2_S9_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-2_S9_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.606758,s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-2_S9_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,9.48,9483522303.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242384,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-2_S9_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-2_S9_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.606566,s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-2_S9_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,9.69,9692742184.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242382,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-1_S6_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-1_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.5947,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-1_S6_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,13.62,13615945405.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242381,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.46,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-1_S6_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-1_S6_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.571247,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-1_S6_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,13.83,13833717712.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242380,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-1_S6_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-1_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.54991,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-1_S6_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,13.14,13135668935.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242379,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-1_S6_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-1_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.615965,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-1_S6_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,13.01,13006089425.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242378,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,3.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.587759,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,12.2,12202402986.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242377,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.611986,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,12.42,12415186534.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242376,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.59877,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,12.41,12414356855.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242375,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,3.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.580856,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,11.92,11921734213.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242374,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,9.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.49904,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14i_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,28.06,28058254078.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242373,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,9.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.495795,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14i_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,28.51,28508736738.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242371,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,8.01,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.513093,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14i_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,24.83,24826749519.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242370,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,6.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.537468,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14i_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,21.08,21083832226.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242369,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,4.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-1_S5_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-1_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.574426,s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-1_S5_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,13.5,13499572647.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242368,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,4.47,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-1_S5_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-1_S5_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.569608,s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-1_S5_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,13.86,13860885604.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242367,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,4.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-1_S5_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-1_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.573949,s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-1_S5_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,13.17,13167995623.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242359,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,4.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-1_S5_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-1_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.557848,s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-1_S5_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,13.52,13524884287.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242360,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,3.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-2_S13_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-2_S13_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.605598,s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-2_S13_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,11.5,11497934604.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242361,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,3.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-2_S13_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-2_S13_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.605748,s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-2_S13_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,11.79,11785363728.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242362,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,3.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-2_S13_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-2_S13_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.588376,s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-2_S13_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,11.14,11135847597.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242363,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,3.7,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-2_S13_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-2_S13_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.630068,s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-2_S13_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,11.48,11475577542.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242365,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,3.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-1_S6_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-1_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.600621,s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-1_S6_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,11.95,11952931713.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242366,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,3.97,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-1_S6_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-1_S6_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.623442,s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-1_S6_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,12.3,12303021339.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242342,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,3.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-1_S6_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-1_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.620107,s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-1_S6_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,11.64,11636777051.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242343,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,3.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-1_S6_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-1_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.581818,s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-1_S6_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,12.03,12029450790.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242344,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,4.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-2_S14_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-2_S14_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.587956,s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-2_S14_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,12.75,12748095306.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242345,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,4.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-2_S14_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-2_S14_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.5655,s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-2_S14_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,13.1,13102628356.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242346,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,3.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-2_S14_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-2_S14_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.60048,s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-2_S14_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,12.35,12351349239.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242347,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,4.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-2_S14_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-2_S14_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.572203,s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-2_S14_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,12.7,12697988712.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242348,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.78,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-1_S7_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-1_S7_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.56484,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-1_S7_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,14.83,14832803612.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242349,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-1_S7_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-1_S7_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.570263,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-1_S7_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,15.04,15041853062.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242351,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-1_S7_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-1_S7_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.588908,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-1_S7_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,14.04,14040285498.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242352,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.51,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-1_S7_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-1_S7_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.550107,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-1_S7_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,13.98,13982392584.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242353,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.581302,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,14.3,14303290679.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242354,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.544862,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,14.5,14501402402.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242355,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.57522,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,13.51,13509928125.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242356,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.56572,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,13.5,13501792797.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242357,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,11.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.469732,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15i_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,36.92,36917053749.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242358,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,13.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.485264,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15i_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,41.84,41838825896.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242341,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,11.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.51802,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15i_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,34.79,34794784186.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242340,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,9.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.477419,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15i_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,29.9,29901590068.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242338,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,5.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-1_S7_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-1_S7_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.527096,s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-1_S7_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,15.49,15485841647.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242337,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,5.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-1_S7_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-1_S7_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.553008,s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-1_S7_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,15.92,15915046864.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242221,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,4.76,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-1_S7_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-1_S7_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.554386,s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-1_S7_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,14.76,14757163472.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242220,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,4.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-1_S7_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-1_S7_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.588467,s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-1_S7_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,15.32,15315851335.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242219,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,3.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-2_S15_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-2_S15_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.616049,s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-2_S15_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,11.88,11880470588.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242336,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,3.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-2_S15_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-2_S15_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.593427,s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-2_S15_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,12.22,12222747126.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242239,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,3.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-2_S15_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-2_S15_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.599817,s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-2_S15_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,11.4,11395230541.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242238,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,3.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-2_S15_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-2_S15_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.587912,s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-2_S15_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,11.78,11780225528.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242237,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-1_S4_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-1_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.618107,s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-1_S4_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.26,13264492114.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242236,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-1_S4_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-1_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.57144,s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-1_S4_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.55,13551937789.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242234,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-1_S4_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-1_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.580506,s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-1_S4_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,12.98,12982900077.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242233,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-1_S4_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-1_S4_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.563984,s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-1_S4_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.21,13208233630.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242232,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-2_S12_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-2_S12_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.589349,s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-2_S12_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.75,13753800959.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242231,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-2_S12_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-2_S12_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.568515,s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-2_S12_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,14.08,14081546800.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242230,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.33,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-2_S12_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-2_S12_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.569739,s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-2_S12_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.42,13415679158.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242229,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-2_S12_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-2_S12_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.617625,s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-2_S12_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.75,13747816543.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242228,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797109,N/A,2.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03458-1_S17_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03458-1_S17_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.648711,s3://human-pangenomics/working/HPRC/HG03458/raw_data/hic/HG03458-1_S17_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03458,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03458,7.34,7342759890.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242227,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797109,N/A,2.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03458-1_S17_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03458-1_S17_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.631313,s3://human-pangenomics/working/HPRC/HG03458/raw_data/hic/HG03458-1_S17_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03458,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03458,7.54,7541210310.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242226,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797109,N/A,2.32,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03458-1_S17_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03458-1_S17_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.637325,s3://human-pangenomics/working/HPRC/HG03458/raw_data/hic/HG03458-1_S17_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03458,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03458,7.18,7184535005.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242225,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797109,N/A,2.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03458-1_S17_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03458-1_S17_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.665429,s3://human-pangenomics/working/HPRC/HG03458/raw_data/hic/HG03458-1_S17_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03458,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03458,7.35,7354789323.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242223,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.82,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-1_S18_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-1_S18_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.594815,s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-1_S18_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,11.85,11849763503.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242222,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-1_S18_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-1_S18_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.600467,s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-1_S18_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,12.14,12135092146.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242319,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-1_S18_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-1_S18_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.594667,s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-1_S18_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,11.63,11634327328.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242318,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-1_S18_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-1_S18_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.6004,s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-1_S18_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,11.86,11860368970.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242317,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-2_S26_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-2_S26_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.620073,s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-2_S26_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,9.59,9587897548.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242218,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-2_S26_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-2_S26_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.572677,s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-2_S26_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,9.83,9825240348.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242217,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.02,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-2_S26_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-2_S26_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.598062,s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-2_S26_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,9.36,9358371465.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242216,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.08,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-2_S26_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-2_S26_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.603151,s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-2_S26_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,9.56,9560358443.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242335,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,2.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-1_S24_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-1_S24_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.650114,s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-1_S24_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,6.75,6754019188.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242334,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,2.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-1_S24_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-1_S24_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.612799,s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-1_S24_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,7.07,7071031529.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242332,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,2.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-1_S24_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-1_S24_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.633073,s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-1_S24_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,7.07,7069840467.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242331,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,2.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-1_S24_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-1_S24_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.632801,s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-1_S24_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,7.01,7012952628.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242330,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,6.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-2_S32_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-2_S32_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.500177,s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-2_S32_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,18.88,18877366518.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242329,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,6.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-2_S32_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-2_S32_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.551993,s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-2_S32_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,20.56,20557546849.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242328,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,6.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-2_S32_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-2_S32_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.525506,s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-2_S32_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,20.57,20566876467.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242327,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,6.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-2_S32_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-2_S32_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.508401,s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-2_S32_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,20.43,20431898061.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242326,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,2.87,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-1_S19_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-1_S19_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.652957,s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-1_S19_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,8.89,8894617797.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242325,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.15,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-1_S19_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-1_S19_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.647623,s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-1_S19_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,9.76,9758746396.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242324,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.15,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-1_S19_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-1_S19_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.636941,s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-1_S19_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,9.77,9768810382.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242323,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-1_S19_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-1_S19_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.592393,s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-1_S19_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,9.62,9615301263.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242320,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,2.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-2_S27_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-2_S27_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.639005,s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-2_S27_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,9.12,9122844278.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242316,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-2_S27_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-2_S27_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.613655,s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-2_S27_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,10.0,10004351060.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242172,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-2_S27_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-2_S27_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.6202,s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-2_S27_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,10.01,10008059210.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242171,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-2_S27_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-2_S27_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.607695,s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-2_S27_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,9.83,9834207094.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242315,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,4.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-1_S8_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-1_S8_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.572991,s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-1_S8_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,12.67,12670729097.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242167,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,4.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-1_S8_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-1_S8_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.558825,s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-1_S8_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,13.1,13095838677.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242166,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,3.93,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-1_S8_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-1_S8_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.611446,s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-1_S8_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,12.19,12187989591.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242165,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,4.07,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-1_S8_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-1_S8_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.608723,s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-1_S8_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,12.63,12630827955.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242164,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,5.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-2_S16_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-2_S16_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.571952,s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-2_S16_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,16.31,16313555116.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242163,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,5.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-2_S16_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-2_S16_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.578408,s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-2_S16_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,16.72,16717750885.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242313,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,5.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-2_S16_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-2_S16_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.569439,s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-2_S16_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,15.61,15608912229.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242312,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,5.21,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-2_S16_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-2_S16_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.580577,s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-2_S16_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,16.15,16150293852.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242159,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-1_S6_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-1_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.601569,s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-1_S6_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,11.13,11128098122.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242158,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-1_S6_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-1_S6_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.597847,s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-1_S6_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,12.09,12088124186.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242157,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-1_S6_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-1_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.612623,s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-1_S6_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,12.11,12106703496.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242156,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-1_S6_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-1_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.607579,s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-1_S6_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,11.93,11931905360.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242155,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-2_S14_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-2_S14_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.611813,s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-2_S14_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,10.08,10078151831.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242154,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.49,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-2_S14_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-2_S14_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.627078,s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-2_S14_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,10.83,10833167300.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242153,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.49,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-2_S14_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-2_S14_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.638538,s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-2_S14_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,10.83,10827380755.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242528,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-2_S14_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-2_S14_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.601804,s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-2_S14_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,10.67,10674939126.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242174,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,4.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-1_S2_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-1_S2_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.593934,s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-1_S2_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,14.5,14504938924.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242173,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,4.79,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-1_S2_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-1_S2_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.571957,s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-1_S2_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,14.84,14839350107.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242215,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,4.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-1_S2_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-1_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.56045,s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-1_S2_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,14.23,14225785815.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242214,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,4.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-1_S2_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-1_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.586383,s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-1_S2_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,14.45,14451088590.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242213,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,3.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-2_S10_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-2_S10_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.629584,s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-2_S10_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,10.5,10496884578.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242170,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,3.47,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-2_S10_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-2_S10_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.638907,s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-2_S10_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,10.76,10759683519.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242162,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,3.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-2_S10_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-2_S10_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.661084,s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-2_S10_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,10.35,10349756404.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242161,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,3.41,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-2_S10_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-2_S10_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.642143,s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-2_S10_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,10.58,10576293045.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242160,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-1_S3_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-1_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.567091,s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-1_S3_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,12.55,12551596173.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242527,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-1_S3_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-1_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.594242,s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-1_S3_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,13.77,13770283286.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242525,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-1_S3_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-1_S3_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.586409,s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-1_S3_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,13.78,13779161976.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242524,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-1_S3_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-1_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.602279,s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-1_S3_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,13.58,13579732696.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242523,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-2_S11_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-2_S11_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.627018,s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-2_S11_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,13.29,13292917501.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242169,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-2_S11_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-2_S11_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.568298,s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-2_S11_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,14.46,14462000368.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242168,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-2_S11_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-2_S11_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.586129,s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-2_S11_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,14.44,14439258485.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242522,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-2_S11_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-2_S11_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.555905,s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-2_S11_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,14.23,14233988117.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242521,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.72,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-1_S3_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-1_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.587984,s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-1_S3_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.55,11546555904.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242520,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.82,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-1_S3_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-1_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.585985,s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-1_S3_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.85,11847239507.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242519,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.64,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-1_S3_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-1_S3_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.592584,s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-1_S3_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.28,11276006296.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242518,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-1_S3_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-1_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.571223,s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-1_S3_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.58,11580409557.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242516,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.72,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-2_S11_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-2_S11_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.599769,s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-2_S11_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.53,11529545009.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242515,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-2_S11_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-2_S11_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.578065,s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-2_S11_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.81,11808316315.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242514,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-2_S11_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-2_S11_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577688,s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-2_S11_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.18,11178435722.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242513,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.69,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-2_S11_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-2_S11_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.609274,s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-2_S11_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.45,11452546788.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242512,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,2.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-1_S4_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-1_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.625452,s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-1_S4_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,9.24,9242082335.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242511,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,3.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-1_S4_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-1_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.611177,s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-1_S4_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,10.11,10113221981.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242510,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,3.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-1_S4_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-1_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.617873,s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-1_S4_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,10.11,10114463682.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242509,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,3.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-1_S4_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-1_S4_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.612165,s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-1_S4_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,9.99,9990030775.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242508,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,2.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-2_S12_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-2_S12_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.675966,s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-2_S12_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,7.42,7423144968.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242507,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,2.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-2_S12_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-2_S12_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.663478,s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-2_S12_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,8.04,8040954772.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242505,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,2.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-2_S12_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-2_S12_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.643436,s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-2_S12_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,8.04,8042818109.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242504,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,2.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-2_S12_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-2_S12_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.659335,s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-2_S12_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,7.92,7923211922.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242193,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,4.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-1_S2_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-1_S2_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.551493,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-1_S2_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,13.3,13298864748.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242192,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,4.32,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-1_S2_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-1_S2_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.57845,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-1_S2_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,13.39,13393992269.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242455,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,4.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-1_S2_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-1_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.536203,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-1_S2_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,13.24,13235899441.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242212,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,4.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-1_S2_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-1_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.568374,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-1_S2_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,12.73,12727345287.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242211,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,5.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.57131,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,18.02,18017491417.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242210,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,5.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.575995,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,18.27,18268555097.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242209,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,5.64,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.538242,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,17.48,17481085109.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242208,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,5.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.533142,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,17.15,17147769724.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242206,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,13.69,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.450461,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10i_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,42.45,42445471726.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242205,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,15.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.458555,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10i_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,47.19,47194300396.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242204,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,12.97,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.507915,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10i_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,40.22,40218516326.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242203,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,11.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.509102,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10i_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,34.45,34446361258.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242202,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,3.78,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-1_S7_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-1_S7_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.612259,s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-1_S7_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,11.72,11718103219.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242201,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-1_S7_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-1_S7_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.609764,s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-1_S7_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,12.8,12802197777.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242200,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-1_S7_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-1_S7_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.601135,s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-1_S7_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,12.82,12815141373.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242199,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-1_S7_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-1_S7_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.622165,s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-1_S7_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,12.66,12664445294.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242198,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-2_S15_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-2_S15_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.584413,s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-2_S15_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,14.05,14053826809.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242197,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-2_S15_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-2_S15_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.588101,s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-2_S15_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,15.21,15206352036.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242195,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-2_S15_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-2_S15_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.589067,s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-2_S15_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,15.2,15198648480.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242194,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-2_S15_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-2_S15_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.566336,s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-2_S15_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,15.02,15021715870.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242435,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,5.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-1_S5_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-1_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.541936,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-1_S5_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,16.03,16029493671.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242434,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,5.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-1_S5_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-1_S5_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.563837,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-1_S5_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,16.22,16217741508.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242433,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,5.08,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-1_S5_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-1_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.545486,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-1_S5_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,15.74,15742401699.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242454,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,4.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-1_S5_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-1_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.587746,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-1_S5_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,15.34,15341183111.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242453,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,7.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.530724,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,21.81,21808416507.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242452,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,7.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.534757,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,22.22,22222196021.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242451,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,6.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.5267,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,20.64,20639411200.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242450,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,6.76,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.516312,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,20.95,20951317422.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242448,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,16.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.461663,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13i_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,52.27,52270389803.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242447,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,18.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.484363,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13i_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,55.93,55926147946.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242446,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,15.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.460326,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13i_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,47.2,47200415951.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242445,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,13.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.505864,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13i_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,40.63,40634736086.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242444,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,4.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-1_S8_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-1_S8_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.566407,s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-1_S8_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,14.07,14067634876.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242443,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,4.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-1_S8_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-1_S8_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.566578,s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-1_S8_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,15.32,15323640450.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242442,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,4.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-1_S8_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-1_S8_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.608204,s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-1_S8_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,15.33,15330334190.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242441,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,4.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-1_S8_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-1_S8_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.589573,s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-1_S8_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,15.2,15198062363.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242440,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,5.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-2_S16_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-2_S16_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.554173,s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-2_S16_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,16.32,16324115791.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242439,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,5.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-2_S16_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-2_S16_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.575919,s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-2_S16_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,17.81,17806607760.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242437,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,5.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-2_S16_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-2_S16_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.535619,s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-2_S16_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,17.81,17808457755.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242436,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,5.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-2_S16_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-2_S16_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.548013,s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-2_S16_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,17.58,17582589136.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242295,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,3.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-1_S17_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-1_S17_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.618567,s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-1_S17_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,12.26,12257135185.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242294,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-1_S17_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-1_S17_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.609886,s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-1_S17_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,13.07,13073641404.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242293,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-1_S17_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-1_S17_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.586516,s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-1_S17_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,13.09,13085456563.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242432,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-1_S17_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-1_S17_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.594033,s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-1_S17_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,12.98,12979454960.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242311,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-2_S25_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-2_S25_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.585463,s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-2_S25_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,12.68,12682043444.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242310,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-2_S25_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-2_S25_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.580722,s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-2_S25_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,13.65,13649692314.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242309,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.41,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-2_S25_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-2_S25_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.593398,s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-2_S25_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,13.66,13658084505.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242308,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-2_S25_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-2_S25_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.588779,s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-2_S25_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,13.53,13527344367.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242305,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,3.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-1_S19_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-1_S19_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.62636,s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-1_S19_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,11.05,11053440320.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242304,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,3.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-1_S19_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-1_S19_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.606111,s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-1_S19_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,11.31,11310326695.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242303,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,3.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-1_S19_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-1_S19_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.609677,s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-1_S19_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,10.86,10860495038.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242302,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,3.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-1_S19_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-1_S19_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.612421,s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-1_S19_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,11.08,11075509617.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242301,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,4.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-2_S27_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-2_S27_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.582207,s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-2_S27_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,14.35,14353976469.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242300,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,4.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-2_S27_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-2_S27_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.565677,s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-2_S27_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,14.7,14703424250.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242299,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,4.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-2_S27_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-2_S27_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.593926,s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-2_S27_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,14.05,14050211042.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242298,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,4.62,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-2_S27_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-2_S27_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.618126,s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-2_S27_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,14.33,14334585396.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242297,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,4.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-1_S20_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-1_S20_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.609815,s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-1_S20_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,13.52,13518986850.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242296,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,4.45,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-1_S20_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-1_S20_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.587456,s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-1_S20_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,13.81,13806306273.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242492,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,4.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-1_S20_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-1_S20_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.585312,s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-1_S20_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,13.18,13184382871.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242491,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,4.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-1_S20_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-1_S20_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.601529,s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-1_S20_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,13.36,13361652282.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242490,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,3.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-2_S28_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-2_S28_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.631885,s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-2_S28_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,10.44,10436347266.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242489,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,3.46,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-2_S28_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-2_S28_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.598073,s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-2_S28_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,10.73,10731057735.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242292,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,3.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-2_S28_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-2_S28_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.616016,s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-2_S28_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,10.17,10166644606.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242291,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,3.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-2_S28_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-2_S28_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.624638,s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-2_S28_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,10.45,10446413932.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242290,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-1_S21_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-1_S21_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.60731,s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-1_S21_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.24,12240955911.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242289,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,4.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-1_S21_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-1_S21_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.615993,s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-1_S21_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.52,12523728405.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242288,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-1_S21_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-1_S21_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.595639,s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-1_S21_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,11.88,11875186444.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242503,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-1_S21_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-1_S21_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.635543,s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-1_S21_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.12,12120041298.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242501,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-2_S29_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-2_S29_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.599757,s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-2_S29_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.05,12047225949.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242500,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.99,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-2_S29_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-2_S29_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.620903,s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-2_S29_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.35,12353976938.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242499,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.79,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-2_S29_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-2_S29_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.579837,s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-2_S29_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,11.75,11751376969.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242498,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-2_S29_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-2_S29_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.617989,s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-2_S29_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.03,12025993794.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242497,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-1_S1_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-1_S1_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.523421,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-1_S1_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,19.69,19690591453.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242496,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.46,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-1_S1_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-1_S1_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.533744,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-1_S1_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,20.03,20025200989.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242495,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-1_S1_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-1_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.521817,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-1_S1_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,18.74,18740355922.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242494,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-1_S1_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-1_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.535841,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-1_S1_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,18.77,18768231936.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242426,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.548052,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,18.87,18872657779.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242425,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.550298,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,19.22,19215002188.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242423,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,5.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.565838,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,17.98,17984837570.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242422,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,5.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.550269,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,18.07,18074423221.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242488,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,14.15,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.480913,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9i_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,43.86,43860690211.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242487,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,15.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.461152,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9i_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,47.68,47681058086.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242486,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,13.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.468138,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9i_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,40.86,40859482919.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242485,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,11.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.492513,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9i_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,35.27,35265588464.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242484,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-1_S4_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-1_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.53525,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-1_S4_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,16.08,16084505020.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242483,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-1_S4_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-1_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.530327,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-1_S4_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,16.31,16306582361.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242482,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-1_S4_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-1_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.549532,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-1_S4_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,15.64,15641580822.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242481,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.02,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-1_S4_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-1_S4_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.541735,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-1_S4_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,15.56,15555176575.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242431,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.532172,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,17.15,17149676191.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242430,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.525542,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,17.38,17376969777.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242429,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.544479,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,16.29,16286610710.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242428,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.536677,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,16.25,16252607758.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242427,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,13.16,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.470925,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12i_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,40.79,40786811298.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242408,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,14.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.47961,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12i_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,45.07,45068829797.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242287,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,12.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.468291,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12i_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,39.29,39289404409.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242286,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,10.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.482272,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12i_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,34.04,34040491107.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242285,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.58,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-1_S18_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-1_S18_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.610008,s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-1_S18_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,11.1,11099179477.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242284,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-1_S18_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-1_S18_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.588123,s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-1_S18_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,12.03,12027302447.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242421,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-1_S18_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-1_S18_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.579802,s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-1_S18_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,12.02,12020931686.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242420,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-1_S18_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-1_S18_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.614887,s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-1_S18_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,11.93,11933368898.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242419,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-2_S26_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-2_S26_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.597025,s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-2_S26_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,9.67,9670985294.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242418,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-2_S26_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-2_S26_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.626269,s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-2_S26_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,10.51,10512394048.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242417,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-2_S26_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-2_S26_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577644,s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-2_S26_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,10.52,10519144528.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242416,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-2_S26_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-2_S26_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.635641,s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-2_S26_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,10.39,10393439184.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242415,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,5.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-1_S8_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-1_S8_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.546634,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-1_S8_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,15.9,15902941530.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242414,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,5.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-1_S8_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-1_S8_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.551288,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-1_S8_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,16.29,16288029940.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242413,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,4.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-1_S8_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-1_S8_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.5569,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-1_S8_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,14.73,14729014208.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242412,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,4.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-1_S8_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-1_S8_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.561915,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-1_S8_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,15.04,15041475923.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242410,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,5.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.52546,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,15.5,15500163249.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242409,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,5.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.543107,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,15.8,15803601523.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242269,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,4.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.579286,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,14.23,14226695314.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242267,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,4.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.560394,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,14.48,14475540882.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242266,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,11.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.467558,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16i_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,37.05,37051047895.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242263,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,14.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.48385,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16i_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,44.14,44137166906.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242261,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,11.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.494007,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16i_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,34.91,34914480186.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242260,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,9.42,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.530554,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16i_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,29.21,29214946160.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242282,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,1.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-1_S22_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-1_S22_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.748392,s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-1_S22_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,3.47,3470106754.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242281,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,1.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-1_S22_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-1_S22_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.753747,s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-1_S22_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,3.72,3720093206.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242279,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,1.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-1_S22_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-1_S22_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.759788,s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-1_S22_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,3.72,3720540280.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242278,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,1.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-1_S22_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-1_S22_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.730382,s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-1_S22_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,3.68,3675727312.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242277,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,3.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-2_S30_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-2_S30_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.643335,s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-2_S30_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,9.45,9453142449.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242276,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,3.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-2_S30_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-2_S30_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.631089,s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-2_S30_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,10.37,10369296228.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242275,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,3.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-2_S30_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-2_S30_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.625653,s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-2_S30_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,10.38,10376173970.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242274,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,3.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-2_S30_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-2_S30_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.633477,s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-2_S30_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,10.21,10205773998.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242407,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-1_S20_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-1_S20_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.586367,s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-1_S20_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,10.45,10450847711.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242406,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-1_S20_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-1_S20_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.584291,s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-1_S20_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,11.27,11265516145.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242322,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-1_S20_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-1_S20_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.593362,s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-1_S20_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,11.26,11262373437.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242307,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.6,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-1_S20_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-1_S20_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.606946,s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-1_S20_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,11.17,11172372001.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242271,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-2_S28_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-2_S28_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.585726,s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-2_S28_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,10.13,10130938028.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242256,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-2_S28_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-2_S28_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.574405,s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-2_S28_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,11.13,11131143646.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242245,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-2_S28_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-2_S28_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.580572,s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-2_S28_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,11.13,11134454158.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242475,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.55,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-2_S28_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-2_S28_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.590519,s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-2_S28_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,10.99,10992500429.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242464,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,11.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-1_S22_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-1_S22_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.502603,s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-1_S22_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,37.02,37022701013.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242456,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,12.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-1_S22_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-1_S22_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.458847,s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-1_S22_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,38.09,38090056712.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242405,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,11.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-1_S22_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-1_S22_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.461085,s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-1_S22_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,36.16,36158028520.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242394,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,12.02,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-1_S22_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-1_S22_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.478879,s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-1_S22_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,37.25,37249046997.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242383,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,3.76,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-2_S30_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-2_S30_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.578836,s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-2_S30_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,11.66,11656900126.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242372,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,3.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-2_S30_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-2_S30_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.558096,s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-2_S30_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,11.96,11960834436.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242364,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,3.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-2_S30_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-2_S30_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.584642,s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-2_S30_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,11.38,11381178346.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242350,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,3.77,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-2_S30_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-2_S30_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.605834,s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-2_S30_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,11.68,11682118798.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242339,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,9.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-1_S21_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-1_S21_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.524038,s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-1_S21_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,27.99,27988108312.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242235,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,9.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-1_S21_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-1_S21_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.487399,s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-1_S21_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,30.1,30104843106.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242224,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,9.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-1_S21_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-1_S21_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.480544,s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-1_S21_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,30.1,30104295509.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242333,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,9.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-1_S21_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-1_S21_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.524678,s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-1_S21_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,29.78,29776396233.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242321,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,3.6,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-2_S29_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-2_S29_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.58995,s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-2_S29_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,11.17,11173432972.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242314,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,3.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-2_S29_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-2_S29_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.607224,s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-2_S29_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,12.28,12278186501.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242175,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,3.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-2_S29_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-2_S29_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577749,s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-2_S29_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,12.28,12282249384.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242526,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,3.92,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-2_S29_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-2_S29_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.606626,s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-2_S29_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,12.14,12137209598.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242517,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,3.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-1_S23_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-1_S23_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.572325,s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-1_S23_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,9.31,9306726494.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242506,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,3.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-1_S23_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-1_S23_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.576623,s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-1_S23_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,9.57,9572123103.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242207,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,2.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-1_S23_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-1_S23_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.600535,s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-1_S23_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,8.95,8948237735.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242196,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,2.99,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-1_S23_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-1_S23_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.607121,s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-1_S23_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,9.27,9272807579.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242449,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,4.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-2_S31_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-2_S31_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.558651,s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-2_S31_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,13.45,13454144527.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242438,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,4.46,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-2_S31_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-2_S31_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.524332,s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-2_S31_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,13.83,13830862496.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242306,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,4.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-2_S31_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-2_S31_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.606035,s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-2_S31_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,12.97,12966946971.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242493,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,4.33,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-2_S31_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-2_S31_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.567536,s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-2_S31_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,13.42,13421982668.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242502,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,5.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-1_S3_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-1_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.534723,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-1_S3_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,15.88,15880840056.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242424,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,5.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-1_S3_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-1_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.51989,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-1_S3_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,16.12,16120270893.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242480,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.93,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-1_S3_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-1_S3_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.524037,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-1_S3_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,15.27,15268847244.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242283,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-1_S3_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-1_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.552279,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-1_S3_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,15.15,15149837710.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242411,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.556003,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,14.15,14153832303.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242280,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.477837,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,14.37,14365146781.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242273,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.33,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.55355,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,13.42,13419442072.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242272,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.508802,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,13.48,13476424101.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242270,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,11.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.425428,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11i_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,35.83,35828051996.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242268,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,12.69,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.442026,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11i_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,39.35,39350313141.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242265,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,10.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.475761,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11i_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,33.98,33976500567.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242264,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,9.48,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.46578,s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11i_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,29.4,29402751218.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242262,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797100,N/A,4.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01784-2_S31_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01784-2_S31_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.572815,s3://human-pangenomics/working/HPRC/HG01784/raw_data/hic/HG01784-2_S31_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01784,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01784,12.39,12385592349.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242479,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797100,N/A,4.32,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01784-2_S31_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01784-2_S31_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.571426,s3://human-pangenomics/working/HPRC/HG01784/raw_data/hic/HG01784-2_S31_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01784,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01784,13.38,13376511718.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242478,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797100,N/A,4.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01784-2_S31_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01784-2_S31_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.566998,s3://human-pangenomics/working/HPRC/HG01784/raw_data/hic/HG01784-2_S31_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01784,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01784,13.37,13370845357.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242259,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797100,N/A,4.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01784-2_S31_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01784-2_S31_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.530222,s3://human-pangenomics/working/HPRC/HG01784/raw_data/hic/HG01784-2_S31_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01784,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01784,13.25,13250075767.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242258,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,2.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-1_S1_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-1_S1_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.601321,s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-1_S1_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,8.29,8289959870.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242257,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,2.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-1_S1_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-1_S1_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.652041,s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-1_S1_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,8.97,8974786338.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242255,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,2.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-1_S1_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-1_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.614708,s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-1_S1_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,8.98,8977307221.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242254,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,2.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-1_S1_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-1_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.590258,s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-1_S1_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,8.86,8863626631.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242253,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,3.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-2_S9_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-2_S9_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.617313,s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-2_S9_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,9.65,9650777164.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242252,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,3.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-2_S9_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-2_S9_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.586206,s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-2_S9_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,10.54,10541378055.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242251,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,3.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-2_S9_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-2_S9_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.558683,s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-2_S9_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,10.54,10535494418.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242250,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,3.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-2_S9_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-2_S9_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.596591,s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-2_S9_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,10.37,10368222187.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242249,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,3.64,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-1_S24_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-1_S24_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.583929,s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-1_S24_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,11.3,11298572204.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242248,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,3.73,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-1_S24_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-1_S24_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.608902,s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-1_S24_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,11.57,11566537131.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242247,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,3.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-1_S24_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-1_S24_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.575936,s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-1_S24_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,11.07,11069248116.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242246,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,3.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-1_S24_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-1_S24_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.570708,s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-1_S24_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,11.32,11321714271.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242244,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,4.06,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-2_S32_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-2_S32_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.556892,s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-2_S32_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,12.58,12578283355.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242243,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,4.16,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-2_S32_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-2_S32_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.580289,s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-2_S32_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,12.89,12885824519.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242242,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,3.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-2_S32_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-2_S32_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.585525,s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-2_S32_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,12.24,12241096227.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242241,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,4.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-2_S32_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-2_S32_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.57334,s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-2_S32_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,12.56,12560824040.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242240,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,1.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-1_S2_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-1_S2_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.663926,s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-1_S2_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,6.09,6089288766.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242461,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,2.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-1_S2_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-1_S2_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.624771,s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-1_S2_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,6.6,6601669753.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242460,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,2.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-1_S2_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-1_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.641039,s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-1_S2_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,6.6,6604919718.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242459,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,2.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-1_S2_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-1_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.689028,s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-1_S2_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,6.52,6519022113.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242477,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,3.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-2_S10_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-2_S10_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.627653,s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-2_S10_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,10.04,10042100462.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242476,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,3.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-2_S10_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-2_S10_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.60866,s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-2_S10_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,11.08,11079359976.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242474,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,3.58,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-2_S10_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-2_S10_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.603623,s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-2_S10_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,11.09,11089554141.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242473,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,3.52,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-2_S10_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-2_S10_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.567315,s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-2_S10_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,10.9,10897343108.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242472,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.534099,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,14.68,14684168841.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242471,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.49938,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,14.88,14882988127.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242470,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.55,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.522761,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,14.12,14118755850.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242469,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.51,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.539868,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,13.97,13968616751.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242468,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,9.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.479031,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17i_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,30.88,30875082106.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242467,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,10.42,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.47092,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17i_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,32.3,32304025376.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242466,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,8.62,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.488808,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17i_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,26.71,26709413361.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242465,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,7.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.486786,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17i_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,22.81,22806162075.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242463,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.505772,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,14.06,14062996580.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242462,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.62,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.533121,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,14.33,14326153377.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242182,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.519903,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,12.97,12970060855.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242181,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.537389,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,13.17,13173351744.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242180,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,11.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.445329,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19i_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,35.42,35417826788.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242179,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,13.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.392894,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19i_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,40.3,40299352827.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242178,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,10.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.478066,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19i_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,31.16,31159100171.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242177,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,8.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.458482,s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19i_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,25.91,25905984548.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242458,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,3.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-1_S5_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-1_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.563404,s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-1_S5_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,10.85,10852127037.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242457,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,3.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-1_S5_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-1_S5_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.58974,s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-1_S5_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,11.82,11815059895.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242191,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,3.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-1_S5_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-1_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.584097,s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-1_S5_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,11.81,11813973287.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242190,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,3.77,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-1_S5_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-1_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.590675,s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-1_S5_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,11.67,11674424204.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242189,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,4.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-2_S13_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-2_S13_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.549027,s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-2_S13_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,15.35,15352495826.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242188,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,5.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-2_S13_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-2_S13_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.521443,s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-2_S13_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,16.61,16612259508.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242187,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,5.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-2_S13_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-2_S13_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.563252,s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-2_S13_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,16.61,16613671783.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242186,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,5.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-2_S13_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-2_S13_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.555217,s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-2_S13_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,16.41,16406573130.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242185,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,5.06,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.528025,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,15.68,15678477524.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242184,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,5.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.540985,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,15.88,15877680604.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242176,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.569764,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,15.35,15353059475.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242183,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.538057,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,15.06,15057987757.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242404,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,11.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.47633,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18i_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,34.47,34470837368.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242403,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,11.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.459331,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18i_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,36.67,36673265858.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242402,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,10.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.451275,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18i_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,31.4,31404653189.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242401,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,8.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.48088,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18i_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,27.1,27098330323.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242400,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.571817,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,14.47,14473925138.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242399,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.73,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.527607,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,14.67,14673914780.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242398,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.7,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.546273,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,14.57,14567183879.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242397,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.52,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.524473,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,14.01,14012189171.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242396,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,9.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.472228,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20i_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,28.6,28604467707.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242395,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,9.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.471149,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20i_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,29.97,29968611585.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242393,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,8.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.490183,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20i_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,26.81,26805199204.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242392,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,7.55,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.48997,s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20i_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,23.4,23401744757.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242391,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.52,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-1_S1_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-1_S1_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.611813,s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-1_S1_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,10.91,10908367237.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242390,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-1_S1_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-1_S1_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.588381,s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-1_S1_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,11.19,11187675916.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242389,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.48,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-1_S1_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-1_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.519883,s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-1_S1_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,10.8,10803222671.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242388,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-1_S1_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-1_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.576679,s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-1_S1_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,11.04,11042022598.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242387,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-2_S9_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-2_S9_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.591012,s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-2_S9_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,9.62,9617317510.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242386,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-2_S9_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-2_S9_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.621251,s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-2_S9_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,9.85,9854880335.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242385,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.06,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-2_S9_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-2_S9_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.581478,s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-2_S9_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,9.48,9482716711.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242384,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-2_S9_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-2_S9_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.59662,s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-2_S9_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,9.69,9691974613.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242382,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-1_S6_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-1_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.592511,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-1_S6_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,13.62,13615192282.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242381,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.46,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-1_S6_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-1_S6_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.549554,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-1_S6_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,13.83,13833181288.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242380,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-1_S6_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-1_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.568814,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-1_S6_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,13.14,13135049409.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242379,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-1_S6_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-1_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.578165,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-1_S6_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,13.01,13005431684.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242378,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,3.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.589188,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,12.2,12201618883.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242377,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.572139,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,12.41,12414632826.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242376,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.575913,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,12.41,12413702363.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242375,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,3.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.574769,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,11.92,11921026808.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242374,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,9.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.494608,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14i_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,28.06,28056392408.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242373,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,9.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.471465,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14i_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,28.51,28507899595.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242371,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,8.01,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.517213,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14i_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,24.83,24826011545.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242370,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,6.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.529189,s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14i_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,21.08,21083129517.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242369,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,4.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-1_S5_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-1_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.513182,s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-1_S5_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,13.5,13498735238.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242368,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,4.47,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-1_S5_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-1_S5_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.541266,s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-1_S5_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,13.86,13859849667.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242367,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,4.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-1_S5_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-1_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.512745,s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-1_S5_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,13.17,13167045749.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242359,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,4.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-1_S5_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-1_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.559787,s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-1_S5_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,13.52,13523916317.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242360,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,3.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-2_S13_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-2_S13_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577007,s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-2_S13_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,11.5,11497300137.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242361,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,3.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-2_S13_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-2_S13_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.55918,s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-2_S13_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,11.78,11784559031.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242362,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,3.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-2_S13_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-2_S13_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.537702,s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-2_S13_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,11.14,11135087450.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242363,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,3.7,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-2_S13_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-2_S13_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.567845,s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-2_S13_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,11.47,11474815636.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242365,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,3.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-1_S6_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-1_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.599319,s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-1_S6_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,11.95,11952237057.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242366,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,3.97,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-1_S6_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-1_S6_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.58376,s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-1_S6_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,12.3,12302107333.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242342,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,3.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-1_S6_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-1_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.583228,s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-1_S6_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,11.64,11635941925.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242343,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,3.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-1_S6_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-1_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.596229,s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-1_S6_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,12.03,12028614997.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242344,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,4.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-2_S14_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-2_S14_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.552105,s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-2_S14_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,12.75,12747435871.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242345,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,4.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-2_S14_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-2_S14_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.581126,s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-2_S14_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,13.1,13101759299.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242346,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,3.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-2_S14_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-2_S14_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.549756,s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-2_S14_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,12.35,12350569304.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242347,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,4.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-2_S14_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-2_S14_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.562295,s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-2_S14_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,12.7,12697196399.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242348,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.78,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-1_S7_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-1_S7_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.538429,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-1_S7_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,14.83,14831815272.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242349,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-1_S7_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-1_S7_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.533578,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-1_S7_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,15.04,15041101316.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242351,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-1_S7_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-1_S7_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.565042,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-1_S7_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,14.04,14039451752.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242352,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.51,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-1_S7_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-1_S7_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.553076,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-1_S7_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,13.98,13981512589.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242353,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.526772,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,14.3,14302336909.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242354,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.510395,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,14.5,14500663032.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242355,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.574072,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,13.51,13509134049.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242356,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.543852,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,13.5,13500963017.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242357,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,11.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.441498,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15i_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,36.91,36914321619.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242358,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,13.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.44424,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15i_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,41.84,41837025639.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242341,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,11.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.434257,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15i_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,34.79,34793350416.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242340,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,9.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.458188,s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15i_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,29.9,29900251317.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242338,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,5.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-1_S7_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-1_S7_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.522831,s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-1_S7_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,15.49,15485160859.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242337,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,5.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-1_S7_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-1_S7_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.518024,s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-1_S7_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,15.91,15914161942.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242221,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,4.76,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-1_S7_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-1_S7_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.532258,s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-1_S7_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,14.76,14756398358.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242220,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,4.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-1_S7_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-1_S7_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.536059,s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-1_S7_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,15.32,15315027568.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242219,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,3.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-2_S15_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-2_S15_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.538166,s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-2_S15_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,11.88,11879927823.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242336,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,3.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-2_S15_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-2_S15_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.564085,s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-2_S15_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,12.22,12222037317.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242239,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,3.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-2_S15_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-2_S15_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.51788,s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-2_S15_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,11.39,11394635181.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242238,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,3.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-2_S15_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-2_S15_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.549943,s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-2_S15_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,11.78,11779594297.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242237,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-1_S4_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-1_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.562888,s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-1_S4_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.26,13263638492.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242236,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-1_S4_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-1_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.566573,s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-1_S4_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.55,13550869907.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242234,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-1_S4_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-1_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.568687,s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-1_S4_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,12.98,12981889183.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242233,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-1_S4_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-1_S4_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.530182,s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-1_S4_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.21,13207245038.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242232,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-2_S12_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-2_S12_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.578433,s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-2_S12_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.75,13753000600.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242231,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-2_S12_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-2_S12_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.550283,s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-2_S12_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,14.08,14080492078.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242230,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.33,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-2_S12_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-2_S12_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.557953,s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-2_S12_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.41,13414715840.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242229,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-2_S12_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-2_S12_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.566993,s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-2_S12_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.75,13746864304.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242228,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797109,N/A,2.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03458-1_S17_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03458-1_S17_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.657246,s3://human-pangenomics/working/HPRC/HG03458/raw_data/hic/HG03458-1_S17_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03458,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03458,7.34,7342347586.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242227,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797109,N/A,2.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03458-1_S17_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03458-1_S17_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.664157,s3://human-pangenomics/working/HPRC/HG03458/raw_data/hic/HG03458-1_S17_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03458,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03458,7.54,7540661411.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242226,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797109,N/A,2.32,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03458-1_S17_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03458-1_S17_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.634673,s3://human-pangenomics/working/HPRC/HG03458/raw_data/hic/HG03458-1_S17_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03458,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03458,7.18,7184028769.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242225,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797109,N/A,2.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03458-1_S17_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03458-1_S17_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.60862,s3://human-pangenomics/working/HPRC/HG03458/raw_data/hic/HG03458-1_S17_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03458,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03458,7.35,7354296718.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242223,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.82,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-1_S18_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-1_S18_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577085,s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-1_S18_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,11.85,11849107556.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242222,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-1_S18_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-1_S18_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.552266,s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-1_S18_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,12.13,12134176924.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242319,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-1_S18_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-1_S18_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.574864,s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-1_S18_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,11.63,11633456348.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242318,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-1_S18_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-1_S18_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.567967,s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-1_S18_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,11.86,11859518640.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242317,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-2_S26_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-2_S26_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.593232,s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-2_S26_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,9.59,9587299787.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242218,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-2_S26_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-2_S26_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.595658,s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-2_S26_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,9.82,9824464467.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242217,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.02,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-2_S26_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-2_S26_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.572006,s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-2_S26_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,9.36,9357642820.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242216,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.08,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-2_S26_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-2_S26_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.579355,s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-2_S26_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,9.56,9559639900.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242335,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,2.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-1_S24_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-1_S24_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.651477,s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-1_S24_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,6.75,6753334539.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242334,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,2.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-1_S24_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-1_S24_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.610281,s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-1_S24_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,7.07,7070557687.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242332,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,2.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-1_S24_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-1_S24_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.655928,s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-1_S24_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,7.07,7069350018.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242331,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,2.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-1_S24_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-1_S24_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.636586,s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-1_S24_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,7.01,7012492701.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242330,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,6.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-2_S32_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-2_S32_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.510251,s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-2_S32_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,18.88,18875657885.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242329,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,6.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-2_S32_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-2_S32_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.52019,s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-2_S32_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,20.56,20556396284.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242328,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,6.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-2_S32_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-2_S32_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.5459,s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-2_S32_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,20.57,20565643644.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242327,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,6.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-2_S32_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-2_S32_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.520253,s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-2_S32_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,20.43,20430728922.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242326,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,2.87,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-1_S19_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-1_S19_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.620963,s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-1_S19_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,8.89,8894046349.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242325,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.15,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-1_S19_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-1_S19_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.60376,s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-1_S19_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,9.76,9758351664.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242324,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.15,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-1_S19_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-1_S19_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.60274,s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-1_S19_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,9.77,9768393628.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242323,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-1_S19_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-1_S19_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.602769,s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-1_S19_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,9.61,9614885527.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242320,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,2.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-2_S27_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-2_S27_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.607542,s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-2_S27_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,9.12,9122210111.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242316,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-2_S27_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-2_S27_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.647329,s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-2_S27_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,10.0,10003875652.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242172,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-2_S27_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-2_S27_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.620433,s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-2_S27_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,10.01,10007585293.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242171,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-2_S27_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-2_S27_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.605631,s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-2_S27_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,9.83,9833727946.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242315,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,4.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-1_S8_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-1_S8_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.574618,s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-1_S8_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,12.67,12669946134.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242167,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,4.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-1_S8_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-1_S8_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.53355,s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-1_S8_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,13.09,13094893749.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242166,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,3.93,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-1_S8_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-1_S8_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.543095,s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-1_S8_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,12.19,12187213960.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242165,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,4.07,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-1_S8_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-1_S8_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.591182,s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-1_S8_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,12.63,12629954975.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242164,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,5.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-2_S16_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-2_S16_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.504895,s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-2_S16_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,16.31,16312805022.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242163,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,5.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-2_S16_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-2_S16_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.512093,s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-2_S16_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,16.72,16716791220.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242313,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,5.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-2_S16_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-2_S16_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.55818,s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-2_S16_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,15.61,15608095066.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242312,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,5.21,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-2_S16_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-2_S16_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.539815,s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-2_S16_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,16.15,16149401435.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242159,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-1_S6_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-1_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.595608,s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-1_S6_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,11.13,11127181174.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242158,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-1_S6_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-1_S6_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.578868,s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-1_S6_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,12.09,12087460014.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242157,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-1_S6_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-1_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.595106,s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-1_S6_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,12.11,12106005970.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242156,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-1_S6_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-1_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.542617,s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-1_S6_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,11.93,11931251919.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242155,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-2_S14_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-2_S14_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.609444,s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-2_S14_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,10.08,10077433892.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242154,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.49,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-2_S14_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-2_S14_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.593433,s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-2_S14_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,10.83,10832689311.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242153,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.49,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-2_S14_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-2_S14_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.607336,s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-2_S14_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,10.83,10826886349.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242528,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-2_S14_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-2_S14_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.572355,s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-2_S14_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,10.67,10674467316.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242174,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,4.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-1_S2_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-1_S2_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.563411,s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-1_S2_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,14.5,14504096750.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242173,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,4.79,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-1_S2_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-1_S2_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.52518,s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-1_S2_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,14.84,14838209778.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242215,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,4.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-1_S2_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-1_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.56213,s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-1_S2_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,14.22,14224758234.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242214,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,4.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-1_S2_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-1_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.537692,s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-1_S2_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,14.45,14450030677.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242213,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,3.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-2_S10_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-2_S10_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.56808,s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-2_S10_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,10.5,10496206124.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242170,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,3.47,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-2_S10_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-2_S10_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.568986,s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-2_S10_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,10.76,10758805375.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242162,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,3.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-2_S10_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-2_S10_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.582099,s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-2_S10_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,10.35,10348962235.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242161,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,3.41,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-2_S10_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-2_S10_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.590349,s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-2_S10_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,10.58,10575504601.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242160,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-1_S3_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-1_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.561688,s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-1_S3_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,12.55,12550734996.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242527,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-1_S3_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-1_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.523654,s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-1_S3_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,13.77,13769695959.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242525,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-1_S3_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-1_S3_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.544026,s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-1_S3_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,13.78,13778551619.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242524,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-1_S3_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-1_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.567863,s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-1_S3_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,13.58,13579153216.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242523,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-2_S11_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-2_S11_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.547127,s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-2_S11_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,13.29,13292067409.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242169,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-2_S11_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-2_S11_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.547781,s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-2_S11_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,14.46,14461438438.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242168,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-2_S11_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-2_S11_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.568463,s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-2_S11_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,14.44,14438684950.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242522,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-2_S11_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-2_S11_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577051,s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-2_S11_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,14.23,14233416171.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242521,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.72,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-1_S3_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-1_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.592032,s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-1_S3_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.55,11545972577.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242520,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.82,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-1_S3_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-1_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.572946,s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-1_S3_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.85,11846461324.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242519,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.64,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-1_S3_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-1_S3_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.562171,s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-1_S3_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.28,11275281789.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242518,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-1_S3_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-1_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.573881,s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-1_S3_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.58,11579687017.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242516,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.72,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-2_S11_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-2_S11_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.572832,s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-2_S11_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.53,11528908261.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242515,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-2_S11_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-2_S11_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.573433,s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-2_S11_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.81,11807501248.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242514,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-2_S11_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-2_S11_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.613323,s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-2_S11_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.18,11177698253.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242513,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.69,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-2_S11_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-2_S11_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.608275,s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-2_S11_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.45,11451809471.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242512,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,2.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-1_S4_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-1_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.613675,s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-1_S4_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,9.24,9241439130.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242511,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,3.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-1_S4_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-1_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.593331,s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-1_S4_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,10.11,10112772020.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242510,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,3.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-1_S4_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-1_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.618289,s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-1_S4_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,10.11,10113984842.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242509,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,3.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-1_S4_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-1_S4_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.596679,s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-1_S4_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,9.99,9989587215.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242508,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,2.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-2_S12_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-2_S12_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.639034,s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-2_S12_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,7.42,7422624252.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242507,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,2.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-2_S12_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-2_S12_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.640635,s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-2_S12_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,8.04,8040583206.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242505,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,2.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-2_S12_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-2_S12_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.633691,s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-2_S12_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,8.04,8042451194.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242504,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,2.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-2_S12_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-2_S12_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.631655,s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-2_S12_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,7.92,7922840121.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242193,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,4.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-1_S2_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-1_S2_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.564106,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-1_S2_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,13.3,13298041923.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242192,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,4.32,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-1_S2_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-1_S2_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.562492,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-1_S2_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,13.39,13393435932.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242455,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,4.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-1_S2_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-1_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577364,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-1_S2_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,13.24,13235179516.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242212,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,4.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-1_S2_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-1_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.584527,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-1_S2_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,12.73,12726639314.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242211,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,5.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.516226,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,18.02,18016003549.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242210,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,5.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.518854,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,18.27,18267375506.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242209,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,5.64,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.519287,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,17.48,17479781708.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242208,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,5.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.513145,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,17.15,17146463940.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242206,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,13.69,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.446453,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10i_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,42.44,42441850095.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242205,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,15.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.472157,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10i_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,47.19,47191895994.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242204,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,12.97,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.44722,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10i_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,40.22,40216454617.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242203,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,11.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.435394,s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10i_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,34.44,34444435664.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242202,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,3.78,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-1_S7_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-1_S7_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.61564,s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-1_S7_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,11.72,11717167938.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242201,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-1_S7_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-1_S7_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.570558,s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-1_S7_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,12.8,12801556577.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242200,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-1_S7_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-1_S7_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.570399,s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-1_S7_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,12.81,12814460471.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242199,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-1_S7_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-1_S7_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.585035,s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-1_S7_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,12.66,12663787818.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242198,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-2_S15_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-2_S15_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.553335,s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-2_S15_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,14.05,14052848081.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242197,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-2_S15_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-2_S15_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.571684,s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-2_S15_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,15.21,15205724480.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242195,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-2_S15_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-2_S15_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.586585,s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-2_S15_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,15.2,15197962308.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242194,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-2_S15_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-2_S15_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577717,s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-2_S15_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,15.02,15021066704.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242435,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,5.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-1_S5_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-1_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.541506,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-1_S5_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,16.03,16028501092.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242434,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,5.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-1_S5_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-1_S5_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.574512,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-1_S5_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,16.22,16217052773.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242433,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,5.08,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-1_S5_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-1_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.559764,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-1_S5_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,15.74,15741568716.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242454,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,4.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-1_S5_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-1_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.580991,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-1_S5_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,15.34,15340327510.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242453,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,7.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.524834,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,21.81,21807050017.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242452,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,7.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.53991,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,22.22,22221232152.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242451,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,6.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.540593,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,20.64,20638270093.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242450,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,6.76,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.526534,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,20.95,20950101316.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242448,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,16.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.449159,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13i_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,52.27,52266660540.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242447,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,18.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.475519,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13i_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,55.92,55924239854.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242446,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,15.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.50701,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13i_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,47.2,47198861709.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242445,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,13.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.489479,s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13i_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,40.63,40633250382.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242444,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,4.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-1_S8_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-1_S8_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.547741,s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-1_S8_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,14.07,14066467348.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242443,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,4.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-1_S8_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-1_S8_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.545824,s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-1_S8_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,15.32,15322839268.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242442,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,4.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-1_S8_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-1_S8_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.559477,s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-1_S8_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,15.33,15329439126.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242441,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,4.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-1_S8_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-1_S8_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.556074,s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-1_S8_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,15.2,15197214990.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242440,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,5.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-2_S16_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-2_S16_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.569959,s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-2_S16_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,16.32,16322909256.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242439,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,5.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-2_S16_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-2_S16_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.522968,s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-2_S16_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,17.81,17805753536.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242437,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,5.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-2_S16_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-2_S16_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.537256,s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-2_S16_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,17.81,17807570446.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242436,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,5.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-2_S16_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-2_S16_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.561775,s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-2_S16_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,17.58,17581755267.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242295,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,3.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-1_S17_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-1_S17_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.568337,s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-1_S17_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,12.26,12256101559.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242294,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-1_S17_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-1_S17_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.598748,s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-1_S17_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,13.07,13072948865.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242293,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-1_S17_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-1_S17_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.574441,s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-1_S17_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,13.08,13084705432.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242432,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-1_S17_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-1_S17_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.574654,s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-1_S17_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,12.98,12978755728.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242311,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-2_S25_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-2_S25_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.579125,s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-2_S25_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,12.68,12680980988.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242310,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-2_S25_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-2_S25_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.556523,s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-2_S25_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,13.65,13648938374.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242309,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.41,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-2_S25_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-2_S25_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.567571,s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-2_S25_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,13.66,13657310272.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242308,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-2_S25_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-2_S25_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.571938,s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-2_S25_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,13.53,13526574718.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242305,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,3.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-1_S19_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-1_S19_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.592449,s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-1_S19_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,11.05,11052813837.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242304,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,3.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-1_S19_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-1_S19_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.588985,s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-1_S19_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,11.31,11309496506.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242303,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,3.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-1_S19_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-1_S19_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.603413,s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-1_S19_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,10.86,10859728554.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242302,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,3.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-1_S19_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-1_S19_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.587928,s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-1_S19_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,11.07,11074749106.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242301,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,4.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-2_S27_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-2_S27_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.550579,s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-2_S27_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,14.35,14353115615.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242300,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,4.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-2_S27_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-2_S27_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.563184,s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-2_S27_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,14.7,14702293665.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242299,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,4.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-2_S27_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-2_S27_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.545612,s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-2_S27_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,14.05,14049151602.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242298,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,4.62,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-2_S27_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-2_S27_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.559476,s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-2_S27_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,14.33,14333528623.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242297,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,4.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-1_S20_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-1_S20_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.544625,s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-1_S20_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,13.52,13518244805.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242296,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,4.45,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-1_S20_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-1_S20_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.539666,s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-1_S20_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,13.81,13805315933.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242492,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,4.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-1_S20_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-1_S20_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.550523,s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-1_S20_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,13.18,13183479160.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242491,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,4.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-1_S20_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-1_S20_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.53483,s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-1_S20_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,13.36,13360758809.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242490,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,3.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-2_S28_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-2_S28_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.595998,s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-2_S28_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,10.44,10435705406.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242489,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,3.46,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-2_S28_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-2_S28_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.583996,s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-2_S28_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,10.73,10730260451.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242292,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,3.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-2_S28_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-2_S28_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.562347,s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-2_S28_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,10.17,10165906652.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242291,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,3.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-2_S28_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-2_S28_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.585156,s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-2_S28_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,10.45,10445658425.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242290,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-1_S21_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-1_S21_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.579113,s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-1_S21_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.24,12240254262.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242289,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,4.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-1_S21_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-1_S21_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.578908,s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-1_S21_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.52,12522807560.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242288,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-1_S21_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-1_S21_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.560997,s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-1_S21_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,11.87,11874352869.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242503,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-1_S21_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-1_S21_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.594546,s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-1_S21_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.12,12119181785.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242501,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-2_S29_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-2_S29_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.594036,s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-2_S29_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.05,12046627353.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242500,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-2_S29_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-2_S29_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.591322,s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-2_S29_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.35,12353146997.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242499,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.79,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-2_S29_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-2_S29_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.57708,s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-2_S29_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,11.75,11750624626.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242498,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-2_S29_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-2_S29_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.599243,s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-2_S29_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.03,12025256732.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242497,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-1_S1_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-1_S1_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.521492,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-1_S1_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,19.69,19689103089.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242496,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.46,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-1_S1_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-1_S1_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.508134,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-1_S1_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,20.02,20024129403.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242495,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-1_S1_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-1_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.544839,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-1_S1_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,18.74,18739099351.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242494,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-1_S1_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-1_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.529485,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-1_S1_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,18.77,18766931778.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242426,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.50303,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,18.87,18871293988.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242425,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.529809,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,19.21,19213995724.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242423,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,5.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.550279,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,17.98,17983704070.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242422,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,5.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.53068,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,18.07,18073203675.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242488,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,14.15,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.467534,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9i_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,43.86,43857149837.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242487,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,15.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.433645,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9i_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,47.68,47679124939.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242486,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,13.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.469565,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9i_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,40.86,40857911928.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242485,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,11.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.461973,s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9i_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,35.26,35264086975.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242484,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-1_S4_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-1_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.51074,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-1_S4_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,16.08,16083581140.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242483,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-1_S4_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-1_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.514144,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-1_S4_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,16.31,16305974272.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242482,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-1_S4_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-1_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.527647,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-1_S4_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,15.64,15640822549.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242481,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.02,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-1_S4_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-1_S4_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.505313,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-1_S4_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,15.55,15554368820.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242431,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.532822,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,17.15,17148483684.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242430,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.509521,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,17.38,17376099145.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242429,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.527273,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,16.29,16285604458.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242428,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.514582,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,16.25,16251563719.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242427,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,13.16,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.450139,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12i_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,40.78,40783737096.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242408,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,14.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.443745,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12i_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,45.07,45067101993.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242287,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,12.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.447935,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12i_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,39.29,39287924676.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242286,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,10.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.473899,s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12i_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,34.04,34039056390.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242285,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.58,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-1_S18_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-1_S18_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.601875,s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-1_S18_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,11.1,11098297137.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242284,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-1_S18_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-1_S18_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.595815,s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-1_S18_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,12.03,12026700245.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242421,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-1_S18_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-1_S18_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.598198,s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-1_S18_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,12.02,12020309550.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242420,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-1_S18_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-1_S18_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.574895,s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-1_S18_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,11.93,11932764485.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242419,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-2_S26_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-2_S26_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.593732,s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-2_S26_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,9.67,9670160093.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242418,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-2_S26_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-2_S26_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.588998,s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-2_S26_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,10.51,10511815847.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242417,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-2_S26_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-2_S26_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.580557,s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-2_S26_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,10.52,10518532134.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242416,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-2_S26_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-2_S26_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.590195,s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-2_S26_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,10.39,10392835274.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242415,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,5.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-1_S8_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-1_S8_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.49203,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-1_S8_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,15.9,15901873018.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242414,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,5.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-1_S8_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-1_S8_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.520439,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-1_S8_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,16.29,16287207571.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242413,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,4.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-1_S8_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-1_S8_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.529462,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-1_S8_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,14.73,14728119611.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242412,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,4.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-1_S8_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-1_S8_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.504581,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-1_S8_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,15.04,15040514196.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242410,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,5.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.496052,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,15.5,15499013952.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242409,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,5.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.507463,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,15.8,15802649569.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242269,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,4.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.539783,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,14.23,14225747009.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242267,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,4.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.564607,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,14.47,14474485161.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242266,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,11.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.425627,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16i_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,37.05,37048158449.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242263,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,14.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.435221,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16i_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,44.14,44135016189.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242261,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,11.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.448822,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16i_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,34.91,34912919193.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242260,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,9.42,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.443759,s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16i_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,29.21,29213614599.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242282,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,1.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-1_S22_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-1_S22_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.757607,s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-1_S22_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,3.47,3469860160.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242281,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,1.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-1_S22_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-1_S22_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.747719,s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-1_S22_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,3.72,3719930534.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242279,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,1.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-1_S22_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-1_S22_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.718086,s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-1_S22_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,3.72,3720373007.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242278,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,1.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-1_S22_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-1_S22_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.765865,s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-1_S22_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,3.68,3675576738.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242277,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,3.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-2_S30_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-2_S30_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.581919,s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-2_S30_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,9.45,9452410580.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242276,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,3.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-2_S30_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-2_S30_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.622021,s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-2_S30_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,10.37,10368742664.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242275,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,3.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-2_S30_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-2_S30_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.588899,s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-2_S30_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,10.38,10375607032.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242274,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,3.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-2_S30_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-2_S30_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.582213,s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-2_S30_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,10.21,10205214056.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310981,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021637,N/A,7.42,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00126-1_FC1_S3_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00126-1_FC1_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.456062,s3://human-pangenomics/working/HPRC/HG00126/raw_data/hic/HG00126-1_FC1_S3_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00126,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00126,23.01,23014404072.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310980,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021637,N/A,6.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00126-1_FC2_S3_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00126-1_FC2_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.494569,s3://human-pangenomics/working/HPRC/HG00126/raw_data/hic/HG00126-1_FC2_S3_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00126,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00126,21.64,21643319995.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310819,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021637,N/A,10.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00126-2_FC1_S4_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00126-2_FC1_S4_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.416005,s3://human-pangenomics/working/HPRC/HG00126/raw_data/hic/HG00126-2_FC1_S4_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00126,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00126,33.28,33281084483.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310952,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021637,N/A,10.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00126-2_FC2_S4_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00126-2_FC2_S4_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.42042,s3://human-pangenomics/working/HPRC/HG00126/raw_data/hic/HG00126-2_FC2_S4_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00126,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00126,31.1,31102901178.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310941,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021641,N/A,5.92,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00128-1_FC1_S9_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00128-1_FC1_S9_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.461992,s3://human-pangenomics/working/HPRC/HG00128/raw_data/hic/HG00128-1_FC1_S9_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00128,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00128,18.34,18338855625.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310906,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021641,N/A,5.64,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00128-1_FC2_S9_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00128-1_FC2_S9_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.498659,s3://human-pangenomics/working/HPRC/HG00128/raw_data/hic/HG00128-1_FC2_S9_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00128,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00128,17.48,17480349957.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310895,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021641,N/A,5.52,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00128-2_FC1_S10_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00128-2_FC1_S10_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.519285,s3://human-pangenomics/working/HPRC/HG00128/raw_data/hic/HG00128-2_FC1_S10_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00128,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00128,17.12,17124632311.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310884,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021641,N/A,5.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00128-2_FC2_S10_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00128-2_FC2_S10_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.558467,s3://human-pangenomics/working/HPRC/HG00128/raw_data/hic/HG00128-2_FC2_S10_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00128,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00128,16.27,16272984308.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310849,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021638,N/A,7.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00133-1_FC1_S5_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00133-1_FC1_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.481832,s3://human-pangenomics/working/HPRC/HG00133/raw_data/hic/HG00133-1_FC1_S5_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00133,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00133,21.81,21805365041.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310838,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021638,N/A,6.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00133-1_FC2_S5_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00133-1_FC2_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.453404,s3://human-pangenomics/working/HPRC/HG00133/raw_data/hic/HG00133-1_FC2_S5_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00133,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00133,20.49,20487595742.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310979,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021638,N/A,5.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00133-2_FC1_S6_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00133-2_FC1_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.513267,s3://human-pangenomics/working/HPRC/HG00133/raw_data/hic/HG00133-2_FC1_S6_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00133,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00133,15.63,15627199286.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310968,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021638,N/A,4.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00133-2_FC2_S6_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00133-2_FC2_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.527565,s3://human-pangenomics/working/HPRC/HG00133/raw_data/hic/HG00133-2_FC2_S6_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00133,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00133,14.71,14710505617.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310957,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021634,N/A,8.55,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00146-1_FC1_S5_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00146-1_FC1_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.461355,s3://human-pangenomics/working/HPRC/HG00146/raw_data/hic/HG00146-1_FC1_S5_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00146,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00146,26.5,26496294197.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310922,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021634,N/A,8.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00146-1_FC2_S5_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00146-1_FC2_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.476218,s3://human-pangenomics/working/HPRC/HG00146/raw_data/hic/HG00146-1_FC2_S5_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00146,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00146,27.36,27358753045.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310911,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021634,N/A,7.73,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00146-2_FC1_S6_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00146-2_FC1_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.50744,s3://human-pangenomics/working/HPRC/HG00146/raw_data/hic/HG00146-2_FC1_S6_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00146,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00146,23.96,23962537602.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310876,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021634,N/A,8.01,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00146-2_FC2_S6_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00146-2_FC2_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.501278,s3://human-pangenomics/working/HPRC/HG00146/raw_data/hic/HG00146-2_FC2_S6_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00146,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00146,24.83,24830283262.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310865,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021635,N/A,6.16,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00232-1_FC1_S7_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00232-1_FC1_S7_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.486337,s3://human-pangenomics/working/HPRC/HG00232/raw_data/hic/HG00232-1_FC1_S7_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00232,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00232,19.1,19099015899.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310830,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021635,N/A,6.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00232-1_FC2_S7_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00232-1_FC2_S7_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.510446,s3://human-pangenomics/working/HPRC/HG00232/raw_data/hic/HG00232-1_FC2_S7_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00232,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00232,19.31,19310675468.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310821,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021635,N/A,8.01,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00232-2_FC1_S8_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00232-2_FC1_S8_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.441484,s3://human-pangenomics/working/HPRC/HG00232/raw_data/hic/HG00232-2_FC1_S8_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00232,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00232,24.84,24837421032.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310820,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021635,N/A,8.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00232-2_FC2_S8_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00232-2_FC2_S8_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.459377,s3://human-pangenomics/working/HPRC/HG00232/raw_data/hic/HG00232-2_FC2_S8_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00232,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00232,25.21,25214121638.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310818,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021639,N/A,6.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00290-1_FC1_S7_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00290-1_FC1_S7_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.4654,s3://human-pangenomics/working/HPRC/HG00290/raw_data/hic/HG00290-1_FC1_S7_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00290,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00290,19.5,19497247142.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310817,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021639,N/A,6.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00290-1_FC2_S7_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00290-1_FC2_S7_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.484694,s3://human-pangenomics/working/HPRC/HG00290/raw_data/hic/HG00290-1_FC2_S7_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00290,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00290,19.12,19123573331.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310816,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021639,N/A,7.47,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00290-2_FC1_S8_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00290-2_FC1_S8_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.48162,s3://human-pangenomics/working/HPRC/HG00290/raw_data/hic/HG00290-2_FC1_S8_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00290,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00290,23.17,23168123129.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310815,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021639,N/A,7.42,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00290-2_FC2_S8_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00290-2_FC2_S8_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.50788,s3://human-pangenomics/working/HPRC/HG00290/raw_data/hic/HG00290-2_FC2_S8_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00290,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00290,23.0,22995756931.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310814,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021632,N/A,7.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00320-1_FC1_S9_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00320-1_FC1_S9_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.506774,s3://human-pangenomics/working/HPRC/HG00320/raw_data/hic/HG00320-1_FC1_S9_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00320,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00320,21.86,21859015341.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310813,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021632,N/A,7.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00320-1_FC2_S9_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00320-1_FC2_S9_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.48307,s3://human-pangenomics/working/HPRC/HG00320/raw_data/hic/HG00320-1_FC2_S9_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00320,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00320,22.6,22604932087.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310812,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021632,N/A,11.46,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00320-2_FC1_S10_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00320-2_FC1_S10_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.439958,s3://human-pangenomics/working/HPRC/HG00320/raw_data/hic/HG00320-2_FC1_S10_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00320,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00320,35.52,35516787765.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310811,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021632,N/A,11.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00320-2_FC2_S10_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00320-2_FC2_S10_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.465434,s3://human-pangenomics/working/HPRC/HG00320/raw_data/hic/HG00320-2_FC2_S10_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00320,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00320,36.76,36761442562.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310954,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021636,N/A,10.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00321-1_FC1_S11_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00321-1_FC1_S11_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.445028,s3://human-pangenomics/working/HPRC/HG00321/raw_data/hic/HG00321-1_FC1_S11_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00321,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00321,31.77,31765796916.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310953,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021636,N/A,10.52,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00321-1_FC2_S11_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00321-1_FC2_S11_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.435627,s3://human-pangenomics/working/HPRC/HG00321/raw_data/hic/HG00321-1_FC2_S11_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00321,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00321,32.62,32618282667.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310951,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021636,N/A,9.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00321-2_FC1_S12_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00321-2_FC1_S12_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.440311,s3://human-pangenomics/working/HPRC/HG00321/raw_data/hic/HG00321-2_FC1_S12_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00321,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00321,28.72,28716418960.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310950,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021636,N/A,9.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00321-2_FC2_S12_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00321-2_FC2_S12_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.477987,s3://human-pangenomics/working/HPRC/HG00321/raw_data/hic/HG00321-2_FC2_S12_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00321,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00321,29.65,29645490401.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310949,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621943,N/A,24.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00408-1_S4_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00408-1_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.402711,s3://human-pangenomics/working/HPRC/HG00408/raw_data/hic/HG00408-1_S4_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00408,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00408,75.59,75586775321.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310948,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621943,N/A,17.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00408-2_S4_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00408-2_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.439714,s3://human-pangenomics/working/HPRC/HG00408/raw_data/hic/HG00408-2_S4_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00408,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00408,55.21,55207426647.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310947,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758780,N/A,8.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00558-1_S4_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00558-1_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.465973,s3://human-pangenomics/working/HPRC/HG00558/raw_data/hic/HG00558-1_S4_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00558,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00558,27.6,27603885539.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310946,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758780,N/A,10.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00558-2_S8_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00558-2_S8_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.482983,s3://human-pangenomics/working/HPRC/HG00558/raw_data/hic/HG00558-2_S8_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00558,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00558,32.1,32101602796.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310945,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621944,N/A,32.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00597-1_S1_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00597-1_S1_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.406575,s3://human-pangenomics/working/HPRC/HG00597/raw_data/hic/HG00597-1_S1_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00597,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00597,101.28,101280993154.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310944,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621944,N/A,19.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00597-2_S1_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00597-2_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.417803,s3://human-pangenomics/working/HPRC/HG00597/raw_data/hic/HG00597-2_S1_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00597,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00597,60.46,60459807174.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310943,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758781,N/A,28.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00639-1_S6_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00639-1_S6_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.424694,s3://human-pangenomics/working/HPRC/HG00639/raw_data/hic/HG00639-1_S6_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00639,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00639,88.85,88846013898.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310942,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758781,N/A,17.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00639-2_S6_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00639-2_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.454326,s3://human-pangenomics/working/HPRC/HG00639/raw_data/hic/HG00639-2_S6_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00639,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00639,55.62,55624447424.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310940,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797096,N/A,15.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00658-1_S6_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00658-1_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.407118,s3://human-pangenomics/working/HPRC/HG00658/raw_data/hic/HG00658-1_S6_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00658,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00658,48.7,48698842692.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310939,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797096,N/A,16.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00658-2_S12_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00658-2_S12_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.425113,s3://human-pangenomics/working/HPRC/HG00658/raw_data/hic/HG00658-2_S12_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00658,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00658,50.95,50947499509.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310938,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021616,N/A,6.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00867-1_FC1_S7_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00867-1_FC1_S7_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.497153,s3://human-pangenomics/working/HPRC/HG00867/raw_data/hic/HG00867-1_FC1_S7_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00867,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00867,19.55,19551234323.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310937,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021616,N/A,6.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00867-1_FC2_S7_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00867-1_FC2_S7_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.492661,s3://human-pangenomics/working/HPRC/HG00867/raw_data/hic/HG00867-1_FC2_S7_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00867,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00867,19.4,19398350296.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310936,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021616,N/A,16.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00867-2_FC1_S8_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00867-2_FC1_S8_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.447926,s3://human-pangenomics/working/HPRC/HG00867/raw_data/hic/HG00867-2_FC1_S8_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00867,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00867,50.66,50659452513.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310935,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021616,N/A,16.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00867-2_FC2_S8_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00867-2_FC2_S8_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.446306,s3://human-pangenomics/working/HPRC/HG00867/raw_data/hic/HG00867-2_FC2_S8_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00867,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00867,50.3,50295251838.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310934,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758782,N/A,6.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01074-1_S1_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01074-1_S1_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.530659,s3://human-pangenomics/working/HPRC/HG01074/raw_data/hic/HG01074-1_S1_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01074,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01074,21.63,21626785797.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310933,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758782,N/A,9.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01074-2_S5_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01074-2_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.503104,s3://human-pangenomics/working/HPRC/HG01074/raw_data/hic/HG01074-2_S5_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01074,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01074,30.02,30020586028.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310932,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758783,N/A,37.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01081-1_S5_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01081-1_S5_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.416466,s3://human-pangenomics/working/HPRC/HG01081/raw_data/hic/HG01081-1_S5_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01081,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01081,115.92,115919387211.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310931,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758783,N/A,17.73,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01081-2_S5_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01081-2_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.432473,s3://human-pangenomics/working/HPRC/HG01081/raw_data/hic/HG01081-2_S5_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01081,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01081,54.96,54958779326.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310905,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797097,N/A,12.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01150-1_S5_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01150-1_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.436529,s3://human-pangenomics/working/HPRC/HG01150/raw_data/hic/HG01150-1_S5_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01150,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01150,38.97,38965707191.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310904,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797097,N/A,10.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01150-2_S11_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01150-2_S11_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.451094,s3://human-pangenomics/working/HPRC/HG01150/raw_data/hic/HG01150-2_S11_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01150,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01150,32.96,32958728626.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310903,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797098,N/A,44.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01252-2_S2_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01252-2_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.42038,s3://human-pangenomics/working/HPRC/HG01252/raw_data/hic/HG01252-2_S2_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01252,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01252,137.33,137329443161.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310902,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021633,N/A,5.41,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01786-1_FC1_S1_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01786-1_FC1_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.53728,s3://human-pangenomics/working/HPRC/HG01786/raw_data/hic/HG01786-1_FC1_S1_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01786,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01786,16.79,16785803411.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310901,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021633,N/A,5.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01786-1_FC2_S1_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01786-1_FC2_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.497086,s3://human-pangenomics/working/HPRC/HG01786/raw_data/hic/HG01786-1_FC2_S1_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01786,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01786,16.21,16208070616.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310900,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021633,N/A,5.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01786-2_FC1_S2_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01786-2_FC1_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.487939,s3://human-pangenomics/working/HPRC/HG01786/raw_data/hic/HG01786-2_FC1_S2_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01786,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01786,18.53,18534527163.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310899,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021633,N/A,5.72,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01786-2_FC2_S2_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01786-2_FC2_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.489055,s3://human-pangenomics/working/HPRC/HG01786/raw_data/hic/HG01786-2_FC2_S2_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01786,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01786,17.72,17723207636.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310898,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797101,N/A,13.07,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01940-2_S10_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01940-2_S10_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.353777,s3://human-pangenomics/working/HPRC/HG01940/raw_data/hic/HG01940-2_S10_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01940,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01940,40.53,40532207314.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310897,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797103,N/A,25.93,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01969-1_S3_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01969-1_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.409527,s3://human-pangenomics/working/HPRC/HG01969/raw_data/hic/HG01969-1_S3_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01969,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01969,80.38,80380642385.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310896,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797103,N/A,22.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01969-2_S3_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01969-2_S3_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.428637,s3://human-pangenomics/working/HPRC/HG01969/raw_data/hic/HG01969-2_S3_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01969,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01969,68.33,68330824416.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310894,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621948,N/A,8.99,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02015-1_S3_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02015-1_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.474905,s3://human-pangenomics/working/HPRC/HG02015/raw_data/hic/HG02015-1_S3_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02015,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02015,27.86,27863340987.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310893,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621949,N/A,12.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02056-1_S1_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02056-1_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.401986,s3://human-pangenomics/working/HPRC/HG02056/raw_data/hic/HG02056-1_S1_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02056,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02056,38.88,38875139656.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310892,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621949,N/A,12.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02056-2_S5_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02056-2_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.412847,s3://human-pangenomics/working/HPRC/HG02056/raw_data/hic/HG02056-2_S5_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02056,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02056,37.5,37502509943.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310891,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621950,N/A,40.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02129-1_S2_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02129-1_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.409818,s3://human-pangenomics/working/HPRC/HG02129/raw_data/hic/HG02129-1_S2_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02129,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02129,124.6,124595417314.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310890,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621950,N/A,9.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02129-2_S6_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02129-2_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.454769,s3://human-pangenomics/working/HPRC/HG02129/raw_data/hic/HG02129-2_S6_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02129,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02129,29.8,29800157587.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310889,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021617,N/A,7.01,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02178-1_FC1_S9_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02178-1_FC1_S9_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.47463,s3://human-pangenomics/working/HPRC/HG02178/raw_data/hic/HG02178-1_FC1_S9_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02178,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02178,21.74,21744973497.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310888,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021617,N/A,6.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02178-1_FC2_S9_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02178-1_FC2_S9_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.502882,s3://human-pangenomics/working/HPRC/HG02178/raw_data/hic/HG02178-1_FC2_S9_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02178,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02178,21.16,21164708885.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310887,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021617,N/A,4.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02178-2_FC1_S10_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02178-2_FC1_S10_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.559189,s3://human-pangenomics/working/HPRC/HG02178/raw_data/hic/HG02178-2_FC1_S10_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02178,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02178,13.45,13449042406.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310886,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021617,N/A,4.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02178-2_FC2_S10_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02178-2_FC2_S10_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.526419,s3://human-pangenomics/working/HPRC/HG02178/raw_data/hic/HG02178-2_FC2_S10_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02178,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02178,13.16,13164963690.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310885,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621952,N/A,17.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02258-2_S7_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02258-2_S7_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.400263,s3://human-pangenomics/working/HPRC/HG02258/raw_data/hic/HG02258-2_S7_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02258,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02258,55.18,55183613645.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310883,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021615,N/A,7.6,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02392-1_FC1_S5_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02392-1_FC1_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.518886,s3://human-pangenomics/working/HPRC/HG02392/raw_data/hic/HG02392-1_FC1_S5_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02392,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02392,23.55,23554018125.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310858,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021615,N/A,7.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02392-1_FC2_S5_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02392-1_FC2_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.496335,s3://human-pangenomics/working/HPRC/HG02392/raw_data/hic/HG02392-1_FC2_S5_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02392,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02392,23.25,23252301099.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310857,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021615,N/A,5.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02392-2_FC1_S6_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02392-2_FC1_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.531586,s3://human-pangenomics/working/HPRC/HG02392/raw_data/hic/HG02392-2_FC1_S6_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02392,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02392,15.62,15616342990.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310856,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021615,N/A,4.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02392-2_FC2_S6_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02392-2_FC2_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.552625,s3://human-pangenomics/working/HPRC/HG02392/raw_data/hic/HG02392-2_FC2_S6_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02392,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02392,15.33,15330246008.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310855,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758786,N/A,12.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02451-1_S2_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02451-1_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.40241,s3://human-pangenomics/working/HPRC/HG02451/raw_data/hic/HG02451-1_S2_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02451,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02451,39.21,39210516394.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310854,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758786,N/A,11.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02451-2_S8_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02451-2_S8_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.389143,s3://human-pangenomics/working/HPRC/HG02451/raw_data/hic/HG02451-2_S8_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02451,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02451,36.41,36412020257.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310853,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797105,N/A,33.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02514-1_S5_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02514-1_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.425097,s3://human-pangenomics/working/HPRC/HG02514/raw_data/hic/HG02514-1_S5_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02514,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02514,103.15,103145633415.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310852,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797105,N/A,25.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02514-2_S6_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02514-2_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.393691,s3://human-pangenomics/working/HPRC/HG02514/raw_data/hic/HG02514-2_S6_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02514,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02514,80.26,80256080824.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310851,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021657,N/A,7.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02583-1_FC1_S15_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02583-1_FC1_S15_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.52969,s3://human-pangenomics/working/HPRC/HG02583/raw_data/hic/HG02583-1_FC1_S15_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02583,24.43,24428567694.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310850,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021657,N/A,8.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02583-1_FC2_S15_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02583-1_FC2_S15_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.528616,s3://human-pangenomics/working/HPRC/HG02583/raw_data/hic/HG02583-1_FC2_S15_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02583,24.92,24916814416.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310848,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021657,N/A,7.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02583-2_FC1_S16_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02583-2_FC1_S16_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.493089,s3://human-pangenomics/working/HPRC/HG02583/raw_data/hic/HG02583-2_FC1_S16_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02583,22.28,22281528139.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310847,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021657,N/A,7.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02583-2_FC2_S16_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02583-2_FC2_S16_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.550728,s3://human-pangenomics/working/HPRC/HG02583/raw_data/hic/HG02583-2_FC2_S16_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02583,22.8,22801913701.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310846,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758787,N/A,3.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02735-1_S1_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02735-1_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.537195,s3://human-pangenomics/working/HPRC/HG02735/raw_data/hic/HG02735-1_S1_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02735,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02735,10.48,10480992446.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310845,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758787,N/A,10.76,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02735-2_S7_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02735-2_S7_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.350536,s3://human-pangenomics/working/HPRC/HG02735/raw_data/hic/HG02735-2_S7_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02735,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02735,33.35,33352232512.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310844,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758789,N/A,28.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03017-1_S3_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03017-1_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.4146,s3://human-pangenomics/working/HPRC/HG03017/raw_data/hic/HG03017-1_S3_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03017,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03017,87.16,87156808155.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310843,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758789,N/A,27.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03017-2_S4_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03017-2_S4_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.37944,s3://human-pangenomics/working/HPRC/HG03017/raw_data/hic/HG03017-2_S4_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03017,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03017,86.38,86375269452.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310842,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758790,N/A,8.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03041-1_S3_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03041-1_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.496384,s3://human-pangenomics/working/HPRC/HG03041/raw_data/hic/HG03041-1_S3_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03041,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03041,25.74,25740160036.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310841,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758790,N/A,8.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03041-2_S7_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03041-2_S7_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.492089,s3://human-pangenomics/working/HPRC/HG03041/raw_data/hic/HG03041-2_S7_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03041,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03041,27.12,27119442356.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310840,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797108,N/A,60.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03050-1_S2_L001_R2_001.fastq.gz,bam,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03050-1_S2_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.423403,s3://human-pangenomics/working/HPRC/HG03050/raw_data/hic/HG03050-1_S2_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03050,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03050,188.12,188117962773.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310839,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797108,N/A,11.69,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03050-2_S6_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03050-2_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.476047,s3://human-pangenomics/working/HPRC/HG03050/raw_data/hic/HG03050-2_S6_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03050,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03050,36.25,36254239904.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310837,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758794,N/A,21.06,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03239-1_S1_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03239-1_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.418687,s3://human-pangenomics/working/HPRC/HG03239/raw_data/hic/HG03239-1_S1_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03239,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03239,65.28,65277299547.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310836,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758794,N/A,6.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03239-2_S2_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03239-2_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.505738,s3://human-pangenomics/working/HPRC/HG03239/raw_data/hic/HG03239-2_S2_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03239,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03239,19.54,19542904861.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310835,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021631,N/A,7.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03270-1_FC1_S1_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03270-1_FC1_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.489839,s3://human-pangenomics/working/HPRC/HG03270/raw_data/hic/HG03270-1_FC1_S1_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03270,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03270,21.69,21691936257.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310810,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021631,N/A,7.15,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03270-1_FC2_S1_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03270-1_FC2_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.456019,s3://human-pangenomics/working/HPRC/HG03270/raw_data/hic/HG03270-1_FC2_S1_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03270,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03270,22.17,22171447478.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310809,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021631,N/A,10.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03270-2_FC1_S2_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03270-2_FC1_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.4784,s3://human-pangenomics/working/HPRC/HG03270/raw_data/hic/HG03270-2_FC1_S2_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03270,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03270,31.81,31810967811.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310808,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021631,N/A,10.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03270-2_FC2_S2_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03270-2_FC2_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.494294,s3://human-pangenomics/working/HPRC/HG03270/raw_data/hic/HG03270-2_FC2_S2_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03270,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03270,32.76,32756866692.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310807,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021645,N/A,3.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03583-1_FC1_S15_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03583-1_FC1_S15_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.587735,s3://human-pangenomics/working/HPRC/HG03583/raw_data/hic/HG03583-1_FC1_S15_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03583,10.27,10268000000.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310806,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021645,N/A,3.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03583-1_FC2_S15_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03583-1_FC2_S15_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.555637,s3://human-pangenomics/working/HPRC/HG03583/raw_data/hic/HG03583-1_FC2_S15_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03583,9.66,9656429011.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310805,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021645,N/A,3.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03583-2_FC1_S16_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03583-2_FC1_S16_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.559499,s3://human-pangenomics/working/HPRC/HG03583/raw_data/hic/HG03583-2_FC1_S16_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03583,12.12,12121397556.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310804,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021645,N/A,3.79,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03583-2_FC2_S16_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03583-2_FC2_S16_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.557892,s3://human-pangenomics/working/HPRC/HG03583/raw_data/hic/HG03583-2_FC2_S16_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03583,11.74,11736739401.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310976,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621958,N/A,10.32,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03834-1_S4_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03834-1_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.43792,s3://human-pangenomics/working/HPRC/HG03834/raw_data/hic/HG03834-1_S4_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03834,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03834,31.98,31979838510.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310975,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621958,N/A,22.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03834-2_S8_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03834-2_S8_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.391397,s3://human-pangenomics/working/HPRC/HG03834/raw_data/hic/HG03834-2_S8_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03834,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03834,69.88,69883486748.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310974,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021625,N/A,3.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03874-1_FC1_S3_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03874-1_FC1_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577744,s3://human-pangenomics/working/HPRC/HG03874/raw_data/hic/HG03874-1_FC1_S3_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03874,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03874,10.85,10847832903.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310973,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021625,N/A,3.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03874-1_FC2_S3_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03874-1_FC2_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.546948,s3://human-pangenomics/working/HPRC/HG03874/raw_data/hic/HG03874-1_FC2_S3_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03874,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03874,10.44,10442312286.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310972,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021625,N/A,5.62,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03874-2_FC1_S4_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03874-2_FC1_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.546283,s3://human-pangenomics/working/HPRC/HG03874/raw_data/hic/HG03874-2_FC1_S4_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03874,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03874,17.42,17415838378.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310971,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021625,N/A,5.48,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03874-2_FC2_S4_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03874-2_FC2_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.528561,s3://human-pangenomics/working/HPRC/HG03874/raw_data/hic/HG03874-2_FC2_S4_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03874,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03874,17.0,17001269237.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310970,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021643,N/A,7.14,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18505-1_FC1_S13_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18505-1_FC1_S13_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.467255,s3://human-pangenomics/working/HPRC/NA18505/raw_data/hic/NA18505-1_FC1_S13_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18505,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18505,22.14,22139961713.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310969,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021643,N/A,6.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18505-1_FC2_S13_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18505-1_FC2_S13_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.489725,s3://human-pangenomics/working/HPRC/NA18505/raw_data/hic/NA18505-1_FC2_S13_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18505,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18505,21.1,21101450908.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310967,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021643,N/A,5.58,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18505-2_FC1_S14_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18505-2_FC1_S14_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.5285,s3://human-pangenomics/working/HPRC/NA18505/raw_data/hic/NA18505-2_FC1_S14_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18505,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18505,17.31,17310353100.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310966,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021643,N/A,5.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18505-2_FC2_S14_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18505-2_FC2_S14_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.487172,s3://human-pangenomics/working/HPRC/NA18505/raw_data/hic/NA18505-2_FC2_S14_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18505,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18505,16.65,16645942681.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310965,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021626,N/A,5.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18508-1_FC1_S7_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18508-1_FC1_S7_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.511853,s3://human-pangenomics/working/HPRC/NA18508/raw_data/hic/NA18508-1_FC1_S7_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18508,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18508,17.14,17138703246.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310964,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021626,N/A,5.45,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18508-1_FC2_S7_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18508-1_FC2_S7_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.506867,s3://human-pangenomics/working/HPRC/NA18508/raw_data/hic/NA18508-1_FC2_S7_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18508,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18508,16.89,16893840740.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310963,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021626,N/A,3.32,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18508-2_FC1_S8_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18508-2_FC1_S8_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.549076,s3://human-pangenomics/working/HPRC/NA18508/raw_data/hic/NA18508-2_FC1_S8_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18508,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18508,10.28,10283027218.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310962,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021626,N/A,3.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18508-2_FC2_S8_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18508-2_FC2_S8_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.615152,s3://human-pangenomics/working/HPRC/NA18508/raw_data/hic/NA18508-2_FC2_S8_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18508,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18508,9.88,9883300622.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310961,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021619,N/A,3.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18608-1_FC1_S11_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18608-1_FC1_S11_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.587437,s3://human-pangenomics/working/HPRC/NA18608/raw_data/hic/NA18608-1_FC1_S11_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18608,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18608,12.29,12289594493.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310960,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021619,N/A,3.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18608-1_FC2_S11_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18608-1_FC2_S11_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.585861,s3://human-pangenomics/working/HPRC/NA18608/raw_data/hic/NA18608-1_FC2_S11_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18608,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18608,11.87,11872385570.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310959,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021619,N/A,4.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18608-2_FC1_S12_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18608-2_FC1_S12_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.558086,s3://human-pangenomics/working/HPRC/NA18608/raw_data/hic/NA18608-2_FC1_S12_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18608,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18608,15.3,15304368987.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310958,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021619,N/A,4.78,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18608-2_FC2_S12_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18608-2_FC2_S12_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.546922,s3://human-pangenomics/working/HPRC/NA18608/raw_data/hic/NA18608-2_FC2_S12_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18608,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18608,14.81,14807755355.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310956,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021618,N/A,5.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18620-1_FC1_S13_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18620-1_FC1_S13_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.512003,s3://human-pangenomics/working/HPRC/NA18620/raw_data/hic/NA18620-1_FC1_S13_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18620,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18620,16.71,16711418697.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310955,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021618,N/A,5.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18620-1_FC2_S13_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18620-1_FC2_S13_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.527546,s3://human-pangenomics/working/HPRC/NA18620/raw_data/hic/NA18620-1_FC2_S13_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18620,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18620,16.44,16444896902.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310930,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021618,N/A,6.45,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18620-2_FC1_S14_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18620-2_FC1_S14_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.491903,s3://human-pangenomics/working/HPRC/NA18620/raw_data/hic/NA18620-2_FC1_S14_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18620,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18620,20.01,20009587877.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310929,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021618,N/A,6.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18620-2_FC2_S14_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18620-2_FC2_S14_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.495146,s3://human-pangenomics/working/HPRC/NA18620/raw_data/hic/NA18620-2_FC2_S14_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18620,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18620,19.83,19832201080.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310928,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021621,N/A,16.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18952-1_FC1_S13_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18952-1_FC1_S13_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.440657,s3://human-pangenomics/working/HPRC/NA18952/raw_data/hic/NA18952-1_FC1_S13_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18952,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18952,51.48,51483278615.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310927,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021621,N/A,17.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18952-1_FC2_S13_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18952-1_FC2_S13_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.425158,s3://human-pangenomics/working/HPRC/NA18952/raw_data/hic/NA18952-1_FC2_S13_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18952,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18952,54.53,54534807717.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310926,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021621,N/A,12.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18952-2_FC1_S14_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18952-2_FC1_S14_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.488041,s3://human-pangenomics/working/HPRC/NA18952/raw_data/hic/NA18952-2_FC1_S14_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18952,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18952,37.59,37586941895.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310925,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021621,N/A,12.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18952-2_FC2_S14_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18952-2_FC2_S14_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.445759,s3://human-pangenomics/working/HPRC/NA18952/raw_data/hic/NA18952-2_FC2_S14_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18952,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18952,38.07,38068632499.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310924,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021620,N/A,4.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18974-1_FC1_S15_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18974-1_FC1_S15_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.552761,s3://human-pangenomics/working/HPRC/NA18974/raw_data/hic/NA18974-1_FC1_S15_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18974,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18974,12.4,12402378205.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310923,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021620,N/A,3.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18974-1_FC2_S15_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18974-1_FC2_S15_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.545855,s3://human-pangenomics/working/HPRC/NA18974/raw_data/hic/NA18974-1_FC2_S15_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18974,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18974,12.02,12023989419.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310921,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021620,N/A,4.08,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18974-2_FC1_S16_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18974-2_FC1_S16_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.557506,s3://human-pangenomics/working/HPRC/NA18974/raw_data/hic/NA18974-2_FC1_S16_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18974,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18974,12.65,12652812007.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310920,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021620,N/A,3.97,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18974-2_FC2_S16_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18974-2_FC2_S16_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.558145,s3://human-pangenomics/working/HPRC/NA18974/raw_data/hic/NA18974-2_FC2_S16_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18974,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18974,12.32,12318140590.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310919,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021622,N/A,5.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18976-1_FC1_S15_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18976-1_FC1_S15_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.522123,s3://human-pangenomics/working/HPRC/NA18976/raw_data/hic/NA18976-1_FC1_S15_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18976,17.59,17594352088.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310918,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021622,N/A,5.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18976-1_FC2_S15_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18976-1_FC2_S15_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.52081,s3://human-pangenomics/working/HPRC/NA18976/raw_data/hic/NA18976-1_FC2_S15_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18976,17.99,17988627735.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310917,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021622,N/A,5.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18976-2_FC1_S16_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18976-2_FC1_S16_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.546516,s3://human-pangenomics/working/HPRC/NA18976/raw_data/hic/NA18976-2_FC1_S16_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18976,17.59,17585532782.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310916,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021622,N/A,5.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18976-2_FC2_S16_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18976-2_FC2_S16_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.498766,s3://human-pangenomics/working/HPRC/NA18976/raw_data/hic/NA18976-2_FC2_S16_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18976,18.28,18284725296.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310915,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021642,N/A,6.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19036-1_FC1_S11_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19036-1_FC1_S11_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.487006,s3://human-pangenomics/working/HPRC/NA19036/raw_data/hic/NA19036-1_FC1_S11_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19036,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19036,20.43,20434060051.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310914,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021642,N/A,6.42,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19036-1_FC2_S11_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19036-1_FC2_S11_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.500655,s3://human-pangenomics/working/HPRC/NA19036/raw_data/hic/NA19036-1_FC2_S11_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19036,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19036,19.91,19913685210.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310913,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021642,N/A,6.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19036-2_FC1_S12_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19036-2_FC1_S12_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.47374,s3://human-pangenomics/working/HPRC/NA19036/raw_data/hic/NA19036-2_FC1_S12_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19036,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19036,21.59,21585898923.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310912,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021642,N/A,7.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19036-2_FC2_S12_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19036-2_FC2_S12_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.496843,s3://human-pangenomics/working/HPRC/NA19036/raw_data/hic/NA19036-2_FC2_S12_L004_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19036,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19036,21.85,21854926865.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310910,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021640,N/A,7.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19443-1_FC1_S13_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19443-1_FC1_S13_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.509644,s3://human-pangenomics/working/HPRC/NA19443/raw_data/hic/NA19443-1_FC1_S13_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19443,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19443,22.83,22826931381.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310909,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021640,N/A,7.49,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19443-1_FC2_S13_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19443-1_FC2_S13_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.522303,s3://human-pangenomics/working/HPRC/NA19443/raw_data/hic/NA19443-1_FC2_S13_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19443,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19443,23.2,23204091329.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310908,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021640,N/A,6.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19443-2_FC1_S14_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19443-2_FC1_S14_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.536895,s3://human-pangenomics/working/HPRC/NA19443/raw_data/hic/NA19443-2_FC1_S14_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19443,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19443,19.0,18998543519.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310907,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021640,N/A,6.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19443-2_FC2_S14_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19443-2_FC2_S14_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.546267,s3://human-pangenomics/working/HPRC/NA19443/raw_data/hic/NA19443-2_FC2_S14_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19443,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19443,19.47,19467063450.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310882,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021612,N/A,5.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19700-1_FC1_S1_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19700-1_FC1_S1_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.384847,s3://human-pangenomics/working/HPRC/NA19700/raw_data/hic/NA19700-1_FC1_S1_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19700,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19700,16.06,16058502851.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310881,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021612,N/A,5.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19700-1_FC2_S1_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19700-1_FC2_S1_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.43614,s3://human-pangenomics/working/HPRC/NA19700/raw_data/hic/NA19700-1_FC2_S1_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19700,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19700,15.79,15787288580.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310880,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021612,N/A,5.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19700-2_FC1_S2_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19700-2_FC1_S2_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.39049,s3://human-pangenomics/working/HPRC/NA19700/raw_data/hic/NA19700-2_FC1_S2_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19700,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19700,17.27,17266491224.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310879,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021612,N/A,5.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19700-2_FC2_S2_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19700-2_FC2_S2_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.433272,s3://human-pangenomics/working/HPRC/NA19700/raw_data/hic/NA19700-2_FC2_S2_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19700,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19700,17.06,17056973137.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310878,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021630,N/A,10.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20503-1_FC1_S3_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20503-1_FC1_S3_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.504887,s3://human-pangenomics/working/HPRC/NA20503/raw_data/hic/NA20503-1_FC1_S3_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20503,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20503,33.1,33098049078.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310877,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021630,N/A,10.93,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20503-1_FC2_S3_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20503-1_FC2_S3_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.498824,s3://human-pangenomics/working/HPRC/NA20503/raw_data/hic/NA20503-1_FC2_S3_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20503,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20503,33.88,33877784539.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310875,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021630,N/A,11.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20503-2_FC1_S4_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20503-2_FC1_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.454984,s3://human-pangenomics/working/HPRC/NA20503/raw_data/hic/NA20503-2_FC1_S4_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20503,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20503,35.85,35852541248.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310874,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021630,N/A,11.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20503-2_FC2_S4_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20503-2_FC2_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.482764,s3://human-pangenomics/working/HPRC/NA20503/raw_data/hic/NA20503-2_FC2_S4_L003_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20503,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20503,37.12,37124680914.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310873,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021623,N/A,6.21,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20870-1_FC1_S3_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20870-1_FC1_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.494366,s3://human-pangenomics/working/HPRC/NA20870/raw_data/hic/NA20870-1_FC1_S3_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20870,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20870,19.25,19250551345.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310872,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021623,N/A,6.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20870-1_FC2_S3_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20870-1_FC2_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.533929,s3://human-pangenomics/working/HPRC/NA20870/raw_data/hic/NA20870-1_FC2_S3_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20870,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20870,19.64,19643337377.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310871,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021623,N/A,11.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20870-2_FC1_S4_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20870-2_FC1_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.434158,s3://human-pangenomics/working/HPRC/NA20870/raw_data/hic/NA20870-2_FC1_S4_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20870,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20870,35.31,35312248601.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310870,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021623,N/A,11.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20870-2_FC2_S4_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20870-2_FC2_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.469992,s3://human-pangenomics/working/HPRC/NA20870/raw_data/hic/NA20870-2_FC2_S4_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20870,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20870,35.66,35658974952.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310869,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021627,N/A,5.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21093-1_FC1_S9_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21093-1_FC1_S9_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.532711,s3://human-pangenomics/working/HPRC/NA21093/raw_data/hic/NA21093-1_FC1_S9_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA21093,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21093,17.62,17618029190.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310868,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021627,N/A,5.73,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21093-1_FC2_S9_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21093-1_FC2_S9_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.494601,s3://human-pangenomics/working/HPRC/NA21093/raw_data/hic/NA21093-1_FC2_S9_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA21093,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21093,17.76,17763157706.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310867,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021627,N/A,6.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21093-2_FC1_S10_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21093-2_FC1_S10_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.453901,s3://human-pangenomics/working/HPRC/NA21093/raw_data/hic/NA21093-2_FC1_S10_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA21093,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21093,19.54,19541671946.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310866,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021627,N/A,6.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21093-2_FC2_S10_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21093-2_FC2_S10_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.475376,s3://human-pangenomics/working/HPRC/NA21093/raw_data/hic/NA21093-2_FC2_S10_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA21093,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21093,19.35,19354976452.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310864,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021629,N/A,7.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21106-1_FC1_S11_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21106-1_FC1_S11_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.457198,s3://human-pangenomics/working/HPRC/NA21106/raw_data/hic/NA21106-1_FC1_S11_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA21106,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21106,22.6,22600425794.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310863,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021629,N/A,7.48,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21106-1_FC2_S11_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21106-1_FC2_S11_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.452267,s3://human-pangenomics/working/HPRC/NA21106/raw_data/hic/NA21106-1_FC2_S11_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA21106,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21106,23.18,23180756242.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310862,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021629,N/A,7.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21106-2_FC1_S12_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21106-2_FC1_S12_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.456851,s3://human-pangenomics/working/HPRC/NA21106/raw_data/hic/NA21106-2_FC1_S12_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA21106,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21106,22.32,22320651031.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310861,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021629,N/A,7.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21106-2_FC2_S12_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21106-2_FC2_S12_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.524822,s3://human-pangenomics/working/HPRC/NA21106/raw_data/hic/NA21106-2_FC2_S12_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA21106,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21106,22.59,22591797805.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310860,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021624,N/A,5.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21110-1_FC1_S1_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21110-1_FC1_S1_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.476082,s3://human-pangenomics/working/HPRC/NA21110/raw_data/hic/NA21110-1_FC1_S1_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA21110,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21110,15.87,15872921435.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310859,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021624,N/A,5.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21110-1_FC2_S1_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21110-1_FC2_S1_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.512692,s3://human-pangenomics/working/HPRC/NA21110/raw_data/hic/NA21110-1_FC2_S1_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA21110,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21110,15.87,15872702636.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310829,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797102,N/A,9.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01960-1_S3_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01960-1_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.46504,s3://human-pangenomics/working/HPRC/HG01960/raw_data/hic/HG01960-1_S3_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01960,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01960,30.7,30702431662.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310828,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797102,N/A,8.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01960-2_S3_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01960-2_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.448195,s3://human-pangenomics/working/HPRC/HG01960/raw_data/hic/HG01960-2_S3_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01960,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01960,26.52,26523678349.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310827,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621947,N/A,10.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01975-1_S4_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01975-1_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.439404,s3://human-pangenomics/working/HPRC/HG01975/raw_data/hic/HG01975-1_S4_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01975,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01975,33.74,33735008754.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310826,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621947,N/A,14.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01975-2_S4_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01975-2_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.406998,s3://human-pangenomics/working/HPRC/HG01975/raw_data/hic/HG01975-2_S4_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01975,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01975,45.45,45449986488.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310825,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797106,N/A,10.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02841-1_S5_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02841-1_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.488242,s3://human-pangenomics/working/HPRC/HG02841/raw_data/hic/HG02841-1_S5_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02841,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02841,32.18,32175246855.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310824,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797106,N/A,13.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02841-2_S5_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02841-2_S5_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.437549,s3://human-pangenomics/working/HPRC/HG02841/raw_data/hic/HG02841-2_S5_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02841,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02841,41.55,41551546102.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310823,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797107,N/A,10.84,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02984-1_S6_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02984-1_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.450685,s3://human-pangenomics/working/HPRC/HG02984/raw_data/hic/HG02984-1_S6_L001_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02984,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02984,33.6,33601463750.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310822,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797107,N/A,9.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02984-2_S6_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02984-2_S6_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.466494,s3://human-pangenomics/working/HPRC/HG02984/raw_data/hic/HG02984-2_S6_L002_R2_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02984,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02984,30.11,30110076480.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310981,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021637,N/A,7.42,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00126-1_FC1_S3_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00126-1_FC1_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.456062,s3://human-pangenomics/working/HPRC/HG00126/raw_data/hic/HG00126-1_FC1_S3_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00126,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00126,23.01,23014404072.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310980,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021637,N/A,6.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00126-1_FC2_S3_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00126-1_FC2_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.494569,s3://human-pangenomics/working/HPRC/HG00126/raw_data/hic/HG00126-1_FC2_S3_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00126,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00126,21.64,21643319995.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310819,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021637,N/A,10.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00126-2_FC1_S4_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00126-2_FC1_S4_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.416005,s3://human-pangenomics/working/HPRC/HG00126/raw_data/hic/HG00126-2_FC1_S4_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00126,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00126,33.28,33281084483.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310952,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021637,N/A,10.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00126-2_FC2_S4_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00126-2_FC2_S4_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.42042,s3://human-pangenomics/working/HPRC/HG00126/raw_data/hic/HG00126-2_FC2_S4_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00126,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00126,31.1,31102901178.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310941,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021641,N/A,5.92,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00128-1_FC1_S9_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00128-1_FC1_S9_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.461992,s3://human-pangenomics/working/HPRC/HG00128/raw_data/hic/HG00128-1_FC1_S9_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00128,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00128,18.34,18338855625.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310906,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021641,N/A,5.64,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00128-1_FC2_S9_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00128-1_FC2_S9_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.498659,s3://human-pangenomics/working/HPRC/HG00128/raw_data/hic/HG00128-1_FC2_S9_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00128,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00128,17.48,17480349957.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310895,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021641,N/A,5.52,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00128-2_FC1_S10_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00128-2_FC1_S10_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.519285,s3://human-pangenomics/working/HPRC/HG00128/raw_data/hic/HG00128-2_FC1_S10_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00128,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00128,17.12,17124632311.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310884,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021641,N/A,5.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00128-2_FC2_S10_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00128-2_FC2_S10_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.558467,s3://human-pangenomics/working/HPRC/HG00128/raw_data/hic/HG00128-2_FC2_S10_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00128,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00128,16.27,16272984308.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310849,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021638,N/A,7.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00133-1_FC1_S5_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00133-1_FC1_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.481832,s3://human-pangenomics/working/HPRC/HG00133/raw_data/hic/HG00133-1_FC1_S5_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00133,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00133,21.81,21805365041.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310838,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021638,N/A,6.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00133-1_FC2_S5_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00133-1_FC2_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.453404,s3://human-pangenomics/working/HPRC/HG00133/raw_data/hic/HG00133-1_FC2_S5_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00133,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00133,20.49,20487595742.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310979,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021638,N/A,5.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00133-2_FC1_S6_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00133-2_FC1_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.513267,s3://human-pangenomics/working/HPRC/HG00133/raw_data/hic/HG00133-2_FC1_S6_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00133,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00133,15.63,15627199286.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310968,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021638,N/A,4.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00133-2_FC2_S6_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00133-2_FC2_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.527565,s3://human-pangenomics/working/HPRC/HG00133/raw_data/hic/HG00133-2_FC2_S6_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00133,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00133,14.71,14710505617.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310957,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021634,N/A,8.55,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00146-1_FC1_S5_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00146-1_FC1_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.461355,s3://human-pangenomics/working/HPRC/HG00146/raw_data/hic/HG00146-1_FC1_S5_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00146,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00146,26.5,26496294197.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310922,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021634,N/A,8.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00146-1_FC2_S5_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00146-1_FC2_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.476218,s3://human-pangenomics/working/HPRC/HG00146/raw_data/hic/HG00146-1_FC2_S5_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00146,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00146,27.36,27358753045.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310911,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021634,N/A,7.73,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00146-2_FC1_S6_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00146-2_FC1_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.50744,s3://human-pangenomics/working/HPRC/HG00146/raw_data/hic/HG00146-2_FC1_S6_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00146,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00146,23.96,23962537602.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310876,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021634,N/A,8.01,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00146-2_FC2_S6_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00146-2_FC2_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.501278,s3://human-pangenomics/working/HPRC/HG00146/raw_data/hic/HG00146-2_FC2_S6_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00146,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00146,24.83,24830283262.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310865,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021635,N/A,6.16,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00232-1_FC1_S7_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00232-1_FC1_S7_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.486337,s3://human-pangenomics/working/HPRC/HG00232/raw_data/hic/HG00232-1_FC1_S7_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00232,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00232,19.1,19099015899.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310830,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021635,N/A,6.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00232-1_FC2_S7_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00232-1_FC2_S7_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.510446,s3://human-pangenomics/working/HPRC/HG00232/raw_data/hic/HG00232-1_FC2_S7_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00232,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00232,19.31,19310675468.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310821,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021635,N/A,8.01,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00232-2_FC1_S8_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00232-2_FC1_S8_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.441484,s3://human-pangenomics/working/HPRC/HG00232/raw_data/hic/HG00232-2_FC1_S8_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00232,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00232,24.84,24837421032.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310820,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021635,N/A,8.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00232-2_FC2_S8_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00232-2_FC2_S8_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.459377,s3://human-pangenomics/working/HPRC/HG00232/raw_data/hic/HG00232-2_FC2_S8_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00232,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00232,25.21,25214121638.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310818,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021639,N/A,6.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00290-1_FC1_S7_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00290-1_FC1_S7_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.4654,s3://human-pangenomics/working/HPRC/HG00290/raw_data/hic/HG00290-1_FC1_S7_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00290,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00290,19.5,19497247142.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310817,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021639,N/A,6.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00290-1_FC2_S7_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00290-1_FC2_S7_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.484694,s3://human-pangenomics/working/HPRC/HG00290/raw_data/hic/HG00290-1_FC2_S7_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00290,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00290,19.12,19123573331.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310816,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021639,N/A,7.47,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00290-2_FC1_S8_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00290-2_FC1_S8_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.48162,s3://human-pangenomics/working/HPRC/HG00290/raw_data/hic/HG00290-2_FC1_S8_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00290,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00290,23.17,23168123129.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310815,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021639,N/A,7.42,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00290-2_FC2_S8_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00290-2_FC2_S8_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.50788,s3://human-pangenomics/working/HPRC/HG00290/raw_data/hic/HG00290-2_FC2_S8_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00290,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00290,23.0,22995756931.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310814,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021632,N/A,7.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00320-1_FC1_S9_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00320-1_FC1_S9_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.506774,s3://human-pangenomics/working/HPRC/HG00320/raw_data/hic/HG00320-1_FC1_S9_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00320,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00320,21.86,21859015341.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310813,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021632,N/A,7.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00320-1_FC2_S9_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00320-1_FC2_S9_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.48307,s3://human-pangenomics/working/HPRC/HG00320/raw_data/hic/HG00320-1_FC2_S9_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00320,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00320,22.6,22604932087.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310812,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021632,N/A,11.46,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00320-2_FC1_S10_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00320-2_FC1_S10_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.439958,s3://human-pangenomics/working/HPRC/HG00320/raw_data/hic/HG00320-2_FC1_S10_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00320,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00320,35.52,35516787765.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310811,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021632,N/A,11.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00320-2_FC2_S10_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00320-2_FC2_S10_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.465434,s3://human-pangenomics/working/HPRC/HG00320/raw_data/hic/HG00320-2_FC2_S10_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00320,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00320,36.76,36761442562.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310954,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021636,N/A,10.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00321-1_FC1_S11_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00321-1_FC1_S11_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.445028,s3://human-pangenomics/working/HPRC/HG00321/raw_data/hic/HG00321-1_FC1_S11_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00321,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00321,31.77,31765796916.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310953,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021636,N/A,10.52,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00321-1_FC2_S11_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00321-1_FC2_S11_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.435627,s3://human-pangenomics/working/HPRC/HG00321/raw_data/hic/HG00321-1_FC2_S11_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00321,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00321,32.62,32618282667.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310951,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021636,N/A,9.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00321-2_FC1_S12_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00321-2_FC1_S12_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.440311,s3://human-pangenomics/working/HPRC/HG00321/raw_data/hic/HG00321-2_FC1_S12_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00321,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00321,28.72,28716418960.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310950,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021636,N/A,9.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00321-2_FC2_S12_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00321-2_FC2_S12_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.477987,s3://human-pangenomics/working/HPRC/HG00321/raw_data/hic/HG00321-2_FC2_S12_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00321,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00321,29.65,29645490401.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310949,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621943,N/A,24.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00408-1_S4_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00408-1_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.402711,s3://human-pangenomics/working/HPRC/HG00408/raw_data/hic/HG00408-1_S4_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00408,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00408,75.59,75586775321.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310948,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621943,N/A,17.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00408-2_S4_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00408-2_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.439714,s3://human-pangenomics/working/HPRC/HG00408/raw_data/hic/HG00408-2_S4_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00408,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00408,55.21,55207426647.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310947,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758780,N/A,8.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00558-1_S4_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00558-1_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.465973,s3://human-pangenomics/working/HPRC/HG00558/raw_data/hic/HG00558-1_S4_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00558,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00558,27.6,27603885539.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310946,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758780,N/A,10.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00558-2_S8_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00558-2_S8_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.482983,s3://human-pangenomics/working/HPRC/HG00558/raw_data/hic/HG00558-2_S8_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00558,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00558,32.1,32101602796.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310945,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621944,N/A,32.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00597-1_S1_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00597-1_S1_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.406575,s3://human-pangenomics/working/HPRC/HG00597/raw_data/hic/HG00597-1_S1_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00597,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00597,101.28,101280993154.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310944,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621944,N/A,19.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00597-2_S1_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00597-2_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.417803,s3://human-pangenomics/working/HPRC/HG00597/raw_data/hic/HG00597-2_S1_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00597,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00597,60.46,60459807174.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310943,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758781,N/A,28.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00639-1_S6_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00639-1_S6_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.424694,s3://human-pangenomics/working/HPRC/HG00639/raw_data/hic/HG00639-1_S6_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00639,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00639,88.85,88846013898.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310942,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758781,N/A,17.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00639-2_S6_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00639-2_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.454326,s3://human-pangenomics/working/HPRC/HG00639/raw_data/hic/HG00639-2_S6_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00639,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00639,55.62,55624447424.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310940,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797096,N/A,15.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00658-1_S6_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00658-1_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.407118,s3://human-pangenomics/working/HPRC/HG00658/raw_data/hic/HG00658-1_S6_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00658,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00658,48.7,48698842692.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310939,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797096,N/A,16.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00658-2_S12_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00658-2_S12_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.425113,s3://human-pangenomics/working/HPRC/HG00658/raw_data/hic/HG00658-2_S12_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00658,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00658,50.95,50947499509.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310938,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021616,N/A,6.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00867-1_FC1_S7_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00867-1_FC1_S7_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.497153,s3://human-pangenomics/working/HPRC/HG00867/raw_data/hic/HG00867-1_FC1_S7_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00867,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00867,19.55,19551234323.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310937,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021616,N/A,6.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00867-1_FC2_S7_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00867-1_FC2_S7_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.492661,s3://human-pangenomics/working/HPRC/HG00867/raw_data/hic/HG00867-1_FC2_S7_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00867,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00867,19.4,19398350296.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310936,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021616,N/A,16.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00867-2_FC1_S8_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00867-2_FC1_S8_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.447926,s3://human-pangenomics/working/HPRC/HG00867/raw_data/hic/HG00867-2_FC1_S8_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00867,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00867,50.66,50659452513.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310935,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021616,N/A,16.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00867-2_FC2_S8_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00867-2_FC2_S8_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.446306,s3://human-pangenomics/working/HPRC/HG00867/raw_data/hic/HG00867-2_FC2_S8_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG00867,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00867,50.3,50295251838.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310934,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758782,N/A,6.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01074-1_S1_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01074-1_S1_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.530659,s3://human-pangenomics/working/HPRC/HG01074/raw_data/hic/HG01074-1_S1_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01074,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01074,21.63,21626785797.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310933,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758782,N/A,9.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01074-2_S5_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01074-2_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.503104,s3://human-pangenomics/working/HPRC/HG01074/raw_data/hic/HG01074-2_S5_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01074,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01074,30.02,30020586028.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310932,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758783,N/A,37.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01081-1_S5_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01081-1_S5_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.416466,s3://human-pangenomics/working/HPRC/HG01081/raw_data/hic/HG01081-1_S5_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01081,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01081,115.92,115919387211.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310931,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758783,N/A,17.73,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01081-2_S5_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01081-2_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.432473,s3://human-pangenomics/working/HPRC/HG01081/raw_data/hic/HG01081-2_S5_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01081,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01081,54.96,54958779326.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310905,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797097,N/A,12.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01150-1_S5_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01150-1_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.436529,s3://human-pangenomics/working/HPRC/HG01150/raw_data/hic/HG01150-1_S5_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01150,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01150,38.97,38965707191.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310904,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797097,N/A,10.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01150-2_S11_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01150-2_S11_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.451094,s3://human-pangenomics/working/HPRC/HG01150/raw_data/hic/HG01150-2_S11_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01150,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01150,32.96,32958728626.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310903,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797098,N/A,44.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01252-2_S2_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01252-2_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.42038,s3://human-pangenomics/working/HPRC/HG01252/raw_data/hic/HG01252-2_S2_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01252,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01252,137.33,137329443161.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310902,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021633,N/A,5.41,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01786-1_FC1_S1_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01786-1_FC1_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.53728,s3://human-pangenomics/working/HPRC/HG01786/raw_data/hic/HG01786-1_FC1_S1_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01786,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01786,16.79,16785803411.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310901,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021633,N/A,5.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01786-1_FC2_S1_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01786-1_FC2_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.497086,s3://human-pangenomics/working/HPRC/HG01786/raw_data/hic/HG01786-1_FC2_S1_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01786,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01786,16.21,16208070616.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310900,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021633,N/A,5.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01786-2_FC1_S2_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01786-2_FC1_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.487939,s3://human-pangenomics/working/HPRC/HG01786/raw_data/hic/HG01786-2_FC1_S2_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01786,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01786,18.53,18534527163.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310899,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021633,N/A,5.72,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01786-2_FC2_S2_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01786-2_FC2_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.489055,s3://human-pangenomics/working/HPRC/HG01786/raw_data/hic/HG01786-2_FC2_S2_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01786,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01786,17.72,17723207636.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310898,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797101,N/A,13.07,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01940-2_S10_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01940-2_S10_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.353777,s3://human-pangenomics/working/HPRC/HG01940/raw_data/hic/HG01940-2_S10_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01940,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01940,40.53,40532207314.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310897,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797103,N/A,25.93,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01969-1_S3_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01969-1_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.409527,s3://human-pangenomics/working/HPRC/HG01969/raw_data/hic/HG01969-1_S3_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01969,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01969,80.38,80380642385.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310896,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797103,N/A,22.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01969-2_S3_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01969-2_S3_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.428637,s3://human-pangenomics/working/HPRC/HG01969/raw_data/hic/HG01969-2_S3_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01969,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01969,68.33,68330824416.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310894,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621948,N/A,8.99,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02015-1_S3_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02015-1_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.474905,s3://human-pangenomics/working/HPRC/HG02015/raw_data/hic/HG02015-1_S3_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02015,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02015,27.86,27863340987.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310893,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621949,N/A,12.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02056-1_S1_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02056-1_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.401986,s3://human-pangenomics/working/HPRC/HG02056/raw_data/hic/HG02056-1_S1_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02056,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02056,38.88,38875139656.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310892,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621949,N/A,12.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02056-2_S5_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02056-2_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.412847,s3://human-pangenomics/working/HPRC/HG02056/raw_data/hic/HG02056-2_S5_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02056,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02056,37.5,37502509943.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310891,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621950,N/A,40.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02129-1_S2_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02129-1_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.409818,s3://human-pangenomics/working/HPRC/HG02129/raw_data/hic/HG02129-1_S2_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02129,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02129,124.6,124595417314.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310890,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621950,N/A,9.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02129-2_S6_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02129-2_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.454769,s3://human-pangenomics/working/HPRC/HG02129/raw_data/hic/HG02129-2_S6_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02129,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02129,29.8,29800157587.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310889,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021617,N/A,7.01,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02178-1_FC1_S9_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02178-1_FC1_S9_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.47463,s3://human-pangenomics/working/HPRC/HG02178/raw_data/hic/HG02178-1_FC1_S9_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02178,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02178,21.74,21744973497.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310888,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021617,N/A,6.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02178-1_FC2_S9_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02178-1_FC2_S9_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.502882,s3://human-pangenomics/working/HPRC/HG02178/raw_data/hic/HG02178-1_FC2_S9_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02178,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02178,21.16,21164708885.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310887,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021617,N/A,4.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02178-2_FC1_S10_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02178-2_FC1_S10_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.559189,s3://human-pangenomics/working/HPRC/HG02178/raw_data/hic/HG02178-2_FC1_S10_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02178,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02178,13.45,13449042406.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310886,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021617,N/A,4.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02178-2_FC2_S10_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02178-2_FC2_S10_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.526419,s3://human-pangenomics/working/HPRC/HG02178/raw_data/hic/HG02178-2_FC2_S10_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02178,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02178,13.16,13164963690.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310885,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621952,N/A,17.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02258-2_S7_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02258-2_S7_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.400263,s3://human-pangenomics/working/HPRC/HG02258/raw_data/hic/HG02258-2_S7_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02258,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02258,55.18,55183613645.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310883,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021615,N/A,7.6,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02392-1_FC1_S5_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02392-1_FC1_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.518886,s3://human-pangenomics/working/HPRC/HG02392/raw_data/hic/HG02392-1_FC1_S5_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02392,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02392,23.55,23554018125.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310858,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021615,N/A,7.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02392-1_FC2_S5_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02392-1_FC2_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.496335,s3://human-pangenomics/working/HPRC/HG02392/raw_data/hic/HG02392-1_FC2_S5_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02392,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02392,23.25,23252301099.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310857,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021615,N/A,5.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02392-2_FC1_S6_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02392-2_FC1_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.531586,s3://human-pangenomics/working/HPRC/HG02392/raw_data/hic/HG02392-2_FC1_S6_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02392,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02392,15.62,15616342990.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310856,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021615,N/A,4.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02392-2_FC2_S6_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02392-2_FC2_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.552625,s3://human-pangenomics/working/HPRC/HG02392/raw_data/hic/HG02392-2_FC2_S6_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02392,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02392,15.33,15330246008.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310855,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758786,N/A,12.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02451-1_S2_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02451-1_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.40241,s3://human-pangenomics/working/HPRC/HG02451/raw_data/hic/HG02451-1_S2_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02451,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02451,39.21,39210516394.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310854,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758786,N/A,11.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02451-2_S8_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02451-2_S8_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.389143,s3://human-pangenomics/working/HPRC/HG02451/raw_data/hic/HG02451-2_S8_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02451,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02451,36.41,36412020257.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310853,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797105,N/A,33.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02514-1_S5_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02514-1_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.425097,s3://human-pangenomics/working/HPRC/HG02514/raw_data/hic/HG02514-1_S5_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02514,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02514,103.15,103145633415.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310852,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797105,N/A,25.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02514-2_S6_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02514-2_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.393691,s3://human-pangenomics/working/HPRC/HG02514/raw_data/hic/HG02514-2_S6_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02514,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02514,80.26,80256080824.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310851,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021657,N/A,7.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02583-1_FC1_S15_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02583-1_FC1_S15_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.52969,s3://human-pangenomics/working/HPRC/HG02583/raw_data/hic/HG02583-1_FC1_S15_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02583,24.43,24428567694.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310850,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021657,N/A,8.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02583-1_FC2_S15_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02583-1_FC2_S15_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.528616,s3://human-pangenomics/working/HPRC/HG02583/raw_data/hic/HG02583-1_FC2_S15_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02583,24.92,24916814416.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310848,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021657,N/A,7.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02583-2_FC1_S16_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02583-2_FC1_S16_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.493089,s3://human-pangenomics/working/HPRC/HG02583/raw_data/hic/HG02583-2_FC1_S16_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02583,22.28,22281528139.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310847,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021657,N/A,7.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02583-2_FC2_S16_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02583-2_FC2_S16_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.550728,s3://human-pangenomics/working/HPRC/HG02583/raw_data/hic/HG02583-2_FC2_S16_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02583,22.8,22801913701.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310846,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758787,N/A,3.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02735-1_S1_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02735-1_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.537195,s3://human-pangenomics/working/HPRC/HG02735/raw_data/hic/HG02735-1_S1_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02735,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02735,10.48,10480992446.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310845,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758787,N/A,10.76,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02735-2_S7_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02735-2_S7_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.350536,s3://human-pangenomics/working/HPRC/HG02735/raw_data/hic/HG02735-2_S7_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02735,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02735,33.35,33352232512.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310844,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758789,N/A,28.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03017-1_S3_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03017-1_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.4146,s3://human-pangenomics/working/HPRC/HG03017/raw_data/hic/HG03017-1_S3_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03017,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03017,87.16,87156808155.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310843,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758789,N/A,27.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03017-2_S4_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03017-2_S4_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.37944,s3://human-pangenomics/working/HPRC/HG03017/raw_data/hic/HG03017-2_S4_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03017,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03017,86.38,86375269452.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310842,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758790,N/A,8.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03041-1_S3_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03041-1_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.496384,s3://human-pangenomics/working/HPRC/HG03041/raw_data/hic/HG03041-1_S3_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03041,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03041,25.74,25740160036.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310841,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758790,N/A,8.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03041-2_S7_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03041-2_S7_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.492089,s3://human-pangenomics/working/HPRC/HG03041/raw_data/hic/HG03041-2_S7_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03041,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03041,27.12,27119442356.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310840,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797108,N/A,60.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03050-1_S2_L001_R1_001.fastq.gz,bam,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03050-1_S2_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.423403,s3://human-pangenomics/working/HPRC/HG03050/raw_data/hic/HG03050-1_S2_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03050,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03050,188.12,188117962773.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310839,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797108,N/A,11.69,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03050-2_S6_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03050-2_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.476047,s3://human-pangenomics/working/HPRC/HG03050/raw_data/hic/HG03050-2_S6_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03050,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03050,36.25,36254239904.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310837,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758794,N/A,21.06,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03239-1_S1_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03239-1_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.418687,s3://human-pangenomics/working/HPRC/HG03239/raw_data/hic/HG03239-1_S1_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03239,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03239,65.28,65277299547.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310836,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33758794,N/A,6.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03239-2_S2_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03239-2_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.505738,s3://human-pangenomics/working/HPRC/HG03239/raw_data/hic/HG03239-2_S2_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03239,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03239,19.54,19542904861.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310835,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021631,N/A,7.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03270-1_FC1_S1_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03270-1_FC1_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.489839,s3://human-pangenomics/working/HPRC/HG03270/raw_data/hic/HG03270-1_FC1_S1_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03270,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03270,21.69,21691936257.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310810,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021631,N/A,7.15,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03270-1_FC2_S1_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03270-1_FC2_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.456019,s3://human-pangenomics/working/HPRC/HG03270/raw_data/hic/HG03270-1_FC2_S1_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03270,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03270,22.17,22171447478.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310809,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021631,N/A,10.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03270-2_FC1_S2_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03270-2_FC1_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.4784,s3://human-pangenomics/working/HPRC/HG03270/raw_data/hic/HG03270-2_FC1_S2_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03270,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03270,31.81,31810967811.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310808,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021631,N/A,10.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03270-2_FC2_S2_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03270-2_FC2_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.494294,s3://human-pangenomics/working/HPRC/HG03270/raw_data/hic/HG03270-2_FC2_S2_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03270,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03270,32.76,32756866692.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310807,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021645,N/A,3.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03583-1_FC1_S15_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03583-1_FC1_S15_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.587735,s3://human-pangenomics/working/HPRC/HG03583/raw_data/hic/HG03583-1_FC1_S15_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03583,10.27,10268000000.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310806,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021645,N/A,3.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03583-1_FC2_S15_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03583-1_FC2_S15_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.555637,s3://human-pangenomics/working/HPRC/HG03583/raw_data/hic/HG03583-1_FC2_S15_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03583,9.66,9656429011.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310805,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021645,N/A,3.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03583-2_FC1_S16_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03583-2_FC1_S16_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.559499,s3://human-pangenomics/working/HPRC/HG03583/raw_data/hic/HG03583-2_FC1_S16_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03583,12.12,12121397556.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310804,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021645,N/A,3.79,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03583-2_FC2_S16_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03583-2_FC2_S16_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.557892,s3://human-pangenomics/working/HPRC/HG03583/raw_data/hic/HG03583-2_FC2_S16_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03583,11.74,11736739401.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310976,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621958,N/A,10.32,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03834-1_S4_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03834-1_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.43792,s3://human-pangenomics/working/HPRC/HG03834/raw_data/hic/HG03834-1_S4_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03834,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03834,31.98,31979838510.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310975,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621958,N/A,22.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03834-2_S8_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03834-2_S8_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.391397,s3://human-pangenomics/working/HPRC/HG03834/raw_data/hic/HG03834-2_S8_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03834,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03834,69.88,69883486748.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310974,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021625,N/A,3.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03874-1_FC1_S3_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03874-1_FC1_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577744,s3://human-pangenomics/working/HPRC/HG03874/raw_data/hic/HG03874-1_FC1_S3_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03874,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03874,10.85,10847832903.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310973,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021625,N/A,3.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03874-1_FC2_S3_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03874-1_FC2_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.546948,s3://human-pangenomics/working/HPRC/HG03874/raw_data/hic/HG03874-1_FC2_S3_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03874,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03874,10.44,10442312286.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310972,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021625,N/A,5.62,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03874-2_FC1_S4_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03874-2_FC1_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.546283,s3://human-pangenomics/working/HPRC/HG03874/raw_data/hic/HG03874-2_FC1_S4_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03874,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03874,17.42,17415838378.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310971,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021625,N/A,5.48,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03874-2_FC2_S4_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03874-2_FC2_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.528561,s3://human-pangenomics/working/HPRC/HG03874/raw_data/hic/HG03874-2_FC2_S4_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG03874,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03874,17.0,17001269237.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310970,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021643,N/A,7.14,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18505-1_FC1_S13_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18505-1_FC1_S13_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.467255,s3://human-pangenomics/working/HPRC/NA18505/raw_data/hic/NA18505-1_FC1_S13_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18505,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18505,22.14,22139961713.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310969,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021643,N/A,6.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18505-1_FC2_S13_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18505-1_FC2_S13_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.489725,s3://human-pangenomics/working/HPRC/NA18505/raw_data/hic/NA18505-1_FC2_S13_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18505,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18505,21.1,21101450908.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310967,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021643,N/A,5.58,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18505-2_FC1_S14_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18505-2_FC1_S14_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.5285,s3://human-pangenomics/working/HPRC/NA18505/raw_data/hic/NA18505-2_FC1_S14_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18505,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18505,17.31,17310353100.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310966,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021643,N/A,5.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18505-2_FC2_S14_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18505-2_FC2_S14_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.487172,s3://human-pangenomics/working/HPRC/NA18505/raw_data/hic/NA18505-2_FC2_S14_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18505,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18505,16.65,16645942681.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310965,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021626,N/A,5.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18508-1_FC1_S7_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18508-1_FC1_S7_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.511853,s3://human-pangenomics/working/HPRC/NA18508/raw_data/hic/NA18508-1_FC1_S7_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18508,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18508,17.14,17138703246.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310964,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021626,N/A,5.45,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18508-1_FC2_S7_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18508-1_FC2_S7_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.506867,s3://human-pangenomics/working/HPRC/NA18508/raw_data/hic/NA18508-1_FC2_S7_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18508,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18508,16.89,16893840740.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310963,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021626,N/A,3.32,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18508-2_FC1_S8_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18508-2_FC1_S8_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.549076,s3://human-pangenomics/working/HPRC/NA18508/raw_data/hic/NA18508-2_FC1_S8_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18508,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18508,10.28,10283027218.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310962,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021626,N/A,3.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18508-2_FC2_S8_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18508-2_FC2_S8_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.615152,s3://human-pangenomics/working/HPRC/NA18508/raw_data/hic/NA18508-2_FC2_S8_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18508,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18508,9.88,9883300622.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310961,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021619,N/A,3.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18608-1_FC1_S11_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18608-1_FC1_S11_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.587437,s3://human-pangenomics/working/HPRC/NA18608/raw_data/hic/NA18608-1_FC1_S11_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18608,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18608,12.29,12289594493.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310960,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021619,N/A,3.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18608-1_FC2_S11_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18608-1_FC2_S11_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.585861,s3://human-pangenomics/working/HPRC/NA18608/raw_data/hic/NA18608-1_FC2_S11_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18608,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18608,11.87,11872385570.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310959,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021619,N/A,4.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18608-2_FC1_S12_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18608-2_FC1_S12_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.558086,s3://human-pangenomics/working/HPRC/NA18608/raw_data/hic/NA18608-2_FC1_S12_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18608,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18608,15.3,15304368987.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310958,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021619,N/A,4.78,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18608-2_FC2_S12_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18608-2_FC2_S12_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.546922,s3://human-pangenomics/working/HPRC/NA18608/raw_data/hic/NA18608-2_FC2_S12_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18608,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18608,14.81,14807755355.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310956,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021618,N/A,5.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18620-1_FC1_S13_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18620-1_FC1_S13_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.512003,s3://human-pangenomics/working/HPRC/NA18620/raw_data/hic/NA18620-1_FC1_S13_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18620,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18620,16.71,16711418697.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310955,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021618,N/A,5.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18620-1_FC2_S13_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18620-1_FC2_S13_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.527546,s3://human-pangenomics/working/HPRC/NA18620/raw_data/hic/NA18620-1_FC2_S13_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18620,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18620,16.44,16444896902.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310930,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021618,N/A,6.45,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18620-2_FC1_S14_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18620-2_FC1_S14_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.491903,s3://human-pangenomics/working/HPRC/NA18620/raw_data/hic/NA18620-2_FC1_S14_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18620,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18620,20.01,20009587877.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310929,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021618,N/A,6.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18620-2_FC2_S14_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18620-2_FC2_S14_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.495146,s3://human-pangenomics/working/HPRC/NA18620/raw_data/hic/NA18620-2_FC2_S14_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18620,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18620,19.83,19832201080.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310928,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021621,N/A,16.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18952-1_FC1_S13_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18952-1_FC1_S13_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.440657,s3://human-pangenomics/working/HPRC/NA18952/raw_data/hic/NA18952-1_FC1_S13_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18952,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18952,51.48,51483278615.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310927,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021621,N/A,17.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18952-1_FC2_S13_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18952-1_FC2_S13_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.425158,s3://human-pangenomics/working/HPRC/NA18952/raw_data/hic/NA18952-1_FC2_S13_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18952,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18952,54.53,54534807717.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310926,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021621,N/A,12.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18952-2_FC1_S14_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18952-2_FC1_S14_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.488041,s3://human-pangenomics/working/HPRC/NA18952/raw_data/hic/NA18952-2_FC1_S14_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18952,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18952,37.59,37586941895.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310925,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021621,N/A,12.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18952-2_FC2_S14_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18952-2_FC2_S14_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.445759,s3://human-pangenomics/working/HPRC/NA18952/raw_data/hic/NA18952-2_FC2_S14_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18952,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18952,38.07,38068632499.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310924,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021620,N/A,4.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18974-1_FC1_S15_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18974-1_FC1_S15_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.552761,s3://human-pangenomics/working/HPRC/NA18974/raw_data/hic/NA18974-1_FC1_S15_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18974,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18974,12.4,12402378205.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310923,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021620,N/A,3.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18974-1_FC2_S15_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18974-1_FC2_S15_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.545855,s3://human-pangenomics/working/HPRC/NA18974/raw_data/hic/NA18974-1_FC2_S15_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18974,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18974,12.02,12023989419.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310921,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021620,N/A,4.08,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18974-2_FC1_S16_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18974-2_FC1_S16_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.557506,s3://human-pangenomics/working/HPRC/NA18974/raw_data/hic/NA18974-2_FC1_S16_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18974,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18974,12.65,12652812007.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310920,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021620,N/A,3.97,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18974-2_FC2_S16_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18974-2_FC2_S16_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.558145,s3://human-pangenomics/working/HPRC/NA18974/raw_data/hic/NA18974-2_FC2_S16_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18974,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18974,12.32,12318140590.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310919,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021622,N/A,5.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18976-1_FC1_S15_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18976-1_FC1_S15_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.522123,s3://human-pangenomics/working/HPRC/NA18976/raw_data/hic/NA18976-1_FC1_S15_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18976,17.59,17594352088.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310918,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021622,N/A,5.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18976-1_FC2_S15_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18976-1_FC2_S15_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.52081,s3://human-pangenomics/working/HPRC/NA18976/raw_data/hic/NA18976-1_FC2_S15_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18976,17.99,17988627735.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310917,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021622,N/A,5.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18976-2_FC1_S16_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18976-2_FC1_S16_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.546516,s3://human-pangenomics/working/HPRC/NA18976/raw_data/hic/NA18976-2_FC1_S16_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18976,17.59,17585532782.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310916,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021622,N/A,5.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18976-2_FC2_S16_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18976-2_FC2_S16_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.498766,s3://human-pangenomics/working/HPRC/NA18976/raw_data/hic/NA18976-2_FC2_S16_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA18976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18976,18.28,18284725296.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310915,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021642,N/A,6.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19036-1_FC1_S11_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19036-1_FC1_S11_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.487006,s3://human-pangenomics/working/HPRC/NA19036/raw_data/hic/NA19036-1_FC1_S11_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19036,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19036,20.43,20434060051.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310914,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021642,N/A,6.42,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19036-1_FC2_S11_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19036-1_FC2_S11_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.500655,s3://human-pangenomics/working/HPRC/NA19036/raw_data/hic/NA19036-1_FC2_S11_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19036,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19036,19.91,19913685210.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310913,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021642,N/A,6.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19036-2_FC1_S12_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19036-2_FC1_S12_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.47374,s3://human-pangenomics/working/HPRC/NA19036/raw_data/hic/NA19036-2_FC1_S12_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19036,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19036,21.59,21585898923.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310912,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021642,N/A,7.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19036-2_FC2_S12_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19036-2_FC2_S12_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.496843,s3://human-pangenomics/working/HPRC/NA19036/raw_data/hic/NA19036-2_FC2_S12_L004_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19036,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19036,21.85,21854926865.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310910,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021640,N/A,7.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19443-1_FC1_S13_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19443-1_FC1_S13_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.509644,s3://human-pangenomics/working/HPRC/NA19443/raw_data/hic/NA19443-1_FC1_S13_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19443,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19443,22.83,22826931381.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310909,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021640,N/A,7.49,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19443-1_FC2_S13_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19443-1_FC2_S13_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.522303,s3://human-pangenomics/working/HPRC/NA19443/raw_data/hic/NA19443-1_FC2_S13_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19443,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19443,23.2,23204091329.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310908,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021640,N/A,6.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19443-2_FC1_S14_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19443-2_FC1_S14_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.536895,s3://human-pangenomics/working/HPRC/NA19443/raw_data/hic/NA19443-2_FC1_S14_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19443,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19443,19.0,18998543519.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310907,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021640,N/A,6.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19443-2_FC2_S14_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19443-2_FC2_S14_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.546267,s3://human-pangenomics/working/HPRC/NA19443/raw_data/hic/NA19443-2_FC2_S14_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19443,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19443,19.47,19467063450.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310882,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021612,N/A,5.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19700-1_FC1_S1_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19700-1_FC1_S1_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.384847,s3://human-pangenomics/working/HPRC/NA19700/raw_data/hic/NA19700-1_FC1_S1_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19700,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19700,16.06,16058502851.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310881,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021612,N/A,5.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19700-1_FC2_S1_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19700-1_FC2_S1_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.43614,s3://human-pangenomics/working/HPRC/NA19700/raw_data/hic/NA19700-1_FC2_S1_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19700,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19700,15.79,15787288580.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310880,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021612,N/A,5.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19700-2_FC1_S2_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19700-2_FC1_S2_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.39049,s3://human-pangenomics/working/HPRC/NA19700/raw_data/hic/NA19700-2_FC1_S2_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19700,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19700,17.27,17266491224.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310879,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021612,N/A,5.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19700-2_FC2_S2_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19700-2_FC2_S2_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.433272,s3://human-pangenomics/working/HPRC/NA19700/raw_data/hic/NA19700-2_FC2_S2_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA19700,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19700,17.06,17056973137.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310878,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021630,N/A,10.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20503-1_FC1_S3_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20503-1_FC1_S3_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.504887,s3://human-pangenomics/working/HPRC/NA20503/raw_data/hic/NA20503-1_FC1_S3_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20503,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20503,33.1,33098049078.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310877,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021630,N/A,10.93,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20503-1_FC2_S3_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20503-1_FC2_S3_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.498824,s3://human-pangenomics/working/HPRC/NA20503/raw_data/hic/NA20503-1_FC2_S3_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20503,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20503,33.88,33877784539.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310875,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021630,N/A,11.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20503-2_FC1_S4_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20503-2_FC1_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.454984,s3://human-pangenomics/working/HPRC/NA20503/raw_data/hic/NA20503-2_FC1_S4_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20503,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20503,35.85,35852541248.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310874,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021630,N/A,11.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20503-2_FC2_S4_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20503-2_FC2_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.482764,s3://human-pangenomics/working/HPRC/NA20503/raw_data/hic/NA20503-2_FC2_S4_L003_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20503,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20503,37.12,37124680914.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310873,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021623,N/A,6.21,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20870-1_FC1_S3_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20870-1_FC1_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.494366,s3://human-pangenomics/working/HPRC/NA20870/raw_data/hic/NA20870-1_FC1_S3_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20870,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20870,19.25,19250551345.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310872,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021623,N/A,6.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20870-1_FC2_S3_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20870-1_FC2_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.533929,s3://human-pangenomics/working/HPRC/NA20870/raw_data/hic/NA20870-1_FC2_S3_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20870,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20870,19.64,19643337377.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310871,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021623,N/A,11.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20870-2_FC1_S4_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20870-2_FC1_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.434158,s3://human-pangenomics/working/HPRC/NA20870/raw_data/hic/NA20870-2_FC1_S4_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20870,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20870,35.31,35312248601.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310870,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021623,N/A,11.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20870-2_FC2_S4_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20870-2_FC2_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.469992,s3://human-pangenomics/working/HPRC/NA20870/raw_data/hic/NA20870-2_FC2_S4_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA20870,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20870,35.66,35658974952.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310869,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021627,N/A,5.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21093-1_FC1_S9_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21093-1_FC1_S9_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.532711,s3://human-pangenomics/working/HPRC/NA21093/raw_data/hic/NA21093-1_FC1_S9_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA21093,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21093,17.62,17618029190.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310868,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021627,N/A,5.73,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21093-1_FC2_S9_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21093-1_FC2_S9_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.494601,s3://human-pangenomics/working/HPRC/NA21093/raw_data/hic/NA21093-1_FC2_S9_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA21093,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21093,17.76,17763157706.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310867,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021627,N/A,6.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21093-2_FC1_S10_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21093-2_FC1_S10_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.453901,s3://human-pangenomics/working/HPRC/NA21093/raw_data/hic/NA21093-2_FC1_S10_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA21093,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21093,19.54,19541671946.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310866,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021627,N/A,6.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21093-2_FC2_S10_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21093-2_FC2_S10_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.475376,s3://human-pangenomics/working/HPRC/NA21093/raw_data/hic/NA21093-2_FC2_S10_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA21093,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21093,19.35,19354976452.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310864,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021629,N/A,7.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21106-1_FC1_S11_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21106-1_FC1_S11_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.457198,s3://human-pangenomics/working/HPRC/NA21106/raw_data/hic/NA21106-1_FC1_S11_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA21106,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21106,22.6,22600425794.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310863,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021629,N/A,7.48,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21106-1_FC2_S11_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21106-1_FC2_S11_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.452267,s3://human-pangenomics/working/HPRC/NA21106/raw_data/hic/NA21106-1_FC2_S11_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA21106,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21106,23.18,23180756242.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310862,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021629,N/A,7.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21106-2_FC1_S12_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21106-2_FC1_S12_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.456851,s3://human-pangenomics/working/HPRC/NA21106/raw_data/hic/NA21106-2_FC1_S12_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA21106,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21106,22.32,22320651031.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310861,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021629,N/A,7.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21106-2_FC2_S12_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21106-2_FC2_S12_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.524822,s3://human-pangenomics/working/HPRC/NA21106/raw_data/hic/NA21106-2_FC2_S12_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA21106,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21106,22.59,22591797805.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310860,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021624,N/A,5.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21110-1_FC1_S1_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21110-1_FC1_S1_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.476082,s3://human-pangenomics/working/HPRC/NA21110/raw_data/hic/NA21110-1_FC1_S1_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA21110,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21110,15.87,15872921435.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310859,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN41021624,N/A,5.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21110-1_FC2_S1_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21110-1_FC2_S1_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.512692,s3://human-pangenomics/working/HPRC/NA21110/raw_data/hic/NA21110-1_FC2_S1_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,NA21110,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21110,15.87,15872702636.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310829,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797102,N/A,9.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01960-1_S3_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01960-1_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.46504,s3://human-pangenomics/working/HPRC/HG01960/raw_data/hic/HG01960-1_S3_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01960,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01960,30.7,30702431662.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310828,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797102,N/A,8.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01960-2_S3_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01960-2_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.448195,s3://human-pangenomics/working/HPRC/HG01960/raw_data/hic/HG01960-2_S3_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01960,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01960,26.52,26523678349.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310827,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621947,N/A,10.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01975-1_S4_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01975-1_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.439404,s3://human-pangenomics/working/HPRC/HG01975/raw_data/hic/HG01975-1_S4_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01975,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01975,33.74,33735008754.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310826,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN33621947,N/A,14.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01975-2_S4_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01975-2_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.406998,s3://human-pangenomics/working/HPRC/HG01975/raw_data/hic/HG01975-2_S4_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG01975,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01975,45.45,45449986488.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310825,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797106,N/A,10.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02841-1_S5_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02841-1_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.488242,s3://human-pangenomics/working/HPRC/HG02841/raw_data/hic/HG02841-1_S5_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02841,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02841,32.18,32175246855.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310824,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797106,N/A,13.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02841-2_S5_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02841-2_S5_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.437549,s3://human-pangenomics/working/HPRC/HG02841/raw_data/hic/HG02841-2_S5_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02841,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02841,41.55,41551546102.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310823,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797107,N/A,10.84,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02984-1_S6_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02984-1_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.450685,s3://human-pangenomics/working/HPRC/HG02984/raw_data/hic/HG02984-1_S6_L001_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02984,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02984,33.6,33601463750.0,N/A,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310822,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797107,N/A,9.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02984-2_S6_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02984-2_S6_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.466494,s3://human-pangenomics/working/HPRC/HG02984/raw_data/hic/HG02984-2_S6_L002_R1_001.fastq.gz,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,HG02984,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02984,30.11,30110076480.0,N/A,N/A,,,,,, +9.82,0.0,2.77,0.63,0.18,0.07,N/A,N/A,N/A,100937.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.44,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_08_22_R941_HG00558_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_08_22_R941_HG00558_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.312169,s3://human-pangenomics/working/HPRC/HG00558/raw_data/nanopore/guppy_6/02_08_22_R941_HG00558_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00558,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,64.14,N/A,N/A,10.0,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 +7.29,0.0,1.98,0.43,0.12,0.05,N/A,N/A,N/A,95821.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,15.29,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_08_22_R941_HG00558_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_08_22_R941_HG00558_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.352575,s3://human-pangenomics/working/HPRC/HG00558/raw_data/nanopore/guppy_6/02_08_22_R941_HG00558_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00558,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,50.46,N/A,N/A,12.0,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 +9.58,0.0,2.55,0.54,0.15,0.06,N/A,N/A,N/A,97461.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.7,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_08_22_R941_HG00558_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_08_22_R941_HG00558_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.374149,s3://human-pangenomics/working/HPRC/HG00558/raw_data/nanopore/guppy_6/02_08_22_R941_HG00558_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00558,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,65.0,N/A,N/A,13.0,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 +5.27,0.0,0.89,0.19,0.04,0.01,N/A,N/A,N/A,80723.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,14.1,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_08_22_R941_HG01252_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_08_22_R941_HG01252_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.331159,s3://human-pangenomics/working/HPRC/HG01252/raw_data/nanopore/guppy_6/02_08_22_R941_HG01252_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01252,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,46.52,N/A,N/A,0.0,HG01252,SAMN37797098,CLM14,CLM,AMR,YR3 +5.63,0.0,1.02,0.23,0.07,0.03,N/A,N/A,N/A,80454.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,15.07,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_08_22_R941_HG01252_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_08_22_R941_HG01252_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.339225,s3://human-pangenomics/working/HPRC/HG01252/raw_data/nanopore/guppy_6/02_08_22_R941_HG01252_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01252,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,49.73,N/A,N/A,4.0,HG01252,SAMN37797098,CLM14,CLM,AMR,YR3 +6.55,0.0,1.11,0.24,0.07,0.03,N/A,N/A,N/A,77916.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.36,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_08_22_R941_HG01252_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_08_22_R941_HG01252_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.310941,s3://human-pangenomics/working/HPRC/HG01252/raw_data/nanopore/guppy_6/02_08_22_R941_HG01252_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01252,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,60.58,N/A,N/A,3.0,HG01252,SAMN37797098,CLM14,CLM,AMR,YR3 +11.1,0.0,3.03,0.59,0.12,0.04,N/A,N/A,N/A,103269.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.45,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_08_22_R941_HG02258_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_08_22_R941_HG02258_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.348374,s3://human-pangenomics/working/HPRC/HG02258/raw_data/nanopore/guppy_6/02_08_22_R941_HG02258_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02258,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,70.78,N/A,N/A,1.0,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 +7.34,0.0,1.92,0.36,0.07,0.02,N/A,N/A,N/A,101187.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,14.49,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_08_22_R941_HG02258_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_08_22_R941_HG02258_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.359481,s3://human-pangenomics/working/HPRC/HG02258/raw_data/nanopore/guppy_6/02_08_22_R941_HG02258_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02258,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,47.83,N/A,N/A,3.0,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 +3.86,0.0,1.08,0.21,0.05,0.02,N/A,N/A,N/A,98290.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,7.85,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_08_22_R941_HG02258_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_08_22_R941_HG02258_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.442759,s3://human-pangenomics/working/HPRC/HG02258/raw_data/nanopore/guppy_6/02_08_22_R941_HG02258_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02258,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,25.92,N/A,N/A,1.0,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 +2.71,0.0,0.59,0.1,0.02,0.0,N/A,N/A,N/A,92608.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,5.94,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_08_22_R941_HG02258_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_08_22_R941_HG02258_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.429346,s3://human-pangenomics/working/HPRC/HG02258/raw_data/nanopore/guppy_6/02_08_22_R941_HG02258_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02258,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,19.61,N/A,N/A,0.0,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 +9.29,0.01,3.25,1.17,0.47,0.21,N/A,N/A,N/A,113319.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,16.37,,,02_08_22_R941_HG03834_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_08_22_R941_HG03834_1,,,,,N/A,N/A,N/A,,N/A,0.358252,s3://human-pangenomics/working/HPRC/HG03834/raw_data/nanopore/guppy_6/02_08_22_R941_HG03834_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03834,N/A,,N/A,,,N/A,N/A,54.02,N/A,N/A,28.0,HG03834,SAMN33621958,BD28,BEB,SAS,YR3 +8.93,0.01,3.02,1.09,0.47,0.23,N/A,N/A,N/A,106614.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,16.7,,,02_08_22_R941_HG03834_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_08_22_R941_HG03834_2,,,,,N/A,N/A,N/A,,N/A,0.366502,s3://human-pangenomics/working/HPRC/HG03834/raw_data/nanopore/guppy_6/02_08_22_R941_HG03834_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03834,N/A,,N/A,,,N/A,N/A,55.11,N/A,N/A,39.0,HG03834,SAMN33621958,BD28,BEB,SAS,YR3 +8.11,0.01,2.7,0.97,0.41,0.2,N/A,N/A,N/A,103009.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,15.73,,,02_08_22_R941_HG03834_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_08_22_R941_HG03834_3,,,,,N/A,N/A,N/A,,N/A,0.353039,s3://human-pangenomics/working/HPRC/HG03834/raw_data/nanopore/guppy_6/02_08_22_R941_HG03834_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03834,N/A,,N/A,,,N/A,N/A,51.91,N/A,N/A,32.0,HG03834,SAMN33621958,BD28,BEB,SAS,YR3 +9.29,0.0,2.5,0.53,0.13,0.05,N/A,N/A,N/A,89274.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.87,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_15_22_R941_HG00658_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_15_22_R941_HG00658_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.301266,s3://human-pangenomics/working/HPRC/HG00658/raw_data/nanopore/guppy_6/02_15_22_R941_HG00658_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00658,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,68.86,N/A,N/A,2.0,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 +12.28,0.0,3.38,0.77,0.21,0.07,N/A,N/A,N/A,93714.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.29,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_15_22_R941_HG00658_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_15_22_R941_HG00658_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.302639,s3://human-pangenomics/working/HPRC/HG00658/raw_data/nanopore/guppy_6/02_15_22_R941_HG00658_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00658,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,86.75,N/A,N/A,2.0,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 +9.23,0.0,2.49,0.55,0.15,0.06,N/A,N/A,N/A,87952.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.09,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_15_22_R941_HG00658_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_15_22_R941_HG00658_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.342092,s3://human-pangenomics/working/HPRC/HG00658/raw_data/nanopore/guppy_6/02_15_22_R941_HG00658_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00658,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,69.61,N/A,N/A,12.0,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 +10.49,0.0,3.14,0.76,0.17,0.05,N/A,N/A,N/A,97579.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.49,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_15_22_R941_HG02514_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_15_22_R941_HG02514_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.334196,s3://human-pangenomics/working/HPRC/HG02514/raw_data/nanopore/guppy_6/02_15_22_R941_HG02514_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02514,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,70.91,N/A,N/A,3.0,HG02514,SAMN37797105,VN087,KHV,EAS,YR3 +10.86,0.0,3.3,0.8,0.19,0.05,N/A,N/A,N/A,96127.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.59,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_15_22_R941_HG02514_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_15_22_R941_HG02514_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.312431,s3://human-pangenomics/working/HPRC/HG02514/raw_data/nanopore/guppy_6/02_15_22_R941_HG02514_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02514,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,74.55,N/A,N/A,4.0,HG02514,SAMN37797105,VN087,KHV,EAS,YR3 +8.95,0.0,2.5,0.57,0.13,0.03,N/A,N/A,N/A,90028.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.99,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_15_22_R941_HG02514_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_15_22_R941_HG02514_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.293918,s3://human-pangenomics/working/HPRC/HG02514/raw_data/nanopore/guppy_6/02_15_22_R941_HG02514_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02514,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,65.96,N/A,N/A,3.0,HG02514,SAMN37797105,VN087,KHV,EAS,YR3 +9.5,0.0,2.76,0.72,0.22,0.08,N/A,N/A,N/A,94132.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,20.27,,,02_15_22_R941_HG03041_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_15_22_R941_HG03041_1,,,,,N/A,N/A,N/A,,N/A,0.338052,s3://human-pangenomics/working/HPRC/HG03041/raw_data/nanopore/guppy_6/02_15_22_R941_HG03041_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03041,N/A,,N/A,,,N/A,N/A,66.91,N/A,N/A,7.0,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 +9.49,0.0,2.69,0.72,0.23,0.09,N/A,N/A,N/A,87337.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,21.83,,,02_15_22_R941_HG03041_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_15_22_R941_HG03041_2,,,,,N/A,N/A,N/A,,N/A,0.339754,s3://human-pangenomics/working/HPRC/HG03041/raw_data/nanopore/guppy_6/02_15_22_R941_HG03041_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03041,N/A,,N/A,,,N/A,N/A,72.05,N/A,N/A,10.0,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 +8.29,0.01,2.44,0.65,0.2,0.08,N/A,N/A,N/A,95935.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,17.31,,,02_15_22_R941_HG03041_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_15_22_R941_HG03041_3,,,,,N/A,N/A,N/A,,N/A,0.315332,s3://human-pangenomics/working/HPRC/HG03041/raw_data/nanopore/guppy_6/02_15_22_R941_HG03041_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03041,N/A,,N/A,,,N/A,N/A,57.11,N/A,N/A,15.0,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 +11.14,0.0,2.91,0.63,0.16,0.05,N/A,N/A,N/A,96204.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,23.24,,,02_15_22_R941_HG03050_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_15_22_R941_HG03050_1,,,,,N/A,N/A,N/A,,N/A,0.325861,s3://human-pangenomics/working/HPRC/HG03050/raw_data/nanopore/guppy_6/02_15_22_R941_HG03050_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03050,N/A,,N/A,,,N/A,N/A,76.7,N/A,N/A,4.0,HG03050,SAMN37797108,GB113,GWD,AFR,YR3 +6.89,0.0,1.72,0.37,0.1,0.03,N/A,N/A,N/A,88591.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,15.72,,,02_15_22_R941_HG03050_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_15_22_R941_HG03050_2,,,,,N/A,N/A,N/A,,N/A,0.341999,s3://human-pangenomics/working/HPRC/HG03050/raw_data/nanopore/guppy_6/02_15_22_R941_HG03050_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03050,N/A,,N/A,,,N/A,N/A,51.87,N/A,N/A,3.0,HG03050,SAMN37797108,GB113,GWD,AFR,YR3 +9.85,0.0,2.51,0.54,0.14,0.05,N/A,N/A,N/A,92017.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,21.59,,,02_15_22_R941_HG03050_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_15_22_R941_HG03050_3,,,,,N/A,N/A,N/A,,N/A,0.346017,s3://human-pangenomics/working/HPRC/HG03050/raw_data/nanopore/guppy_6/02_15_22_R941_HG03050_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03050,N/A,,N/A,,,N/A,N/A,71.23,N/A,N/A,8.0,HG03050,SAMN37797108,GB113,GWD,AFR,YR3 +9.29,0.0,1.99,0.37,0.1,0.04,N/A,N/A,N/A,84730.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,22.54,,,02_15_22_R941_HG03239_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_15_22_R941_HG03239_1,,,,,N/A,N/A,N/A,,N/A,0.34711,s3://human-pangenomics/working/HPRC/HG03239/raw_data/nanopore/guppy_6/02_15_22_R941_HG03239_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03239,N/A,,N/A,,,N/A,N/A,74.38,N/A,N/A,3.0,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 +9.26,0.0,1.98,0.39,0.11,0.05,N/A,N/A,N/A,80855.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,23.69,,,02_15_22_R941_HG03239_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_15_22_R941_HG03239_2,,,,,N/A,N/A,N/A,,N/A,0.328338,s3://human-pangenomics/working/HPRC/HG03239/raw_data/nanopore/guppy_6/02_15_22_R941_HG03239_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03239,N/A,,N/A,,,N/A,N/A,78.16,N/A,N/A,6.0,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 +6.93,0.0,1.42,0.27,0.08,0.03,N/A,N/A,N/A,80856.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,17.79,,,02_15_22_R941_HG03239_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_15_22_R941_HG03239_3,,,,,N/A,N/A,N/A,,N/A,0.36187,s3://human-pangenomics/working/HPRC/HG03239/raw_data/nanopore/guppy_6/02_15_22_R941_HG03239_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03239,N/A,,N/A,,,N/A,N/A,58.69,N/A,N/A,7.0,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 +11.93,0.0,3.19,0.68,0.18,0.06,N/A,N/A,N/A,93003.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.76,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_17_22_R941_HG01074_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_17_22_R941_HG01074_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.378887,s3://human-pangenomics/working/HPRC/HG01074/raw_data/nanopore/guppy_6/02_17_22_R941_HG01074_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01074,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,85.01,N/A,N/A,4.0,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 +12.64,0.01,3.4,0.79,0.25,0.11,N/A,N/A,N/A,90778.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.95,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_17_22_R941_HG01074_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_17_22_R941_HG01074_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.370613,s3://human-pangenomics/working/HPRC/HG01074/raw_data/nanopore/guppy_6/02_17_22_R941_HG01074_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01074,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,92.24,N/A,N/A,22.0,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 +10.44,0.0,2.71,0.58,0.17,0.06,N/A,N/A,N/A,89548.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,23.5,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_17_22_R941_HG01074_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_17_22_R941_HG01074_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.404218,s3://human-pangenomics/working/HPRC/HG01074/raw_data/nanopore/guppy_6/02_17_22_R941_HG01074_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01074,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,77.56,N/A,N/A,6.0,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 +13.5,0.0,3.21,0.55,0.1,0.03,N/A,N/A,N/A,88735.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,30.82,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG00639_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG00639_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.338452,s3://human-pangenomics/working/HPRC/HG00639/raw_data/nanopore/guppy_6/03_01_22_R941_HG00639_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00639,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,101.69,N/A,N/A,4.0,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 +12.8,0.0,3.0,0.54,0.09,0.02,N/A,N/A,N/A,88325.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,29.42,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG00639_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG00639_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.347786,s3://human-pangenomics/working/HPRC/HG00639/raw_data/nanopore/guppy_6/03_01_22_R941_HG00639_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00639,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,97.09,N/A,N/A,0.0,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 +11.14,0.0,2.69,0.48,0.09,0.02,N/A,N/A,N/A,88377.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.53,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG00639_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG00639_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.345697,s3://human-pangenomics/working/HPRC/HG00639/raw_data/nanopore/guppy_6/03_01_22_R941_HG00639_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00639,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,84.25,N/A,N/A,3.0,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 +5.51,0.0,1.26,0.2,0.03,0.01,N/A,N/A,N/A,82757.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,13.51,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01081_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01081_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.419744,s3://human-pangenomics/working/HPRC/HG01081/raw_data/nanopore/guppy_6/03_01_22_R941_HG01081_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01081,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,44.57,N/A,N/A,0.0,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 +11.0,0.0,2.38,0.37,0.06,0.02,N/A,N/A,N/A,79502.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,28.32,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01081_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01081_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.354066,s3://human-pangenomics/working/HPRC/HG01081/raw_data/nanopore/guppy_6/03_01_22_R941_HG01081_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01081,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,93.45,N/A,N/A,1.0,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 +11.47,0.0,2.55,0.4,0.07,0.02,N/A,N/A,N/A,81570.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,28.68,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01081_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01081_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.345031,s3://human-pangenomics/working/HPRC/HG01081/raw_data/nanopore/guppy_6/03_01_22_R941_HG01081_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01081,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,94.66,N/A,N/A,2.0,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 +12.42,0.0,2.68,0.39,0.07,0.02,N/A,N/A,N/A,83915.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,30.17,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01081_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01081_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.364588,s3://human-pangenomics/working/HPRC/HG01081/raw_data/nanopore/guppy_6/03_01_22_R941_HG01081_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01081,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,99.55,N/A,N/A,1.0,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 +13.6,0.0,3.92,0.84,0.14,0.02,N/A,N/A,N/A,92449.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,29.48,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01150_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01150_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.340795,s3://human-pangenomics/working/HPRC/HG01150/raw_data/nanopore/guppy_6/03_01_22_R941_HG01150_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01150,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,97.29,N/A,N/A,0.0,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 +11.79,0.0,3.1,0.62,0.1,0.02,N/A,N/A,N/A,85044.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.99,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01150_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01150_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.357692,s3://human-pangenomics/working/HPRC/HG01150/raw_data/nanopore/guppy_6/03_01_22_R941_HG01150_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01150,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,92.38,N/A,N/A,0.0,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 +11.94,0.0,3.36,0.73,0.13,0.02,N/A,N/A,N/A,89619.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.75,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01150_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01150_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.318516,s3://human-pangenomics/working/HPRC/HG01150/raw_data/nanopore/guppy_6/03_01_22_R941_HG01150_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01150,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,88.26,N/A,N/A,0.0,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 +12.13,0.0,3.05,0.66,0.18,0.06,N/A,N/A,N/A,87902.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.88,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01940_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01940_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.329193,s3://human-pangenomics/working/HPRC/HG01940/raw_data/nanopore/guppy_6/03_01_22_R941_HG01940_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01940,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,92.0,N/A,N/A,5.0,HG01940,SAMN37797101,PEL015,PEL,AMR,YR3 +11.09,0.0,2.7,0.57,0.15,0.05,N/A,N/A,N/A,86686.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.97,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01940_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01940_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.332433,s3://human-pangenomics/working/HPRC/HG01940/raw_data/nanopore/guppy_6/03_01_22_R941_HG01940_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01940,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,85.7,N/A,N/A,3.0,HG01940,SAMN37797101,PEL015,PEL,AMR,YR3 +9.03,0.0,2.2,0.47,0.12,0.04,N/A,N/A,N/A,84815.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.6,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01940_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01940_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.311553,s3://human-pangenomics/working/HPRC/HG01940/raw_data/nanopore/guppy_6/03_01_22_R941_HG01940_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01940,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,71.28,N/A,N/A,1.0,HG01940,SAMN37797101,PEL015,PEL,AMR,YR3 +6.16,0.0,1.58,0.33,0.07,0.02,N/A,N/A,N/A,89548.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,13.87,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01969_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01969_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.384367,s3://human-pangenomics/working/HPRC/HG01969/raw_data/nanopore/guppy_6/03_01_22_R941_HG01969_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01969,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,45.78,N/A,N/A,2.0,HG01969,SAMN37797103,PEL023,PEL,AMR,YR3 +12.38,0.0,3.24,0.68,0.14,0.03,N/A,N/A,N/A,90251.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.65,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01969_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01969_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.335214,s3://human-pangenomics/working/HPRC/HG01969/raw_data/nanopore/guppy_6/03_01_22_R941_HG01969_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01969,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,91.24,N/A,N/A,0.0,HG01969,SAMN37797103,PEL023,PEL,AMR,YR3 +8.2,0.0,2.18,0.49,0.11,0.03,N/A,N/A,N/A,88378.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.7,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01969_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01969_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.362328,s3://human-pangenomics/working/HPRC/HG01969/raw_data/nanopore/guppy_6/03_01_22_R941_HG01969_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01969,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,61.72,N/A,N/A,3.0,HG01969,SAMN37797103,PEL023,PEL,AMR,YR3 +10.45,0.0,2.74,0.52,0.09,0.02,N/A,N/A,N/A,86206.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.37,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG03017_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG03017_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.338232,s3://human-pangenomics/working/HPRC/HG03017/raw_data/nanopore/guppy_6/03_01_22_R941_HG03017_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03017,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,80.42,N/A,N/A,0.0,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 +13.36,0.0,3.68,0.74,0.12,0.03,N/A,N/A,N/A,89100.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,30.05,,,03_01_22_R941_HG03017_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,03_01_22_R941_HG03017_2,,,,,N/A,N/A,N/A,,N/A,0.350232,s3://human-pangenomics/working/HPRC/HG03017/raw_data/nanopore/guppy_6/03_01_22_R941_HG03017_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03017,N/A,,N/A,,,N/A,N/A,99.17,N/A,N/A,0.0,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 +10.33,0.0,2.81,0.54,0.09,0.02,N/A,N/A,N/A,88874.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,23.31,,,03_01_22_R941_HG03017_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,03_01_22_R941_HG03017_3,,,,,N/A,N/A,N/A,,N/A,0.310042,s3://human-pangenomics/working/HPRC/HG03017/raw_data/nanopore/guppy_6/03_01_22_R941_HG03017_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03017,N/A,,N/A,,,N/A,N/A,76.92,N/A,N/A,0.0,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 +9.62,0.02,2.94,0.91,0.36,0.18,N/A,N/A,N/A,91973.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.93,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,04_12_22_R941_HG02273_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,04_12_22_R941_HG02273_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.306329,s3://human-pangenomics/working/HPRC/HG02273/raw_data/nanopore/guppy_6/04_12_22_R941_HG02273_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02273,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,69.07,N/A,N/A,50.0,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 +11.0,0.01,3.12,0.88,0.31,0.14,N/A,N/A,N/A,87115.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.46,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,04_12_22_R941_HG02273_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,04_12_22_R941_HG02273_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.336303,s3://human-pangenomics/working/HPRC/HG02273/raw_data/nanopore/guppy_6/04_12_22_R941_HG02273_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02273,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,84.0,N/A,N/A,21.0,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 +9.93,0.01,2.96,0.86,0.31,0.14,N/A,N/A,N/A,92212.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.61,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,04_12_22_R941_HG02273_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,04_12_22_R941_HG02273_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.322979,s3://human-pangenomics/working/HPRC/HG02273/raw_data/nanopore/guppy_6/04_12_22_R941_HG02273_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02273,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,71.3,N/A,N/A,26.0,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 +9.87,0.0,3.31,0.91,0.22,0.06,N/A,N/A,N/A,98065.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.1,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,04_12_22_R941_HG02965_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,04_12_22_R941_HG02965_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.348437,s3://human-pangenomics/working/HPRC/HG02965/raw_data/nanopore/guppy_6/04_12_22_R941_HG02965_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02965,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,66.34,N/A,N/A,2.0,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 +12.88,0.0,4.59,1.32,0.34,0.08,N/A,N/A,N/A,105322.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.55,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,04_12_22_R941_HG02965_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,04_12_22_R941_HG02965_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.337004,s3://human-pangenomics/working/HPRC/HG02965/raw_data/nanopore/guppy_6/04_12_22_R941_HG02965_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02965,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,81.02,N/A,N/A,1.0,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 +10.94,0.0,3.93,1.14,0.3,0.07,N/A,N/A,N/A,104882.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.94,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,04_12_22_R941_HG02965_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,04_12_22_R941_HG02965_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.358389,s3://human-pangenomics/working/HPRC/HG02965/raw_data/nanopore/guppy_6/04_12_22_R941_HG02965_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02965,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,69.09,N/A,N/A,3.0,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 +8.3,0.0,2.13,0.48,0.14,0.06,N/A,N/A,N/A,82006.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.37,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,04_12_22_R941_HG02976_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,04_12_22_R941_HG02976_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.368315,s3://human-pangenomics/working/HPRC/HG02976/raw_data/nanopore/guppy_6/04_12_22_R941_HG02976_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02976,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,67.21,N/A,N/A,11.0,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 +9.57,0.0,2.58,0.58,0.16,0.06,N/A,N/A,N/A,88094.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.79,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,04_12_22_R941_HG02976_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,04_12_22_R941_HG02976_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.374164,s3://human-pangenomics/working/HPRC/HG02976/raw_data/nanopore/guppy_6/04_12_22_R941_HG02976_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02976,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,71.9,N/A,N/A,7.0,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 +9.61,0.0,2.61,0.58,0.15,0.05,N/A,N/A,N/A,88896.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.7,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,04_12_22_R941_HG02976_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,04_12_22_R941_HG02976_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.362134,s3://human-pangenomics/working/HPRC/HG02976/raw_data/nanopore/guppy_6/04_12_22_R941_HG02976_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02976,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,71.6,N/A,N/A,3.0,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 +2.92,0.0,0.57,0.11,0.03,0.02,N/A,N/A,N/A,82523.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,7.34,,,04_12_22_R941_HG03195_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,04_12_22_R941_HG03195_1,,,,,N/A,N/A,N/A,,N/A,0.435326,s3://human-pangenomics/working/HPRC/HG03195/raw_data/nanopore/guppy_6/04_12_22_R941_HG03195_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03195,N/A,,N/A,,,N/A,N/A,24.23,N/A,N/A,3.0,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 +3.75,0.0,0.72,0.15,0.05,0.02,N/A,N/A,N/A,79825.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,9.83,,,04_12_22_R941_HG03195_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,04_12_22_R941_HG03195_2,,,,,N/A,N/A,N/A,,N/A,0.39897,s3://human-pangenomics/working/HPRC/HG03195/raw_data/nanopore/guppy_6/04_12_22_R941_HG03195_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03195,N/A,,N/A,,,N/A,N/A,32.42,N/A,N/A,4.0,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 +7.67,0.01,1.47,0.3,0.09,0.04,N/A,N/A,N/A,79740.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,20.17,,,04_12_22_R941_HG03195_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,04_12_22_R941_HG03195_3,,,,,N/A,N/A,N/A,,N/A,0.379395,s3://human-pangenomics/working/HPRC/HG03195/raw_data/nanopore/guppy_6/04_12_22_R941_HG03195_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03195,N/A,,N/A,,,N/A,N/A,66.57,N/A,N/A,15.0,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 +3.74,0.01,0.81,0.22,0.1,0.06,N/A,N/A,N/A,76326.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,10.21,,,04_12_22_R941_HG03195_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,04_12_22_R941_HG03195_4,,,,,N/A,N/A,N/A,,N/A,0.399203,s3://human-pangenomics/working/HPRC/HG03195/raw_data/nanopore/guppy_6/04_12_22_R941_HG03195_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03195,N/A,,N/A,,,N/A,N/A,33.71,N/A,N/A,24.0,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 +12.28,0.0,5.0,1.73,0.54,0.17,N/A,N/A,N/A,113230.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,22.12,,,04_12_22_R941_HG03225_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,04_12_22_R941_HG03225_1,,,,,N/A,N/A,N/A,,N/A,0.321181,s3://human-pangenomics/working/HPRC/HG03225/raw_data/nanopore/guppy_6/04_12_22_R941_HG03225_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03225,N/A,,N/A,,,N/A,N/A,72.99,N/A,N/A,4.0,HG03225,SAMN33621957,,MSL,AFR,YR3 +13.06,0.0,5.3,1.82,0.57,0.18,N/A,N/A,N/A,111305.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,23.85,,,04_12_22_R941_HG03225_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,04_12_22_R941_HG03225_2,,,,,N/A,N/A,N/A,,N/A,0.341689,s3://human-pangenomics/working/HPRC/HG03225/raw_data/nanopore/guppy_6/04_12_22_R941_HG03225_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03225,N/A,,N/A,,,N/A,N/A,78.71,N/A,N/A,4.0,HG03225,SAMN33621957,,MSL,AFR,YR3 +10.17,0.0,4.07,1.39,0.44,0.14,N/A,N/A,N/A,107783.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,19.08,,,04_12_22_R941_HG03225_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,04_12_22_R941_HG03225_3,,,,,N/A,N/A,N/A,,N/A,0.385432,s3://human-pangenomics/working/HPRC/HG03225/raw_data/nanopore/guppy_6/04_12_22_R941_HG03225_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03225,N/A,,N/A,,,N/A,N/A,62.97,N/A,N/A,7.0,HG03225,SAMN33621957,,MSL,AFR,YR3 +10.33,0.0,2.31,0.34,0.05,0.01,N/A,N/A,N/A,90186.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,23.22,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_17_22_R941_GM18522_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_17_22_R941_GM18522_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.336724,s3://human-pangenomics/working/HPRC/NA18522/raw_data/nanopore/guppy_6/05_17_22_R941_GM18522_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM18522,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,76.64,N/A,N/A,0.0,,,,,, +13.52,0.0,3.04,0.46,0.07,0.01,N/A,N/A,N/A,92175.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,29.67,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_17_22_R941_GM18522_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_17_22_R941_GM18522_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.333979,s3://human-pangenomics/working/HPRC/NA18522/raw_data/nanopore/guppy_6/05_17_22_R941_GM18522_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM18522,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,97.92,N/A,N/A,0.0,,,,,, +6.97,0.0,1.65,0.27,0.05,0.01,N/A,N/A,N/A,87553.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,16.12,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_17_22_R941_GM18522_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_17_22_R941_GM18522_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.385127,s3://human-pangenomics/working/HPRC/NA18522/raw_data/nanopore/guppy_6/05_17_22_R941_GM18522_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM18522,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,53.19,N/A,N/A,1.0,,,,,, +7.17,0.0,1.05,0.1,0.02,0.01,N/A,N/A,N/A,78539.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,19.62,,,05_17_22_R941_HG03130_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_17_22_R941_HG03130_1,,,,,N/A,N/A,N/A,,N/A,0.338227,s3://human-pangenomics/working/HPRC/HG03130/raw_data/nanopore/guppy_6/05_17_22_R941_HG03130_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03130,N/A,,N/A,,,N/A,N/A,64.75,N/A,N/A,0.0,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 +5.75,0.0,0.82,0.08,0.01,0.0,N/A,N/A,N/A,77435.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,16.12,,,05_17_22_R941_HG03130_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_17_22_R941_HG03130_2,,,,,N/A,N/A,N/A,,N/A,0.336958,s3://human-pangenomics/working/HPRC/HG03130/raw_data/nanopore/guppy_6/05_17_22_R941_HG03130_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03130,N/A,,N/A,,,N/A,N/A,53.19,N/A,N/A,2.0,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 +8.37,0.0,1.25,0.12,0.02,0.01,N/A,N/A,N/A,77603.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,23.12,,,05_17_22_R941_HG03130_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_17_22_R941_HG03130_3,,,,,N/A,N/A,N/A,,N/A,0.332566,s3://human-pangenomics/working/HPRC/HG03130/raw_data/nanopore/guppy_6/05_17_22_R941_HG03130_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03130,N/A,,N/A,,,N/A,N/A,76.3,N/A,N/A,0.0,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 +7.98,0.0,1.75,0.35,0.1,0.04,N/A,N/A,N/A,87401.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,18.61,,,05_17_22_R941_HG03139_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_17_22_R941_HG03139_1,,,,,N/A,N/A,N/A,,N/A,0.361164,s3://human-pangenomics/working/HPRC/HG03139/raw_data/nanopore/guppy_6/05_17_22_R941_HG03139_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03139,N/A,,N/A,,,N/A,N/A,61.42,N/A,N/A,5.0,HG03139,SAMN33758792,,ESN,AFR,YR3 +8.82,0.0,1.84,0.35,0.1,0.04,N/A,N/A,N/A,88064.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,20.48,,,05_17_22_R941_HG03139_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_17_22_R941_HG03139_2,,,,,N/A,N/A,N/A,,N/A,0.30899,s3://human-pangenomics/working/HPRC/HG03139/raw_data/nanopore/guppy_6/05_17_22_R941_HG03139_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03139,N/A,,N/A,,,N/A,N/A,67.58,N/A,N/A,12.0,HG03139,SAMN33758792,,ESN,AFR,YR3 +8.0,0.0,1.72,0.33,0.09,0.04,N/A,N/A,N/A,87921.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,18.56,,,05_17_22_R941_HG03139_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_17_22_R941_HG03139_3,,,,,N/A,N/A,N/A,,N/A,0.356189,s3://human-pangenomics/working/HPRC/HG03139/raw_data/nanopore/guppy_6/05_17_22_R941_HG03139_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03139,N/A,,N/A,,,N/A,N/A,61.26,N/A,N/A,8.0,HG03139,SAMN33758792,,ESN,AFR,YR3 +13.56,0.0,3.08,0.49,0.07,0.01,N/A,N/A,N/A,89912.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,30.66,,,05_17_22_R941_HG03209_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_17_22_R941_HG03209_1,,,,,N/A,N/A,N/A,,N/A,0.338017,s3://human-pangenomics/working/HPRC/HG03209/raw_data/nanopore/guppy_6/05_17_22_R941_HG03209_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03209,N/A,,N/A,,,N/A,N/A,101.17,N/A,N/A,0.0,HG03209,SAMN33758793,,MSL,AFR,YR3 +4.38,0.0,0.83,0.12,0.01,0.0,N/A,N/A,N/A,76033.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,12.31,,,05_17_22_R941_HG03209_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_17_22_R941_HG03209_2,,,,,N/A,N/A,N/A,,N/A,0.339003,s3://human-pangenomics/working/HPRC/HG03209/raw_data/nanopore/guppy_6/05_17_22_R941_HG03209_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03209,N/A,,N/A,,,N/A,N/A,40.63,N/A,N/A,0.0,HG03209,SAMN33758793,,MSL,AFR,YR3 +11.85,0.0,2.66,0.44,0.06,0.01,N/A,N/A,N/A,86569.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,27.97,,,05_17_22_R941_HG03209_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_17_22_R941_HG03209_3,,,,,N/A,N/A,N/A,,N/A,0.312373,s3://human-pangenomics/working/HPRC/HG03209/raw_data/nanopore/guppy_6/05_17_22_R941_HG03209_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03209,N/A,,N/A,,,N/A,N/A,92.31,N/A,N/A,1.0,HG03209,SAMN33758793,,MSL,AFR,YR3 +9.58,0.0,2.45,0.46,0.09,0.02,N/A,N/A,N/A,95247.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.21,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_24_22_R941_GM19338_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_24_22_R941_GM19338_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.326651,s3://human-pangenomics/working/HPRC/NA19338/raw_data/nanopore/guppy_6/05_24_22_R941_GM19338_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19338,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,66.68,N/A,N/A,1.0,,,,,, +11.67,0.0,3.03,0.6,0.12,0.03,N/A,N/A,N/A,91754.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.57,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_24_22_R941_GM19338_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_24_22_R941_GM19338_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.305379,s3://human-pangenomics/working/HPRC/NA19338/raw_data/nanopore/guppy_6/05_24_22_R941_GM19338_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19338,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,84.39,N/A,N/A,1.0,,,,,, +9.19,0.0,2.36,0.44,0.08,0.02,N/A,N/A,N/A,94485.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.54,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_24_22_R941_GM19338_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_24_22_R941_GM19338_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.331124,s3://human-pangenomics/working/HPRC/NA19338/raw_data/nanopore/guppy_6/05_24_22_R941_GM19338_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19338,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,64.47,N/A,N/A,2.0,,,,,, +12.65,0.0,3.45,0.68,0.11,0.02,N/A,N/A,N/A,93740.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.12,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_24_22_R941_GM19391_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_24_22_R941_GM19391_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.350281,s3://human-pangenomics/working/HPRC/NA19391/raw_data/nanopore/guppy_6/05_24_22_R941_GM19391_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19391,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,89.49,N/A,N/A,1.0,,,,,, +13.23,0.0,3.54,0.67,0.11,0.02,N/A,N/A,N/A,91516.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,29.12,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_24_22_R941_GM19391_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_24_22_R941_GM19391_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.331306,s3://human-pangenomics/working/HPRC/NA19391/raw_data/nanopore/guppy_6/05_24_22_R941_GM19391_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19391,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,96.08,N/A,N/A,1.0,,,,,, +10.36,0.0,2.73,0.54,0.1,0.03,N/A,N/A,N/A,81407.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.63,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_24_22_R941_GM19391_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_24_22_R941_GM19391_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.359076,s3://human-pangenomics/working/HPRC/NA19391/raw_data/nanopore/guppy_6/05_24_22_R941_GM19391_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19391,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,84.59,N/A,N/A,2.0,,,,,, +9.24,0.0,1.37,0.24,0.05,0.01,N/A,N/A,N/A,75210.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.98,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_24_22_R941_GM19468_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_24_22_R941_GM19468_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.353823,s3://human-pangenomics/working/HPRC/NA19468/raw_data/nanopore/guppy_6/05_24_22_R941_GM19468_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19468,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,89.02,N/A,N/A,1.0,,,,,, +8.88,0.0,1.38,0.25,0.06,0.02,N/A,N/A,N/A,75624.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.61,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_24_22_R941_GM19468_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_24_22_R941_GM19468_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.339855,s3://human-pangenomics/working/HPRC/NA19468/raw_data/nanopore/guppy_6/05_24_22_R941_GM19468_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19468,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,84.5,N/A,N/A,1.0,,,,,, +8.77,0.0,1.33,0.24,0.05,0.02,N/A,N/A,N/A,75099.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.57,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_24_22_R941_GM19468_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_24_22_R941_GM19468_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.363104,s3://human-pangenomics/working/HPRC/NA19468/raw_data/nanopore/guppy_6/05_24_22_R941_GM19468_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19468,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,84.38,N/A,N/A,2.0,,,,,, +8.33,0.0,2.18,0.44,0.08,0.01,N/A,N/A,N/A,83325.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,20.2,,,05_24_22_R941_HG03458_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_24_22_R941_HG03458_1,,,,,N/A,N/A,N/A,,N/A,0.328283,s3://human-pangenomics/working/HPRC/HG03458/raw_data/nanopore/guppy_6/05_24_22_R941_HG03458_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03458,N/A,,N/A,,,N/A,N/A,66.67,N/A,N/A,0.0,HG03458,SAMN37797109,,MSL,AFR,YR3 +9.9,0.0,2.67,0.58,0.11,0.02,N/A,N/A,N/A,82416.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,24.19,,,05_24_22_R941_HG03458_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_24_22_R941_HG03458_2,,,,,N/A,N/A,N/A,,N/A,0.363894,s3://human-pangenomics/working/HPRC/HG03458/raw_data/nanopore/guppy_6/05_24_22_R941_HG03458_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03458,N/A,,N/A,,,N/A,N/A,79.84,N/A,N/A,0.0,HG03458,SAMN37797109,,MSL,AFR,YR3 +9.59,0.0,2.57,0.56,0.11,0.02,N/A,N/A,N/A,81018.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,23.88,,,05_24_22_R941_HG03458_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_24_22_R941_HG03458_3,,,,,N/A,N/A,N/A,,N/A,0.393812,s3://human-pangenomics/working/HPRC/HG03458/raw_data/nanopore/guppy_6/05_24_22_R941_HG03458_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03458,N/A,,N/A,,,N/A,N/A,78.8,N/A,N/A,0.0,HG03458,SAMN37797109,,MSL,AFR,YR3 +11.2,0.0,3.29,0.76,0.18,0.06,N/A,N/A,N/A,92406.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,24.24,,,05_24_22_R941_HG03470_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_24_22_R941_HG03470_1,,,,,N/A,N/A,N/A,,N/A,0.364659,s3://human-pangenomics/working/HPRC/HG03470/raw_data/nanopore/guppy_6/05_24_22_R941_HG03470_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03470,N/A,,N/A,,,N/A,N/A,79.99,N/A,N/A,4.0,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 +9.12,0.0,2.73,0.67,0.16,0.05,N/A,N/A,N/A,90420.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,20.14,,,05_24_22_R941_HG03470_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_24_22_R941_HG03470_2,,,,,N/A,N/A,N/A,,N/A,0.334592,s3://human-pangenomics/working/HPRC/HG03470/raw_data/nanopore/guppy_6/05_24_22_R941_HG03470_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03470,N/A,,N/A,,,N/A,N/A,66.47,N/A,N/A,8.0,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 +10.33,0.0,3.08,0.74,0.18,0.06,N/A,N/A,N/A,91609.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,22.56,,,05_24_22_R941_HG03470_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_24_22_R941_HG03470_3,,,,,N/A,N/A,N/A,,N/A,0.330391,s3://human-pangenomics/working/HPRC/HG03470/raw_data/nanopore/guppy_6/05_24_22_R941_HG03470_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03470,N/A,,N/A,,,N/A,N/A,74.44,N/A,N/A,5.0,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 +11.0,0.0,2.73,0.78,0.24,0.09,N/A,N/A,N/A,82004.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,27.9,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_22_21_R941_HG00738_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_22_21_R941_HG00738_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.350062,s3://human-pangenomics/working/HPRC/HG00738/raw_data/nanopore/guppy_6/06_22_21_R941_HG00738_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00738,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,92.07,N/A,N/A,9.0,HG00738,SAMN26237493,PR07,PUR,AMR,YR2 +11.9,0.0,2.05,0.31,0.08,0.03,N/A,N/A,N/A,75826.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,33.46,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_22_21_R941_HG02135_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_22_21_R941_HG02135_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.316953,s3://human-pangenomics/working/HPRC/HG02135/raw_data/nanopore/guppy_6/06_22_21_R941_HG02135_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02135,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,110.43,N/A,N/A,7.0,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 +10.34,0.0,2.25,0.37,0.07,0.02,N/A,N/A,N/A,86342.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.45,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18612_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18612_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.340271,s3://human-pangenomics/working/HPRC/NA18612/raw_data/nanopore/guppy_6/06_28_22_R941_GM18612_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM18612,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,80.7,N/A,N/A,0.0,,,,,, +8.41,0.0,1.89,0.33,0.08,0.03,N/A,N/A,N/A,86242.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.88,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18612_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18612_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.369822,s3://human-pangenomics/working/HPRC/NA18612/raw_data/nanopore/guppy_6/06_28_22_R941_GM18612_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM18612,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,65.62,N/A,N/A,5.0,,,,,, +11.6,0.0,2.49,0.42,0.1,0.04,N/A,N/A,N/A,84839.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,28.01,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18612_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18612_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.329798,s3://human-pangenomics/working/HPRC/NA18612/raw_data/nanopore/guppy_6/06_28_22_R941_GM18612_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM18612,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,92.45,N/A,N/A,2.0,,,,,, +9.59,0.0,2.2,0.36,0.05,0.01,N/A,N/A,N/A,79877.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.53,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18747_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18747_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.326619,s3://human-pangenomics/working/HPRC/NA18747/raw_data/nanopore/guppy_6/06_28_22_R941_GM18747_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM18747,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,80.94,N/A,N/A,0.0,,,,,, +10.02,0.0,2.4,0.41,0.06,0.01,N/A,N/A,N/A,83080.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.51,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18747_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18747_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.340225,s3://human-pangenomics/working/HPRC/NA18747/raw_data/nanopore/guppy_6/06_28_22_R941_GM18747_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM18747,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,80.89,N/A,N/A,1.0,,,,,, +11.51,0.0,2.97,0.54,0.08,0.01,N/A,N/A,N/A,88902.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.08,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18747_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18747_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.330606,s3://human-pangenomics/working/HPRC/NA18747/raw_data/nanopore/guppy_6/06_28_22_R941_GM18747_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM18747,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,86.07,N/A,N/A,1.0,,,,,, +9.2,0.0,1.79,0.33,0.1,0.04,N/A,N/A,N/A,77826.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.8,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18971_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18971_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.378314,s3://human-pangenomics/working/HPRC/NA18971/raw_data/nanopore/guppy_6/06_28_22_R941_GM18971_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM18971,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,81.83,N/A,N/A,8.0,,,,,, +10.78,0.0,2.17,0.43,0.13,0.05,N/A,N/A,N/A,78916.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,28.49,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18971_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18971_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.383637,s3://human-pangenomics/working/HPRC/NA18971/raw_data/nanopore/guppy_6/06_28_22_R941_GM18971_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM18971,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,94.02,N/A,N/A,10.0,,,,,, +10.0,0.0,1.99,0.39,0.11,0.04,N/A,N/A,N/A,78514.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.59,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18971_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18971_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.366243,s3://human-pangenomics/working/HPRC/NA18971/raw_data/nanopore/guppy_6/06_28_22_R941_GM18971_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM18971,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,87.74,N/A,N/A,6.0,,,,,, +7.43,0.0,1.54,0.2,0.03,0.01,N/A,N/A,N/A,82261.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.63,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18983_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18983_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.432677,s3://human-pangenomics/working/HPRC/NA18983/raw_data/nanopore/guppy_6/06_28_22_R941_GM18983_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM18983,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,61.47,N/A,N/A,2.0,,,,,, +9.45,0.0,1.98,0.28,0.04,0.01,N/A,N/A,N/A,78875.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.7,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18983_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18983_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.404763,s3://human-pangenomics/working/HPRC/NA18983/raw_data/nanopore/guppy_6/06_28_22_R941_GM18983_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM18983,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,81.5,N/A,N/A,0.0,,,,,, +9.52,0.0,2.03,0.29,0.04,0.01,N/A,N/A,N/A,78929.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.77,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18983_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18983_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.403313,s3://human-pangenomics/working/HPRC/NA18983/raw_data/nanopore/guppy_6/06_28_22_R941_GM18983_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM18983,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,81.73,N/A,N/A,3.0,,,,,, +9.54,0.0,1.78,0.21,0.04,0.01,N/A,N/A,N/A,81568.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.21,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG00140_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG00140_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.385939,s3://human-pangenomics/working/HPRC/HG00140/raw_data/nanopore/guppy_6/06_28_22_R941_HG00140_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00140,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,79.9,N/A,N/A,2.0,HG00140,SAMN33621941,,GBR,EUR,YR3 +10.8,0.0,2.05,0.24,0.04,0.01,N/A,N/A,N/A,85375.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.01,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG00140_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG00140_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.361734,s3://human-pangenomics/working/HPRC/HG00140/raw_data/nanopore/guppy_6/06_28_22_R941_HG00140_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00140,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,85.83,N/A,N/A,1.0,HG00140,SAMN33621941,,GBR,EUR,YR3 +9.42,0.0,1.79,0.21,0.04,0.01,N/A,N/A,N/A,85423.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.65,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG00140_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG00140_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.354421,s3://human-pangenomics/working/HPRC/HG00140/raw_data/nanopore/guppy_6/06_28_22_R941_HG00140_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00140,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,74.74,N/A,N/A,3.0,HG00140,SAMN33621941,,GBR,EUR,YR3 +7.48,0.0,1.96,0.59,0.2,0.07,N/A,N/A,N/A,85739.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,17.7,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG00323_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG00323_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.399829,s3://human-pangenomics/working/HPRC/HG00323/raw_data/nanopore/guppy_6/06_28_22_R941_HG00323_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00323,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,58.41,N/A,N/A,4.0,HG00323,SAMN33621942,,FIN,EUR,YR3 +9.35,0.0,2.5,0.79,0.3,0.12,N/A,N/A,N/A,85829.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.04,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG00323_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG00323_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.391998,s3://human-pangenomics/working/HPRC/HG00323/raw_data/nanopore/guppy_6/06_28_22_R941_HG00323_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00323,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,72.74,N/A,N/A,14.0,HG00323,SAMN33621942,,FIN,EUR,YR3 +5.56,0.0,0.96,0.22,0.07,0.02,N/A,N/A,N/A,60729.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.11,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG00323_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG00323_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.414351,s3://human-pangenomics/working/HPRC/HG00323/raw_data/nanopore/guppy_6/06_28_22_R941_HG00323_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00323,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,69.65,N/A,N/A,6.0,HG00323,SAMN33621942,,FIN,EUR,YR3 +11.38,0.0,2.74,0.48,0.07,0.01,N/A,N/A,N/A,84809.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.24,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02040_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02040_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.370728,s3://human-pangenomics/working/HPRC/HG02040/raw_data/nanopore/guppy_6/06_28_22_R941_HG02040_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02040,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,89.9,N/A,N/A,0.0,HG02040,SAMN33758784,,KHV,EAS,YR3 +13.59,0.0,3.31,0.58,0.09,0.02,N/A,N/A,N/A,88092.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,31.23,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02040_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02040_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.35563,s3://human-pangenomics/working/HPRC/HG02040/raw_data/nanopore/guppy_6/06_28_22_R941_HG02040_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02040,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,103.06,N/A,N/A,0.0,HG02040,SAMN33758784,,KHV,EAS,YR3 +9.27,0.0,2.07,0.34,0.05,0.01,N/A,N/A,N/A,79018.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.19,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02040_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02040_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.356216,s3://human-pangenomics/working/HPRC/HG02040/raw_data/nanopore/guppy_6/06_28_22_R941_HG02040_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02040,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,79.82,N/A,N/A,0.0,HG02040,SAMN33758784,,KHV,EAS,YR3 +8.68,0.0,1.74,0.26,0.05,0.01,N/A,N/A,N/A,77287.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,23.54,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02155_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02155_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.393689,s3://human-pangenomics/working/HPRC/HG02155/raw_data/nanopore/guppy_6/06_28_22_R941_HG02155_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02155,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,77.69,N/A,N/A,1.0,HG02155,SAMN33621951,,CDX,EAS,YR3 +11.23,0.0,2.68,0.49,0.12,0.05,N/A,N/A,N/A,87421.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.02,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02155_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02155_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.372588,s3://human-pangenomics/working/HPRC/HG02155/raw_data/nanopore/guppy_6/06_28_22_R941_HG02155_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02155,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,85.86,N/A,N/A,10.0,HG02155,SAMN33621951,,CDX,EAS,YR3 +10.95,0.0,2.58,0.47,0.12,0.05,N/A,N/A,N/A,85506.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.11,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02155_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02155_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.395328,s3://human-pangenomics/working/HPRC/HG02155/raw_data/nanopore/guppy_6/06_28_22_R941_HG02155_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02155,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,86.15,N/A,N/A,3.0,HG02155,SAMN33621951,,CDX,EAS,YR3 +9.25,0.0,2.26,0.42,0.07,0.01,N/A,N/A,N/A,83115.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.62,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02165_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02165_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.377173,s3://human-pangenomics/working/HPRC/HG02165/raw_data/nanopore/guppy_6/06_28_22_R941_HG02165_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02165,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,74.64,N/A,N/A,3.0,HG02165,SAMN33758785,,CDX,EAS,YR3 +9.6,0.0,2.48,0.48,0.09,0.02,N/A,N/A,N/A,90174.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.43,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02165_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02165_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.376957,s3://human-pangenomics/working/HPRC/HG02165/raw_data/nanopore/guppy_6/06_28_22_R941_HG02165_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02165,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,70.71,N/A,N/A,1.0,HG02165,SAMN33758785,,CDX,EAS,YR3 +11.34,0.0,3.19,0.64,0.12,0.03,N/A,N/A,N/A,99543.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.79,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02165_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02165_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.38002,s3://human-pangenomics/working/HPRC/HG02165/raw_data/nanopore/guppy_6/06_28_22_R941_HG02165_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02165,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,75.21,N/A,N/A,1.0,HG02165,SAMN33758785,,CDX,EAS,YR3 +12.93,0.0,3.24,0.6,0.1,0.02,N/A,N/A,N/A,84324.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,31.01,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02922_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02922_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.357278,s3://human-pangenomics/working/HPRC/HG02922/raw_data/nanopore/guppy_6/06_28_22_R941_HG02922_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02922,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,102.34,N/A,N/A,1.0,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 +13.1,0.0,3.37,0.64,0.1,0.02,N/A,N/A,N/A,85325.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,30.97,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02922_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02922_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.368987,s3://human-pangenomics/working/HPRC/HG02922/raw_data/nanopore/guppy_6/06_28_22_R941_HG02922_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02922,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,102.21,N/A,N/A,1.0,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 +9.18,0.0,2.2,0.42,0.07,0.01,N/A,N/A,N/A,74004.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.39,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02922_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02922_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.361226,s3://human-pangenomics/working/HPRC/HG02922/raw_data/nanopore/guppy_6/06_28_22_R941_HG02922_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02922,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,83.8,N/A,N/A,0.0,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 +5.66,0.0,0.56,0.09,0.02,0.01,N/A,N/A,N/A,62807.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,23.9,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG00544_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG00544_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.365332,s3://human-pangenomics/working/HPRC/HG00544/raw_data/nanopore/guppy_6/07_13_21_R941_HG00544_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00544,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,78.86,N/A,N/A,0.0,HG00544,SAMN26237491,SH042,CHS,EAS,YR2 +4.89,0.0,0.38,0.05,0.01,0.0,N/A,N/A,N/A,62839.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,21.4,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG00544_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG00544_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.360982,s3://human-pangenomics/working/HPRC/HG00544/raw_data/nanopore/guppy_6/07_13_21_R941_HG00544_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00544,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,70.63,N/A,N/A,0.0,HG00544,SAMN26237491,SH042,CHS,EAS,YR2 +5.68,0.0,0.43,0.06,0.01,0.01,N/A,N/A,N/A,65631.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,23.17,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG00544_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG00544_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.354387,s3://human-pangenomics/working/HPRC/HG00544/raw_data/nanopore/guppy_6/07_13_21_R941_HG00544_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00544,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,76.46,N/A,N/A,4.0,HG00544,SAMN26237491,SH042,CHS,EAS,YR2 +7.11,0.0,0.93,0.14,0.03,0.01,N/A,N/A,N/A,72401.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,22.45,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG00706_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG00706_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.345581,s3://human-pangenomics/working/HPRC/HG00706/raw_data/nanopore/guppy_6/07_13_21_R941_HG00706_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00706,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,74.09,N/A,N/A,1.0,HG00706,SAMN37706905,SH090,CHS,EAS,YR2 +8.6,0.0,1.16,0.19,0.04,0.01,N/A,N/A,N/A,72132.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,27.23,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG00706_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG00706_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.348804,s3://human-pangenomics/working/HPRC/HG00706/raw_data/nanopore/guppy_6/07_13_21_R941_HG00706_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00706,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,89.85,N/A,N/A,3.0,HG00706,SAMN37706905,SH090,CHS,EAS,YR2 +7.12,0.0,0.93,0.14,0.03,0.01,N/A,N/A,N/A,72386.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,22.53,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG00706_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG00706_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.323904,s3://human-pangenomics/working/HPRC/HG00706/raw_data/nanopore/guppy_6/07_13_21_R941_HG00706_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00706,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,74.34,N/A,N/A,1.0,HG00706,SAMN37706905,SH090,CHS,EAS,YR2 +7.47,0.0,0.92,0.1,0.02,0.0,N/A,N/A,N/A,72927.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,23.78,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG00738_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG00738_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.350161,s3://human-pangenomics/working/HPRC/HG00738/raw_data/nanopore/guppy_6/07_13_21_R941_HG00738_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00738,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,78.47,N/A,N/A,1.0,HG00738,SAMN26237493,PR07,PUR,AMR,YR2 +8.23,0.0,1.03,0.13,0.02,0.01,N/A,N/A,N/A,71965.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,26.69,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG00738_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG00738_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.347786,s3://human-pangenomics/working/HPRC/HG00738/raw_data/nanopore/guppy_6/07_13_21_R941_HG00738_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00738,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,88.09,N/A,N/A,5.0,HG00738,SAMN26237493,PR07,PUR,AMR,YR2 +6.38,0.0,0.62,0.05,0.01,0.0,N/A,N/A,N/A,76438.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,18.71,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG01255_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG01255_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.364765,s3://human-pangenomics/working/HPRC/HG01255/raw_data/nanopore/guppy_6/07_13_21_R941_HG01255_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01255,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,61.74,N/A,N/A,1.0,HG01255,SAMN26237495,CLM15,CLM,AMR,YR2 +8.92,0.0,0.85,0.07,0.01,0.0,N/A,N/A,N/A,75335.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,26.75,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG01255_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG01255_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.365546,s3://human-pangenomics/working/HPRC/HG01255/raw_data/nanopore/guppy_6/07_13_21_R941_HG01255_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01255,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,88.28,N/A,N/A,2.0,HG01255,SAMN26237495,CLM15,CLM,AMR,YR2 +11.21,0.0,1.24,0.13,0.02,0.0,N/A,N/A,N/A,77211.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,32.19,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG01255_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG01255_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.381373,s3://human-pangenomics/working/HPRC/HG01255/raw_data/nanopore/guppy_6/07_13_21_R941_HG01255_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01255,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,106.24,N/A,N/A,0.0,HG01255,SAMN26237495,CLM15,CLM,AMR,YR2 +7.61,0.0,0.38,0.03,0.0,0.0,N/A,N/A,N/A,68103.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,28.63,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG02071_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG02071_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.328543,s3://human-pangenomics/working/HPRC/HG02071/raw_data/nanopore/guppy_6/07_13_21_R941_HG02071_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02071,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,94.47,N/A,N/A,0.0,HG02071,SAMN26267380,VN065,KHV,EAS,YR2 +8.45,0.0,0.49,0.05,0.01,0.0,N/A,N/A,N/A,67686.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,31.93,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG02071_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG02071_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.315385,s3://human-pangenomics/working/HPRC/HG02071/raw_data/nanopore/guppy_6/07_13_21_R941_HG02071_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02071,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,105.36,N/A,N/A,0.0,HG02071,SAMN26267380,VN065,KHV,EAS,YR2 +4.76,0.0,0.25,0.02,0.0,0.0,N/A,N/A,N/A,67347.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,18.24,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG02071_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG02071_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.335713,s3://human-pangenomics/working/HPRC/HG02071/raw_data/nanopore/guppy_6/07_13_21_R941_HG02071_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02071,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,60.19,N/A,N/A,0.0,HG02071,SAMN26267380,VN065,KHV,EAS,YR2 +6.32,0.0,0.32,0.02,0.0,0.0,N/A,N/A,N/A,62895.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,26.78,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG02074_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG02074_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.238384,s3://human-pangenomics/working/HPRC/HG02074/raw_data/nanopore/guppy_6/07_13_21_R941_HG02074_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02074,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,88.36,N/A,N/A,0.0,HG02074,SAMN26267381,VN066,KHV,EAS,YR2 +6.81,0.0,0.46,0.05,0.01,0.0,N/A,N/A,N/A,62972.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,28.24,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG02074_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG02074_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.253961,s3://human-pangenomics/working/HPRC/HG02074/raw_data/nanopore/guppy_6/07_13_21_R941_HG02074_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02074,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,93.19,N/A,N/A,0.0,HG02074,SAMN26267381,VN066,KHV,EAS,YR2 +5.53,0.0,0.31,0.03,0.0,0.0,N/A,N/A,N/A,62011.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,23.83,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG02074_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG02074_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.282248,s3://human-pangenomics/working/HPRC/HG02074/raw_data/nanopore/guppy_6/07_13_21_R941_HG02074_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02074,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,78.64,N/A,N/A,0.0,HG02074,SAMN26267381,VN066,KHV,EAS,YR2 +10.21,0.0,1.31,0.15,0.03,0.01,N/A,N/A,N/A,74492.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,30.27,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG02132_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG02132_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.375313,s3://human-pangenomics/working/HPRC/HG02132/raw_data/nanopore/guppy_6/07_13_21_R941_HG02132_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02132,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,99.88,N/A,N/A,1.0,HG02132,SAMN26267382,VN080,KHV,EAS,YR2 +4.61,0.0,0.57,0.06,0.02,0.0,N/A,N/A,N/A,74076.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,13.77,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG02132_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG02132_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.36073,s3://human-pangenomics/working/HPRC/HG02132/raw_data/nanopore/guppy_6/07_13_21_R941_HG02132_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02132,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,45.44,N/A,N/A,0.0,HG02132,SAMN26267382,VN080,KHV,EAS,YR2 +8.1,0.0,1.02,0.12,0.02,0.01,N/A,N/A,N/A,72221.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,25.05,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG02132_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG02132_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.377674,s3://human-pangenomics/working/HPRC/HG02132/raw_data/nanopore/guppy_6/07_13_21_R941_HG02132_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02132,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,82.68,N/A,N/A,1.0,HG02132,SAMN26267382,VN080,KHV,EAS,YR2 +4.62,0.0,0.5,0.05,0.01,0.0,N/A,N/A,N/A,72386.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,14.53,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG02135_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG02135_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.32118,s3://human-pangenomics/working/HPRC/HG02135/raw_data/nanopore/guppy_6/07_13_21_R941_HG02135_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02135,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,47.95,N/A,N/A,0.0,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 +8.8,0.0,1.0,0.12,0.03,0.01,N/A,N/A,N/A,71374.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,28.12,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG02135_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG02135_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.310944,s3://human-pangenomics/working/HPRC/HG02135/raw_data/nanopore/guppy_6/07_13_21_R941_HG02135_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02135,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,92.79,N/A,N/A,2.0,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 +8.03,0.0,0.54,0.05,0.01,0.0,N/A,N/A,N/A,65361.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,32.31,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02602_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02602_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.323213,s3://human-pangenomics/working/HPRC/HG02602/raw_data/nanopore/guppy_6/07_20_21_R941_HG02602_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02602,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,106.62,N/A,N/A,2.0,HG02602,SAMN26237507,PK09,PJL,SAS,YR2 +6.93,0.0,0.46,0.04,0.01,0.0,N/A,N/A,N/A,63774.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,29.12,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02602_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02602_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.341738,s3://human-pangenomics/working/HPRC/HG02602/raw_data/nanopore/guppy_6/07_20_21_R941_HG02602_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02602,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,96.1,N/A,N/A,0.0,HG02602,SAMN26237507,PK09,PJL,SAS,YR2 +5.14,0.0,0.32,0.03,0.01,0.0,N/A,N/A,N/A,63732.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.66,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02602_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02602_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.344395,s3://human-pangenomics/working/HPRC/HG02602/raw_data/nanopore/guppy_6/07_20_21_R941_HG02602_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02602,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,71.47,N/A,N/A,1.0,HG02602,SAMN26237507,PK09,PJL,SAS,YR2 +8.59,0.0,0.92,0.07,0.01,0.0,N/A,N/A,N/A,70878.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.9,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02615_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02615_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.28681,s3://human-pangenomics/working/HPRC/HG02615/raw_data/nanopore/guppy_6/07_20_21_R941_HG02615_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02615,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,92.07,N/A,N/A,0.0,HG02615,SAMN26237508,GB29,GWD,AFR,YR2 +8.96,0.0,0.98,0.09,0.01,0.0,N/A,N/A,N/A,70070.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,29.54,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02615_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02615_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.282447,s3://human-pangenomics/working/HPRC/HG02615/raw_data/nanopore/guppy_6/07_20_21_R941_HG02615_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02615,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,97.5,N/A,N/A,0.0,HG02615,SAMN26237508,GB29,GWD,AFR,YR2 +3.37,0.0,0.4,0.04,0.01,0.0,N/A,N/A,N/A,68679.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,11.35,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02615_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02615_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.352641,s3://human-pangenomics/working/HPRC/HG02615/raw_data/nanopore/guppy_6/07_20_21_R941_HG02615_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02615,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,37.46,N/A,N/A,0.0,HG02615,SAMN26237508,GB29,GWD,AFR,YR2 +4.43,0.0,0.26,0.02,0.0,0.0,N/A,N/A,N/A,67467.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,16.56,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02668_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02668_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.330569,s3://human-pangenomics/working/HPRC/HG02668/raw_data/nanopore/guppy_6/07_20_21_R941_HG02668_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02668,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,54.64,N/A,N/A,1.0,HG02668,SAMN37706906,GB40,GWD,AFR,YR2 +5.95,0.0,0.4,0.04,0.01,0.0,N/A,N/A,N/A,69535.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.05,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02668_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02668_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.319356,s3://human-pangenomics/working/HPRC/HG02668/raw_data/nanopore/guppy_6/07_20_21_R941_HG02668_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02668,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,69.45,N/A,N/A,1.0,HG02668,SAMN37706906,GB40,GWD,AFR,YR2 +4.42,0.0,0.33,0.04,0.01,0.0,N/A,N/A,N/A,67023.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,16.41,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02668_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02668_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.343288,s3://human-pangenomics/working/HPRC/HG02668/raw_data/nanopore/guppy_6/07_20_21_R941_HG02668_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02668,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,54.16,N/A,N/A,0.0,HG02668,SAMN37706906,GB40,GWD,AFR,YR2 +9.89,0.0,0.7,0.08,0.02,0.0,N/A,N/A,N/A,70225.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,34.61,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02698_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02698_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.271365,s3://human-pangenomics/working/HPRC/HG02698/raw_data/nanopore/guppy_6/07_20_21_R941_HG02698_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02698,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,114.21,N/A,N/A,0.0,HG02698,SAMN26237509,PK21,PJL,SAS,YR2 +1.95,0.0,0.14,0.02,0.0,0.0,N/A,N/A,N/A,67825.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,7.27,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02698_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02698_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.389891,s3://human-pangenomics/working/HPRC/HG02698/raw_data/nanopore/guppy_6/07_20_21_R941_HG02698_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02698,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,23.99,N/A,N/A,0.0,HG02698,SAMN26237509,PK21,PJL,SAS,YR2 +1.79,0.0,0.17,0.03,0.01,0.0,N/A,N/A,N/A,64031.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,7.03,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02698_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02698_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.39883,s3://human-pangenomics/working/HPRC/HG02698/raw_data/nanopore/guppy_6/07_20_21_R941_HG02698_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02698,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,23.2,N/A,N/A,0.0,HG02698,SAMN26237509,PK21,PJL,SAS,YR2 +7.5,0.0,0.55,0.07,0.01,0.0,N/A,N/A,N/A,67680.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.81,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02698_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02698_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.316759,s3://human-pangenomics/working/HPRC/HG02698/raw_data/nanopore/guppy_6/07_20_21_R941_HG02698_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02698,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,91.79,N/A,N/A,0.0,HG02698,SAMN26237509,PK21,PJL,SAS,YR2 +1.6,0.0,0.12,0.02,0.0,0.0,N/A,N/A,N/A,67466.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,5.94,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02698_5_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02698_5,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.370307,s3://human-pangenomics/working/HPRC/HG02698/raw_data/nanopore/guppy_6/07_20_21_R941_HG02698_5_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02698,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,19.6,N/A,N/A,0.0,HG02698,SAMN26237509,PK21,PJL,SAS,YR2 +8.19,0.0,1.64,0.44,0.15,0.06,N/A,N/A,N/A,70962.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.42,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03710_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03710_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.315969,s3://human-pangenomics/working/HPRC/HG03710/raw_data/nanopore/guppy_6/07_20_21_R941_HG03710_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03710,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,83.88,N/A,N/A,9.0,HG03710,SAMN26237513,PK62,PJL,SAS,YR2 +0.72,0.0,0.16,0.05,0.02,0.01,N/A,N/A,N/A,72459.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,2.19,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03710_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03710_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.53917,s3://human-pangenomics/working/HPRC/HG03710/raw_data/nanopore/guppy_6/07_20_21_R941_HG03710_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03710,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,7.22,N/A,N/A,2.0,HG03710,SAMN26237513,PK62,PJL,SAS,YR2 +10.03,0.01,2.04,0.58,0.21,0.09,N/A,N/A,N/A,71735.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,30.55,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03710_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03710_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.326694,s3://human-pangenomics/working/HPRC/HG03710/raw_data/nanopore/guppy_6/07_20_21_R941_HG03710_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03710,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,100.83,N/A,N/A,14.0,HG03710,SAMN26237513,PK62,PJL,SAS,YR2 +2.9,0.0,0.47,0.08,0.02,0.01,N/A,N/A,N/A,71374.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,9.07,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03710_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03710_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.382901,s3://human-pangenomics/working/HPRC/HG03710/raw_data/nanopore/guppy_6/07_20_21_R941_HG03710_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03710,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,29.92,N/A,N/A,0.0,HG03710,SAMN26237513,PK62,PJL,SAS,YR2 +13.09,0.0,2.51,0.33,0.05,0.02,N/A,N/A,N/A,84812.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,31.92,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03804_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03804_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.348398,s3://human-pangenomics/working/HPRC/HG03804/raw_data/nanopore/guppy_6/07_20_21_R941_HG03804_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03804,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,105.33,N/A,N/A,0.0,HG03804,SAMN37706907,BD18,BEB,SAS,YR2 +11.27,0.0,2.13,0.3,0.05,0.01,N/A,N/A,N/A,83161.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,28.16,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03804_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03804_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.371964,s3://human-pangenomics/working/HPRC/HG03804/raw_data/nanopore/guppy_6/07_20_21_R941_HG03804_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03804,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,92.91,N/A,N/A,0.0,HG03804,SAMN37706907,BD18,BEB,SAS,YR2 +13.44,0.0,2.85,0.51,0.12,0.03,N/A,N/A,N/A,85557.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,32.21,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03804_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03804_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.359278,s3://human-pangenomics/working/HPRC/HG03804/raw_data/nanopore/guppy_6/07_20_21_R941_HG03804_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03804,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,106.31,N/A,N/A,1.0,HG03804,SAMN37706907,BD18,BEB,SAS,YR2 +8.56,0.0,1.66,0.48,0.17,0.06,N/A,N/A,N/A,67158.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,28.94,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03816_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03816_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.362723,s3://human-pangenomics/working/HPRC/HG03816/raw_data/nanopore/guppy_6/07_20_21_R941_HG03816_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03816,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,95.51,N/A,N/A,9.0,HG03816,SAMN37706908,BD22,BEB,SAS,YR2 +6.47,0.0,1.24,0.35,0.12,0.05,N/A,N/A,N/A,71008.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.57,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03816_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03816_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.369259,s3://human-pangenomics/working/HPRC/HG03816/raw_data/nanopore/guppy_6/07_20_21_R941_HG03816_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03816,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,67.87,N/A,N/A,12.0,HG03816,SAMN37706908,BD22,BEB,SAS,YR2 +9.29,0.0,1.73,0.44,0.13,0.05,N/A,N/A,N/A,70485.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,30.01,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03816_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03816_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.358974,s3://human-pangenomics/working/HPRC/HG03816/raw_data/nanopore/guppy_6/07_20_21_R941_HG03816_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03816,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,99.03,N/A,N/A,4.0,HG03816,SAMN37706908,BD22,BEB,SAS,YR2 +1.32,0.0,0.1,0.01,0.0,0.0,N/A,N/A,N/A,66391.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,4.77,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03942_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03942_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.458215,s3://human-pangenomics/working/HPRC/HG03942/raw_data/nanopore/guppy_6/07_20_21_R941_HG03942_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03942,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,15.74,N/A,N/A,1.0,HG03942,SAMN26267387,BD42,BEB,SAS,YR2 +8.18,0.0,0.7,0.06,0.01,0.0,N/A,N/A,N/A,66610.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,29.07,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03942_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03942_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.329795,s3://human-pangenomics/working/HPRC/HG03942/raw_data/nanopore/guppy_6/07_20_21_R941_HG03942_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03942,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,95.93,N/A,N/A,0.0,HG03942,SAMN26267387,BD42,BEB,SAS,YR2 +5.72,0.0,0.51,0.05,0.01,0.0,N/A,N/A,N/A,63707.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.46,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03942_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03942_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.33346,s3://human-pangenomics/working/HPRC/HG03942/raw_data/nanopore/guppy_6/07_20_21_R941_HG03942_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03942,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,70.83,N/A,N/A,0.0,HG03942,SAMN26267387,BD42,BEB,SAS,YR2 +13.91,0.0,2.7,0.43,0.07,0.02,N/A,N/A,N/A,84313.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,34.2,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG00408_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG00408_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.330454,s3://human-pangenomics/working/HPRC/HG00408/raw_data/nanopore/guppy_6/07_27_21_R941_HG00408_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00408,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,112.85,N/A,N/A,2.0,HG00408,SAMN33621943,SH002,CHS,EAS,YR3 +5.05,0.0,1.09,0.22,0.05,0.01,N/A,N/A,N/A,84178.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,12.32,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG00408_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG00408_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.375213,s3://human-pangenomics/working/HPRC/HG00408/raw_data/nanopore/guppy_6/07_27_21_R941_HG00408_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00408,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,40.67,N/A,N/A,1.0,HG00408,SAMN33621943,SH002,CHS,EAS,YR3 +9.57,0.0,1.95,0.37,0.08,0.02,N/A,N/A,N/A,79492.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.17,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG00408_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG00408_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.341721,s3://human-pangenomics/working/HPRC/HG00408/raw_data/nanopore/guppy_6/07_27_21_R941_HG00408_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00408,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,83.06,N/A,N/A,1.0,HG00408,SAMN33621943,SH002,CHS,EAS,YR3 +12.58,0.0,1.95,0.36,0.1,0.03,N/A,N/A,N/A,77949.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,35.47,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG00597_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG00597_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.312985,s3://human-pangenomics/working/HPRC/HG00597/raw_data/nanopore/guppy_6/07_27_21_R941_HG00597_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00597,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,117.05,N/A,N/A,2.0,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 +12.95,0.0,2.1,0.43,0.11,0.03,N/A,N/A,N/A,77976.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,36.3,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG00597_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG00597_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.338146,s3://human-pangenomics/working/HPRC/HG00597/raw_data/nanopore/guppy_6/07_27_21_R941_HG00597_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00597,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,119.79,N/A,N/A,2.0,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 +1.44,0.0,0.21,0.03,0.01,0.0,N/A,N/A,N/A,74934.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,4.3,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG00597_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG00597_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.453926,s3://human-pangenomics/working/HPRC/HG00597/raw_data/nanopore/guppy_6/07_27_21_R941_HG00597_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00597,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,14.19,N/A,N/A,0.0,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 +2.6,0.0,0.39,0.06,0.01,0.0,N/A,N/A,N/A,78817.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,7.23,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG00597_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG00597_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.413863,s3://human-pangenomics/working/HPRC/HG00597/raw_data/nanopore/guppy_6/07_27_21_R941_HG00597_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00597,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,23.87,N/A,N/A,0.0,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 +3.5,0.0,0.39,0.05,0.01,0.0,N/A,N/A,N/A,48175.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,17.26,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG01261_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG01261_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.358418,s3://human-pangenomics/working/HPRC/HG01261/raw_data/nanopore/guppy_6/07_27_21_R941_HG01261_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01261,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,56.96,N/A,N/A,1.0,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 +8.6,0.0,0.96,0.11,0.03,0.01,N/A,N/A,N/A,74715.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.85,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG01261_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG01261_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.351018,s3://human-pangenomics/working/HPRC/HG01261/raw_data/nanopore/guppy_6/07_27_21_R941_HG01261_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01261,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,85.3,N/A,N/A,3.0,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 +7.81,0.0,0.86,0.1,0.02,0.01,N/A,N/A,N/A,75397.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,23.28,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG01261_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG01261_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.321985,s3://human-pangenomics/working/HPRC/HG01261/raw_data/nanopore/guppy_6/07_27_21_R941_HG01261_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01261,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,76.83,N/A,N/A,5.0,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 +11.87,0.0,2.26,0.24,0.03,0.0,N/A,N/A,N/A,91931.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,26.3,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG01934_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG01934_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.301812,s3://human-pangenomics/working/HPRC/HG01934/raw_data/nanopore/guppy_6/07_27_21_R941_HG01934_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01934,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,86.8,N/A,N/A,1.0,HG01934,SAMN26237498,PEL013,PEL,AMR,YR2 +1.2,0.0,0.24,0.03,0.0,0.0,N/A,N/A,N/A,89234.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,2.75,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG01934_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG01934_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.513319,s3://human-pangenomics/working/HPRC/HG01934/raw_data/nanopore/guppy_6/07_27_21_R941_HG01934_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01934,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,9.09,N/A,N/A,0.0,HG01934,SAMN26237498,PEL013,PEL,AMR,YR2 +12.35,0.0,2.44,0.29,0.04,0.01,N/A,N/A,N/A,90878.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,27.69,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG01934_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG01934_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.304109,s3://human-pangenomics/working/HPRC/HG01934/raw_data/nanopore/guppy_6/07_27_21_R941_HG01934_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01934,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,91.37,N/A,N/A,0.0,HG01934,SAMN26237498,PEL013,PEL,AMR,YR2 +8.21,0.0,1.59,0.2,0.03,0.0,N/A,N/A,N/A,89331.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,18.86,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG01934_4_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG01934_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.350033,s3://human-pangenomics/working/HPRC/HG01934/raw_data/nanopore/guppy_6/07_27_21_R941_HG01934_4_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01934,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,62.23,N/A,N/A,0.0,HG01934,SAMN26237498,PEL013,PEL,AMR,YR2 +5.72,0.0,0.78,0.08,0.02,0.01,N/A,N/A,N/A,86618.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,13.95,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG03654_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG03654_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.365241,s3://human-pangenomics/working/HPRC/HG03654/raw_data/nanopore/guppy_6/07_27_21_R941_HG03654_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03654,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,46.03,N/A,N/A,2.0,HG03654,SAMN26237511,PK53,PJL,SAS,YR2 +9.29,0.0,1.36,0.17,0.05,0.02,N/A,N/A,N/A,86774.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.53,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG03654_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG03654_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.310269,s3://human-pangenomics/working/HPRC/HG03654/raw_data/nanopore/guppy_6/07_27_21_R941_HG03654_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03654,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,74.33,N/A,N/A,5.0,HG03654,SAMN26237511,PK53,PJL,SAS,YR2 +9.41,0.0,1.4,0.19,0.05,0.02,N/A,N/A,N/A,86618.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.91,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG03654_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG03654_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.318698,s3://human-pangenomics/working/HPRC/HG03654/raw_data/nanopore/guppy_6/07_27_21_R941_HG03654_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03654,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,75.59,N/A,N/A,1.0,HG03654,SAMN26237511,PK53,PJL,SAS,YR2 +9.12,0.0,0.78,0.06,0.01,0.0,N/A,N/A,N/A,81595.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.92,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG03669_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG03669_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.283215,s3://human-pangenomics/working/HPRC/HG03669/raw_data/nanopore/guppy_6/07_27_21_R941_HG03669_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03669,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,82.25,N/A,N/A,0.0,HG03669,SAMN26237512,PK58,PJL,SAS,YR2 +1.12,0.0,0.08,0.0,0.0,0.0,N/A,N/A,N/A,77047.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,3.34,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG03669_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG03669_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.507088,s3://human-pangenomics/working/HPRC/HG03669/raw_data/nanopore/guppy_6/07_27_21_R941_HG03669_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03669,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,11.04,N/A,N/A,0.0,HG03669,SAMN26237512,PK58,PJL,SAS,YR2 +8.62,0.0,0.72,0.06,0.01,0.0,N/A,N/A,N/A,78086.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.24,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG03669_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG03669_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.340057,s3://human-pangenomics/working/HPRC/HG03669/raw_data/nanopore/guppy_6/07_27_21_R941_HG03669_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03669,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,83.29,N/A,N/A,0.0,HG03669,SAMN26237512,PK58,PJL,SAS,YR2 +2.58,0.0,0.19,0.01,0.0,0.0,N/A,N/A,N/A,79377.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,7.37,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG03669_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG03669_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.418265,s3://human-pangenomics/working/HPRC/HG03669/raw_data/nanopore/guppy_6/07_27_21_R941_HG03669_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03669,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,24.32,N/A,N/A,0.0,HG03669,SAMN26237512,PK58,PJL,SAS,YR2 +8.59,0.0,1.47,0.28,0.08,0.03,N/A,N/A,N/A,84574.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.49,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG03688_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG03688_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.334326,s3://human-pangenomics/working/HPRC/HG03688/raw_data/nanopore/guppy_6/07_27_21_R941_HG03688_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03688,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,70.9,N/A,N/A,5.0,HG03688,SAMN26267385,ST016,STU,SAS,YR2 +10.54,0.0,1.38,0.19,0.05,0.01,N/A,N/A,N/A,83458.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.31,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG03688_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG03688_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.342356,s3://human-pangenomics/working/HPRC/HG03688/raw_data/nanopore/guppy_6/07_27_21_R941_HG03688_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03688,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,90.13,N/A,N/A,1.0,HG03688,SAMN26267385,ST016,STU,SAS,YR2 +8.63,0.0,1.01,0.12,0.02,0.01,N/A,N/A,N/A,79602.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.02,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG03688_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG03688_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.323537,s3://human-pangenomics/working/HPRC/HG03688/raw_data/nanopore/guppy_6/07_27_21_R941_HG03688_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03688,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,79.27,N/A,N/A,0.0,HG03688,SAMN26267385,ST016,STU,SAS,YR2 +2.99,0.0,0.46,0.09,0.02,0.01,N/A,N/A,N/A,79209.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,8.25,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG04115_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG04115_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.392543,s3://human-pangenomics/working/HPRC/HG04115/raw_data/nanopore/guppy_6/07_27_21_R941_HG04115_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04115,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,27.22,N/A,N/A,0.0,HG04115,SAMN26267388,ST111,STU,SAS,YR2 +6.57,0.0,1.13,0.25,0.07,0.02,N/A,N/A,N/A,80416.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,17.59,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG04115_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG04115_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.274663,s3://human-pangenomics/working/HPRC/HG04115/raw_data/nanopore/guppy_6/07_27_21_R941_HG04115_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04115,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,58.04,N/A,N/A,4.0,HG04115,SAMN26267388,ST111,STU,SAS,YR2 +2.6,0.0,0.41,0.09,0.03,0.01,N/A,N/A,N/A,76195.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,7.53,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG04115_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG04115_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.399528,s3://human-pangenomics/working/HPRC/HG04115/raw_data/nanopore/guppy_6/07_27_21_R941_HG04115_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04115,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,24.85,N/A,N/A,0.0,HG04115,SAMN26267388,ST111,STU,SAS,YR2 +5.47,0.0,0.86,0.17,0.04,0.01,N/A,N/A,N/A,79848.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,14.89,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG04115_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG04115_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.348811,s3://human-pangenomics/working/HPRC/HG04115/raw_data/nanopore/guppy_6/07_27_21_R941_HG04115_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04115,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,49.13,N/A,N/A,0.0,HG04115,SAMN26267388,ST111,STU,SAS,YR2 +2.84,0.0,0.48,0.1,0.03,0.01,N/A,N/A,N/A,80123.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,7.67,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG04115_5_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG04115_5,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.422534,s3://human-pangenomics/working/HPRC/HG04115/raw_data/nanopore/guppy_6/07_27_21_R941_HG04115_5_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04115,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,25.3,N/A,N/A,0.0,HG04115,SAMN26267388,ST111,STU,SAS,YR2 +3.64,0.0,0.54,0.13,0.04,0.02,N/A,N/A,N/A,76744.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,10.74,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG01960_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG01960_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.354958,s3://human-pangenomics/working/HPRC/HG01960/raw_data/nanopore/guppy_6/08_03_21_R941_HG01960_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01960,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,35.44,N/A,N/A,2.0,HG01960,SAMN37797102,BB11,ACB,AFR,YR3 +9.21,0.0,1.45,0.36,0.12,0.05,N/A,N/A,N/A,74685.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.99,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG01960_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG01960_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.292281,s3://human-pangenomics/working/HPRC/HG01960/raw_data/nanopore/guppy_6/08_03_21_R941_HG01960_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01960,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,92.37,N/A,N/A,12.0,HG01960,SAMN37797102,BB11,ACB,AFR,YR3 +2.35,0.0,0.38,0.1,0.04,0.02,N/A,N/A,N/A,73518.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,7.31,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG01960_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG01960_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.423853,s3://human-pangenomics/working/HPRC/HG01960/raw_data/nanopore/guppy_6/08_03_21_R941_HG01960_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01960,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,24.12,N/A,N/A,1.0,HG01960,SAMN37797102,BB11,ACB,AFR,YR3 +0.98,0.0,0.12,0.02,0.0,0.0,N/A,N/A,N/A,74432.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,3.06,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG01960_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG01960_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.473214,s3://human-pangenomics/working/HPRC/HG01960/raw_data/nanopore/guppy_6/08_03_21_R941_HG01960_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01960,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,10.09,N/A,N/A,0.0,HG01960,SAMN37797102,BB11,ACB,AFR,YR3 +12.71,0.0,2.22,0.3,0.06,0.02,N/A,N/A,N/A,80551.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,33.07,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG01975_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG01975_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.27161,s3://human-pangenomics/working/HPRC/HG01975/raw_data/nanopore/guppy_6/08_03_21_R941_HG01975_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01975,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,109.15,N/A,N/A,1.0,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 +8.55,0.0,1.42,0.17,0.03,0.01,N/A,N/A,N/A,80419.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.43,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG01975_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG01975_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.305576,s3://human-pangenomics/working/HPRC/HG01975/raw_data/nanopore/guppy_6/08_03_21_R941_HG01975_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01975,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,74.02,N/A,N/A,0.0,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 +8.03,0.0,1.24,0.13,0.02,0.01,N/A,N/A,N/A,75260.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.93,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG01975_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG01975_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.291271,s3://human-pangenomics/working/HPRC/HG01975/raw_data/nanopore/guppy_6/08_03_21_R941_HG01975_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01975,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,75.67,N/A,N/A,0.0,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 +7.23,0.0,0.81,0.04,0.01,0.0,N/A,N/A,N/A,81577.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.14,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG02841_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG02841_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.296905,s3://human-pangenomics/working/HPRC/HG02841/raw_data/nanopore/guppy_6/08_03_21_R941_HG02841_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02841,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,63.15,N/A,N/A,2.0,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 +5.04,0.0,0.58,0.04,0.01,0.0,N/A,N/A,N/A,79068.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,13.88,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG02841_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG02841_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.325085,s3://human-pangenomics/working/HPRC/HG02841/raw_data/nanopore/guppy_6/08_03_21_R941_HG02841_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02841,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,45.81,N/A,N/A,0.0,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 +9.73,0.0,1.3,0.16,0.05,0.01,N/A,N/A,N/A,79315.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.51,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG02841_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG02841_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.303632,s3://human-pangenomics/working/HPRC/HG02841/raw_data/nanopore/guppy_6/08_03_21_R941_HG02841_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02841,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,87.47,N/A,N/A,1.0,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 +11.21,0.0,2.15,0.54,0.15,0.05,N/A,N/A,N/A,78236.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,30.86,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG02984_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG02984_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.314809,s3://human-pangenomics/working/HPRC/HG02984/raw_data/nanopore/guppy_6/08_03_21_R941_HG02984_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02984,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,101.85,N/A,N/A,2.0,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 +7.53,0.0,1.42,0.36,0.11,0.04,N/A,N/A,N/A,71722.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,23.24,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG02984_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG02984_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.314432,s3://human-pangenomics/working/HPRC/HG02984/raw_data/nanopore/guppy_6/08_03_21_R941_HG02984_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02984,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,76.68,N/A,N/A,5.0,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 +3.66,0.0,0.7,0.18,0.06,0.02,N/A,N/A,N/A,74982.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,10.6,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG02984_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG02984_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.339783,s3://human-pangenomics/working/HPRC/HG02984/raw_data/nanopore/guppy_6/08_03_21_R941_HG02984_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02984,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,34.98,N/A,N/A,1.0,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 +2.5,0.0,0.5,0.14,0.04,0.01,N/A,N/A,N/A,79486.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,6.65,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG02984_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG02984_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.390259,s3://human-pangenomics/working/HPRC/HG02984/raw_data/nanopore/guppy_6/08_03_21_R941_HG02984_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02984,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,21.96,N/A,N/A,0.0,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 +10.29,0.0,1.24,0.16,0.04,0.01,N/A,N/A,N/A,76817.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,29.58,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG04157_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG04157_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.277016,s3://human-pangenomics/working/HPRC/HG04157/raw_data/nanopore/guppy_6/08_03_21_R941_HG04157_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04157,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,97.61,N/A,N/A,2.0,HG04157,SAMN37706909,BD52,BEB,SAS,YR2 +11.03,0.0,1.37,0.18,0.05,0.02,N/A,N/A,N/A,75575.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,32.3,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG04157_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG04157_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.335831,s3://human-pangenomics/working/HPRC/HG04157/raw_data/nanopore/guppy_6/08_03_21_R941_HG04157_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04157,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,106.58,N/A,N/A,0.0,HG04157,SAMN37706909,BD52,BEB,SAS,YR2 +8.01,0.0,1.1,0.21,0.07,0.03,N/A,N/A,N/A,74339.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,23.85,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG04157_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG04157_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.284331,s3://human-pangenomics/working/HPRC/HG04157/raw_data/nanopore/guppy_6/08_03_21_R941_HG04157_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04157,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,78.71,N/A,N/A,3.0,HG04157,SAMN37706909,BD52,BEB,SAS,YR2 +6.44,0.0,0.49,0.05,0.01,0.0,N/A,N/A,N/A,69217.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.94,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG04160_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG04160_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.329487,s3://human-pangenomics/working/HPRC/HG04160/raw_data/nanopore/guppy_6/08_03_21_R941_HG04160_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04160,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,75.69,N/A,N/A,0.0,HG04160,SAMN37706910,BD53,BEB,SAS,YR2 +6.86,0.0,0.53,0.07,0.01,0.0,N/A,N/A,N/A,68811.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.52,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG04160_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG04160_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.361508,s3://human-pangenomics/working/HPRC/HG04160/raw_data/nanopore/guppy_6/08_03_21_R941_HG04160_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04160,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,80.9,N/A,N/A,0.0,HG04160,SAMN37706910,BD53,BEB,SAS,YR2 +6.75,0.0,0.55,0.07,0.02,0.0,N/A,N/A,N/A,67552.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.78,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG04160_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG04160_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.385452,s3://human-pangenomics/working/HPRC/HG04160/raw_data/nanopore/guppy_6/08_03_21_R941_HG04160_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04160,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,81.77,N/A,N/A,1.0,HG04160,SAMN37706910,BD53,BEB,SAS,YR2 +8.82,0.0,0.89,0.18,0.06,0.02,N/A,N/A,N/A,73742.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,28.25,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG00609_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG00609_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.303564,s3://human-pangenomics/working/HPRC/HG00609/raw_data/nanopore/guppy_6/08_10_21_R941_HG00609_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00609,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,93.22,N/A,N/A,4.0,HG00609,SAMN26237492,SH062,CHS,EAS,YR2 +10.45,0.0,1.08,0.2,0.07,0.02,N/A,N/A,N/A,75448.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,32.14,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG00609_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG00609_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.323289,s3://human-pangenomics/working/HPRC/HG00609/raw_data/nanopore/guppy_6/08_10_21_R941_HG00609_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00609,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,106.08,N/A,N/A,3.0,HG00609,SAMN26237492,SH062,CHS,EAS,YR2 +9.09,0.0,0.98,0.19,0.05,0.02,N/A,N/A,N/A,73789.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,28.76,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG00609_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG00609_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.331212,s3://human-pangenomics/working/HPRC/HG00609/raw_data/nanopore/guppy_6/08_10_21_R941_HG00609_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00609,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,94.9,N/A,N/A,3.0,HG00609,SAMN26237492,SH062,CHS,EAS,YR2 +8.67,0.01,2.06,0.42,0.13,0.07,N/A,N/A,N/A,94988.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,18.35,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG00642_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG00642_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.295302,s3://human-pangenomics/working/HPRC/HG00642/raw_data/nanopore/guppy_6/08_10_21_R941_HG00642_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00642,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,60.56,N/A,N/A,23.0,HG00642,SAMN26267378,PR04,PUR,AMR,YR2 +10.52,0.0,2.52,0.47,0.13,0.05,N/A,N/A,N/A,101008.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.8,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG00642_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG00642_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.34542,s3://human-pangenomics/working/HPRC/HG00642/raw_data/nanopore/guppy_6/08_10_21_R941_HG00642_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00642,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,68.63,N/A,N/A,7.0,HG00642,SAMN26267378,PR04,PUR,AMR,YR2 +13.15,0.0,2.93,0.53,0.15,0.06,N/A,N/A,N/A,95618.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.68,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG00642_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG00642_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.350263,s3://human-pangenomics/working/HPRC/HG00642/raw_data/nanopore/guppy_6/08_10_21_R941_HG00642_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00642,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,91.35,N/A,N/A,5.0,HG00642,SAMN26267378,PR04,PUR,AMR,YR2 +7.9,0.0,0.93,0.19,0.07,0.03,N/A,N/A,N/A,74857.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,24.09,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG01099_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG01099_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.319944,s3://human-pangenomics/working/HPRC/HG01099/raw_data/nanopore/guppy_6/08_10_21_R941_HG01099_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01099,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,79.51,N/A,N/A,6.0,HG01099,SAMN26237494,PR31,PUR,AMR,YR2 +8.39,0.0,0.91,0.16,0.05,0.02,N/A,N/A,N/A,75225.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,25.55,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG01099_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG01099_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.315749,s3://human-pangenomics/working/HPRC/HG01099/raw_data/nanopore/guppy_6/08_10_21_R941_HG01099_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01099,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,84.33,N/A,N/A,1.0,HG01099,SAMN26237494,PR31,PUR,AMR,YR2 +6.6,0.0,0.75,0.13,0.04,0.01,N/A,N/A,N/A,75724.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,19.9,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG01099_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG01099_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.29249,s3://human-pangenomics/working/HPRC/HG01099/raw_data/nanopore/guppy_6/08_10_21_R941_HG01099_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01099,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,65.67,N/A,N/A,0.0,HG01099,SAMN26237494,PR31,PUR,AMR,YR2 +7.9,0.0,0.75,0.17,0.06,0.02,N/A,N/A,N/A,67193.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,31.67,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG01433_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG01433_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.327795,s3://human-pangenomics/working/HPRC/HG01433/raw_data/nanopore/guppy_6/08_10_21_R941_HG01433_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01433,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,104.5,N/A,N/A,5.0,HG01433,SAMN26237496,CLM43,CLM,AMR,YR2 +6.07,0.0,0.48,0.1,0.03,0.01,N/A,N/A,N/A,67405.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,24.79,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG01433_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG01433_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.28057,s3://human-pangenomics/working/HPRC/HG01433/raw_data/nanopore/guppy_6/08_10_21_R941_HG01433_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01433,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,81.82,N/A,N/A,3.0,HG01433,SAMN26237496,CLM43,CLM,AMR,YR2 +5.92,0.0,0.48,0.09,0.03,0.01,N/A,N/A,N/A,66723.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,24.54,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG01433_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG01433_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.348327,s3://human-pangenomics/working/HPRC/HG01433/raw_data/nanopore/guppy_6/08_10_21_R941_HG01433_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01433,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,80.97,N/A,N/A,0.0,HG01433,SAMN26237496,CLM43,CLM,AMR,YR2 +9.14,0.0,1.31,0.19,0.06,0.02,N/A,N/A,N/A,79775.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,24.6,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG01993_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG01993_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.357558,s3://human-pangenomics/working/HPRC/HG01993/raw_data/nanopore/guppy_6/08_10_21_R941_HG01993_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01993,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,81.17,N/A,N/A,6.0,HG01993,SAMN26237501,PEL29,PEL,AMR,YR2 +14.08,0.0,2.34,0.41,0.13,0.05,N/A,N/A,N/A,83016.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,35.76,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG01993_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG01993_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.337567,s3://human-pangenomics/working/HPRC/HG01993/raw_data/nanopore/guppy_6/08_10_21_R941_HG01993_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01993,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,117.99,N/A,N/A,3.0,HG01993,SAMN26237501,PEL29,PEL,AMR,YR2 +13.81,0.0,2.59,0.58,0.2,0.08,N/A,N/A,N/A,83178.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,34.76,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG01993_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG01993_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.346723,s3://human-pangenomics/working/HPRC/HG01993/raw_data/nanopore/guppy_6/08_10_21_R941_HG01993_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01993,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,114.71,N/A,N/A,4.0,HG01993,SAMN26237501,PEL29,PEL,AMR,YR2 +3.34,0.01,0.66,0.2,0.09,0.05,N/A,N/A,N/A,67975.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,10.77,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG02647_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG02647_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.364914,s3://human-pangenomics/working/HPRC/HG02647/raw_data/nanopore/guppy_6/08_10_21_R941_HG02647_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02647,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,35.55,N/A,N/A,22.0,HG02647,SAMN26267383,GB38,GWD,AFR,YR2 +5.9,0.0,0.94,0.18,0.06,0.03,N/A,N/A,N/A,74826.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,17.51,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG02647_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG02647_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.293523,s3://human-pangenomics/working/HPRC/HG02647/raw_data/nanopore/guppy_6/08_10_21_R941_HG02647_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02647,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,57.79,N/A,N/A,5.0,HG02647,SAMN26267383,GB38,GWD,AFR,YR2 +6.51,0.0,0.95,0.16,0.04,0.01,N/A,N/A,N/A,75914.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.22,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG02647_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG02647_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.272442,s3://human-pangenomics/working/HPRC/HG02647/raw_data/nanopore/guppy_6/08_10_21_R941_HG02647_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02647,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,63.43,N/A,N/A,2.0,HG02647,SAMN26267383,GB38,GWD,AFR,YR2 +1.24,0.0,0.19,0.04,0.01,0.0,N/A,N/A,N/A,78171.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,3.5,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG02647_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG02647_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.472454,s3://human-pangenomics/working/HPRC/HG02647/raw_data/nanopore/guppy_6/08_10_21_R941_HG02647_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02647,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,11.54,N/A,N/A,0.0,HG02647,SAMN26267383,GB38,GWD,AFR,YR2 +9.56,0.0,1.72,0.3,0.07,0.02,N/A,N/A,N/A,79360.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.58,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG03831_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG03831_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.312214,s3://human-pangenomics/working/HPRC/HG03831/raw_data/nanopore/guppy_6/08_10_21_R941_HG03831_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03831,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,84.42,N/A,N/A,2.0,HG03831,SAMN26237514,BD27,BEB,SAS,YR2 +9.89,0.0,1.63,0.23,0.04,0.01,N/A,N/A,N/A,81179.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.03,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG03831_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG03831_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.324472,s3://human-pangenomics/working/HPRC/HG03831/raw_data/nanopore/guppy_6/08_10_21_R941_HG03831_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03831,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,85.9,N/A,N/A,0.0,HG03831,SAMN26237514,BD27,BEB,SAS,YR2 +10.65,0.0,1.95,0.35,0.08,0.02,N/A,N/A,N/A,80227.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,28.21,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG03831_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG03831_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.324669,s3://human-pangenomics/working/HPRC/HG03831/raw_data/nanopore/guppy_6/08_10_21_R941_HG03831_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03831,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,93.08,N/A,N/A,0.0,HG03831,SAMN26237514,BD27,BEB,SAS,YR2 +4.52,0.0,0.77,0.1,0.02,0.0,N/A,N/A,N/A,78594.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,12.27,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG03927_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG03927_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.403406,s3://human-pangenomics/working/HPRC/HG03927/raw_data/nanopore/guppy_6/08_10_21_R941_HG03927_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03927,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,40.5,N/A,N/A,1.0,HG03927,SAMN26267386,BD37,BEB,SAS,YR2 +8.6,0.0,1.43,0.2,0.04,0.01,N/A,N/A,N/A,80348.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.91,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG03927_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG03927_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.318072,s3://human-pangenomics/working/HPRC/HG03927/raw_data/nanopore/guppy_6/08_10_21_R941_HG03927_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03927,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,75.61,N/A,N/A,4.0,HG03927,SAMN26267386,BD37,BEB,SAS,YR2 +10.7,0.0,1.88,0.26,0.05,0.02,N/A,N/A,N/A,84221.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.76,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG03927_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG03927_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.361284,s3://human-pangenomics/working/HPRC/HG03927/raw_data/nanopore/guppy_6/08_10_21_R941_HG03927_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03927,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,88.3,N/A,N/A,1.0,HG03927,SAMN26267386,BD37,BEB,SAS,YR2 +2.83,0.0,0.3,0.03,0.0,0.0,N/A,N/A,N/A,80040.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,7.78,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04187_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04187_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.399721,s3://human-pangenomics/working/HPRC/HG04187/raw_data/nanopore/guppy_6/08_10_21_R941_HG04187_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04187,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,25.66,N/A,N/A,0.0,HG04187,SAMN37706911,BD62,BEB,SAS,YR2 +6.95,0.0,0.76,0.07,0.02,0.01,N/A,N/A,N/A,77575.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.02,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04187_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04187_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.336445,s3://human-pangenomics/working/HPRC/HG04187/raw_data/nanopore/guppy_6/08_10_21_R941_HG04187_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04187,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,66.07,N/A,N/A,0.0,HG04187,SAMN37706911,BD62,BEB,SAS,YR2 +6.19,0.0,0.71,0.08,0.02,0.01,N/A,N/A,N/A,75818.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.44,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04187_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04187_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.329922,s3://human-pangenomics/working/HPRC/HG04187/raw_data/nanopore/guppy_6/08_10_21_R941_HG04187_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04187,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,60.84,N/A,N/A,0.0,HG04187,SAMN37706911,BD62,BEB,SAS,YR2 +0.31,0.0,0.03,0.0,0.0,0.0,N/A,N/A,N/A,79819.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,0.86,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04187_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04187_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.679294,s3://human-pangenomics/working/HPRC/HG04187/raw_data/nanopore/guppy_6/08_10_21_R941_HG04187_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04187,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,2.82,N/A,N/A,0.0,HG04187,SAMN37706911,BD62,BEB,SAS,YR2 +11.2,0.0,1.59,0.3,0.08,0.03,N/A,N/A,N/A,83714.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,29.05,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04199_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04199_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.300183,s3://human-pangenomics/working/HPRC/HG04199/raw_data/nanopore/guppy_6/08_10_21_R941_HG04199_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04199,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,95.87,N/A,N/A,1.0,HG04199,SAMN26267389,ST203,STU,SAS,YR2 +4.58,0.0,0.63,0.12,0.04,0.01,N/A,N/A,N/A,80766.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,12.5,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04199_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04199_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.366146,s3://human-pangenomics/working/HPRC/HG04199/raw_data/nanopore/guppy_6/08_10_21_R941_HG04199_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04199,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,41.26,N/A,N/A,0.0,HG04199,SAMN26267389,ST203,STU,SAS,YR2 +5.55,0.0,0.64,0.1,0.02,0.01,N/A,N/A,N/A,71491.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.45,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04199_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04199_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.337721,s3://human-pangenomics/working/HPRC/HG04199/raw_data/nanopore/guppy_6/08_10_21_R941_HG04199_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04199,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,60.89,N/A,N/A,0.0,HG04199,SAMN26267389,ST203,STU,SAS,YR2 +11.74,0.0,1.6,0.22,0.07,0.03,N/A,N/A,N/A,87228.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,28.35,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04204_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04204_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.322726,s3://human-pangenomics/working/HPRC/HG04204/raw_data/nanopore/guppy_6/08_10_21_R941_HG04204_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04204,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,93.56,N/A,N/A,5.0,HG04204,SAMN26267390,ST006,STU,SAS,YR2 +8.43,0.0,1.17,0.17,0.05,0.02,N/A,N/A,N/A,83571.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.51,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04204_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04204_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.308884,s3://human-pangenomics/working/HPRC/HG04204/raw_data/nanopore/guppy_6/08_10_21_R941_HG04204_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04204,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,70.98,N/A,N/A,2.0,HG04204,SAMN26267390,ST006,STU,SAS,YR2 +3.19,0.0,0.41,0.06,0.02,0.01,N/A,N/A,N/A,82249.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,8.36,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04204_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04204_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.38478,s3://human-pangenomics/working/HPRC/HG04204/raw_data/nanopore/guppy_6/08_10_21_R941_HG04204_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04204,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,27.6,N/A,N/A,0.0,HG04204,SAMN26267390,ST006,STU,SAS,YR2 +10.71,0.0,1.93,0.4,0.1,0.03,N/A,N/A,N/A,77428.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,30.32,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04228_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04228_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.313973,s3://human-pangenomics/working/HPRC/HG04228/raw_data/nanopore/guppy_6/08_10_21_R941_HG04228_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04228,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,100.06,N/A,N/A,2.0,HG04228,SAMN26267391,ST232,STU,SAS,YR2 +5.27,0.0,0.93,0.18,0.04,0.01,N/A,N/A,N/A,77232.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,15.02,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04228_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04228_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.340369,s3://human-pangenomics/working/HPRC/HG04228/raw_data/nanopore/guppy_6/08_10_21_R941_HG04228_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04228,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,49.57,N/A,N/A,1.0,HG04228,SAMN26267391,ST232,STU,SAS,YR2 +9.37,0.0,1.71,0.36,0.09,0.03,N/A,N/A,N/A,76339.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.95,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04228_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04228_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.316726,s3://human-pangenomics/working/HPRC/HG04228/raw_data/nanopore/guppy_6/08_10_21_R941_HG04228_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04228,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,88.93,N/A,N/A,1.0,HG04228,SAMN26267391,ST232,STU,SAS,YR2 +10.02,0.0,2.71,0.63,0.17,0.06,N/A,N/A,N/A,85731.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,23.54,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM18570_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM18570_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.339543,s3://human-pangenomics/working/HPRC/NA18570/raw_data/nanopore/guppy_6/08_10_22_R941_GM18570_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM18570,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,77.67,N/A,N/A,5.0,,,,,, +9.24,0.01,2.63,0.68,0.22,0.08,N/A,N/A,N/A,77119.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,23.88,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM18570_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM18570_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.340802,s3://human-pangenomics/working/HPRC/NA18570/raw_data/nanopore/guppy_6/08_10_22_R941_GM18570_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM18570,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,78.8,N/A,N/A,15.0,,,,,, +7.59,0.0,1.94,0.44,0.11,0.03,N/A,N/A,N/A,81801.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.8,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM18570_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM18570_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.353154,s3://human-pangenomics/working/HPRC/NA18570/raw_data/nanopore/guppy_6/08_10_22_R941_GM18570_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM18570,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,62.05,N/A,N/A,1.0,,,,,, +7.09,0.0,2.2,0.61,0.16,0.04,N/A,N/A,N/A,91781.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,15.45,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM19120_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM19120_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.349111,s3://human-pangenomics/working/HPRC/NA19120/raw_data/nanopore/guppy_6/08_10_22_R941_GM19120_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19120,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,51.0,N/A,N/A,0.0,,,,,, +7.62,0.0,2.34,0.64,0.17,0.05,N/A,N/A,N/A,86577.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,17.61,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM19120_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM19120_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.386826,s3://human-pangenomics/working/HPRC/NA19120/raw_data/nanopore/guppy_6/08_10_22_R941_GM19120_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19120,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,58.1,N/A,N/A,3.0,,,,,, +9.34,0.0,2.58,0.66,0.16,0.04,N/A,N/A,N/A,77646.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.36,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM19120_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM19120_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.361188,s3://human-pangenomics/working/HPRC/NA19120/raw_data/nanopore/guppy_6/08_10_22_R941_GM19120_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19120,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,80.4,N/A,N/A,6.0,,,,,, +9.42,0.0,2.77,0.69,0.16,0.04,N/A,N/A,N/A,89279.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.16,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM19159_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM19159_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.332599,s3://human-pangenomics/working/HPRC/NA19159/raw_data/nanopore/guppy_6/08_10_22_R941_GM19159_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19159,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,69.84,N/A,N/A,6.0,,,,,, +7.17,0.0,2.01,0.5,0.12,0.04,N/A,N/A,N/A,78467.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.43,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM19159_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM19159_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.370954,s3://human-pangenomics/working/HPRC/NA19159/raw_data/nanopore/guppy_6/08_10_22_R941_GM19159_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19159,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,60.82,N/A,N/A,6.0,,,,,, +7.14,0.0,2.11,0.55,0.15,0.04,N/A,N/A,N/A,85827.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,16.74,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM19159_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM19159_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.376472,s3://human-pangenomics/working/HPRC/NA19159/raw_data/nanopore/guppy_6/08_10_22_R941_GM19159_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19159,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,55.23,N/A,N/A,3.0,,,,,, +7.54,0.0,2.31,0.69,0.21,0.07,N/A,N/A,N/A,82038.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.49,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM19185_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM19185_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.358044,s3://human-pangenomics/working/HPRC/NA19185/raw_data/nanopore/guppy_6/08_10_22_R941_GM19185_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19185,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,61.0,N/A,N/A,8.0,,,,,, +5.63,0.0,1.45,0.39,0.1,0.03,N/A,N/A,N/A,69161.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,16.96,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM19185_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM19185_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.349426,s3://human-pangenomics/working/HPRC/NA19185/raw_data/nanopore/guppy_6/08_10_22_R941_GM19185_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19185,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,55.98,N/A,N/A,2.0,,,,,, +6.79,0.0,1.88,0.53,0.15,0.05,N/A,N/A,N/A,72791.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.07,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM19185_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM19185_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.363303,s3://human-pangenomics/working/HPRC/NA19185/raw_data/nanopore/guppy_6/08_10_22_R941_GM19185_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19185,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,62.93,N/A,N/A,4.0,,,,,, +1.98,0.0,0.62,0.17,0.04,0.01,N/A,N/A,N/A,74947.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,5.16,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM20805_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM20805_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.507947,s3://human-pangenomics/working/HPRC/NA20805/raw_data/nanopore/guppy_6/08_10_22_R941_GM20805_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM20805,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,17.01,N/A,N/A,0.0,,,,,, +7.77,0.0,2.23,0.55,0.12,0.03,N/A,N/A,N/A,82608.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.88,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM20805_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM20805_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.373759,s3://human-pangenomics/working/HPRC/NA20805/raw_data/nanopore/guppy_6/08_10_22_R941_GM20805_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM20805,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,62.3,N/A,N/A,0.0,,,,,, +5.68,0.0,1.55,0.37,0.07,0.02,N/A,N/A,N/A,75115.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,15.28,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM20805_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM20805_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.387074,s3://human-pangenomics/working/HPRC/NA20805/raw_data/nanopore/guppy_6/08_10_22_R941_GM20805_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM20805,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,50.43,N/A,N/A,0.0,,,,,, +3.53,0.0,0.93,0.22,0.05,0.01,N/A,N/A,N/A,71330.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,10.11,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM20805_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM20805_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.420147,s3://human-pangenomics/working/HPRC/NA20805/raw_data/nanopore/guppy_6/08_10_22_R941_GM20805_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM20805,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,33.38,N/A,N/A,0.0,,,,,, +7.21,0.0,2.25,0.6,0.15,0.03,N/A,N/A,N/A,83361.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,17.19,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM20858_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM20858_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.38728,s3://human-pangenomics/working/HPRC/NA20858/raw_data/nanopore/guppy_6/08_10_22_R941_GM20858_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM20858,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,56.73,N/A,N/A,0.0,,,,,, +5.54,0.0,1.56,0.41,0.1,0.02,N/A,N/A,N/A,72966.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,15.36,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM20858_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM20858_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.38856,s3://human-pangenomics/working/HPRC/NA20858/raw_data/nanopore/guppy_6/08_10_22_R941_GM20858_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM20858,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,50.68,N/A,N/A,0.0,,,,,, +5.33,0.0,1.55,0.43,0.12,0.03,N/A,N/A,N/A,73630.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,14.51,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM20858_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM20858_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.398138,s3://human-pangenomics/working/HPRC/NA20858/raw_data/nanopore/guppy_6/08_10_22_R941_GM20858_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM20858,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,47.89,N/A,N/A,0.0,,,,,, +0.44,0.0,0.09,0.02,0.0,0.0,N/A,N/A,N/A,72462.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,1.31,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_HG02391_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_HG02391_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.64693,s3://human-pangenomics/working/HPRC/HG02391/raw_data/nanopore/guppy_6/08_10_22_R941_HG02391_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02391,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,4.33,N/A,N/A,0.0,HG02391,SAMN37797104,,CDX,EAS,YR3 +7.27,0.0,1.96,0.45,0.1,0.03,N/A,N/A,N/A,76876.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.09,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_HG02391_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_HG02391_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.373826,s3://human-pangenomics/working/HPRC/HG02391/raw_data/nanopore/guppy_6/08_10_22_R941_HG02391_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02391,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,62.98,N/A,N/A,2.0,HG02391,SAMN37797104,,CDX,EAS,YR3 +6.5,0.0,1.71,0.38,0.08,0.02,N/A,N/A,N/A,72921.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.2,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_HG02391_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_HG02391_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.369934,s3://human-pangenomics/working/HPRC/HG02391/raw_data/nanopore/guppy_6/08_10_22_R941_HG02391_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02391,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,60.06,N/A,N/A,1.0,HG02391,SAMN37797104,,CDX,EAS,YR3 +6.34,0.0,1.93,0.45,0.1,0.02,N/A,N/A,N/A,95822.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,13.23,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_HG02391_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_HG02391_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.39373,s3://human-pangenomics/working/HPRC/HG02391/raw_data/nanopore/guppy_6/08_10_22_R941_HG02391_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02391,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,43.65,N/A,N/A,1.0,HG02391,SAMN37797104,,CDX,EAS,YR3 +6.56,0.0,1.02,0.14,0.02,0.01,N/A,N/A,N/A,59519.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,25.93,,,08_10_22_R941_HG03792_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,08_10_22_R941_HG03792_1,,,,,N/A,N/A,N/A,,N/A,0.322213,s3://human-pangenomics/working/HPRC/HG03792/raw_data/nanopore/guppy_6/08_10_22_R941_HG03792_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03792,N/A,,N/A,,,N/A,N/A,85.57,N/A,N/A,1.0,HG03792,SAMN37797112,,ITU,SAS,YR4 +4.49,0.0,0.63,0.09,0.02,0.0,N/A,N/A,N/A,53139.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,21.29,,,08_10_22_R941_HG03792_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,08_10_22_R941_HG03792_2,,,,,N/A,N/A,N/A,,N/A,0.349105,s3://human-pangenomics/working/HPRC/HG03792/raw_data/nanopore/guppy_6/08_10_22_R941_HG03792_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03792,N/A,,N/A,,,N/A,N/A,70.26,N/A,N/A,0.0,HG03792,SAMN37797112,,ITU,SAS,YR4 +6.43,0.0,1.04,0.15,0.02,0.01,N/A,N/A,N/A,58516.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,25.83,,,08_10_22_R941_HG03792_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,08_10_22_R941_HG03792_3,,,,,N/A,N/A,N/A,,N/A,0.358335,s3://human-pangenomics/working/HPRC/HG03792/raw_data/nanopore/guppy_6/08_10_22_R941_HG03792_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03792,N/A,,N/A,,,N/A,N/A,85.23,N/A,N/A,0.0,HG03792,SAMN37797112,,ITU,SAS,YR4 +4.89,0.01,0.75,0.15,0.06,0.03,N/A,N/A,N/A,72488.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,14.92,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01346_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01346_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.349099,s3://human-pangenomics/working/HPRC/HG01346/raw_data/nanopore/guppy_6/08_17_21_R941_HG01346_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01346,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,49.22,N/A,N/A,13.0,HG01346,SAMN26267379,CLM27,CLM,AMR,YR2 +9.7,0.0,1.34,0.21,0.07,0.03,N/A,N/A,N/A,72436.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,30.15,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01346_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01346_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.297416,s3://human-pangenomics/working/HPRC/HG01346/raw_data/nanopore/guppy_6/08_17_21_R941_HG01346_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01346,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,99.49,N/A,N/A,6.0,HG01346,SAMN26267379,CLM27,CLM,AMR,YR2 +8.89,0.0,1.2,0.18,0.05,0.02,N/A,N/A,N/A,72638.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,27.58,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01346_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01346_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.322652,s3://human-pangenomics/working/HPRC/HG01346/raw_data/nanopore/guppy_6/08_17_21_R941_HG01346_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01346,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,91.0,N/A,N/A,2.0,HG01346,SAMN26267379,CLM27,CLM,AMR,YR2 +13.53,0.0,2.45,0.32,0.06,0.02,N/A,N/A,N/A,83713.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,33.69,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01496_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01496_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.372854,s3://human-pangenomics/working/HPRC/HG01496/raw_data/nanopore/guppy_6/08_17_21_R941_HG01496_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01496,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,111.18,N/A,N/A,0.0,HG01496,SAMN26237497,CLM64,CLM,AMR,YR2 +10.53,0.0,1.75,0.21,0.04,0.01,N/A,N/A,N/A,75967.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,29.57,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01496_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01496_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.364163,s3://human-pangenomics/working/HPRC/HG01496/raw_data/nanopore/guppy_6/08_17_21_R941_HG01496_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01496,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,97.59,N/A,N/A,3.0,HG01496,SAMN26237497,CLM64,CLM,AMR,YR2 +6.87,0.0,1.18,0.16,0.03,0.01,N/A,N/A,N/A,80965.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,17.85,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01496_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01496_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.328512,s3://human-pangenomics/working/HPRC/HG01496/raw_data/nanopore/guppy_6/08_17_21_R941_HG01496_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01496,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,58.91,N/A,N/A,1.0,HG01496,SAMN26237497,CLM64,CLM,AMR,YR2 +7.84,0.0,1.46,0.33,0.12,0.05,N/A,N/A,N/A,81515.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,20.44,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01884_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01884_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.2997,s3://human-pangenomics/working/HPRC/HG01884/raw_data/nanopore/guppy_6/08_17_21_R941_HG01884_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01884,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,67.44,N/A,N/A,14.0,HG01884,SAMN26267393,BB03,ACB,AFR,YR2 +7.35,0.0,1.31,0.28,0.1,0.05,N/A,N/A,N/A,78937.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,20.0,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01884_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01884_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.30104,s3://human-pangenomics/working/HPRC/HG01884/raw_data/nanopore/guppy_6/08_17_21_R941_HG01884_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01884,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,65.99,N/A,N/A,10.0,HG01884,SAMN26267393,BB03,ACB,AFR,YR2 +4.64,0.0,0.81,0.18,0.08,0.04,N/A,N/A,N/A,72924.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,13.89,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01884_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01884_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.329724,s3://human-pangenomics/working/HPRC/HG01884/raw_data/nanopore/guppy_6/08_17_21_R941_HG01884_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01884,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,45.84,N/A,N/A,8.0,HG01884,SAMN26267393,BB03,ACB,AFR,YR2 +8.87,0.0,1.27,0.2,0.05,0.01,N/A,N/A,N/A,72475.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,27.02,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01943_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01943_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.322052,s3://human-pangenomics/working/HPRC/HG01943/raw_data/nanopore/guppy_6/08_17_21_R941_HG01943_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01943,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,89.17,N/A,N/A,1.0,HG01943,SAMN26237499,PEL016,PEL,AMR,YR2 +4.59,0.0,0.61,0.1,0.02,0.01,N/A,N/A,N/A,68632.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,15.07,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01943_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01943_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.322058,s3://human-pangenomics/working/HPRC/HG01943/raw_data/nanopore/guppy_6/08_17_21_R941_HG01943_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01943,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,49.72,N/A,N/A,0.0,HG01943,SAMN26237499,PEL016,PEL,AMR,YR2 +5.92,0.0,0.82,0.13,0.04,0.01,N/A,N/A,N/A,65101.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,20.55,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01943_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01943_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.326738,s3://human-pangenomics/working/HPRC/HG01943/raw_data/nanopore/guppy_6/08_17_21_R941_HG01943_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01943,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,67.8,N/A,N/A,1.0,HG01943,SAMN26237499,PEL016,PEL,AMR,YR2 +8.3,0.0,1.79,0.28,0.04,0.01,N/A,N/A,N/A,84963.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,20.02,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02280_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02280_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.334565,s3://human-pangenomics/working/HPRC/HG02280/raw_data/nanopore/guppy_6/08_17_21_R941_HG02280_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02280,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,66.07,N/A,N/A,0.0,HG02280,SAMN26237505,BB23,ACB,AFR,YR2 +13.82,0.0,2.93,0.48,0.08,0.02,N/A,N/A,N/A,82220.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,34.64,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02280_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02280_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.324119,s3://human-pangenomics/working/HPRC/HG02280/raw_data/nanopore/guppy_6/08_17_21_R941_HG02280_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02280,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,114.3,N/A,N/A,2.0,HG02280,SAMN26237505,BB23,ACB,AFR,YR2 +4.85,0.0,1.05,0.17,0.03,0.01,N/A,N/A,N/A,82435.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,12.1,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02280_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02280_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.348716,s3://human-pangenomics/working/HPRC/HG02280/raw_data/nanopore/guppy_6/08_17_21_R941_HG02280_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02280,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,39.92,N/A,N/A,1.0,HG02280,SAMN26237505,BB23,ACB,AFR,YR2 +10.94,0.0,1.9,0.37,0.12,0.04,N/A,N/A,N/A,81288.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,28.51,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02293_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02293_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.365369,s3://human-pangenomics/working/HPRC/HG02293/raw_data/nanopore/guppy_6/08_17_21_R941_HG02293_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02293,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,94.09,N/A,N/A,7.0,HG02293,SAMN26267394,PEL51,PEL,AMR,YR2 +11.63,0.0,2.06,0.41,0.13,0.05,N/A,N/A,N/A,81745.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,30.04,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02293_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02293_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.384852,s3://human-pangenomics/working/HPRC/HG02293/raw_data/nanopore/guppy_6/08_17_21_R941_HG02293_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02293,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,99.12,N/A,N/A,6.0,HG02293,SAMN26267394,PEL51,PEL,AMR,YR2 +12.69,0.0,2.16,0.4,0.12,0.05,N/A,N/A,N/A,81085.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,33.18,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02293_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02293_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.374775,s3://human-pangenomics/working/HPRC/HG02293/raw_data/nanopore/guppy_6/08_17_21_R941_HG02293_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02293,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,109.5,N/A,N/A,6.0,HG02293,SAMN26267394,PEL51,PEL,AMR,YR2 +7.72,0.0,1.72,0.35,0.08,0.02,N/A,N/A,N/A,89326.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,17.64,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02300_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02300_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.329926,s3://human-pangenomics/working/HPRC/HG02300/raw_data/nanopore/guppy_6/08_17_21_R941_HG02300_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02300,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,58.23,N/A,N/A,1.0,HG02300,SAMN26267395,PEL52,PEL,AMR,YR2 +11.44,0.01,2.82,0.67,0.21,0.08,N/A,N/A,N/A,89321.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,25.98,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02300_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02300_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.326405,s3://human-pangenomics/working/HPRC/HG02300/raw_data/nanopore/guppy_6/08_17_21_R941_HG02300_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02300,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,85.74,N/A,N/A,16.0,HG02300,SAMN26267395,PEL52,PEL,AMR,YR2 +8.27,0.0,2.0,0.48,0.15,0.06,N/A,N/A,N/A,87466.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,19.23,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02300_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02300_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.327987,s3://human-pangenomics/working/HPRC/HG02300/raw_data/nanopore/guppy_6/08_17_21_R941_HG02300_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02300,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,63.45,N/A,N/A,9.0,HG02300,SAMN26267395,PEL52,PEL,AMR,YR2 +4.81,0.0,0.89,0.13,0.02,0.0,N/A,N/A,N/A,83173.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,12.08,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02451_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02451_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.338318,s3://human-pangenomics/working/HPRC/HG02451/raw_data/nanopore/guppy_6/08_17_21_R941_HG02451_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02451,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,39.87,N/A,N/A,1.0,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 +6.97,0.0,1.24,0.18,0.03,0.01,N/A,N/A,N/A,78263.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,18.9,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02451_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02451_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.301994,s3://human-pangenomics/working/HPRC/HG02451/raw_data/nanopore/guppy_6/08_17_21_R941_HG02451_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02451,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,62.38,N/A,N/A,2.0,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 +7.45,0.0,1.45,0.25,0.05,0.01,N/A,N/A,N/A,82173.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,18.95,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02451_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02451_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.307473,s3://human-pangenomics/working/HPRC/HG02451/raw_data/nanopore/guppy_6/08_17_21_R941_HG02451_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02451,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,62.53,N/A,N/A,0.0,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 +5.83,0.01,1.14,0.29,0.11,0.05,N/A,N/A,N/A,79365.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,15.77,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02735_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02735_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.362279,s3://human-pangenomics/working/HPRC/HG02735/raw_data/nanopore/guppy_6/08_17_21_R941_HG02735_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02735,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,52.05,N/A,N/A,18.0,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 +6.43,0.0,1.13,0.26,0.09,0.04,N/A,N/A,N/A,80063.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,17.4,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02735_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02735_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.350825,s3://human-pangenomics/working/HPRC/HG02735/raw_data/nanopore/guppy_6/08_17_21_R941_HG02735_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02735,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,57.41,N/A,N/A,7.0,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 +2.99,0.0,0.46,0.09,0.03,0.01,N/A,N/A,N/A,77157.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,8.75,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02735_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02735_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.419899,s3://human-pangenomics/working/HPRC/HG02735/raw_data/nanopore/guppy_6/08_17_21_R941_HG02735_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02735,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,28.87,N/A,N/A,0.0,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 +4.74,0.0,0.79,0.16,0.05,0.02,N/A,N/A,N/A,81587.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,12.7,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02735_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02735_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.352212,s3://human-pangenomics/working/HPRC/HG02735/raw_data/nanopore/guppy_6/08_17_21_R941_HG02735_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02735,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,41.91,N/A,N/A,1.0,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 +2.19,0.0,0.42,0.1,0.04,0.02,N/A,N/A,N/A,75231.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,6.17,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02738_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02738_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.407703,s3://human-pangenomics/working/HPRC/HG02738/raw_data/nanopore/guppy_6/08_17_21_R941_HG02738_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02738,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,20.37,N/A,N/A,5.0,HG02738,SAMN26267396,PK27,PJL,SAS,YR2 +8.82,0.0,1.79,0.4,0.14,0.06,N/A,N/A,N/A,84858.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.49,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02738_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02738_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.275721,s3://human-pangenomics/working/HPRC/HG02738/raw_data/nanopore/guppy_6/08_17_21_R941_HG02738_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02738,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,70.92,N/A,N/A,6.0,HG02738,SAMN26267396,PK27,PJL,SAS,YR2 +12.07,0.01,2.64,0.64,0.22,0.09,N/A,N/A,N/A,85682.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,29.0,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02738_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02738_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.296058,s3://human-pangenomics/working/HPRC/HG02738/raw_data/nanopore/guppy_6/08_17_21_R941_HG02738_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02738,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,95.7,N/A,N/A,16.0,HG02738,SAMN26267396,PK27,PJL,SAS,YR2 +6.43,0.0,1.32,0.24,0.07,0.03,N/A,N/A,N/A,88827.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,14.81,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02809_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02809_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.330392,s3://human-pangenomics/working/HPRC/HG02809/raw_data/nanopore/guppy_6/08_17_21_R941_HG02809_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02809,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,48.89,N/A,N/A,3.0,HG02809,SAMN26237510,GB63,GWD,AFR,YR2 +10.41,0.0,2.04,0.32,0.08,0.02,N/A,N/A,N/A,93836.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.52,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02809_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02809_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.339115,s3://human-pangenomics/working/HPRC/HG02809/raw_data/nanopore/guppy_6/08_17_21_R941_HG02809_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02809,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,74.33,N/A,N/A,4.0,HG02809,SAMN26237510,GB63,GWD,AFR,YR2 +11.5,0.0,2.28,0.4,0.1,0.04,N/A,N/A,N/A,91856.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.53,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02809_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02809_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.321222,s3://human-pangenomics/working/HPRC/HG02809/raw_data/nanopore/guppy_6/08_17_21_R941_HG02809_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02809,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,84.25,N/A,N/A,3.0,HG02809,SAMN26237510,GB63,GWD,AFR,YR2 +10.17,0.0,1.49,0.17,0.03,0.01,N/A,N/A,N/A,85778.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.08,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG03704_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG03704_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.322761,s3://human-pangenomics/working/HPRC/HG03704/raw_data/nanopore/guppy_6/08_17_21_R941_HG03704_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03704,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,82.75,N/A,N/A,0.0,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 +9.61,0.0,1.48,0.19,0.04,0.01,N/A,N/A,N/A,82890.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.6,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG03704_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG03704_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.35997,s3://human-pangenomics/working/HPRC/HG03704/raw_data/nanopore/guppy_6/08_17_21_R941_HG03704_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03704,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,81.19,N/A,N/A,3.0,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 +7.24,0.0,0.99,0.11,0.02,0.01,N/A,N/A,N/A,78860.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.04,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG03704_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG03704_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.333713,s3://human-pangenomics/working/HPRC/HG03704/raw_data/nanopore/guppy_6/08_17_21_R941_HG03704_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG03704,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,66.14,N/A,N/A,1.0,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 +4.92,0.0,0.52,0.04,0.01,0.0,N/A,N/A,N/A,66847.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,17.09,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG01981_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG01981_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.266703,s3://human-pangenomics/working/HPRC/HG01981/raw_data/nanopore/guppy_6/08_25_21_R941_HG01981_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01981,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,56.38,N/A,N/A,2.0,HG01981,SAMN26237500,PEL27,PEL,AMR,YR2 +6.96,0.0,0.75,0.07,0.01,0.0,N/A,N/A,N/A,65984.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,24.49,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG01981_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG01981_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.301576,s3://human-pangenomics/working/HPRC/HG01981/raw_data/nanopore/guppy_6/08_25_21_R941_HG01981_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01981,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,80.81,N/A,N/A,1.0,HG01981,SAMN26237500,PEL27,PEL,AMR,YR2 +5.88,0.0,0.66,0.07,0.01,0.0,N/A,N/A,N/A,65439.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,20.99,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG01981_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG01981_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.323498,s3://human-pangenomics/working/HPRC/HG01981/raw_data/nanopore/guppy_6/08_25_21_R941_HG01981_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01981,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,69.28,N/A,N/A,0.0,HG01981,SAMN26237500,PEL27,PEL,AMR,YR2 +15.74,0.0,3.26,0.39,0.07,0.02,N/A,N/A,N/A,89941.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,35.45,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG02004_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG02004_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.297757,s3://human-pangenomics/working/HPRC/HG02004/raw_data/nanopore/guppy_6/08_25_21_R941_HG02004_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02004,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,116.98,N/A,N/A,4.0,HG02004,SAMN26237502,PEL33,PEL,AMR,YR2 +13.86,0.0,2.91,0.36,0.06,0.02,N/A,N/A,N/A,89761.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,31.24,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG02004_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG02004_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.307564,s3://human-pangenomics/working/HPRC/HG02004/raw_data/nanopore/guppy_6/08_25_21_R941_HG02004_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02004,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,103.09,N/A,N/A,2.0,HG02004,SAMN26237502,PEL33,PEL,AMR,YR2 +7.42,0.0,1.48,0.19,0.03,0.01,N/A,N/A,N/A,85447.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,17.74,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG02004_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG02004_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.341192,s3://human-pangenomics/working/HPRC/HG02004/raw_data/nanopore/guppy_6/08_25_21_R941_HG02004_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02004,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,58.55,N/A,N/A,1.0,HG02004,SAMN26237502,PEL33,PEL,AMR,YR2 +7.2,0.0,1.76,0.33,0.08,0.03,N/A,N/A,N/A,93672.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,15.46,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG02683_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG02683_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.373037,s3://human-pangenomics/working/HPRC/HG02683/raw_data/nanopore/guppy_6/08_25_21_R941_HG02683_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02683,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,51.01,N/A,N/A,2.0,HG02683,SAMN26267384,PK16,PJL,SAS,YR2 +8.17,0.0,1.89,0.31,0.07,0.02,N/A,N/A,N/A,98701.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,16.57,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG02683_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG02683_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.341715,s3://human-pangenomics/working/HPRC/HG02683/raw_data/nanopore/guppy_6/08_25_21_R941_HG02683_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02683,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,54.69,N/A,N/A,6.0,HG02683,SAMN26267384,PK16,PJL,SAS,YR2 +7.42,0.0,1.67,0.27,0.06,0.02,N/A,N/A,N/A,95821.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,15.58,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG02683_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG02683_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.344844,s3://human-pangenomics/working/HPRC/HG02683/raw_data/nanopore/guppy_6/08_25_21_R941_HG02683_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02683,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,51.42,N/A,N/A,0.0,HG02683,SAMN26267384,PK16,PJL,SAS,YR2 +6.0,0.01,1.5,0.43,0.17,0.08,N/A,N/A,N/A,87332.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,13.97,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG04184_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG04184_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.340642,s3://human-pangenomics/working/HPRC/HG04184/raw_data/nanopore/guppy_6/08_25_21_R941_HG04184_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04184,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,46.09,N/A,N/A,15.0,HG04184,SAMN26267397,BD61,BEB,SAS,YR2 +8.99,0.01,2.4,0.69,0.28,0.13,N/A,N/A,N/A,99822.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.01,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG04184_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG04184_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.334229,s3://human-pangenomics/working/HPRC/HG04184/raw_data/nanopore/guppy_6/08_25_21_R941_HG04184_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04184,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,59.44,N/A,N/A,30.0,HG04184,SAMN26267397,BD61,BEB,SAS,YR2 +6.96,0.01,1.73,0.5,0.21,0.1,N/A,N/A,N/A,89392.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,15.81,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG04184_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG04184_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.361875,s3://human-pangenomics/working/HPRC/HG04184/raw_data/nanopore/guppy_6/08_25_21_R941_HG04184_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG04184,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,52.17,N/A,N/A,25.0,HG04184,SAMN26267397,BD61,BEB,SAS,YR2 +9.23,0.0,2.6,0.58,0.14,0.05,N/A,N/A,N/A,93439.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.78,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_08_21_R941_HG01192_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_08_21_R941_HG01192_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.36009,s3://human-pangenomics/working/HPRC/HG01192/raw_data/nanopore/guppy_6/09_08_21_R941_HG01192_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01192,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,65.28,N/A,N/A,10.0,HG01192,SAMN33621945,PR40,PUR,AMR,YR3 +6.63,0.0,1.75,0.35,0.07,0.02,N/A,N/A,N/A,96482.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,13.78,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_08_21_R941_HG01192_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_08_21_R941_HG01192_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.341194,s3://human-pangenomics/working/HPRC/HG01192/raw_data/nanopore/guppy_6/09_08_21_R941_HG01192_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01192,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,45.46,N/A,N/A,0.0,HG01192,SAMN33621945,PR40,PUR,AMR,YR3 +7.86,0.0,2.12,0.44,0.09,0.03,N/A,N/A,N/A,96610.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,16.31,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_08_21_R941_HG01192_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_08_21_R941_HG01192_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.383568,s3://human-pangenomics/working/HPRC/HG01192/raw_data/nanopore/guppy_6/09_08_21_R941_HG01192_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01192,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,53.82,N/A,N/A,5.0,HG01192,SAMN33621945,PR40,PUR,AMR,YR3 +7.34,0.0,1.35,0.26,0.06,0.02,N/A,N/A,N/A,67258.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,23.91,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_GM19087_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_GM19087_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.363347,s3://human-pangenomics/working/HPRC/NA19087/raw_data/nanopore/guppy_6/09_14_22_R941_GM19087_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19087,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,78.91,N/A,N/A,0.0,,,,,, +6.62,0.0,1.25,0.26,0.07,0.03,N/A,N/A,N/A,63634.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.89,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_GM19087_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_GM19087_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.37074,s3://human-pangenomics/working/HPRC/NA19087/raw_data/nanopore/guppy_6/09_14_22_R941_GM19087_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19087,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,75.53,N/A,N/A,3.0,,,,,, +8.38,0.0,1.75,0.4,0.12,0.04,N/A,N/A,N/A,70432.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.21,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_GM19087_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_GM19087_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.389523,s3://human-pangenomics/working/HPRC/NA19087/raw_data/nanopore/guppy_6/09_14_22_R941_GM19087_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19087,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,83.18,N/A,N/A,2.0,,,,,, +10.05,0.0,2.39,0.49,0.1,0.03,N/A,N/A,N/A,76135.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.2,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_GM20752_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_GM20752_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.35574,s3://human-pangenomics/working/HPRC/NA20752/raw_data/nanopore/guppy_6/09_14_22_R941_GM20752_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM20752,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,89.75,N/A,N/A,1.0,,,,,, +10.05,0.0,2.39,0.49,0.1,0.03,N/A,N/A,N/A,76135.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.2,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_GM20752_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_GM20752_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.35574,s3://human-pangenomics/working/HPRC/NA20752/raw_data/nanopore/guppy_6/09_14_22_R941_GM20752_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM20752,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,89.75,N/A,N/A,1.0,,,,,, +9.75,0.0,2.47,0.53,0.11,0.03,N/A,N/A,N/A,81001.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.53,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_GM20752_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_GM20752_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.370001,s3://human-pangenomics/working/HPRC/NA20752/raw_data/nanopore/guppy_6/09_14_22_R941_GM20752_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM20752,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,80.96,N/A,N/A,1.0,,,,,, +6.98,0.0,1.86,0.5,0.13,0.04,N/A,N/A,N/A,72981.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.41,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG00099_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG00099_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.369611,s3://human-pangenomics/working/HPRC/HG00099/raw_data/nanopore/guppy_6/09_14_22_R941_HG00099_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00099,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,64.04,N/A,N/A,2.0,HG00099,SAMN33758778,,GBR,EUR,YR3 +6.65,0.0,1.72,0.45,0.12,0.03,N/A,N/A,N/A,71544.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.1,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG00099_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG00099_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.377991,s3://human-pangenomics/working/HPRC/HG00099/raw_data/nanopore/guppy_6/09_14_22_R941_HG00099_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00099,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,63.02,N/A,N/A,1.0,HG00099,SAMN33758778,,GBR,EUR,YR3 +7.12,0.0,1.83,0.47,0.12,0.03,N/A,N/A,N/A,71872.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.27,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG00099_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG00099_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.3764,s3://human-pangenomics/working/HPRC/HG00099/raw_data/nanopore/guppy_6/09_14_22_R941_HG00099_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00099,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,66.9,N/A,N/A,2.0,HG00099,SAMN33758778,,GBR,EUR,YR3 +8.13,0.0,2.14,0.5,0.12,0.04,N/A,N/A,N/A,74653.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.12,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG00280_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG00280_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.375128,s3://human-pangenomics/working/HPRC/HG00280/raw_data/nanopore/guppy_6/09_14_22_R941_HG00280_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00280,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,72.98,N/A,N/A,4.0,HG00280,SAMN33758779,,FIN,EUR,YR3 +6.12,0.01,1.57,0.39,0.11,0.04,N/A,N/A,N/A,65990.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.91,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG00280_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG00280_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.380822,s3://human-pangenomics/working/HPRC/HG00280/raw_data/nanopore/guppy_6/09_14_22_R941_HG00280_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00280,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,62.41,N/A,N/A,14.0,HG00280,SAMN33758779,,FIN,EUR,YR3 +6.15,0.0,1.49,0.34,0.09,0.03,N/A,N/A,N/A,67870.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.81,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG00280_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG00280_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.360848,s3://human-pangenomics/working/HPRC/HG00280/raw_data/nanopore/guppy_6/09_14_22_R941_HG00280_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00280,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,62.07,N/A,N/A,8.0,HG00280,SAMN33758779,,FIN,EUR,YR3 +6.91,0.0,2.13,0.65,0.19,0.06,N/A,N/A,N/A,80614.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,17.09,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG01530_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG01530_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.373646,s3://human-pangenomics/working/HPRC/HG01530/raw_data/nanopore/guppy_6/09_14_22_R941_HG01530_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01530,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,56.39,N/A,N/A,4.0,HG01530,SAMN37797099,,IBS,EUR,YR3 +7.19,0.0,2.14,0.66,0.2,0.06,N/A,N/A,N/A,75444.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.07,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG01530_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG01530_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.370886,s3://human-pangenomics/working/HPRC/HG01530/raw_data/nanopore/guppy_6/09_14_22_R941_HG01530_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01530,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,62.94,N/A,N/A,1.0,HG01530,SAMN37797099,,IBS,EUR,YR3 +6.49,0.0,1.77,0.49,0.14,0.04,N/A,N/A,N/A,73858.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,17.93,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG01530_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG01530_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.39413,s3://human-pangenomics/working/HPRC/HG01530/raw_data/nanopore/guppy_6/09_14_22_R941_HG01530_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01530,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,59.17,N/A,N/A,2.0,HG01530,SAMN37797099,,IBS,EUR,YR3 +8.62,0.0,2.16,0.52,0.14,0.05,N/A,N/A,N/A,76764.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.9,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG01784_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG01784_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.352992,s3://human-pangenomics/working/HPRC/HG01784/raw_data/nanopore/guppy_6/09_14_22_R941_HG01784_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01784,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,75.57,N/A,N/A,4.0,HG01784,SAMN37797100,,IBS,EUR,YR3 +8.93,0.0,2.11,0.5,0.14,0.04,N/A,N/A,N/A,72441.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.58,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG01784_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG01784_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.367476,s3://human-pangenomics/working/HPRC/HG01784/raw_data/nanopore/guppy_6/09_14_22_R941_HG01784_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01784,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,84.4,N/A,N/A,1.0,HG01784,SAMN37797100,,IBS,EUR,YR3 +7.55,0.0,1.71,0.39,0.11,0.03,N/A,N/A,N/A,70230.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.49,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG01784_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG01784_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.374443,s3://human-pangenomics/working/HPRC/HG01784/raw_data/nanopore/guppy_6/09_14_22_R941_HG01784_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG01784,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,74.22,N/A,N/A,0.0,HG01784,SAMN37797100,,IBS,EUR,YR3 +0.9,0.0,0.21,0.04,0.01,0.0,N/A,N/A,N/A,77107.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,2.37,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_27_2022_R941_GM19043_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_27_2022_R941_GM19043_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.570092,s3://human-pangenomics/working/HPRC/NA19043/raw_data/nanopore/guppy_6/09_27_2022_R941_GM19043_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19043,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,7.83,N/A,N/A,0.0,,,,,, +7.16,0.0,1.38,0.23,0.04,0.01,N/A,N/A,N/A,71878.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.36,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_27_2022_R941_GM19043_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_27_2022_R941_GM19043_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.346266,s3://human-pangenomics/working/HPRC/NA19043/raw_data/nanopore/guppy_6/09_27_2022_R941_GM19043_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19043,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,70.5,N/A,N/A,3.0,,,,,, +7.05,0.0,1.45,0.27,0.06,0.02,N/A,N/A,N/A,71558.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.83,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_27_2022_R941_GM19043_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_27_2022_R941_GM19043_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.371248,s3://human-pangenomics/working/HPRC/NA19043/raw_data/nanopore/guppy_6/09_27_2022_R941_GM19043_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19043,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,68.75,N/A,N/A,2.0,,,,,, +6.71,0.0,1.47,0.26,0.05,0.01,N/A,N/A,N/A,77640.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,17.89,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_27_2022_R941_GM19043_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_27_2022_R941_GM19043_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.35535,s3://human-pangenomics/working/HPRC/NA19043/raw_data/nanopore/guppy_6/09_27_2022_R941_GM19043_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM19043,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,59.04,N/A,N/A,0.0,,,,,, +7.71,0.0,1.61,0.26,0.05,0.01,N/A,N/A,N/A,68413.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,23.77,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_27_2022_R941_GM20799_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_27_2022_R941_GM20799_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.340489,s3://human-pangenomics/working/HPRC/NA20799/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20799_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM20799,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,78.44,N/A,N/A,3.0,,,,,, +3.8,0.0,0.71,0.11,0.02,0.0,N/A,N/A,N/A,64340.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,12.85,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_27_2022_R941_GM20799_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_27_2022_R941_GM20799_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.401567,s3://human-pangenomics/working/HPRC/NA20799/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20799_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM20799,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,42.4,N/A,N/A,0.0,,,,,, +6.75,0.0,1.3,0.2,0.03,0.01,N/A,N/A,N/A,66914.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.72,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_27_2022_R941_GM20799_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_27_2022_R941_GM20799_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.368589,s3://human-pangenomics/working/HPRC/NA20799/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20799_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM20799,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,71.69,N/A,N/A,0.0,,,,,, +8.31,0.0,2.42,0.61,0.15,0.05,N/A,N/A,N/A,78145.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.22,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_27_2022_R941_GM20905_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_27_2022_R941_GM20905_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.318679,s3://human-pangenomics/working/HPRC/NA20905/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20905_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM20905,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,70.02,N/A,N/A,1.0,,,,,, +6.76,0.0,1.84,0.45,0.12,0.03,N/A,N/A,N/A,70923.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.23,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_27_2022_R941_GM20905_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_27_2022_R941_GM20905_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.349624,s3://human-pangenomics/working/HPRC/NA20905/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20905_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM20905,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,63.45,N/A,N/A,4.0,,,,,, +6.92,0.0,1.84,0.46,0.12,0.03,N/A,N/A,N/A,69497.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.1,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_27_2022_R941_GM20905_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_27_2022_R941_GM20905_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.38176,s3://human-pangenomics/working/HPRC/NA20905/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20905_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,GM20905,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,66.35,N/A,N/A,2.0,,,,,, +8.14,0.0,2.19,0.48,0.11,0.03,N/A,N/A,N/A,81011.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,20.24,,,09_27_2022_R941_HG03742_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,09_27_2022_R941_HG03742_1,,,,,N/A,N/A,N/A,,N/A,0.377766,s3://human-pangenomics/working/HPRC/HG03742/raw_data/nanopore/guppy_6/09_27_2022_R941_HG03742_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03742,N/A,,N/A,,,N/A,N/A,66.81,N/A,N/A,7.0,HG03742,SAMN37797111,,ITU,SAS,YR3 +7.02,0.0,1.69,0.34,0.07,0.02,N/A,N/A,N/A,71143.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,20.4,,,09_27_2022_R941_HG03742_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,09_27_2022_R941_HG03742_2,,,,,N/A,N/A,N/A,,N/A,0.367302,s3://human-pangenomics/working/HPRC/HG03742/raw_data/nanopore/guppy_6/09_27_2022_R941_HG03742_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03742,N/A,,N/A,,,N/A,N/A,67.34,N/A,N/A,3.0,HG03742,SAMN37797111,,ITU,SAS,YR3 +7.22,0.0,1.86,0.4,0.1,0.03,N/A,N/A,N/A,76240.0,N/A,N/A,N/A,,,,N/A,N/A,N/A,19.25,,,09_27_2022_R941_HG03742_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,09_27_2022_R941_HG03742_3,,,,,N/A,N/A,N/A,,N/A,0.368966,s3://human-pangenomics/working/HPRC/HG03742/raw_data/nanopore/guppy_6/09_27_2022_R941_HG03742_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,Similar,HG03742,N/A,,N/A,,,N/A,N/A,63.51,N/A,N/A,8.0,HG03742,SAMN37797111,,ITU,SAS,YR3 +2.67,0.0,0.73,0.14,0.02,0.01,N/A,N/A,N/A,101497.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,5.26,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,10_12_21_R941_HG02015_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,10_12_21_R941_HG02015_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.368566,s3://human-pangenomics/working/HPRC/HG02015/raw_data/nanopore/guppy_6/10_12_21_R941_HG02015_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02015,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,17.35,N/A,N/A,0.0,HG02015,SAMN33621948,VN046,KHV,EAS,YR3 +3.12,0.0,0.83,0.15,0.03,0.01,N/A,N/A,N/A,100719.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,6.2,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,10_12_21_R941_HG02015_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,10_12_21_R941_HG02015_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.377167,s3://human-pangenomics/working/HPRC/HG02015/raw_data/nanopore/guppy_6/10_12_21_R941_HG02015_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02015,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,20.45,N/A,N/A,0.0,HG02015,SAMN33621948,VN046,KHV,EAS,YR3 +7.03,0.0,1.81,0.33,0.06,0.02,N/A,N/A,N/A,102206.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,13.73,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,10_12_21_R941_HG02015_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,10_12_21_R941_HG02015_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.331869,s3://human-pangenomics/working/HPRC/HG02015/raw_data/nanopore/guppy_6/10_12_21_R941_HG02015_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02015,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,45.31,N/A,N/A,1.0,HG02015,SAMN33621948,VN046,KHV,EAS,YR3 +4.39,0.0,1.23,0.25,0.05,0.01,N/A,N/A,N/A,101105.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,8.67,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,10_12_21_R941_HG02015_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,10_12_21_R941_HG02015_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.362562,s3://human-pangenomics/working/HPRC/HG02015/raw_data/nanopore/guppy_6/10_12_21_R941_HG02015_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02015,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,28.62,N/A,N/A,1.0,HG02015,SAMN33621948,VN046,KHV,EAS,YR3 +6.05,0.0,1.09,0.17,0.04,0.01,N/A,N/A,N/A,86229.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,14.62,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,10_12_21_R941_HG02056_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,10_12_21_R941_HG02056_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.359442,s3://human-pangenomics/working/HPRC/HG02056/raw_data/nanopore/guppy_6/10_12_21_R941_HG02056_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02056,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,48.23,N/A,N/A,3.0,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 +6.01,0.0,1.14,0.22,0.06,0.02,N/A,N/A,N/A,79943.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,15.79,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,10_12_21_R941_HG02056_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,10_12_21_R941_HG02056_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.365471,s3://human-pangenomics/working/HPRC/HG02056/raw_data/nanopore/guppy_6/10_12_21_R941_HG02056_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02056,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,52.1,N/A,N/A,0.0,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 +7.42,0.0,1.44,0.27,0.08,0.03,N/A,N/A,N/A,84411.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.29,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,10_12_21_R941_HG02056_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,10_12_21_R941_HG02056_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.360656,s3://human-pangenomics/working/HPRC/HG02056/raw_data/nanopore/guppy_6/10_12_21_R941_HG02056_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02056,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,60.36,N/A,N/A,5.0,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 +5.88,0.0,1.05,0.17,0.04,0.01,N/A,N/A,N/A,83679.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,14.72,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,10_12_21_R941_HG02129_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,10_12_21_R941_HG02129_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.342092,s3://human-pangenomics/working/HPRC/HG02129/raw_data/nanopore/guppy_6/10_12_21_R941_HG02129_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02129,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,48.56,N/A,N/A,2.0,HG02129,SAMN33621950,VN079,KHV,EAS,YR3 +5.2,0.0,0.96,0.17,0.04,0.01,N/A,N/A,N/A,81649.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,13.37,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,10_12_21_R941_HG02129_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,10_12_21_R941_HG02129_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.312407,s3://human-pangenomics/working/HPRC/HG02129/raw_data/nanopore/guppy_6/10_12_21_R941_HG02129_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02129,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,44.13,N/A,N/A,3.0,HG02129,SAMN33621950,VN079,KHV,EAS,YR3 +5.18,0.0,0.89,0.14,0.04,0.01,N/A,N/A,N/A,79677.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,13.79,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,10_12_21_R941_HG02129_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,10_12_21_R941_HG02129_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.350055,s3://human-pangenomics/working/HPRC/HG02129/raw_data/nanopore/guppy_6/10_12_21_R941_HG02129_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02129,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,45.51,N/A,N/A,1.0,HG02129,SAMN33621950,VN079,KHV,EAS,YR3 +9.67,0.0,2.55,0.52,0.11,0.04,N/A,N/A,N/A,92363.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,21.03,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG00423_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG00423_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.307526,s3://human-pangenomics/working/HPRC/HG00423/raw_data/nanopore/guppy_6/12_08_21_R941_HG00423_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00423,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,69.39,N/A,N/A,6.0,HG00423,SAMN26237490,SH007,CHS,EAS,YR2 +8.32,0.0,2.2,0.46,0.11,0.04,N/A,N/A,N/A,89888.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,18.61,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG00423_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG00423_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.298268,s3://human-pangenomics/working/HPRC/HG00423/raw_data/nanopore/guppy_6/12_08_21_R941_HG00423_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00423,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,61.42,N/A,N/A,2.0,HG00423,SAMN26237490,SH007,CHS,EAS,YR2 +9.52,0.0,2.46,0.47,0.11,0.03,N/A,N/A,N/A,92063.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,20.8,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG00423_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG00423_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.301781,s3://human-pangenomics/working/HPRC/HG00423/raw_data/nanopore/guppy_6/12_08_21_R941_HG00423_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG00423,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,68.64,N/A,N/A,3.0,HG00423,SAMN26237490,SH007,CHS,EAS,YR2 +4.32,0.0,0.54,0.11,0.03,0.01,N/A,N/A,N/A,58363.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,17.1,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG02027_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG02027_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.334542,s3://human-pangenomics/working/HPRC/HG02027/raw_data/nanopore/guppy_6/12_08_21_R941_HG02027_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02027,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,56.42,N/A,N/A,2.0,HG02027,SAMN26237503,VN050,KHV,EAS,YR2 +6.25,0.0,0.82,0.15,0.05,0.02,N/A,N/A,N/A,64561.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,21.7,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG02027_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG02027_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.339873,s3://human-pangenomics/working/HPRC/HG02027/raw_data/nanopore/guppy_6/12_08_21_R941_HG02027_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02027,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,71.62,N/A,N/A,5.0,HG02027,SAMN26237503,VN050,KHV,EAS,YR2 +5.7,0.0,0.71,0.13,0.04,0.01,N/A,N/A,N/A,61541.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,21.32,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG02027_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG02027_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.327309,s3://human-pangenomics/working/HPRC/HG02027/raw_data/nanopore/guppy_6/12_08_21_R941_HG02027_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02027,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,70.35,N/A,N/A,0.0,HG02027,SAMN26237503,VN050,KHV,EAS,YR2 +8.69,0.01,1.41,0.27,0.11,0.06,N/A,N/A,N/A,74924.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,25.01,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG02083_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG02083_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.299525,s3://human-pangenomics/working/HPRC/HG02083/raw_data/nanopore/guppy_6/12_08_21_R941_HG02083_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02083,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,82.53,N/A,N/A,24.0,HG02083,SAMN26237504,VN069,KHV,EAS,YR2 +8.89,0.01,1.4,0.24,0.08,0.04,N/A,N/A,N/A,76579.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,24.95,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG02083_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG02083_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.316949,s3://human-pangenomics/working/HPRC/HG02083/raw_data/nanopore/guppy_6/12_08_21_R941_HG02083_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02083,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,82.33,N/A,N/A,24.0,HG02083,SAMN26237504,VN069,KHV,EAS,YR2 +9.27,0.01,1.42,0.23,0.08,0.04,N/A,N/A,N/A,74918.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,26.77,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG02083_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG02083_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.280197,s3://human-pangenomics/working/HPRC/HG02083/raw_data/nanopore/guppy_6/12_08_21_R941_HG02083_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02083,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,88.36,N/A,N/A,14.0,HG02083,SAMN26237504,VN069,KHV,EAS,YR2 +9.94,0.01,1.47,0.24,0.09,0.04,N/A,N/A,N/A,73676.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,29.08,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG02523_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG02523_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.331787,s3://human-pangenomics/working/HPRC/HG02523/raw_data/nanopore/guppy_6/12_08_21_R941_HG02523_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02523,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,95.97,N/A,N/A,15.0,HG02523,SAMN26237506,VN090,KHV,EAS,YR2 +8.82,0.0,1.23,0.2,0.07,0.03,N/A,N/A,N/A,74782.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,25.74,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG02523_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG02523_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.32545,s3://human-pangenomics/working/HPRC/HG02523/raw_data/nanopore/guppy_6/12_08_21_R941_HG02523_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02523,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,84.96,N/A,N/A,10.0,HG02523,SAMN26237506,VN090,KHV,EAS,YR2 +7.95,0.0,1.1,0.15,0.04,0.02,N/A,N/A,N/A,75745.0,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,22.8,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG02523_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG02523_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.331465,s3://human-pangenomics/working/HPRC/HG02523/raw_data/nanopore/guppy_6/12_08_21_R941_HG02523_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,Similar,HG02523,N/A,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,75.24,N/A,N/A,1.0,HG02523,SAMN26237506,VN090,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,12065.0,13705.0,16221.0,SRR29483115,N/A,N/A,N/A,N/A,N/A,SAMN17861232,v7.0.0,N/A,unaligned reads,HiFi sequencing of 16kb fractionated gDNA,m84046_230724_203319_s4.hifi_reads.bc2055.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01123.HFSS2_m84046_230724_203319_s4,single,size fractionation,GENOMIC,WGS,47325.0,13826.0,158.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01123/raw_data/PacBio_HiFi/m84046_230724_203319_s4.hifi_reads.bc2055.bam,PACBIO_SMRT,P1,11740.0,13113.0,15274.0,N/A,HG01123,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,36.56,36561691313.0,2644354.0,N/A,HG01123,SAMN17861232,CLM02,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15199.0,16694.0,18397.0,SRR13684290,N/A,N/A,N/A,N/A,N/A,SAMN17861232,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 17kb fractionated gDNA,m54329U_200205_002609.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01123_HiFiEx_f2,single,size fractionation,GENOMIC,WGS,40793.0,16543.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01123/raw_data/PacBio_HiFi/m54329U_200205_002609.ccs.bam,PACBIO_SMRT,P2.0,14898.0,16353.0,18007.0,N/A,HG01123,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,23.97,23974829242.0,1449219.0,N/A,HG01123,SAMN17861232,CLM02,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15223.0,16722.0,18436.0,SRR13684290,N/A,N/A,N/A,N/A,N/A,SAMN17861232,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 17kb fractionated gDNA,m54329U_200203_181235.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01123_HiFiEx_f2,single,size fractionation,GENOMIC,WGS,39876.0,16577.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01123/raw_data/PacBio_HiFi/m54329U_200203_181235.ccs.bam,PACBIO_SMRT,P2.0,14919.0,16380.0,18039.0,N/A,HG01123,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,27.01,27013827793.0,1629549.0,N/A,HG01123,SAMN17861232,CLM02,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15294.0,16821.0,18566.0,SRR13684290,N/A,N/A,N/A,N/A,N/A,SAMN17861232,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 17kb fractionated gDNA,m54329U_200201_051510.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01123_HiFiEx_f2,single,size fractionation,GENOMIC,WGS,43126.0,16675.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01123/raw_data/PacBio_HiFi/m54329U_200201_051510.ccs.bam,PACBIO_SMRT,P2.0,14984.0,16468.0,18160.0,N/A,HG01123,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,34.55,34554070679.0,2072143.0,N/A,HG01123,SAMN17861232,CLM02,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15493.0,17025.0,18773.0,SRR13684290,N/A,N/A,N/A,N/A,N/A,SAMN17861232,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 17kb fractionated gDNA,m54329U_200206_215926.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01123_HiFiEx_f2,single,size fractionation,GENOMIC,WGS,48534.0,16901.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01123/raw_data/PacBio_HiFi/m54329U_200206_215926.ccs.bam,PACBIO_SMRT,P2.0,15194.0,16680.0,18370.0,N/A,HG01123,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,33.87,33874608465.0,2004290.0,N/A,HG01123,SAMN17861232,CLM02,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,13463.0,15721.0,18586.0,SRR18158598,N/A,N/A,N/A,N/A,N/A,SAMN26267386,6.0.0,N/A,unaligned reads,HiFi sequencing of 17kb fractionated gDNA,m64076_210519_075634.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03927a.HFSS,single,size fractionation,GENOMIC,WGS,47341.0,15444.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03927/raw_data/PacBio_HiFi/m64076_210519_075634.hifi_reads.bam,PACBIO_SMRT,P2.2,12855.0,14899.0,17543.0,N/A,HG03927,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,26.14,26139712779.0,1692462.0,N/A,HG03927,SAMN26267386,BD37,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,13538.0,15842.0,18770.0,SRR18158598,N/A,N/A,N/A,N/A,N/A,SAMN26267386,6.0.0,N/A,unaligned reads,HiFi sequencing of 17kb fractionated gDNA,m64076_210514_222349.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03927a.HFSS,single,size fractionation,GENOMIC,WGS,47540.0,15552.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03927/raw_data/PacBio_HiFi/m64076_210514_222349.hifi_reads.bam,PACBIO_SMRT,P2.2,12914.0,14994.0,17697.0,N/A,HG03927,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,25.98,25979557175.0,1670468.0,N/A,HG03927,SAMN26267386,BD37,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,13486.0,15821.0,18797.0,SRR18158598,N/A,N/A,N/A,N/A,N/A,SAMN26267386,6.0.0,N/A,unaligned reads,HiFi sequencing of 17kb fractionated gDNA,m64076_210517_210115.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03927a.HFSS,single,size fractionation,GENOMIC,WGS,50275.0,15524.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03927/raw_data/PacBio_HiFi/m64076_210517_210115.hifi_reads.bam,PACBIO_SMRT,P2.2,12851.0,14951.0,17697.0,N/A,HG03927,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.01,31012862864.0,1997659.0,N/A,HG03927,SAMN26267386,BD37,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,13984.0,16380.0,19346.0,SRR18158598,N/A,N/A,N/A,N/A,N/A,SAMN26267386,6.0.0,N/A,unaligned reads,HiFi sequencing of 17kb fractionated gDNA,m54329U_210522_083046.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03927a.HFSS,single,size fractionation,GENOMIC,WGS,57003.0,16019.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03927/raw_data/PacBio_HiFi/m54329U_210522_083046.hifi_reads.bam,PACBIO_SMRT,P2.2,13318.0,15506.0,18286.0,N/A,HG03927,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.02,31020996084.0,1936424.0,N/A,HG03927,SAMN26267386,BD37,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16675.0,18363.0,20389.0,SRR13684283,N/A,N/A,N/A,N/A,N/A,SAMN17861234,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m64076_200206_215943.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01358_HiFiEx_f1,single,size fractionation,GENOMIC,WGS,49875.0,18215.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m64076_200206_215943.ccs.bam,PACBIO_SMRT,P2.0,16308.0,17946.0,19862.0,N/A,HG01358,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,28.27,28270120144.0,1551959.0,N/A,HG01358,SAMN17861234,CLM31,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16749.0,18432.0,20451.0,SRR13684283,N/A,N/A,N/A,N/A,N/A,SAMN17861234,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m64076_200208_041234.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01358_HiFiEx_f1,single,size fractionation,GENOMIC,WGS,45703.0,18304.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m64076_200208_041234.ccs.bam,PACBIO_SMRT,P2.0,16388.0,18026.0,19934.0,N/A,HG01358,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,26.04,26036028477.0,1422399.0,N/A,HG01358,SAMN17861234,CLM31,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16771.0,18467.0,20512.0,SRR13684283,N/A,N/A,N/A,N/A,N/A,SAMN17861234,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m64076_200203_181219.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01358_HiFiEx_f1,single,size fractionation,GENOMIC,WGS,49139.0,18338.0,44.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m64076_200203_181219.ccs.bam,PACBIO_SMRT,P2.0,16407.0,18053.0,19983.0,N/A,HG01358,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,32.63,32630636515.0,1779397.0,N/A,HG01358,SAMN17861234,CLM31,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17038.0,18766.0,20859.0,SRR13684283,N/A,N/A,N/A,N/A,N/A,SAMN17861234,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m64076_200201_051547.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01358_HiFiEx_f1,single,size fractionation,GENOMIC,WGS,50034.0,18670.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m64076_200201_051547.ccs.bam,PACBIO_SMRT,P2.0,16676.0,18344.0,20318.0,N/A,HG01358,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,30.07,30068543676.0,1610516.0,N/A,HG01358,SAMN17861234,CLM31,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,True,12438.0,14133.0,16723.0,SRR29483175,N/A,N/A,N/A,N/A,N/A,SAMN17861235,v7.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m84046_230724_203319_s4.hifi_reads.bc2056.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01361.HFSS2_m84046_230724_203319_s4,single,size fractionation,GENOMIC,WGS,55368.0,14341.0,195.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01361/raw_data/PacBio_HiFi/m84046_230724_203319_s4.hifi_reads.bc2056.bam,PACBIO_SMRT,P1,12129.0,13541.0,15772.0,N/A,HG01361,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,42.05,42045826152.0,2931742.0,N/A,HG01361,SAMN17861235,CLM32,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15711.0,17901.0,20896.0,SRR18158605,N/A,N/A,N/A,N/A,N/A,SAMN26267393,6.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_210713_205453.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01884.HFSS,single,size fractionation,GENOMIC,WGS,53165.0,17927.0,630.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01884/raw_data/PacBio_HiFi/m54329U_210713_205453.hifi_reads.bam,PACBIO_SMRT,P2.2,15277.0,17186.0,19909.0,N/A,HG01884,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.57,31572145410.0,1761109.0,N/A,HG01884,SAMN26267393,BB03,ACB,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15891.0,18214.0,21321.0,SRR18158605,N/A,N/A,N/A,N/A,N/A,SAMN26267393,6.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_210716_214728.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01884.HFSS,single,size fractionation,GENOMIC,WGS,59768.0,18187.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01884/raw_data/PacBio_HiFi/m54329U_210716_214728.hifi_reads.bam,PACBIO_SMRT,P2.2,15416.0,17441.0,20292.0,N/A,HG01884,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,34.11,34105927543.0,1875249.0,N/A,HG01884,SAMN26267393,BB03,ACB,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15933.0,18283.0,21409.0,SRR18158605,N/A,N/A,N/A,N/A,N/A,SAMN26267393,6.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_210718_084331.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01884.HFSS,single,size fractionation,GENOMIC,WGS,55519.0,18244.0,681.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01884/raw_data/PacBio_HiFi/m54329U_210718_084331.hifi_reads.bam,PACBIO_SMRT,P2.2,15452.0,17497.0,20372.0,N/A,HG01884,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.07,39074294250.0,2141718.0,N/A,HG01884,SAMN26267393,BB03,ACB,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15360.0,17295.0,19991.0,SRR29483163,N/A,N/A,N/A,N/A,N/A,SAMN26267393,v7.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m84046_230701_003325_s1.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01884.HFSS_m84046_230701_003325_s1,single,size fractionation,GENOMIC,WGS,58056.0,17381.0,169.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01884/raw_data/PacBio_HiFi/m84046_230701_003325_s1.hifi_reads.default.bam,PACBIO_SMRT,P1,14997.0,16702.0,19146.0,N/A,HG01884,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,42.66,42656028040.0,2454075.0,N/A,HG01884,SAMN26267393,BB03,ACB,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15291.0,17180.0,19819.0,SRR29483099,N/A,N/A,N/A,N/A,N/A,SAMN26267393,v7.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m84046_230707_192442_s1.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01884.HFSS_m84046_230707_192442_s1,single,size fractionation,GENOMIC,WGS,48493.0,17266.0,326.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01884/raw_data/PacBio_HiFi/m84046_230707_192442_s1.hifi_reads.default.bam,PACBIO_SMRT,P1,14941.0,16599.0,18996.0,N/A,HG01884,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,8.22,8216138148.0,475838.0,N/A,HG01884,SAMN26267393,BB03,ACB,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15438.0,17430.0,20183.0,SRR29483100,N/A,N/A,N/A,N/A,N/A,SAMN26267393,v7.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m84046_230712_231732_s2.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01884.HFSS_m84046_230712_231732_s2,single,size fractionation,GENOMIC,WGS,47627.0,17498.0,421.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01884/raw_data/PacBio_HiFi/m84046_230712_231732_s2.hifi_reads.default.bam,PACBIO_SMRT,P1,15063.0,16809.0,19298.0,N/A,HG01884,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,6.39,6389710318.0,365156.0,N/A,HG01884,SAMN26267393,BB03,ACB,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15428.0,17411.0,20136.0,SRR29483164,N/A,N/A,N/A,N/A,N/A,SAMN26267393,v7.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m84046_230718_230843_s2.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01884.HFSS_m84046_230718_230843_s2,single,size fractionation,GENOMIC,WGS,51929.0,17476.0,724.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01884/raw_data/PacBio_HiFi/m84046_230718_230843_s2.hifi_reads.default.bam,PACBIO_SMRT,P1,15052.0,16796.0,19282.0,N/A,HG01884,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,9.45,9447051450.0,540542.0,N/A,HG01884,SAMN26267393,BB03,ACB,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15889.0,16994.0,18242.0,SRR13684280,N/A,N/A,N/A,N/A,N/A,SAMN17861236,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_200129_001928.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01891.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,46123.0,16969.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01891/raw_data/PacBio_HiFi/m54329U_200129_001928.ccs.bam,PACBIO_SMRT,P2.0,15741.0,16819.0,18050.0,N/A,HG01891,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,30.2,30200500419.0,1779732.0,N/A,HG01891,SAMN17861236,BB05,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15912.0,17016.0,18263.0,SRR13684280,N/A,N/A,N/A,N/A,N/A,SAMN17861236,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_200124_193652.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01891.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,43693.0,16990.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01891/raw_data/PacBio_HiFi/m54329U_200124_193652.ccs.bam,PACBIO_SMRT,P2.0,15765.0,16844.0,18071.0,N/A,HG01891,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,27.12,27122049640.0,1596347.0,N/A,HG01891,SAMN17861236,BB05,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15942.0,17054.0,18300.0,SRR13684280,N/A,N/A,N/A,N/A,N/A,SAMN17861236,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_200127_180554.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01891.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,42906.0,17023.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01891/raw_data/PacBio_HiFi/m54329U_200127_180554.ccs.bam,PACBIO_SMRT,P2.0,15793.0,16880.0,18110.0,N/A,HG01891,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,29.88,29883779569.0,1755465.0,N/A,HG01891,SAMN17861236,BB05,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15977.0,17094.0,18346.0,SRR13684280,N/A,N/A,N/A,N/A,N/A,SAMN17861236,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_200130_064539.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01891.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,44817.0,17061.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01891/raw_data/PacBio_HiFi/m54329U_200130_064539.ccs.bam,PACBIO_SMRT,P2.0,15828.0,16917.0,18153.0,N/A,HG01891,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,27.92,27919782706.0,1636421.0,N/A,HG01891,SAMN17861236,BB05,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16803.0,18321.0,20131.0,SRR13684277,N/A,N/A,N/A,N/A,N/A,SAMN17861238,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_200315_215927.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02486.HiFiEx2_f2,single,size fractionation,GENOMIC,WGS,50334.0,18301.0,48.0,second library prep,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02486/raw_data/PacBio_HiFi/m54329U_200315_215927.ccs.bam,PACBIO_SMRT,P2.0,16539.0,17995.0,19722.0,N/A,HG02486,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,27.66,27656723390.0,1511142.0,N/A,HG02486,SAMN17861238,BB55,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16829.0,18345.0,20156.0,SRR13684277,N/A,N/A,N/A,N/A,N/A,SAMN17861238,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_200313_161638.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02486.HiFiEx2_f2,single,size fractionation,GENOMIC,WGS,49122.0,18326.0,47.0,second library prep,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02486/raw_data/PacBio_HiFi/m54329U_200313_161638.ccs.bam,PACBIO_SMRT,P2.0,16560.0,18020.0,19749.0,N/A,HG02486,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,26.98,26976692024.0,1472019.0,N/A,HG02486,SAMN17861238,BB55,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16870.0,18381.0,20189.0,SRR13684277,N/A,N/A,N/A,N/A,N/A,SAMN17861238,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_200320_213710.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02486.HiFiEx2_f2,single,size fractionation,GENOMIC,WGS,47614.0,18362.0,45.0,second library prep,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02486/raw_data/PacBio_HiFi/m54329U_200320_213710.ccs.bam,PACBIO_SMRT,P2.0,16604.0,18059.0,19784.0,N/A,HG02486,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,26.33,26326389903.0,1433701.0,N/A,HG02486,SAMN17861238,BB55,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16938.0,18464.0,20285.0,SRR13684277,N/A,N/A,N/A,N/A,N/A,SAMN17861238,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_200317_041347.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02486.HiFiEx2_f2,single,size fractionation,GENOMIC,WGS,46613.0,18446.0,48.0,second library prep,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02486/raw_data/PacBio_HiFi/m54329U_200317_041347.ccs.bam,PACBIO_SMRT,P2.0,16669.0,18136.0,19875.0,N/A,HG02486,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,23.86,23856827644.0,1293270.0,N/A,HG02486,SAMN17861238,BB55,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15377.0,17242.0,19819.0,SRR18158607,N/A,N/A,N/A,N/A,N/A,SAMN26267385,6.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_210618_202343.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03688.HFSS,single,size fractionation,GENOMIC,WGS,48498.0,17337.0,1008.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03688/raw_data/PacBio_HiFi/m54329U_210618_202343.hifi_reads.bam,PACBIO_SMRT,P2.2,15057.0,16700.0,19071.0,N/A,HG03688,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,25.43,25428236196.0,1466700.0,N/A,HG03688,SAMN26267385,ST016,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15385.0,17266.0,19865.0,SRR18158607,N/A,N/A,N/A,N/A,N/A,SAMN26267385,6.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_210611_221457.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03688.HFSS,single,size fractionation,GENOMIC,WGS,50736.0,17355.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03688/raw_data/PacBio_HiFi/m54329U_210611_221457.hifi_reads.bam,PACBIO_SMRT,P2.2,15063.0,16712.0,19103.0,N/A,HG03688,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,23.71,23712691290.0,1366300.0,N/A,HG03688,SAMN26267385,ST016,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15700.0,17689.0,20289.0,SRR18158607,N/A,N/A,N/A,N/A,N/A,SAMN26267385,6.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_210608_221930.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03688.HFSS,single,size fractionation,GENOMIC,WGS,51332.0,17694.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03688/raw_data/PacBio_HiFi/m54329U_210608_221930.hifi_reads.bam,PACBIO_SMRT,P2.2,15340.0,17113.0,19552.0,N/A,HG03688,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,28.67,28672095909.0,1620373.0,N/A,HG03688,SAMN26267385,ST016,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15910.0,18004.0,20653.0,SRR18158607,N/A,N/A,N/A,N/A,N/A,SAMN26267385,6.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m64076_210610_224207.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03688.HFSS,single,size fractionation,GENOMIC,WGS,49522.0,17945.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03688/raw_data/PacBio_HiFi/m64076_210610_224207.hifi_reads.bam,PACBIO_SMRT,P2.2,15513.0,17393.0,19908.0,N/A,HG03688,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,34.6,34597694779.0,1927878.0,N/A,HG03688,SAMN26267385,ST016,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15558.0,17449.0,20094.0,SRR29483118,N/A,N/A,N/A,N/A,N/A,SAMN26267385,v7.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m84046_230707_195504_s2.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03688.HFSS_b2_m84046_230707_195504_s2,single,size fractionation,GENOMIC,WGS,51499.0,17566.0,101.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03688/raw_data/PacBio_HiFi/m84046_230707_195504_s2.hifi_reads.default.bam,PACBIO_SMRT,P1,15240.0,16894.0,19318.0,N/A,HG03688,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,60.72,60723310391.0,3456854.0,N/A,HG03688,SAMN26267385,ST016,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15879.0,18028.0,20926.0,SRR18158601,N/A,N/A,N/A,N/A,N/A,SAMN26267387,6.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_210613_071322.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03942.HFSS,single,size fractionation,GENOMIC,WGS,53889.0,18036.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03942/raw_data/PacBio_HiFi/m54329U_210613_071322.hifi_reads.bam,PACBIO_SMRT,P2.2,15462.0,17352.0,20013.0,N/A,HG03942,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,20.2,20199492409.0,1119930.0,N/A,HG03942,SAMN26267387,BD42,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16508.0,18868.0,21799.0,SRR18158601,N/A,N/A,N/A,N/A,N/A,SAMN26267387,6.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m64076_210606_095247.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03942.HFSS,single,size fractionation,GENOMIC,WGS,53969.0,18726.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03942/raw_data/PacBio_HiFi/m64076_210606_095247.hifi_reads.bam,PACBIO_SMRT,P2.2,16013.0,18138.0,20920.0,N/A,HG03942,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,30.91,30909041518.0,1650567.0,N/A,HG03942,SAMN26267387,BD42,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16589.0,18952.0,21872.0,SRR18158601,N/A,N/A,N/A,N/A,N/A,SAMN26267387,6.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m64076_210615_181342.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03942.HFSS,single,size fractionation,GENOMIC,WGS,52388.0,18795.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03942/raw_data/PacBio_HiFi/m64076_210615_181342.hifi_reads.bam,PACBIO_SMRT,P2.2,16086.0,18223.0,21004.0,N/A,HG03942,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,26.77,26769890045.0,1424240.0,N/A,HG03942,SAMN26267387,BD42,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16954.0,19497.0,22506.0,SRR18158601,N/A,N/A,N/A,N/A,N/A,SAMN26267387,6.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m64076_210612_093800.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03942.HFSS,single,size fractionation,GENOMIC,WGS,57492.0,19228.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03942/raw_data/PacBio_HiFi/m64076_210612_093800.hifi_reads.bam,PACBIO_SMRT,P2.2,16382.0,18701.0,21606.0,N/A,HG03942,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,26.76,26760152025.0,1391705.0,N/A,HG03942,SAMN26267387,BD42,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15650.0,17624.0,20339.0,SRR29483090,N/A,N/A,N/A,N/A,N/A,SAMN26267387,v7.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m84046_230711_230656_s2.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03942.HFSS_C_m84046_230711_230656_s2,single,size fractionation,GENOMIC,WGS,52486.0,17688.0,248.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03942/raw_data/PacBio_HiFi/m84046_230711_230656_s2.hifi_reads.default.bam,PACBIO_SMRT,P1,15281.0,17030.0,19512.0,N/A,HG03942,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,69.47,69465942701.0,3927195.0,N/A,HG03942,SAMN26267387,BD42,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16260.0,18707.0,20196.0,SRR18158604,N/A,N/A,N/A,N/A,N/A,SAMN26267379,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m64076_210526_105450.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01346_f345,single,size fractionation,GENOMIC,WGS,40848.0,18242.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01346/raw_data/PacBio_HiFi/m64076_210526_105450.hifi_reads.bam,PACBIO_SMRT,P2.2,15827.0,18353.0,19870.0,N/A,HG01346,N/A,N/A,C2,Megaruptor 3,SageELF,SRP305758,N/A,19.33,19327631225.0,1059488.0,N/A,HG01346,SAMN26267379,CLM27,CLM,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16403.0,18798.0,21865.0,SRR18158592,N/A,N/A,N/A,N/A,N/A,SAMN26267380,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m64076_210607_215041.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02071.HFSS,single,size fractionation,GENOMIC,WGS,52883.0,18716.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02071/raw_data/PacBio_HiFi/m64076_210607_215041.hifi_reads.bam,PACBIO_SMRT,P2.2,15902.0,18032.0,20896.0,N/A,HG02071,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,33.31,33308306970.0,1779605.0,N/A,HG02071,SAMN26267380,VN065,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16603.0,19088.0,22195.0,SRR18158592,N/A,N/A,N/A,N/A,N/A,SAMN26267380,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m64076_210604_225751.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02071.HFSS,single,size fractionation,GENOMIC,WGS,54155.0,18948.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02071/raw_data/PacBio_HiFi/m64076_210604_225751.hifi_reads.bam,PACBIO_SMRT,P2.2,16068.0,18290.0,21215.0,N/A,HG02071,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,33.63,33629205391.0,1774809.0,N/A,HG02071,SAMN26267380,VN065,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16831.0,19429.0,22604.0,SRR18158592,N/A,N/A,N/A,N/A,N/A,SAMN26267380,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m64076_210609_084637.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02071.HFSS,single,size fractionation,GENOMIC,WGS,57671.0,19220.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02071/raw_data/PacBio_HiFi/m64076_210609_084637.hifi_reads.bam,PACBIO_SMRT,P2.2,16248.0,18590.0,21605.0,N/A,HG02071,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,30.15,30150326606.0,1568624.0,N/A,HG02071,SAMN26267380,VN065,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15821.0,17982.0,20929.0,SRR29483200,N/A,N/A,N/A,N/A,N/A,SAMN26267380,v7.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m84046_230712_000908_s4.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02071.HFSS_A_m84046_230712_000908_s4,single,size fractionation,GENOMIC,WGS,61719.0,18039.0,224.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02071/raw_data/PacBio_HiFi/m84046_230712_000908_s4.hifi_reads.default.bam,PACBIO_SMRT,P1,15414.0,17295.0,19985.0,N/A,HG02071,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,76.3,76304506746.0,4229810.0,N/A,HG02071,SAMN26267380,VN065,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,20111.0,20780.0,21460.0,SRR13684276,N/A,N/A,N/A,N/A,N/A,SAMN17861238,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m64076_200211_192227.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02486.HiFiEx_b6,single,size fractionation,GENOMIC,WGS,30053.0,20506.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02486/raw_data/PacBio_HiFi/m64076_200211_192227.ccs.bam,PACBIO_SMRT,P2.0,20033.0,20719.0,21404.0,N/A,HG02486,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,1.03,1028856517.0,50172.0,N/A,HG02486,SAMN17861238,BB55,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,14482.0,17259.0,20560.0,SRR18158597,N/A,N/A,N/A,N/A,N/A,SAMN26267383,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m64076_210527_231639.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02647.HFSS,single,size fractionation,GENOMIC,WGS,49665.0,16673.0,625.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02647/raw_data/PacBio_HiFi/m64076_210527_231639.hifi_reads.bam,PACBIO_SMRT,P2.2,13572.0,16159.0,19281.0,N/A,HG02647,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,25.95,25947810331.0,1556245.0,N/A,HG02647,SAMN26267383,GB38,GWD,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,14805.0,17612.0,20903.0,SRR18158597,N/A,N/A,N/A,N/A,N/A,SAMN26267383,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m64076_210530_192034.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02647.HFSS,single,size fractionation,GENOMIC,WGS,51342.0,16998.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02647/raw_data/PacBio_HiFi/m64076_210530_192034.hifi_reads.bam,PACBIO_SMRT,P2.2,13887.0,16523.0,19663.0,N/A,HG02647,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.82,31818795589.0,1871860.0,N/A,HG02647,SAMN26267383,GB38,GWD,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,14932.0,17777.0,21104.0,SRR18158597,N/A,N/A,N/A,N/A,N/A,SAMN26267383,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m64076_210601_061523.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02647.HFSS,single,size fractionation,GENOMIC,WGS,55771.0,17141.0,75.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02647/raw_data/PacBio_HiFi/m64076_210601_061523.hifi_reads.bam,PACBIO_SMRT,P2.2,14001.0,16668.0,19853.0,N/A,HG02647,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.56,32563750856.0,1899728.0,N/A,HG02647,SAMN26267383,GB38,GWD,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15096.0,17951.0,21256.0,SRR18158597,N/A,N/A,N/A,N/A,N/A,SAMN26267383,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m54329U_210604_200442.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02647.HFSS,single,size fractionation,GENOMIC,WGS,49905.0,17299.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02647/raw_data/PacBio_HiFi/m54329U_210604_200442.hifi_reads.bam,PACBIO_SMRT,P2.2,14162.0,16846.0,20034.0,N/A,HG02647,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.89,32887962762.0,1901126.0,N/A,HG02647,SAMN26267383,GB38,GWD,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16280.0,18782.0,22068.0,SRR18158590,N/A,N/A,N/A,N/A,N/A,SAMN26267391,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m54329U_210725_100455.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04228.HFSS,single,size fractionation,GENOMIC,WGS,56969.0,18720.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04228/raw_data/PacBio_HiFi/m54329U_210725_100455.hifi_reads.bam,PACBIO_SMRT,P2.2,15754.0,17931.0,20958.0,N/A,HG04228,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,37.36,37362709632.0,1995820.0,N/A,HG04228,SAMN26267391,ST232,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16786.0,19365.0,22577.0,SRR18158590,N/A,N/A,N/A,N/A,N/A,SAMN26267391,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m64076_210618_160639.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04228.HFSS,single,size fractionation,GENOMIC,WGS,54593.0,19192.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04228/raw_data/PacBio_HiFi/m64076_210618_160639.hifi_reads.bam,PACBIO_SMRT,P2.2,16208.0,18517.0,21532.0,N/A,HG04228,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,26.36,26359885180.0,1373442.0,N/A,HG04228,SAMN26267391,ST232,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16794.0,19404.0,22637.0,SRR18158590,N/A,N/A,N/A,N/A,N/A,SAMN26267391,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m64076_210617_050849.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04228.HFSS,single,size fractionation,GENOMIC,WGS,55387.0,19223.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04228/raw_data/PacBio_HiFi/m64076_210617_050849.hifi_reads.bam,PACBIO_SMRT,P2.2,16203.0,18541.0,21582.0,N/A,HG04228,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.1,32095148856.0,1669607.0,N/A,HG04228,SAMN26267391,ST232,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17339.0,20120.0,23410.0,SRR18158590,N/A,N/A,N/A,N/A,N/A,SAMN26267391,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m64076_210620_030428.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04228.HFSS,single,size fractionation,GENOMIC,WGS,57038.0,19812.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04228/raw_data/PacBio_HiFi/m64076_210620_030428.hifi_reads.bam,PACBIO_SMRT,P2.2,16665.0,19203.0,22353.0,N/A,HG04228,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,30.58,30579890559.0,1543446.0,N/A,HG04228,SAMN26267391,ST232,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16138.0,18527.0,21669.0,SRR29483062,N/A,N/A,N/A,N/A,N/A,SAMN26267391,v7.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m84046_230617_033126_s1.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG04228.HFSS_D_m84046_230617_033126_s1,single,size fractionation,GENOMIC,WGS,59410.0,18494.0,279.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04228/raw_data/PacBio_HiFi/m84046_230617_033126_s1.hifi_reads.default.bam,PACBIO_SMRT,P1,15649.0,17739.0,20634.0,N/A,HG04228,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,47.77,47771626922.0,2583006.0,N/A,HG04228,SAMN26267391,ST232,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15544.0,17534.0,20094.0,SRR29483216,N/A,N/A,N/A,N/A,N/A,SAMN41021689,v7.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m84046_230901_223052_s3.hifi_reads.bc2036.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG04225.HFSS_m84046_230901_223052_s3,single,size fractionation,GENOMIC,WGS,53307.0,17422.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04225/raw_data/PacBio_HiFi/m84046_230901_223052_s3.hifi_reads.bc2036.bam,PACBIO_SMRT,P1,15127.0,16947.0,19354.0,N/A,HG04225,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,63.74,63736463295.0,3658213.0,N/A,HG04225,SAMN41021689,,ITU,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15427.0,17375.0,19912.0,SRR29483215,N/A,N/A,N/A,N/A,N/A,SAMN41021689,v7.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m84046_230901_230230_s4.hifi_reads.bc2036.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG04225.HFSS_m84046_230901_230230_s4,single,size fractionation,GENOMIC,WGS,58413.0,17284.0,146.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04225/raw_data/PacBio_HiFi/m84046_230901_230230_s4.hifi_reads.bc2036.bam,PACBIO_SMRT,P1,15019.0,16801.0,19173.0,N/A,HG04225,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,62.63,62627446083.0,3623260.0,N/A,HG04225,SAMN41021689,,ITU,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15313.0,17212.0,19687.0,SRR29483218,N/A,N/A,N/A,N/A,N/A,SAMN41021689,v7.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m84046_230906_215022_s3.hifi_reads.bc2036.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG04225.HFSS_m84046_230906_215022_s3,single,size fractionation,GENOMIC,WGS,48211.0,17132.0,176.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04225/raw_data/PacBio_HiFi/m84046_230906_215022_s3.hifi_reads.bc2036.bam,PACBIO_SMRT,P1,14918.0,16658.0,18967.0,N/A,HG04225,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,36.21,36205086640.0,2113201.0,N/A,HG04225,SAMN41021689,,ITU,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15501.0,17477.0,20013.0,SRR29483219,N/A,N/A,N/A,N/A,N/A,SAMN41021689,v7.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m84046_230906_222128_s4.hifi_reads.bc2036.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG04225.HFSS_m84046_230906_222128_s4,single,size fractionation,GENOMIC,WGS,53953.0,17368.0,130.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04225/raw_data/PacBio_HiFi/m84046_230906_222128_s4.hifi_reads.bc2036.bam,PACBIO_SMRT,P1,15086.0,16893.0,19281.0,N/A,HG04225,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,44.07,44071477955.0,2537506.0,N/A,HG04225,SAMN41021689,,ITU,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18131.0,19724.0,21738.0,SRR23732295,N/A,N/A,N/A,N/A,N/A,SAMN33621941,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220728_173215-bc1018.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00140_lib1,single,size fractionation,GENOMIC,WGS,53341.0,19783.0,51.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/m64043_220728_173215-bc1018.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17853.0,19373.0,21259.0,N/A,HG00140,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,10.23,10233445025.0,517275.0,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19047.0,21631.0,25828.0,SRR23732295,N/A,N/A,N/A,N/A,N/A,SAMN33621941,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220719_122056-bc1018.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00140_lib1,single,size fractionation,GENOMIC,WGS,73370.0,21889.0,137.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/m64136_220719_122056-bc1018.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18518.0,20699.0,24213.0,N/A,HG00140,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.87,33866031514.0,1547133.0,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19094.0,21721.0,25959.0,SRR23732295,N/A,N/A,N/A,N/A,N/A,SAMN33621941,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220715_182717-bc1018.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00140_lib1,single,size fractionation,GENOMIC,WGS,72755.0,21967.0,199.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/m64136_220715_182717-bc1018.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18553.0,20771.0,24326.0,N/A,HG00140,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.18,32183433807.0,1465069.0,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19100.0,21722.0,25987.0,SRR23732295,N/A,N/A,N/A,N/A,N/A,SAMN33621941,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220717_152248-bc1018.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00140_lib1,single,size fractionation,GENOMIC,WGS,68045.0,21979.0,51.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/m64136_220717_152248-bc1018.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18559.0,20771.0,24336.0,N/A,HG00140,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.07,34068521767.0,1550035.0,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17093.0,20339.0,24494.0,SRR29405849,N/A,N/A,N/A,N/A,N/A,SAMN41021667,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230721_141900_s2.hifi_reads.bc1008.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00235_PB1_m84091_230721_141900_s2,single,size fractionation,GENOMIC,WGS,64006.0,19972.0,60.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00235/raw_data/PacBio_HiFi/m84091_230721_141900_s2.hifi_reads.bc1008.bam,PACBIO_SMRT,Revio P1,16198.0,19048.0,22813.0,N/A,HG00235,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,90.63,90629295210.0,4537603.0,N/A,HG00235,SAMN41021667,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17561.0,20992.0,25350.0,SRR29405848,N/A,N/A,N/A,N/A,N/A,SAMN41021667,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230724_170222_s4.hifi_reads.bc1008.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00235_PB1_m84091_230724_170222_s4,single,size fractionation,GENOMIC,WGS,63978.0,20525.0,141.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00235/raw_data/PacBio_HiFi/m84091_230724_170222_s4.hifi_reads.bc1008.bam,PACBIO_SMRT,Revio P1,16568.0,19607.0,23582.0,N/A,HG00235,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,100.35,100350407151.0,4889018.0,N/A,HG00235,SAMN41021667,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18433.0,22452.0,27372.0,SRR29405837,N/A,N/A,N/A,N/A,N/A,SAMN41021644,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230712_180444_s4.hifi_reads.bc1018.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00243_PB1_m84091_230712_180444_s4,single,size fractionation,GENOMIC,WGS,73045.0,21774.0,93.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00243/raw_data/PacBio_HiFi/m84091_230712_180444_s4.hifi_reads.bc1018.bam,PACBIO_SMRT,Revio P1,17180.0,20708.0,25231.0,N/A,HG00243,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,94.32,94319711832.0,4331650.0,N/A,HG00243,SAMN41021644,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18295.0,22278.0,27119.0,SRR29405826,N/A,N/A,N/A,N/A,N/A,SAMN41021644,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230719_162122_s2.hifi_reads.bc1018.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00243_PB1_m84091_230719_162122_s2,single,size fractionation,GENOMIC,WGS,65354.0,21615.0,97.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00243/raw_data/PacBio_HiFi/m84091_230719_162122_s2.hifi_reads.bc1018.bam,PACBIO_SMRT,Revio P1,17075.0,20547.0,25031.0,N/A,HG00243,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,91.46,91462784918.0,4231327.0,N/A,HG00243,SAMN41021644,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17382.0,20786.0,25025.0,SRR29405815,N/A,N/A,N/A,N/A,N/A,SAMN41021666,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230721_134835_s1.hifi_reads.bc1003.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00253_PB1_m84091_230721_134835_s1,single,size fractionation,GENOMIC,WGS,62447.0,20277.0,55.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00253/raw_data/PacBio_HiFi/m84091_230721_134835_s1.hifi_reads.bc1003.bam,PACBIO_SMRT,Revio P1,16355.0,19411.0,23287.0,N/A,HG00253,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,111.73,111727151213.0,5510036.0,N/A,HG00253,SAMN41021666,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16985.0,20288.0,24409.0,SRR29405807,N/A,N/A,N/A,N/A,N/A,SAMN41021666,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230727_143029_s4.hifi_reads.bc1003.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00253_PB1_m84091_230727_143029_s4,single,size fractionation,GENOMIC,WGS,61986.0,19838.0,129.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00253/raw_data/PacBio_HiFi/m84091_230727_143029_s4.hifi_reads.bc1003.bam,PACBIO_SMRT,Revio P1,16026.0,18955.0,22733.0,N/A,HG00253,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,89.52,89522377853.0,4512540.0,N/A,HG00253,SAMN41021666,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16692.0,19270.0,22381.0,SRR23732294,N/A,N/A,N/A,N/A,N/A,SAMN33621942,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220710_175208-bc1016.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00323_lib1,single,size fractionation,GENOMIC,WGS,62063.0,19118.0,52.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/m64136_220710_175208-bc1016.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16209.0,18393.0,21456.0,N/A,HG00323,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.94,33941426923.0,1775333.0,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16716.0,19311.0,22414.0,SRR23732294,N/A,N/A,N/A,N/A,N/A,SAMN33621942,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220712_144943-bc1016.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00323_lib1,single,size fractionation,GENOMIC,WGS,59292.0,19145.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/m64136_220712_144943-bc1016.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16227.0,18433.0,21488.0,N/A,HG00323,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.72,34715893912.0,1813262.0,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16743.0,19365.0,22473.0,SRR23732294,N/A,N/A,N/A,N/A,N/A,SAMN33621942,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220708_205611-bc1016.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00323_lib1,single,size fractionation,GENOMIC,WGS,61839.0,19187.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/m64136_220708_205611-bc1016.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16250.0,18478.0,21546.0,N/A,HG00323,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.48,33478490857.0,1744844.0,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19395.0,21416.0,23864.0,SRR23732294,N/A,N/A,N/A,N/A,N/A,SAMN33621942,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220728_173215-bc1016.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00323_lib1,single,size fractionation,GENOMIC,WGS,51718.0,21318.0,62.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/m64043_220728_173215-bc1016.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18987.0,20930.0,23238.0,N/A,HG00323,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,6.74,6741622889.0,316229.0,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19281.0,23397.0,28564.0,SRR29405793,N/A,N/A,N/A,N/A,N/A,SAMN41021646,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230712_173338_s3.hifi_reads.bc1019.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00329_PB1_m84091_230712_173338_s3,single,size fractionation,GENOMIC,WGS,69777.0,22730.0,73.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00329/raw_data/PacBio_HiFi/m84091_230712_173338_s3.hifi_reads.bc1019.bam,PACBIO_SMRT,Revio P1,17994.0,21606.0,26308.0,N/A,HG00329,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,106.15,106146859292.0,4669840.0,N/A,HG00329,SAMN41021646,,FIN,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19371.0,23557.0,28733.0,SRR29405782,N/A,N/A,N/A,N/A,N/A,SAMN41021646,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230719_165228_s3.hifi_reads.bc1019.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00329_PB1_m84091_230719_165228_s3,single,size fractionation,GENOMIC,WGS,67743.0,22844.0,112.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00329/raw_data/PacBio_HiFi/m84091_230719_165228_s3.hifi_reads.bc1019.bam,PACBIO_SMRT,Revio P1,18054.0,21732.0,26465.0,N/A,HG00329,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,86.57,86567137663.0,3789333.0,N/A,HG00329,SAMN41021646,,FIN,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16758.0,18490.0,22251.0,SRR23732283,N/A,N/A,N/A,N/A,N/A,SAMN33621943,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_211111_194404-bc1002.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00408_lib1,single,size fractionation,GENOMIC,WGS,58108.0,19152.0,81.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00408/raw_data/PacBio_HiFi/m64136_211111_194404-bc1002.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16477.0,17924.0,20859.0,N/A,HG00408,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.36,38355055565.0,2002652.0,N/A,HG00408,SAMN33621943,SH002,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16770.0,18510.0,22318.0,SRR23732283,N/A,N/A,N/A,N/A,N/A,SAMN33621943,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_211114_164241-bc1002.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00408_lib1,single,size fractionation,GENOMIC,WGS,53377.0,19185.0,139.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00408/raw_data/PacBio_HiFi/m64136_211114_164241-bc1002.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16486.0,17935.0,20910.0,N/A,HG00408,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.73,38730219265.0,2018757.0,N/A,HG00408,SAMN33621943,SH002,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16802.0,18580.0,22446.0,SRR23732283,N/A,N/A,N/A,N/A,N/A,SAMN33621943,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_211113_063830-bc1002.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00408_lib1,single,size fractionation,GENOMIC,WGS,59031.0,19250.0,124.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00408/raw_data/PacBio_HiFi/m64136_211113_063830-bc1002.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16510.0,17982.0,21042.0,N/A,HG00408,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.66,38660030224.0,2008291.0,N/A,HG00408,SAMN33621943,SH002,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16755.0,18592.0,20554.0,SRR18189665,N/A,N/A,N/A,N/A,N/A,SAMN26237490,9.0.0.92188,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210205_190424.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00423_lib1,single,size fractionation,GENOMIC,WGS,49382.0,18400.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00423/raw_data/PacBio_HiFi/m64043_210205_190424.hifi_reads.bam,PACBIO_SMRT,P2,16334.0,18171.0,20074.0,N/A,HG00423,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.52,35517184454.0,1930215.0,N/A,HG00423,SAMN26237490,SH007,CHS,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16768.0,18600.0,20564.0,SRR18189665,N/A,N/A,N/A,N/A,N/A,SAMN26237490,9.0.0.92188,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210209_184051.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00423_lib1,single,size fractionation,GENOMIC,WGS,49891.0,18413.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00423/raw_data/PacBio_HiFi/m64043_210209_184051.hifi_reads.bam,PACBIO_SMRT,P2,16352.0,18180.0,20083.0,N/A,HG00423,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.44,38438203547.0,2087485.0,N/A,HG00423,SAMN26237490,SH007,CHS,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16741.0,18600.0,20587.0,SRR18189665,N/A,N/A,N/A,N/A,N/A,SAMN26237490,9.0.0.92188,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210207_011920.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00423_lib1,single,size fractionation,GENOMIC,WGS,50543.0,18410.0,64.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00423/raw_data/PacBio_HiFi/m64043_210207_011920.hifi_reads.bam,PACBIO_SMRT,P2,16320.0,18170.0,20096.0,N/A,HG00423,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.62,33618239844.0,1826062.0,N/A,HG00423,SAMN26237490,SH007,CHS,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16807.0,18630.0,20592.0,SRR18189665,N/A,N/A,N/A,N/A,N/A,SAMN26237490,9.0.0.92188,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210211_005516.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00423_lib1,single,size fractionation,GENOMIC,WGS,71983.0,18446.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00423/raw_data/PacBio_HiFi/m64043_210211_005516.hifi_reads.bam,PACBIO_SMRT,P2,16390.0,18214.0,20112.0,N/A,HG00423,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,36.88,36879516061.0,1999237.0,N/A,HG00423,SAMN26237490,SH007,CHS,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,19889.0,22407.0,26545.0,SRR13684374,N/A,N/A,N/A,N/A,N/A,SAMN17861652,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200711_235708.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00438_lib1,single,size fractionation,GENOMIC,WGS,50025.0,22724.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00438/raw_data/PacBio_HiFi/m64043_200711_235708.ccs.bam,PACBIO_SMRT,,19419.0,21541.0,25057.0,N/A,HG00438,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,26.04,26040412682.0,1145913.0,N/A,HG00438,SAMN17861652,SH012,CHS,EAS,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,20003.0,22667.0,26976.0,SRR13684374,N/A,N/A,N/A,N/A,N/A,SAMN17861652,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200710_174426.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00438_lib1,single,size fractionation,GENOMIC,WGS,50423.0,22958.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00438/raw_data/PacBio_HiFi/m64043_200710_174426.ccs.bam,PACBIO_SMRT,,19506.0,21728.0,25414.0,N/A,HG00438,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,34.9,34896456183.0,1519989.0,N/A,HG00438,SAMN17861652,SH012,CHS,EAS,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,20000.0,22668.0,26994.0,SRR13684374,N/A,N/A,N/A,N/A,N/A,SAMN17861652,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200714_124814.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00438_lib1,single,size fractionation,GENOMIC,WGS,50251.0,22954.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00438/raw_data/PacBio_HiFi/m64043_200714_124814.ccs.bam,PACBIO_SMRT,,19500.0,21725.0,25433.0,N/A,HG00438,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,33.8,33804474378.0,1472693.0,N/A,HG00438,SAMN17861652,SH012,CHS,EAS,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,20012.0,22694.0,27044.0,SRR13684374,N/A,N/A,N/A,N/A,N/A,SAMN17861652,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200713_062240.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00438_lib1,single,size fractionation,GENOMIC,WGS,50287.0,22977.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00438/raw_data/PacBio_HiFi/m64043_200713_062240.ccs.bam,PACBIO_SMRT,,19504.0,21748.0,25474.0,N/A,HG00438,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,32.73,32729061997.0,1424368.0,N/A,HG00438,SAMN17861652,SH012,CHS,EAS,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16986.0,18747.0,22249.0,SRR18189653,N/A,N/A,N/A,N/A,N/A,SAMN26237491,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210525_165246.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00544_lib1,single,size fractionation,GENOMIC,WGS,58523.0,19262.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m64136_210525_165246.hifi_reads.bam,PACBIO_SMRT,P2,16723.0,18199.0,21194.0,N/A,HG00544,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,19.95,19945672662.0,1035453.0,N/A,HG00544,SAMN26237491,SH042,CHS,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17129.0,19121.0,22825.0,SRR18189653,N/A,N/A,N/A,N/A,N/A,SAMN26237491,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210520_180433.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00544_lib1,single,size fractionation,GENOMIC,WGS,57625.0,19583.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m64136_210520_180433.hifi_reads.bam,PACBIO_SMRT,P2,16825.0,18445.0,21784.0,N/A,HG00544,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,29.35,29354505966.0,1498910.0,N/A,HG00544,SAMN26237491,SH042,CHS,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17283.0,19416.0,23091.0,SRR18189653,N/A,N/A,N/A,N/A,N/A,SAMN26237491,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210523_100337.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00544_lib1,single,size fractionation,GENOMIC,WGS,55501.0,19776.0,161.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m64136_210523_100337.hifi_reads.bam,PACBIO_SMRT,P2,16949.0,18670.0,22090.0,N/A,HG00544,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,17.39,17391182429.0,879373.0,N/A,HG00544,SAMN26237491,SH042,CHS,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17306.0,19452.0,23104.0,SRR18189653,N/A,N/A,N/A,N/A,N/A,SAMN26237491,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210522_014758.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00544_lib1,single,size fractionation,GENOMIC,WGS,60270.0,19796.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m64136_210522_014758.hifi_reads.bam,PACBIO_SMRT,P2,16970.0,18701.0,22117.0,N/A,HG00544,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,18.54,18538580517.0,936445.0,N/A,HG00544,SAMN26237491,SH042,CHS,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17486.0,18717.0,20276.0,SRR18189664,N/A,N/A,N/A,N/A,N/A,SAMN26237491,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210702_183246.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00544_lib2,single,size fractionation,GENOMIC,WGS,44297.0,18853.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m64043_210702_183246.hifi_reads.bam,PACBIO_SMRT,P2,17346.0,18502.0,19998.0,N/A,HG00544,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.88,37881441933.0,2009252.0,N/A,HG00544,SAMN26237491,SH042,CHS,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15074.0,15865.0,16687.0,SRR23732280,N/A,N/A,N/A,N/A,N/A,SAMN33621944,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211222_184851-bc1021.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00597_lib1,single,size fractionation,GENOMIC,WGS,38317.0,15831.0,124.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/m64043_211222_184851-bc1021.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15003.0,15777.0,16605.0,N/A,HG00597,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,13.46,13455521650.0,849916.0,N/A,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19247.0,20774.0,22899.0,SRR23732280,N/A,N/A,N/A,N/A,N/A,SAMN33621944,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211213_155654-bc1021.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00597_lib1,single,size fractionation,GENOMIC,WGS,54955.0,21006.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/m64043_211213_155654-bc1021.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,19041.0,20445.0,22411.0,N/A,HG00597,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.72,32720246548.0,1557646.0,N/A,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19260.0,20789.0,22926.0,SRR23732280,N/A,N/A,N/A,N/A,N/A,SAMN33621944,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211212_045901-bc1021.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00597_lib1,single,size fractionation,GENOMIC,WGS,54098.0,21027.0,62.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/m64043_211212_045901-bc1021.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,19052.0,20458.0,22436.0,N/A,HG00597,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.36,33361982455.0,1586624.0,N/A,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19270.0,20815.0,22972.0,SRR23732280,N/A,N/A,N/A,N/A,N/A,SAMN33621944,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211210_180342-bc1021.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00597_lib1,single,size fractionation,GENOMIC,WGS,56238.0,21055.0,406.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/m64043_211210_180342-bc1021.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,19061.0,20477.0,22470.0,N/A,HG00597,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.14,34138087985.0,1621355.0,N/A,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17754.0,19801.0,23634.0,SRR18189646,N/A,N/A,N/A,N/A,N/A,SAMN26237492,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210622_163607.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00609_lib1,single,size fractionation,GENOMIC,WGS,60330.0,20295.0,294.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00609/raw_data/PacBio_HiFi/m64136_210622_163607.hifi_reads.bam,PACBIO_SMRT,P2,17422.0,19106.0,22384.0,N/A,HG00609,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.2,34196548457.0,1684931.0,N/A,HG00609,SAMN26237492,SH062,CHS,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17820.0,19987.0,23940.0,SRR18189646,N/A,N/A,N/A,N/A,N/A,SAMN26237492,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210624_033152.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00609_lib1,single,size fractionation,GENOMIC,WGS,62855.0,20450.0,520.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00609/raw_data/PacBio_HiFi/m64136_210624_033152.hifi_reads.bam,PACBIO_SMRT,P2,17467.0,19227.0,22670.0,N/A,HG00609,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,36.08,36078913516.0,1764223.0,N/A,HG00609,SAMN26237492,SH062,CHS,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17837.0,20016.0,24004.0,SRR18189646,N/A,N/A,N/A,N/A,N/A,SAMN26237492,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210620_054327.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00609_lib1,single,size fractionation,GENOMIC,WGS,59168.0,20480.0,80.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00609/raw_data/PacBio_HiFi/m64136_210620_054327.hifi_reads.bam,PACBIO_SMRT,P2,17480.0,19248.0,22718.0,N/A,HG00609,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,36.54,36542655261.0,1784291.0,N/A,HG00609,SAMN26237492,SH062,CHS,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18989.0,21377.0,25738.0,SRR13684373,N/A,N/A,N/A,N/A,N/A,SAMN17861653,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200713_062514.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00621_lib1,single,size fractionation,GENOMIC,WGS,50388.0,21882.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00621/raw_data/PacBio_HiFi/m64136_200713_062514.ccs.bam,PACBIO_SMRT,,18570.0,20524.0,24172.0,N/A,HG00621,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,29.1,29099465697.0,1329779.0,N/A,HG00621,SAMN17861653,SH066,CHS,EAS,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,19006.0,21436.0,25863.0,SRR13684373,N/A,N/A,N/A,N/A,N/A,SAMN17861653,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200710_174522.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00621_lib1,single,size fractionation,GENOMIC,WGS,50331.0,21942.0,44.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00621/raw_data/PacBio_HiFi/m64136_200710_174522.ccs.bam,PACBIO_SMRT,,18576.0,20551.0,24261.0,N/A,HG00621,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,32.31,32312653240.0,1472593.0,N/A,HG00621,SAMN17861653,SH066,CHS,EAS,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,19075.0,21579.0,26052.0,SRR13684373,N/A,N/A,N/A,N/A,N/A,SAMN17861653,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200714_125149.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00621_lib1,single,size fractionation,GENOMIC,WGS,50286.0,22050.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00621/raw_data/PacBio_HiFi/m64136_200714_125149.ccs.bam,PACBIO_SMRT,,18632.0,20658.0,24449.0,N/A,HG00621,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,31.2,31198267999.0,1414858.0,N/A,HG00621,SAMN17861653,SH066,CHS,EAS,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,19103.0,21606.0,26089.0,SRR13684373,N/A,N/A,N/A,N/A,N/A,SAMN17861653,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200711_235843.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00621_lib1,single,size fractionation,GENOMIC,WGS,50165.0,22080.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00621/raw_data/PacBio_HiFi/m64136_200711_235843.ccs.bam,PACBIO_SMRT,,18659.0,20687.0,24482.0,N/A,HG00621,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,29.89,29885213340.0,1353445.0,N/A,HG00621,SAMN17861653,SH066,CHS,EAS,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17454.0,20596.0,24763.0,SRR29405774,N/A,N/A,N/A,N/A,N/A,SAMN41021678,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230725_161037_s2.hifi_reads.bc1011.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00662_PB1_m84091_230725_161037_s2,single,size fractionation,GENOMIC,WGS,72343.0,20323.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00662/raw_data/PacBio_HiFi/m84091_230725_161037_s2.hifi_reads.bc1011.bam,PACBIO_SMRT,Revio P1,16608.0,19366.0,23090.0,N/A,HG00662,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,106.48,106478216787.0,5239143.0,N/A,HG00662,SAMN41021678,,CHS,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17587.0,20751.0,24962.0,SRR29405763,N/A,N/A,N/A,N/A,N/A,SAMN41021678,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230731_133332_s2.hifi_reads.bc1011.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00662_PB1_m84091_230731_133332_s2,single,size fractionation,GENOMIC,WGS,67484.0,20466.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00662/raw_data/PacBio_HiFi/m84091_230731_133332_s2.hifi_reads.bc1011.bam,PACBIO_SMRT,Revio P1,16722.0,19517.0,23254.0,N/A,HG00662,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,78.16,78161532546.0,3819037.0,N/A,HG00662,SAMN41021678,,CHS,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17080.0,20094.0,24019.0,SRR29405847,N/A,N/A,N/A,N/A,N/A,SAMN41021678,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230817_153352_s4.hifi_reads.bc1011.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00662_PB1_m84091_230817_153352_s4,single,size fractionation,GENOMIC,WGS,57887.0,19833.0,695.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00662/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1011.bam,PACBIO_SMRT,Revio P1,16262.0,18952.0,22472.0,N/A,HG00662,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,6.34,6343032112.0,319809.0,N/A,HG00662,SAMN41021678,,CHS,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18340.0,20871.0,23876.0,SRR13684382,N/A,N/A,N/A,N/A,N/A,SAMN17861654,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200719_070806.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00673_lib1,single,size fractionation,GENOMIC,WGS,50236.0,20678.0,44.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00673/raw_data/PacBio_HiFi/m64043_200719_070806.ccs.bam,PACBIO_SMRT,,17856.0,20119.0,23071.0,N/A,HG00673,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,31.91,31912051817.0,1543254.0,N/A,HG00673,SAMN17861654,SH079,CHS,EAS,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18376.0,20937.0,23944.0,SRR13684382,N/A,N/A,N/A,N/A,N/A,SAMN17861654,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200716_182902.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00673_lib1,single,size fractionation,GENOMIC,WGS,49665.0,20725.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00673/raw_data/PacBio_HiFi/m64043_200716_182902.ccs.bam,PACBIO_SMRT,,17882.0,20173.0,23136.0,N/A,HG00673,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,28.92,28919585361.0,1395373.0,N/A,HG00673,SAMN17861654,SH079,CHS,EAS,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18430.0,21022.0,24023.0,SRR13684382,N/A,N/A,N/A,N/A,N/A,SAMN17861654,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200720_133355.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00673_lib1,single,size fractionation,GENOMIC,WGS,49923.0,20791.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00673/raw_data/PacBio_HiFi/m64043_200720_133355.ccs.bam,PACBIO_SMRT,,17929.0,20254.0,23212.0,N/A,HG00673,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,30.07,30065709075.0,1446038.0,N/A,HG00673,SAMN17861654,SH079,CHS,EAS,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18473.0,21066.0,24056.0,SRR13684382,N/A,N/A,N/A,N/A,N/A,SAMN17861654,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200718_004213.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00673_lib1,single,size fractionation,GENOMIC,WGS,49661.0,20828.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00673/raw_data/PacBio_HiFi/m64043_200718_004213.ccs.bam,PACBIO_SMRT,,17967.0,20301.0,23260.0,N/A,HG00673,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,31.59,31592031668.0,1516755.0,N/A,HG00673,SAMN17861654,SH079,CHS,EAS,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,True,11109.0,13905.0,18061.0,SRR29405846,N/A,N/A,N/A,N/A,N/A,SAMN41021702,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240311_155513_s4.hifi_reads.bc1011.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00701_PB1_m84091_240311_155513_s4,single,size fractionation,GENOMIC,WGS,70077.0,13566.0,53.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00701/raw_data/PacBio_HiFi/m84091_240311_155513_s4.hifi_reads.bc1011.bam,PACBIO_SMRT,Revio P1,10239.0,12385.0,15772.0,N/A,HG00701,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,66.02,66021634362.0,4866441.0,N/A,HG00701,SAMN41021702,,CHS,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,11339.0,14335.0,18745.0,SRR29405845,N/A,N/A,N/A,N/A,N/A,SAMN41021702,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240315_183649_s4.hifi_reads.bc1011.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00701_PB1_m84091_240315_183649_s4,single,size fractionation,GENOMIC,WGS,65349.0,13918.0,76.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00701/raw_data/PacBio_HiFi/m84091_240315_183649_s4.hifi_reads.bc1011.bam,PACBIO_SMRT,Revio P1,10386.0,12667.0,16260.0,N/A,HG00701,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,74.68,74683924191.0,5365799.0,N/A,HG00701,SAMN41021702,,CHS,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,11122.0,13936.0,18136.0,SRR29405844,N/A,N/A,N/A,N/A,N/A,SAMN41021702,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240315_190710_s1.hifi_reads.bc1011.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00701_PB1_m84091_240315_190710_s1,single,size fractionation,GENOMIC,WGS,60345.0,13594.0,74.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00701/raw_data/PacBio_HiFi/m84091_240315_190710_s1.hifi_reads.bc1011.bam,PACBIO_SMRT,Revio P1,10238.0,12399.0,15802.0,N/A,HG00701,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,64.55,64553821368.0,4748438.0,N/A,HG00701,SAMN41021702,,CHS,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,False,20012.0,22219.0,24914.0,SRR13684381,N/A,N/A,N/A,N/A,N/A,SAMN17861655,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200706_123423.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00735_lib1,single,size fractionation,GENOMIC,WGS,49944.0,22085.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00735/raw_data/PacBio_HiFi/m64043_200706_123423.ccs.bam,PACBIO_SMRT,,19529.0,21653.0,24178.0,N/A,HG00735,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,28.0,27999854128.0,1267797.0,N/A,HG00735,SAMN17861655,PR06,PUR,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,20073.0,22309.0,25061.0,SRR13684381,N/A,N/A,N/A,N/A,N/A,SAMN17861655,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200705_060840.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00735_lib1,single,size fractionation,GENOMIC,WGS,49904.0,22182.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00735/raw_data/PacBio_HiFi/m64043_200705_060840.ccs.bam,PACBIO_SMRT,,19581.0,21726.0,24304.0,N/A,HG00735,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,34.78,34777888798.0,1567779.0,N/A,HG00735,SAMN17861655,PR06,PUR,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,20116.0,22356.0,25110.0,SRR13684381,N/A,N/A,N/A,N/A,N/A,SAMN17861655,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200702_173033.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00735_lib1,single,size fractionation,GENOMIC,WGS,49688.0,22227.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00735/raw_data/PacBio_HiFi/m64043_200702_173033.ccs.bam,PACBIO_SMRT,,19624.0,21774.0,24357.0,N/A,HG00735,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,36.35,36348091955.0,1635278.0,N/A,HG00735,SAMN17861655,PR06,PUR,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,20157.0,22410.0,25197.0,SRR13684381,N/A,N/A,N/A,N/A,N/A,SAMN17861655,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200703_234328.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00735_lib1,single,size fractionation,GENOMIC,WGS,49367.0,22287.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00735/raw_data/PacBio_HiFi/m64043_200703_234328.ccs.bam,PACBIO_SMRT,,19664.0,21820.0,24428.0,N/A,HG00735,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,34.37,34369588285.0,1542075.0,N/A,HG00735,SAMN17861655,PR06,PUR,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18878.0,20880.0,25135.0,SRR18189645,N/A,N/A,N/A,N/A,N/A,SAMN26237493,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210530_003337.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00738_lib1,single,size fractionation,GENOMIC,WGS,59307.0,21611.0,345.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00738/raw_data/PacBio_HiFi/m64043_210530_003337.hifi_reads.bam,PACBIO_SMRT,P2,18535.0,20226.0,23527.0,N/A,HG00738,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,27.08,27082098409.0,1253128.0,N/A,HG00738,SAMN26237493,PR07,PUR,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18958.0,21025.0,25370.0,SRR18189645,N/A,N/A,N/A,N/A,N/A,SAMN26237493,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210531_080529.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00738_lib1,single,size fractionation,GENOMIC,WGS,60323.0,21734.0,494.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00738/raw_data/PacBio_HiFi/m64043_210531_080529.hifi_reads.bam,PACBIO_SMRT,P2,18598.0,20334.0,23778.0,N/A,HG00738,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,28.02,28021544846.0,1289251.0,N/A,HG00738,SAMN26237493,PR07,PUR,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18952.0,21035.0,25464.0,SRR18189645,N/A,N/A,N/A,N/A,N/A,SAMN26237493,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210602_151340.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00738_lib1,single,size fractionation,GENOMIC,WGS,61975.0,21750.0,90.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00738/raw_data/PacBio_HiFi/m64136_210602_151340.hifi_reads.bam,PACBIO_SMRT,P2,18587.0,20331.0,23822.0,N/A,HG00738,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,22.11,22112433547.0,1016642.0,N/A,HG00738,SAMN26237493,PR07,PUR,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,19095.0,21316.0,25907.0,SRR18189645,N/A,N/A,N/A,N/A,N/A,SAMN26237493,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210601_160048.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00738_lib1,single,size fractionation,GENOMIC,WGS,63840.0,21999.0,266.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00738/raw_data/PacBio_HiFi/m64043_210601_160048.hifi_reads.bam,PACBIO_SMRT,P2,18698.0,20532.0,24274.0,N/A,HG00738,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,28.38,28382481489.0,1290160.0,N/A,HG00738,SAMN26237493,PR07,PUR,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,22183.0,24794.0,27976.0,SRR13684380,N/A,N/A,N/A,N/A,N/A,SAMN17861656,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200627_000247.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00741_lib1,single,size fractionation,GENOMIC,WGS,49815.0,24612.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00741/raw_data/PacBio_HiFi/m64136_200627_000247.ccs.bam,PACBIO_SMRT,,21626.0,24097.0,27109.0,N/A,HG00741,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,27.11,27112467388.0,1101565.0,N/A,HG00741,SAMN17861656,PR09,PUR,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,22201.0,24812.0,28003.0,SRR13684380,N/A,N/A,N/A,N/A,N/A,SAMN17861656,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200629_125431.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00741_lib1,single,size fractionation,GENOMIC,WGS,50008.0,24630.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00741/raw_data/PacBio_HiFi/m64136_200629_125431.ccs.bam,PACBIO_SMRT,,21639.0,24115.0,27138.0,N/A,HG00741,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,29.57,29569718896.0,1200554.0,N/A,HG00741,SAMN17861656,PR09,PUR,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,22246.0,24876.0,28087.0,SRR13684380,N/A,N/A,N/A,N/A,N/A,SAMN17861656,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200625_174949.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00741_lib1,single,size fractionation,GENOMIC,WGS,50089.0,24685.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00741/raw_data/PacBio_HiFi/m64136_200625_174949.ccs.bam,PACBIO_SMRT,,21678.0,24172.0,27208.0,N/A,HG00741,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,31.31,31305642912.0,1268202.0,N/A,HG00741,SAMN17861656,PR09,PUR,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,22254.0,24878.0,28094.0,SRR13684380,N/A,N/A,N/A,N/A,N/A,SAMN17861656,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200628_062837.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00741_lib1,single,size fractionation,GENOMIC,WGS,49813.0,24694.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00741/raw_data/PacBio_HiFi/m64136_200628_062837.ccs.bam,PACBIO_SMRT,,21691.0,24170.0,27217.0,N/A,HG00741,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,31.24,31244401269.0,1265235.0,N/A,HG00741,SAMN17861656,PR09,PUR,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19918.0,24532.0,30189.0,SRR29405843,N/A,N/A,N/A,N/A,N/A,SAMN41021616,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230629_184115_s3.hifi_reads.bc1003.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00867_PB1_m84091_230629_184115_s3,single,size fractionation,GENOMIC,WGS,79149.0,23587.0,112.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00867/raw_data/PacBio_HiFi/m84091_230629_184115_s3.hifi_reads.bc1003.bam,PACBIO_SMRT,Revio P1,18315.0,22418.0,27615.0,N/A,HG00867,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,85.0,84998026939.0,3603557.0,N/A,HG00867,SAMN41021616,,CDX,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19684.0,24171.0,29657.0,SRR29405842,N/A,N/A,N/A,N/A,N/A,SAMN41021616,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230703_165220_s2.hifi_reads.bc1003.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00867_PB1_m84091_230703_165220_s2,single,size fractionation,GENOMIC,WGS,68779.0,23285.0,68.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00867/raw_data/PacBio_HiFi/m84091_230703_165220_s2.hifi_reads.bc1003.bam,PACBIO_SMRT,Revio P1,18147.0,22142.0,27181.0,N/A,HG00867,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,90.56,90560178081.0,3889058.0,N/A,HG00867,SAMN41021616,,CDX,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19482.0,23688.0,28873.0,SRR29405841,N/A,N/A,N/A,N/A,N/A,SAMN41021616,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230710_183139_s4.hifi_reads.bc1003.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00867_PB1_m84091_230710_183139_s4,single,size fractionation,GENOMIC,WGS,70002.0,22983.0,522.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00867/raw_data/PacBio_HiFi/m84091_230710_183139_s4.hifi_reads.bc1003.bam,PACBIO_SMRT,Revio P1,18139.0,21864.0,26615.0,N/A,HG00867,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,18.06,18059259620.0,785737.0,N/A,HG00867,SAMN41021616,,CDX,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,False,23955.0,26878.0,30336.0,SRR13684379,N/A,N/A,N/A,N/A,N/A,SAMN17861657,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200703_234438.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01071_lib1,single,size fractionation,GENOMIC,WGS,50514.0,26588.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01071/raw_data/PacBio_HiFi/m64136_200703_234438.ccs.bam,PACBIO_SMRT,,23300.0,26092.0,29403.0,N/A,HG01071,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,25.13,25131192610.0,945196.0,N/A,HG01071,SAMN17861657,PR17,PUR,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,23976.0,26903.0,30359.0,SRR13684379,N/A,N/A,N/A,N/A,N/A,SAMN17861657,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200705_061033.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01071_lib1,single,size fractionation,GENOMIC,WGS,50254.0,26602.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01071/raw_data/PacBio_HiFi/m64136_200705_061033.ccs.bam,PACBIO_SMRT,,23316.0,26114.0,29430.0,N/A,HG01071,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,26.99,26986559262.0,1014421.0,N/A,HG01071,SAMN17861657,PR17,PUR,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,24033.0,26957.0,30389.0,SRR13684379,N/A,N/A,N/A,N/A,N/A,SAMN17861657,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200706_123635.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01071_lib1,single,size fractionation,GENOMIC,WGS,50199.0,26652.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01071/raw_data/PacBio_HiFi/m64136_200706_123635.ccs.bam,PACBIO_SMRT,,23382.0,26172.0,29468.0,N/A,HG01071,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,27.43,27428056082.0,1029096.0,N/A,HG01071,SAMN17861657,PR17,PUR,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,24027.0,26958.0,30418.0,SRR13684379,N/A,N/A,N/A,N/A,N/A,SAMN17861657,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200702_173125.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01071_lib1,single,size fractionation,GENOMIC,WGS,50496.0,26662.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01071/raw_data/PacBio_HiFi/m64136_200702_173125.ccs.bam,PACBIO_SMRT,,23373.0,26164.0,29483.0,N/A,HG01071,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,29.39,29385994806.0,1102142.0,N/A,HG01071,SAMN17861657,PR17,PUR,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16456.0,19125.0,21503.0,SRR18189644,N/A,N/A,N/A,N/A,N/A,SAMN26237494,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210707_032602.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01099_lib1,single,size fractionation,GENOMIC,WGS,49845.0,18787.0,718.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01099/raw_data/PacBio_HiFi/m64043_210707_032602.hifi_reads.bam,PACBIO_SMRT,P2,16037.0,18407.0,20851.0,N/A,HG01099,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,25.86,25855870472.0,1376237.0,N/A,HG01099,SAMN26237494,PR31,PUR,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16706.0,19451.0,21851.0,SRR18189644,N/A,N/A,N/A,N/A,N/A,SAMN26237494,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210705_162656.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01099_lib1,single,size fractionation,GENOMIC,WGS,55386.0,19081.0,347.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01099/raw_data/PacBio_HiFi/m64043_210705_162656.hifi_reads.bam,PACBIO_SMRT,P2,16223.0,18786.0,21170.0,N/A,HG01099,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.09,38087524710.0,1996032.0,N/A,HG01099,SAMN26237494,PR31,PUR,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16716.0,19458.0,21867.0,SRR18189644,N/A,N/A,N/A,N/A,N/A,SAMN26237494,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210704_052805.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01099_lib1,single,size fractionation,GENOMIC,WGS,56485.0,19094.0,834.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01099/raw_data/PacBio_HiFi/m64043_210704_052805.hifi_reads.bam,PACBIO_SMRT,P2,16230.0,18796.0,21186.0,N/A,HG01099,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.45,37446420746.0,1961160.0,N/A,HG01099,SAMN26237494,PR31,PUR,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,20357.0,22134.0,24585.0,SRR13684378,N/A,N/A,N/A,N/A,N/A,SAMN17861658,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200628_062711.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01106_lib1,single,size fractionation,GENOMIC,WGS,49297.0,22276.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01106/raw_data/PacBio_HiFi/m64043_200628_062711.ccs.bam,PACBIO_SMRT,,20074.0,21727.0,23990.0,N/A,HG01106,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,35.85,35847146199.0,1609195.0,N/A,HG01106,SAMN17861658,PR25,PUR,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,20354.0,22145.0,24608.0,SRR13684378,N/A,N/A,N/A,N/A,N/A,SAMN17861658,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200625_174853.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01106_lib1,single,size fractionation,GENOMIC,WGS,50120.0,22282.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01106/raw_data/PacBio_HiFi/m64043_200625_174853.ccs.bam,PACBIO_SMRT,,20072.0,21734.0,24014.0,N/A,HG01106,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,38.03,38034918237.0,1706917.0,N/A,HG01106,SAMN17861658,PR25,PUR,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,20381.0,22171.0,24626.0,SRR13684378,N/A,N/A,N/A,N/A,N/A,SAMN17861658,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200629_125238.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01106_lib1,single,size fractionation,GENOMIC,WGS,49438.0,22308.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01106/raw_data/PacBio_HiFi/m64043_200629_125238.ccs.bam,PACBIO_SMRT,,20101.0,21762.0,24030.0,N/A,HG01106,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,36.77,36771576306.0,1648307.0,N/A,HG01106,SAMN17861658,PR25,PUR,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,20403.0,22211.0,24706.0,SRR13684378,N/A,N/A,N/A,N/A,N/A,SAMN17861658,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200627_000137.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01106_lib1,single,size fractionation,GENOMIC,WGS,48433.0,22354.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01106/raw_data/PacBio_HiFi/m64043_200627_000137.ccs.bam,PACBIO_SMRT,,20117.0,21789.0,24100.0,N/A,HG01106,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,34.47,34465266970.0,1541756.0,N/A,HG01106,SAMN17861658,PR25,PUR,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17779.0,20606.0,24544.0,SRR29405840,N/A,N/A,N/A,N/A,N/A,SAMN41021679,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230725_164143_s3.hifi_reads.bc1012.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01167_PB1_m84091_230725_164143_s3,single,size fractionation,GENOMIC,WGS,70236.0,20540.0,78.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01167/raw_data/PacBio_HiFi/m84091_230725_164143_s3.hifi_reads.bc1012.bam,PACBIO_SMRT,Revio P1,17135.0,19573.0,23082.0,N/A,HG01167,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,105.4,105402106362.0,5131466.0,N/A,HG01167,SAMN41021679,,PUR,AMR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17829.0,20652.0,24569.0,SRR29405839,N/A,N/A,N/A,N/A,N/A,SAMN41021679,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230731_140439_s3.hifi_reads.bc1012.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01167_PB1_m84091_230731_140439_s3,single,size fractionation,GENOMIC,WGS,61397.0,20577.0,63.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01167/raw_data/PacBio_HiFi/m84091_230731_140439_s3.hifi_reads.bc1012.bam,PACBIO_SMRT,Revio P1,17176.0,19633.0,23104.0,N/A,HG01167,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,69.66,69660229902.0,3385191.0,N/A,HG01167,SAMN41021679,,PUR,AMR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17361.0,19875.0,23415.0,SRR29405838,N/A,N/A,N/A,N/A,N/A,SAMN41021679,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230817_153352_s4.hifi_reads.bc1012.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01167_PB1_m84091_230817_153352_s4,single,size fractionation,GENOMIC,WGS,53672.0,19896.0,325.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01167/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1012.bam,PACBIO_SMRT,Revio P1,16814.0,19006.0,22140.0,N/A,HG01167,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,18.66,18661653900.0,937915.0,N/A,HG01167,SAMN41021679,,PUR,AMR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,False,19577.0,21552.0,24299.0,SRR13684377,N/A,N/A,N/A,N/A,N/A,SAMN17861659,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200621_234442.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01175_lib1,single,size fractionation,GENOMIC,WGS,49779.0,21663.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01175/raw_data/PacBio_HiFi/m64043_200621_234442.ccs.bam,PACBIO_SMRT,,19196.0,21036.0,23514.0,N/A,HG01175,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,25.09,25094609545.0,1158408.0,N/A,HG01175,SAMN17861659,PR36,PUR,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,19575.0,21558.0,24328.0,SRR13684377,N/A,N/A,N/A,N/A,N/A,SAMN17861659,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200618_201934.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01175_lib1,single,size fractionation,GENOMIC,WGS,49892.0,21676.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01175/raw_data/PacBio_HiFi/m64043_200618_201934.ccs.bam,PACBIO_SMRT,,19197.0,21038.0,23531.0,N/A,HG01175,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,27.34,27337960037.0,1261159.0,N/A,HG01175,SAMN17861659,PR36,PUR,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,19603.0,21590.0,24349.0,SRR13684377,N/A,N/A,N/A,N/A,N/A,SAMN17861659,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200623_060946.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01175_lib1,single,size fractionation,GENOMIC,WGS,48916.0,21703.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01175/raw_data/PacBio_HiFi/m64043_200623_060946.ccs.bam,PACBIO_SMRT,,19223.0,21069.0,23556.0,N/A,HG01175,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,26.2,26195722346.0,1206997.0,N/A,HG01175,SAMN17861659,PR36,PUR,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,19663.0,21687.0,24539.0,SRR13684377,N/A,N/A,N/A,N/A,N/A,SAMN17861659,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200620_173220.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01175_lib1,single,size fractionation,GENOMIC,WGS,50465.0,21811.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01175/raw_data/PacBio_HiFi/m64043_200620_173220.ccs.bam,PACBIO_SMRT,,19274.0,21150.0,23708.0,N/A,HG01175,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,33.31,33311371824.0,1527212.0,N/A,HG01175,SAMN17861659,PR36,PUR,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18438.0,20412.0,23274.0,SRR23732279,N/A,N/A,N/A,N/A,N/A,SAMN33621945,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211127_171224.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01192_lib1,single,size fractionation,GENOMIC,WGS,52726.0,20560.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01192/raw_data/PacBio_HiFi/m64043_211127_171224.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18058.0,19858.0,22404.0,N/A,HG01192,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.85,35850177288.0,1743655.0,N/A,HG01192,SAMN33621945,PR40,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18441.0,20419.0,23268.0,SRR23732279,N/A,N/A,N/A,N/A,N/A,SAMN33621945,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211124_192057.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01192_lib1,single,size fractionation,GENOMIC,WGS,52946.0,20562.0,203.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01192/raw_data/PacBio_HiFi/m64043_211124_192057.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18064.0,19864.0,22408.0,N/A,HG01192,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,36.24,36240709779.0,1762460.0,N/A,HG01192,SAMN33621945,PR40,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18452.0,20438.0,23304.0,SRR23732279,N/A,N/A,N/A,N/A,N/A,SAMN33621945,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211126_061537.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01192_lib1,single,size fractionation,GENOMIC,WGS,53478.0,20583.0,153.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01192/raw_data/PacBio_HiFi/m64043_211126_061537.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18074.0,19879.0,22435.0,N/A,HG01192,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.68,37677927562.0,1830528.0,N/A,HG01192,SAMN33621945,PR40,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17454.0,20258.0,23821.0,SRR18189643,N/A,N/A,N/A,N/A,N/A,SAMN26237495,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210520_180149.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01255_lib1,single,size fractionation,GENOMIC,WGS,59514.0,20310.0,335.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01255/raw_data/PacBio_HiFi/m64043_210520_180149.hifi_reads.bam,PACBIO_SMRT,P2,17012.0,19180.0,22570.0,N/A,HG01255,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.27,33274752433.0,1638272.0,N/A,HG01255,SAMN26237495,CLM15,CLM,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17775.0,20797.0,24380.0,SRR18189643,N/A,N/A,N/A,N/A,N/A,SAMN26237495,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210519_033858.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01255_lib1,single,size fractionation,GENOMIC,WGS,56837.0,20716.0,110.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01255/raw_data/PacBio_HiFi/m64136_210519_033858.hifi_reads.bam,PACBIO_SMRT,P2,17261.0,19739.0,23108.0,N/A,HG01255,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.52,32516315973.0,1569564.0,N/A,HG01255,SAMN26237495,CLM15,CLM,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17882.0,20969.0,24579.0,SRR18189643,N/A,N/A,N/A,N/A,N/A,SAMN26237495,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210516_022225.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01255_lib1,single,size fractionation,GENOMIC,WGS,60589.0,20849.0,681.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01255/raw_data/PacBio_HiFi/m64136_210516_022225.hifi_reads.bam,PACBIO_SMRT,P2,17338.0,19917.0,23286.0,N/A,HG01255,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.01,35010470276.0,1679236.0,N/A,HG01255,SAMN26237495,CLM15,CLM,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18395.0,20237.0,24263.0,SRR23732278,N/A,N/A,N/A,N/A,N/A,SAMN33621946,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_211105_181124-bc1001.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01261_lib1,single,size fractionation,GENOMIC,WGS,58704.0,20987.0,986.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/m64136_211105_181124-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18104.0,19655.0,22562.0,N/A,HG01261,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,30.18,30182743796.0,1438147.0,N/A,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18369.0,20229.0,24356.0,SRR23732278,N/A,N/A,N/A,N/A,N/A,SAMN33621946,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211222_184851-bc1001.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01261_lib1,single,size fractionation,GENOMIC,WGS,67189.0,20999.0,718.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/m64043_211222_184851-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18072.0,19630.0,22593.0,N/A,HG01261,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,13.94,13944839852.0,664050.0,N/A,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18429.0,20313.0,24465.0,SRR23732278,N/A,N/A,N/A,N/A,N/A,SAMN33621946,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_211108_160613-bc1001.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01261_lib1,single,size fractionation,GENOMIC,WGS,65223.0,21072.0,204.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/m64136_211108_160613-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18129.0,19707.0,22728.0,N/A,HG01261,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.54,32544026126.0,1544394.0,N/A,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18510.0,20474.0,24807.0,SRR23732278,N/A,N/A,N/A,N/A,N/A,SAMN33621946,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_211107_050725-bc1001.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01261_lib1,single,size fractionation,GENOMIC,WGS,64761.0,21233.0,170.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/m64136_211107_050725-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18194.0,19824.0,23063.0,N/A,HG01261,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.16,32158315632.0,1514497.0,N/A,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18151.0,19909.0,22098.0,SRR13684282,N/A,N/A,N/A,N/A,N/A,SAMN17861235,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_200308_194417.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01361.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,49129.0,19894.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01361/raw_data/PacBio_HiFi_Swap_Fixed/m54329U_200308_194417.ccs.bam,PACBIO_SMRT,P2.0,17820.0,19497.0,21563.0,N/A,HG01361,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,33.24,33241454353.0,1670892.0,N/A,HG01361,SAMN17861235,CLM32,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18270.0,20039.0,22241.0,SRR13684282,N/A,N/A,N/A,N/A,N/A,SAMN17861235,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_200306_185930.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01361.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,49882.0,20024.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01361/raw_data/PacBio_HiFi_Swap_Fixed/m54329U_200306_185930.ccs.bam,PACBIO_SMRT,P2.0,17940.0,19628.0,21705.0,N/A,HG01361,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,33.29,33289500589.0,1662447.0,N/A,HG01361,SAMN17861235,CLM32,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18312.0,20101.0,22328.0,SRR13684282,N/A,N/A,N/A,N/A,N/A,SAMN17861235,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_200311_082605.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01361.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,49988.0,20083.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01361/raw_data/PacBio_HiFi_Swap_Fixed/m54329U_200311_082605.ccs.bam,PACBIO_SMRT,P2.0,17979.0,19679.0,21780.0,N/A,HG01361,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,28.28,28284738371.0,1408346.0,N/A,HG01361,SAMN17861235,CLM32,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18356.0,20151.0,22393.0,SRR13684282,N/A,N/A,N/A,N/A,N/A,SAMN17861235,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_200310_015838.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01361.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,50060.0,20135.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01361/raw_data/PacBio_HiFi_Swap_Fixed/m54329U_200310_015838.ccs.bam,PACBIO_SMRT,P2.0,18019.0,19727.0,21843.0,N/A,HG01361,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,28.42,28418733743.0,1411365.0,N/A,HG01361,SAMN17861235,CLM32,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18562.0,21038.0,24891.0,SRR18189642,N/A,N/A,N/A,N/A,N/A,SAMN26237496,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210610_203618.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01433_lib1,single,size fractionation,GENOMIC,WGS,59803.0,21255.0,509.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01433/raw_data/PacBio_HiFi/m64136_210610_203618.hifi_reads.bam,PACBIO_SMRT,P2,18128.0,20177.0,23639.0,N/A,HG01433,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,23.2,23199350663.0,1091451.0,N/A,HG01433,SAMN26237496,CLM43,CLM,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,19050.0,21927.0,25849.0,SRR18189642,N/A,N/A,N/A,N/A,N/A,SAMN26237496,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210604_175856.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01433_lib1,single,size fractionation,GENOMIC,WGS,62574.0,21918.0,551.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01433/raw_data/PacBio_HiFi/m64136_210604_175856.hifi_reads.bam,PACBIO_SMRT,P2,18516.0,20897.0,24604.0,N/A,HG01433,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.37,33371252434.0,1522531.0,N/A,HG01433,SAMN26237496,CLM43,CLM,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,19214.0,22200.0,26119.0,SRR18189642,N/A,N/A,N/A,N/A,N/A,SAMN26237496,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210607_115559.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01433_lib1,single,size fractionation,GENOMIC,WGS,58871.0,22122.0,495.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01433/raw_data/PacBio_HiFi/m64136_210607_115559.hifi_reads.bam,PACBIO_SMRT,P2,18654.0,21131.0,24872.0,N/A,HG01433,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,31.12,31122861165.0,1406824.0,N/A,HG01433,SAMN26237496,CLM43,CLM,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,19394.0,22509.0,26396.0,SRR18189642,N/A,N/A,N/A,N/A,N/A,SAMN26237496,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210606_025622.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01433_lib1,single,size fractionation,GENOMIC,WGS,57595.0,22335.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01433/raw_data/PacBio_HiFi/m64136_210606_025622.hifi_reads.bam,PACBIO_SMRT,P2,18792.0,21399.0,25166.0,N/A,HG01433,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,24.91,24912537616.0,1115383.0,N/A,HG01433,SAMN26237496,CLM43,CLM,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18529.0,22182.0,26634.0,SRR18189641,N/A,N/A,N/A,N/A,N/A,SAMN26237497,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210625_184443.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01496_lib1,single,size fractionation,GENOMIC,WGS,61342.0,21964.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01496/raw_data/PacBio_HiFi/m64043_210625_184443.hifi_reads.bam,PACBIO_SMRT,P2,17892.0,20566.0,24954.0,N/A,HG01496,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.03,37026751079.0,1685752.0,N/A,HG01496,SAMN26237497,CLM64,CLM,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18754.0,22563.0,26973.0,SRR18189641,N/A,N/A,N/A,N/A,N/A,SAMN26237497,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210628_151651.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01496_lib1,single,size fractionation,GENOMIC,WGS,64392.0,22230.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01496/raw_data/PacBio_HiFi/m64043_210628_151651.hifi_reads.bam,PACBIO_SMRT,P2,18058.0,20958.0,25307.0,N/A,HG01496,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.86,34860559463.0,1568136.0,N/A,HG01496,SAMN26237497,CLM64,CLM,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18805.0,22663.0,27075.0,SRR18189641,N/A,N/A,N/A,N/A,N/A,SAMN26237497,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210627_054642.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01496_lib1,single,size fractionation,GENOMIC,WGS,62635.0,22304.0,90.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01496/raw_data/PacBio_HiFi/m64043_210627_054642.hifi_reads.bam,PACBIO_SMRT,P2,18096.0,21059.0,25411.0,N/A,HG01496,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,31.56,31563425462.0,1415116.0,N/A,HG01496,SAMN26237497,CLM64,CLM,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16616.0,18983.0,22408.0,SRR29405836,N/A,N/A,N/A,N/A,N/A,SAMN41708785,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230725_153931_s1.hifi_reads.bc1010.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01626_PB1_m84091_230725_153931_s1,single,size fractionation,GENOMIC,WGS,57714.0,19058.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01626/raw_data/PacBio_HiFi/m84091_230725_153931_s1.hifi_reads.bc1010.bam,PACBIO_SMRT,Revio P1,16153.0,18178.0,21220.0,N/A,HG01626,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,107.29,107287914023.0,5629338.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,True,16541.0,18833.0,22147.0,SRR29405835,N/A,N/A,N/A,N/A,N/A,SAMN41708785,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230731_130312_s1.hifi_reads.bc1010.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01626_PB1_m84091_230731_130312_s1,single,size fractionation,GENOMIC,WGS,55270.0,18925.0,80.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01626/raw_data/PacBio_HiFi/m84091_230731_130312_s1.hifi_reads.bc1010.bam,PACBIO_SMRT,Revio P1,16094.0,18068.0,21004.0,N/A,HG01626,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,77.66,77655239427.0,4103204.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,True,16362.0,18484.0,21658.0,SRR29405834,N/A,N/A,N/A,N/A,N/A,SAMN41708785,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230817_153352_s4.hifi_reads.bc1010.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01626_PB1_m84091_230817_153352_s4,single,size fractionation,GENOMIC,WGS,52545.0,18641.0,598.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01626/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1010.bam,PACBIO_SMRT,Revio P1,15961.0,17790.0,20571.0,N/A,HG01626,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,12.08,12082980291.0,648185.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,False,21236.0,23521.0,26383.0,SRR13684376,N/A,N/A,N/A,N/A,N/A,SAMN17861660,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200614_191756.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01928_lib1,single,size fractionation,GENOMIC,WGS,50091.0,23447.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01928/raw_data/PacBio_HiFi/m64043_200614_191756.ccs.bam,PACBIO_SMRT,,20789.0,22941.0,25631.0,N/A,HG01928,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,27.53,27531809459.0,1174204.0,N/A,HG01928,SAMN17861660,PEL011,PEL,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,21262.0,23565.0,26503.0,SRR13684376,N/A,N/A,N/A,N/A,N/A,SAMN17861660,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200616_013031.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01928_lib1,single,size fractionation,GENOMIC,WGS,50104.0,23498.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01928/raw_data/PacBio_HiFi/m64043_200616_013031.ccs.bam,PACBIO_SMRT,,20804.0,22976.0,25728.0,N/A,HG01928,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,25.23,25229115676.0,1073649.0,N/A,HG01928,SAMN17861660,PEL011,PEL,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,21333.0,23667.0,26624.0,SRR13684376,N/A,N/A,N/A,N/A,N/A,SAMN17861660,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200612_200936.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01928_lib1,single,size fractionation,GENOMIC,WGS,50112.0,23596.0,49.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01928/raw_data/PacBio_HiFi/m64043_200612_200936.ccs.bam,PACBIO_SMRT,,20871.0,23063.0,25835.0,N/A,HG01928,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,28.48,28477418837.0,1206871.0,N/A,HG01928,SAMN17861660,PEL011,PEL,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,21357.0,23677.0,26630.0,SRR13684376,N/A,N/A,N/A,N/A,N/A,SAMN17861660,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200617_075530.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01928_lib1,single,size fractionation,GENOMIC,WGS,49952.0,23616.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01928/raw_data/PacBio_HiFi/m64043_200617_075530.ccs.bam,PACBIO_SMRT,,20897.0,23083.0,25852.0,N/A,HG01928,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,27.66,27663641221.0,1171348.0,N/A,HG01928,SAMN17861660,PEL011,PEL,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17643.0,19834.0,24088.0,SRR18189640,N/A,N/A,N/A,N/A,N/A,SAMN26237498,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210723_184622.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01934_lib1,single,size fractionation,GENOMIC,WGS,55658.0,20392.0,87.0,bc1020 barcoded adapter,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01934/raw_data/PacBio_HiFi/m64136_210723_184622.hifi_reads.bam,PACBIO_SMRT,P2,17294.0,18988.0,22829.0,N/A,HG01934,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,23.54,23540899362.0,1154412.0,N/A,HG01934,SAMN26237498,PEL013,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17728.0,20148.0,24392.0,SRR18189640,N/A,N/A,N/A,N/A,N/A,SAMN26237498,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210728_163638.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01934_lib1,single,size fractionation,GENOMIC,WGS,56522.0,20574.0,98.0,bc1020 barcoded adapter,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01934/raw_data/PacBio_HiFi/m64136_210728_163638.hifi_reads.bam,PACBIO_SMRT,P2,17350.0,19145.0,23129.0,N/A,HG01934,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,27.15,27145864716.0,1319382.0,N/A,HG01934,SAMN26237498,PEL013,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17745.0,20203.0,24446.0,SRR18189640,N/A,N/A,N/A,N/A,N/A,SAMN26237498,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210725_054129.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01934_lib1,single,size fractionation,GENOMIC,WGS,56329.0,20608.0,113.0,bc1020 barcoded adapter,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01934/raw_data/PacBio_HiFi/m64136_210725_054129.hifi_reads.bam,PACBIO_SMRT,P2,17361.0,19176.0,23178.0,N/A,HG01934,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,26.91,26910655595.0,1305820.0,N/A,HG01934,SAMN26237498,PEL013,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17759.0,20243.0,24461.0,SRR18189640,N/A,N/A,N/A,N/A,N/A,SAMN26237498,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210726_163800.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01934_lib1,single,size fractionation,GENOMIC,WGS,56046.0,20623.0,182.0,bc1020 barcoded adapter,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01934/raw_data/PacBio_HiFi/m64136_210726_163800.hifi_reads.bam,PACBIO_SMRT,P2,17375.0,19204.0,23200.0,N/A,HG01934,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,21.88,21882737224.0,1061051.0,N/A,HG01934,SAMN26237498,PEL013,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17495.0,18754.0,20298.0,SRR18189663,N/A,N/A,N/A,N/A,N/A,SAMN26237499,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210716_230222.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01943_lib1,single,size fractionation,GENOMIC,WGS,55403.0,18817.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01943/raw_data/PacBio_HiFi/m64043_210716_230222.hifi_reads.bam,PACBIO_SMRT,P2,17322.0,18526.0,20011.0,N/A,HG01943,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.26,34264397581.0,1820921.0,N/A,HG01943,SAMN26237499,PEL016,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17516.0,18789.0,20344.0,SRR18189663,N/A,N/A,N/A,N/A,N/A,SAMN26237499,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210718_100009.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01943_lib1,single,size fractionation,GENOMIC,WGS,58783.0,18855.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01943/raw_data/PacBio_HiFi/m64043_210718_100009.hifi_reads.bam,PACBIO_SMRT,P2,17340.0,18558.0,20050.0,N/A,HG01943,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,30.88,30875828356.0,1637478.0,N/A,HG01943,SAMN26237499,PEL016,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17522.0,18792.0,20349.0,SRR18189663,N/A,N/A,N/A,N/A,N/A,SAMN26237499,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210719_210019.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01943_lib1,single,size fractionation,GENOMIC,WGS,47136.0,18860.0,68.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01943/raw_data/PacBio_HiFi/m64043_210719_210019.hifi_reads.bam,PACBIO_SMRT,P2,17347.0,18560.0,20056.0,N/A,HG01943,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.31,33311278939.0,1766146.0,N/A,HG01943,SAMN26237499,PEL016,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18871.0,21071.0,24461.0,SRR13684375,N/A,N/A,N/A,N/A,N/A,SAMN17861661,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200614_192134.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01952_lib1,single,size fractionation,GENOMIC,WGS,50198.0,21306.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01952/raw_data/PacBio_HiFi/m64136_200614_192134.ccs.bam,PACBIO_SMRT,,18517.0,20403.0,23450.0,N/A,HG01952,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,32.65,32648526346.0,1532352.0,N/A,HG01952,SAMN17861661,PEL019,PEL,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18884.0,21101.0,24511.0,SRR13684375,N/A,N/A,N/A,N/A,N/A,SAMN17861661,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200612_201033.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01952_lib1,single,size fractionation,GENOMIC,WGS,49213.0,21335.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01952/raw_data/PacBio_HiFi/m64136_200612_201033.ccs.bam,PACBIO_SMRT,,18527.0,20423.0,23484.0,N/A,HG01952,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,31.77,31770292477.0,1489115.0,N/A,HG01952,SAMN17861661,PEL019,PEL,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18887.0,21106.0,24549.0,SRR13684375,N/A,N/A,N/A,N/A,N/A,SAMN17861661,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200616_013426.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01952_lib1,single,size fractionation,GENOMIC,WGS,50070.0,21342.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01952/raw_data/PacBio_HiFi/m64136_200616_013426.ccs.bam,PACBIO_SMRT,,18527.0,20425.0,23508.0,N/A,HG01952,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,32.55,32546332886.0,1524936.0,N/A,HG01952,SAMN17861661,PEL019,PEL,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18907.0,21158.0,24613.0,SRR13684375,N/A,N/A,N/A,N/A,N/A,SAMN17861661,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200617_080019.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01952_lib1,single,size fractionation,GENOMIC,WGS,49913.0,21379.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01952/raw_data/PacBio_HiFi/m64136_200617_080019.ccs.bam,PACBIO_SMRT,,18542.0,20462.0,23575.0,N/A,HG01952,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,30.89,30885763106.0,1444654.0,N/A,HG01952,SAMN17861661,PEL019,PEL,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17814.0,19237.0,21478.0,SRR23732277,N/A,N/A,N/A,N/A,N/A,SAMN33621947,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211222_184851-bc1003.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01975_lib1,single,size fractionation,GENOMIC,WGS,67517.0,19696.0,811.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/m64043_211222_184851-bc1003.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17631.0,18899.0,20818.0,N/A,HG01975,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,5.81,5813671901.0,295158.0,N/A,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17814.0,19250.0,21498.0,SRR23732277,N/A,N/A,N/A,N/A,N/A,SAMN33621947,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211114_112934-bc1003.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01975_lib1,single,size fractionation,GENOMIC,WGS,61049.0,19701.0,142.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/m64043_211114_112934-bc1003.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17627.0,18908.0,20835.0,N/A,HG01975,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,36.27,36273475358.0,1841180.0,N/A,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17823.0,19259.0,21526.0,SRR23732277,N/A,N/A,N/A,N/A,N/A,SAMN33621947,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211113_003158-bc1003.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01975_lib1,single,size fractionation,GENOMIC,WGS,58778.0,19715.0,230.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/m64043_211113_003158-bc1003.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17636.0,18916.0,20851.0,N/A,HG01975,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.41,37414972875.0,1897742.0,N/A,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17828.0,19276.0,21558.0,SRR23732277,N/A,N/A,N/A,N/A,N/A,SAMN33621947,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211115_222749-bc1003.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01975_lib1,single,size fractionation,GENOMIC,WGS,60746.0,19733.0,818.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/m64043_211115_222749-bc1003.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17640.0,18930.0,20876.0,N/A,HG01975,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,29.24,29243979674.0,1481915.0,N/A,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,False,23294.0,26026.0,29681.0,SRR13684372,N/A,N/A,N/A,N/A,N/A,SAMN17861662,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200530_164818.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01978_lib1,single,size fractionation,GENOMIC,WGS,50175.0,25990.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01978/raw_data/PacBio_HiFi/m64136_200530_164818.ccs.bam,PACBIO_SMRT,,22726.0,25247.0,28603.0,N/A,HG01978,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,27.71,27708518732.0,1066105.0,N/A,HG01978,SAMN17861662,PEL26,PEL,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,23423.0,26200.0,29895.0,SRR13684372,N/A,N/A,N/A,N/A,N/A,SAMN17861662,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200605_040848.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01978_lib1,single,size fractionation,GENOMIC,WGS,50262.0,26159.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01978/raw_data/PacBio_HiFi/m64136_200605_040848.ccs.bam,PACBIO_SMRT,,22851.0,25408.0,28812.0,N/A,HG01978,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,30.14,30137326069.0,1152070.0,N/A,HG01978,SAMN17861662,PEL26,PEL,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,23425.0,26214.0,29904.0,SRR13684372,N/A,N/A,N/A,N/A,N/A,SAMN17861662,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200603_214308.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01978_lib1,single,size fractionation,GENOMIC,WGS,50353.0,26165.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01978/raw_data/PacBio_HiFi/m64136_200603_214308.ccs.bam,PACBIO_SMRT,,22850.0,25418.0,28828.0,N/A,HG01978,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,31.15,31151393453.0,1190563.0,N/A,HG01978,SAMN17861662,PEL26,PEL,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,23557.0,26366.0,30083.0,SRR13684372,N/A,N/A,N/A,N/A,N/A,SAMN17861662,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200602_153012.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01978_lib1,single,size fractionation,GENOMIC,WGS,50181.0,26299.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01978/raw_data/PacBio_HiFi/m64136_200602_153012.ccs.bam,PACBIO_SMRT,,22977.0,25560.0,29003.0,N/A,HG01978,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,28.57,28572278581.0,1086428.0,N/A,HG01978,SAMN17861662,PEL26,PEL,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,20324.0,22093.0,24616.0,SRR18189662,N/A,N/A,N/A,N/A,N/A,SAMN26237500,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210625_184731.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01981_lib1,single,size fractionation,GENOMIC,WGS,58677.0,22409.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01981/raw_data/PacBio_HiFi/m64136_210625_184731.hifi_reads.bam,PACBIO_SMRT,P2,20057.0,21671.0,23942.0,N/A,HG01981,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.56,32558602266.0,1452915.0,N/A,HG01981,SAMN26237500,PEL27,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,20321.0,22091.0,24616.0,SRR18189662,N/A,N/A,N/A,N/A,N/A,SAMN26237500,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210627_054246.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01981_lib1,single,size fractionation,GENOMIC,WGS,58483.0,22404.0,109.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01981/raw_data/PacBio_HiFi/m64136_210627_054246.hifi_reads.bam,PACBIO_SMRT,P2,20054.0,21668.0,23950.0,N/A,HG01981,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.3,38295698114.0,1709317.0,N/A,HG01981,SAMN26237500,PEL27,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,20370.0,22177.0,24752.0,SRR18189662,N/A,N/A,N/A,N/A,N/A,SAMN26237500,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210628_163953.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01981_lib1,single,size fractionation,GENOMIC,WGS,67049.0,22492.0,461.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01981/raw_data/PacBio_HiFi/m64136_210628_163953.hifi_reads.bam,PACBIO_SMRT,P2,20094.0,21740.0,24060.0,N/A,HG01981,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.53,34527307027.0,1535065.0,N/A,HG01981,SAMN26237500,PEL27,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18813.0,20513.0,22711.0,SRR18189661,N/A,N/A,N/A,N/A,N/A,SAMN26237501,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210622_163331.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01993_lib1,single,size fractionation,GENOMIC,WGS,55085.0,20587.0,177.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01993/raw_data/PacBio_HiFi/m64043_210622_163331.hifi_reads.bam,PACBIO_SMRT,P2,18534.0,20131.0,22196.0,N/A,HG01993,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,39.18,39177895246.0,1903015.0,N/A,HG01993,SAMN26237501,PEL29,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18938.0,20675.0,22909.0,SRR18189661,N/A,N/A,N/A,N/A,N/A,SAMN26237501,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210624_032817.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01993_lib1,single,size fractionation,GENOMIC,WGS,57065.0,20740.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01993/raw_data/PacBio_HiFi/m64043_210624_032817.hifi_reads.bam,PACBIO_SMRT,P2,18649.0,20282.0,22381.0,N/A,HG01993,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,30.49,30485595101.0,1469845.0,N/A,HG01993,SAMN26237501,PEL29,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18948.0,20695.0,22942.0,SRR18189661,N/A,N/A,N/A,N/A,N/A,SAMN26237501,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210620_041711.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01993_lib1,single,size fractionation,GENOMIC,WGS,55937.0,20759.0,90.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01993/raw_data/PacBio_HiFi/m64043_210620_041711.hifi_reads.bam,PACBIO_SMRT,P2,18655.0,20295.0,22409.0,N/A,HG01993,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.99,35989302267.0,1733650.0,N/A,HG01993,SAMN26237501,PEL29,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16680.0,19065.0,22279.0,SRR18189660,N/A,N/A,N/A,N/A,N/A,SAMN26237502,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210702_183526.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02004_lib1,single,size fractionation,GENOMIC,WGS,58589.0,19156.0,330.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02004/raw_data/PacBio_HiFi/m64136_210702_183526.hifi_reads.bam,PACBIO_SMRT,P2,16324.0,18153.0,21349.0,N/A,HG02004,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.14,33142881457.0,1730130.0,N/A,HG02004,SAMN26237502,PEL33,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16832.0,19431.0,22579.0,SRR18189660,N/A,N/A,N/A,N/A,N/A,SAMN26237502,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210704_053041.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02004_lib1,single,size fractionation,GENOMIC,WGS,55125.0,19374.0,271.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02004/raw_data/PacBio_HiFi/m64136_210704_053041.hifi_reads.bam,PACBIO_SMRT,P2,16441.0,18442.0,21645.0,N/A,HG02004,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,22.89,22886582472.0,1181301.0,N/A,HG02004,SAMN26237502,PEL33,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16903.0,19508.0,22598.0,SRR18189660,N/A,N/A,N/A,N/A,N/A,SAMN26237502,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210709_205614.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02004_lib1,single,size fractionation,GENOMIC,WGS,57164.0,19427.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02004/raw_data/PacBio_HiFi/m64043_210709_205614.hifi_reads.bam,PACBIO_SMRT,P2,16509.0,18542.0,21688.0,N/A,HG02004,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,31.36,31359670199.0,1614164.0,N/A,HG02004,SAMN26237502,PEL33,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17087.0,19873.0,22910.0,SRR18189660,N/A,N/A,N/A,N/A,N/A,SAMN26237502,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210705_162724.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02004_lib1,single,size fractionation,GENOMIC,WGS,53948.0,19668.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02004/raw_data/PacBio_HiFi/m64136_210705_162724.hifi_reads.bam,PACBIO_SMRT,P2,16651.0,18898.0,22002.0,N/A,HG02004,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,28.89,28890588164.0,1468846.0,N/A,HG02004,SAMN26237502,PEL33,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16432.0,18225.0,21552.0,SRR23732276,N/A,N/A,N/A,N/A,N/A,SAMN33621948,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210905_032603-bc1022.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02015_lib1,single,size fractionation,GENOMIC,WGS,48424.0,18655.0,76.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02015/raw_data/PacBio_HiFi/m64043_210905_032603-bc1022.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16173.0,17620.0,20670.0,N/A,HG02015,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.83,37828131839.0,2027744.0,N/A,HG02015,SAMN33621948,VN046,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16510.0,18970.0,22812.0,SRR23732276,N/A,N/A,N/A,N/A,N/A,SAMN33621948,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210901_164337-bc1022.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02015_lib1,single,size fractionation,GENOMIC,WGS,373990.0,18903.0,51.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02015/raw_data/PacBio_HiFi/m64043_210901_164337-bc1022.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15928.0,17686.0,21174.0,N/A,HG02015,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,58.14,58139125879.0,3075646.0,N/A,HG02015,SAMN33621948,VN046,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16688.0,19402.0,23437.0,SRR23732276,N/A,N/A,N/A,N/A,N/A,SAMN33621948,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210903_163032-bc1022.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02015_lib1,single,size fractionation,GENOMIC,WGS,388970.0,19410.0,51.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02015/raw_data/PacBio_HiFi/m64043_210903_163032-bc1022.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16061.0,17931.0,21538.0,N/A,HG02015,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,75.03,75027463744.0,3865204.0,N/A,HG02015,SAMN33621948,VN046,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17344.0,18825.0,21046.0,SRR18189659,N/A,N/A,N/A,N/A,N/A,SAMN26237503,9.0.0.92188,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210209_184241.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02027_lib,single,size fractionation,GENOMIC,WGS,53960.0,19159.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02027/raw_data/PacBio_HiFi/m64136_210209_184241.hifi_reads.bam,PACBIO_SMRT,P2,17101.0,18456.0,20372.0,N/A,HG02027,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.39,33394650011.0,1742953.0,N/A,HG02027,SAMN26237503,VN050,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17361.0,18842.0,21069.0,SRR18189659,N/A,N/A,N/A,N/A,N/A,SAMN26237503,9.0.0.92188,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210205_190622.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02027_lib,single,size fractionation,GENOMIC,WGS,59462.0,19181.0,50.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02027/raw_data/PacBio_HiFi/m64136_210205_190622.hifi_reads.bam,PACBIO_SMRT,P2,17116.0,18474.0,20391.0,N/A,HG02027,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.46,34463464135.0,1796742.0,N/A,HG02027,SAMN26237503,VN050,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17386.0,18891.0,21167.0,SRR18189659,N/A,N/A,N/A,N/A,N/A,SAMN26237503,9.0.0.92188,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210207_012053.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02027_lib,single,size fractionation,GENOMIC,WGS,55858.0,19231.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02027/raw_data/PacBio_HiFi/m64136_210207_012053.hifi_reads.bam,PACBIO_SMRT,P2,17137.0,18510.0,20467.0,N/A,HG02027,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,31.82,31820631982.0,1654569.0,N/A,HG02027,SAMN26237503,VN050,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17577.0,19163.0,21640.0,SRR18189659,N/A,N/A,N/A,N/A,N/A,SAMN26237503,9.0.0.92188,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210211_010151.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02027_lib,single,size fractionation,GENOMIC,WGS,47891.0,19529.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02027/raw_data/PacBio_HiFi/m64136_210211_010151.hifi_reads.bam,PACBIO_SMRT,P2,17310.0,18748.0,20835.0,N/A,HG02027,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.98,32977753701.0,1688620.0,N/A,HG02027,SAMN26237503,VN050,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18068.0,19682.0,22217.0,SRR23732275,N/A,N/A,N/A,N/A,N/A,SAMN33621949,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_211120_043838-bc1009.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02056_lib1,single,size fractionation,GENOMIC,WGS,50015.0,19815.0,116.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/m64136_211120_043838-bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17748.0,19225.0,21357.0,N/A,HG02056,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,27.14,27141258277.0,1369700.0,N/A,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18083.0,19712.0,22301.0,SRR23732275,N/A,N/A,N/A,N/A,N/A,SAMN33621949,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_211118_185339-bc1009.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02056_lib1,single,size fractionation,GENOMIC,WGS,51507.0,19854.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/m64136_211118_185339-bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17756.0,19247.0,21406.0,N/A,HG02056,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,29.16,29158250441.0,1468626.0,N/A,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18090.0,19721.0,22333.0,SRR23732275,N/A,N/A,N/A,N/A,N/A,SAMN33621949,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_211121_153454-bc1009.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02056_lib1,single,size fractionation,GENOMIC,WGS,55264.0,19862.0,199.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/m64136_211121_153454-bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17760.0,19254.0,21430.0,N/A,HG02056,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,28.49,28490874747.0,1434407.0,N/A,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18454.0,20670.0,24438.0,SRR23732275,N/A,N/A,N/A,N/A,N/A,SAMN33621949,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220114_181052-bc1009.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02056_lib1,single,size fractionation,GENOMIC,WGS,62255.0,20647.0,276.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/m64043_220114_181052-bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17986.0,19880.0,23140.0,N/A,HG02056,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,29.06,29056368441.0,1407236.0,N/A,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15736.0,18325.0,21635.0,SRR18158593,N/A,N/A,N/A,N/A,N/A,SAMN26267381,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_210507_224951-bc1010_BAK8A_OA.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02074a.HFSS,single,size fractionation,GENOMIC,WGS,45596.0,18140.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02074/raw_data/PacBio_HiFi/m54329U_210507_224951-bc1010_BAK8A_OA.hifi_reads.bam,PACBIO_SMRT,P2.2,15121.0,17428.0,20473.0,N/A,HG02074,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,3.17,3174472950.0,174993.0,N/A,HG02074,SAMN26267381,VN066,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17499.0,19260.0,23033.0,SRR18189658,N/A,N/A,N/A,N/A,N/A,SAMN26237504,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210321_022417.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02083_lib1,single,size fractionation,GENOMIC,WGS,62376.0,19914.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02083/raw_data/PacBio_HiFi/m64136_210321_022417.hifi_reads.bam,PACBIO_SMRT,P2,17213.0,18705.0,21841.0,N/A,HG02083,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,31.27,31271435801.0,1570273.0,N/A,HG02083,SAMN26237504,VN069,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17500.0,19287.0,23123.0,SRR18189658,N/A,N/A,N/A,N/A,N/A,SAMN26237504,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210317_200525.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02083_lib1,single,size fractionation,GENOMIC,WGS,59173.0,19950.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02083/raw_data/PacBio_HiFi/m64136_210317_200525.hifi_reads.bam,PACBIO_SMRT,P2,17206.0,18711.0,21907.0,N/A,HG02083,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.79,34788230322.0,1743712.0,N/A,HG02083,SAMN26237504,VN069,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17508.0,19300.0,23147.0,SRR18189658,N/A,N/A,N/A,N/A,N/A,SAMN26237504,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210319_191015.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02083_lib1,single,size fractionation,GENOMIC,WGS,60206.0,19965.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02083/raw_data/PacBio_HiFi/m64136_210319_191015.hifi_reads.bam,PACBIO_SMRT,P2,17216.0,18722.0,21930.0,N/A,HG02083,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.15,35152401716.0,1760691.0,N/A,HG02083,SAMN26237504,VN069,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17556.0,19392.0,23264.0,SRR18189658,N/A,N/A,N/A,N/A,N/A,SAMN26237504,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210323_162524.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02083_lib1,single,size fractionation,GENOMIC,WGS,61695.0,20039.0,90.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02083/raw_data/PacBio_HiFi/m64136_210323_162524.hifi_reads.bam,PACBIO_SMRT,P2,17255.0,18792.0,22064.0,N/A,HG02083,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.0,33996593694.0,1696465.0,N/A,HG02083,SAMN26237504,VN069,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16939.0,19334.0,21674.0,SRR23732274,N/A,N/A,N/A,N/A,N/A,SAMN33621950,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220422_181133-bc1001.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02129_lib1,single,size fractionation,GENOMIC,WGS,65275.0,19191.0,139.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02129/raw_data/PacBio_HiFi/m64136_220422_181133-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16313.0,18805.0,20933.0,N/A,HG02129,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.31,37306593554.0,1943961.0,N/A,HG02129,SAMN33621950,VN079,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16979.0,19358.0,21704.0,SRR23732274,N/A,N/A,N/A,N/A,N/A,SAMN33621950,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220424_050632-bc1001.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02129_lib1,single,size fractionation,GENOMIC,WGS,56783.0,19216.0,95.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02129/raw_data/PacBio_HiFi/m64136_220424_050632-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16330.0,18825.0,20955.0,N/A,HG02129,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.06,32061676319.0,1668439.0,N/A,HG02129,SAMN33621950,VN079,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17036.0,19403.0,21791.0,SRR23732274,N/A,N/A,N/A,N/A,N/A,SAMN33621950,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220426_155627-bc1001.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02129_lib1,single,size fractionation,GENOMIC,WGS,61990.0,19272.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02129/raw_data/PacBio_HiFi/m64136_220426_155627-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16361.0,18861.0,21022.0,N/A,HG02129,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,42.0,42004596679.0,2179533.0,N/A,HG02129,SAMN33621950,VN079,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15220.0,17751.0,21043.0,SRR18158584,N/A,N/A,N/A,N/A,N/A,SAMN26267392,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_210615_233707-bc1009_BAK8A_OA.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02135a.HFSS,single,size fractionation,GENOMIC,WGS,52606.0,17626.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m54329U_210615_233707-bc1009_BAK8A_OA.hifi_reads.bam,PACBIO_SMRT,P2.2,14644.0,16847.0,19859.0,N/A,HG02135,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,20.11,20107735346.0,1140779.0,N/A,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15772.0,18430.0,21760.0,SRR18158584,N/A,N/A,N/A,N/A,N/A,SAMN26267392,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_210507_224951-bc1009_BAK8A_OA.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02135a.HFSS,single,size fractionation,GENOMIC,WGS,48978.0,18196.0,1129.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m54329U_210507_224951-bc1009_BAK8A_OA.hifi_reads.bam,PACBIO_SMRT,P2.2,15126.0,17489.0,20600.0,N/A,HG02135,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,2.87,2868292075.0,157627.0,N/A,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15402.0,16790.0,20061.0,SRR13684391,N/A,N/A,N/A,N/A,N/A,SAMN17861663,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200621_234916.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02148_lib1,single,size fractionation,GENOMIC,WGS,48355.0,17407.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02148/raw_data/PacBio_HiFi/m64136_200621_234916.ccs.bam,PACBIO_SMRT,,15211.0,16353.0,18901.0,N/A,HG02148,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,24.8,24801869543.0,1424789.0,N/A,HG02148,SAMN17861663,PEL39,PEL,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15454.0,16933.0,20383.0,SRR13684391,N/A,N/A,N/A,N/A,N/A,SAMN17861663,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200623_061529.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02148_lib1,single,size fractionation,GENOMIC,WGS,45232.0,17549.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02148/raw_data/PacBio_HiFi/m64136_200623_061529.ccs.bam,PACBIO_SMRT,,15249.0,16441.0,19221.0,N/A,HG02148,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,30.05,30048975399.0,1712199.0,N/A,HG02148,SAMN17861663,PEL39,PEL,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15475.0,16977.0,20453.0,SRR13684391,N/A,N/A,N/A,N/A,N/A,SAMN17861663,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200620_173618.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02148_lib1,single,size fractionation,GENOMIC,WGS,49685.0,17587.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02148/raw_data/PacBio_HiFi/m64136_200620_173618.ccs.bam,PACBIO_SMRT,,15265.0,16476.0,19301.0,N/A,HG02148,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,29.59,29586622176.0,1682208.0,N/A,HG02148,SAMN17861663,PEL39,PEL,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15487.0,17027.0,20549.0,SRR13684391,N/A,N/A,N/A,N/A,N/A,SAMN17861663,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200618_202033.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02148_lib1,single,size fractionation,GENOMIC,WGS,49035.0,17632.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02148/raw_data/PacBio_HiFi/m64136_200618_202033.ccs.bam,PACBIO_SMRT,,15274.0,16505.0,19399.0,N/A,HG02148,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,38.81,38806001935.0,2200848.0,N/A,HG02148,SAMN17861663,PEL39,PEL,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17196.0,19308.0,22847.0,SRR23732293,N/A,N/A,N/A,N/A,N/A,SAMN33621951,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220703_150713-bc1012.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02155_lib1,single,size fractionation,GENOMIC,WGS,56609.0,19601.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/m64136_220703_150713-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16826.0,18592.0,21674.0,N/A,HG02155,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,31.3,31298698030.0,1596721.0,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17224.0,19369.0,22944.0,SRR23732293,N/A,N/A,N/A,N/A,N/A,SAMN33621951,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220701_181202-bc1012.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02155_lib1,single,size fractionation,GENOMIC,WGS,63056.0,19653.0,69.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/m64136_220701_181202-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16848.0,18635.0,21767.0,N/A,HG02155,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.33,34332255688.0,1746882.0,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17269.0,19476.0,23090.0,SRR23732293,N/A,N/A,N/A,N/A,N/A,SAMN33621951,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220705_120453-bc1012.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02155_lib1,single,size fractionation,GENOMIC,WGS,64074.0,19740.0,219.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/m64136_220705_120453-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16881.0,18713.0,21906.0,N/A,HG02155,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,31.58,31584932406.0,1599995.0,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17476.0,19953.0,23518.0,SRR23732293,N/A,N/A,N/A,N/A,N/A,SAMN33621951,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220728_173215-bc1012.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02155_lib1,single,size fractionation,GENOMIC,WGS,55945.0,20033.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/m64043_220728_173215-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17036.0,19069.0,22395.0,N/A,HG02155,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,12.12,12121610916.0,605059.0,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18266.0,22326.0,27511.0,SRR29405833,N/A,N/A,N/A,N/A,N/A,SAMN41021617,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230629_191221_s4.hifi_reads.bc1008.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02178_PB1_m84091_230629_191221_s4,single,size fractionation,GENOMIC,WGS,72017.0,21716.0,123.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02178/raw_data/PacBio_HiFi/m84091_230629_191221_s4.hifi_reads.bc1008.bam,PACBIO_SMRT,Revio P1,17032.0,20508.0,25157.0,N/A,HG02178,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,65.02,65018477593.0,2993899.0,N/A,HG02178,SAMN41021617,,CDX,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18143.0,22138.0,27182.0,SRR29405832,N/A,N/A,N/A,N/A,N/A,SAMN41021617,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230705_181402_s3.hifi_reads.bc1008.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02178_PB1_m84091_230705_181402_s3,single,size fractionation,GENOMIC,WGS,68719.0,21517.0,115.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02178/raw_data/PacBio_HiFi/m84091_230705_181402_s3.hifi_reads.bc1008.bam,PACBIO_SMRT,Revio P1,16933.0,20355.0,24921.0,N/A,HG02178,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,90.3,90298507655.0,4196539.0,N/A,HG02178,SAMN41021617,,CDX,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17477.0,21327.0,26181.0,SRR29405831,N/A,N/A,N/A,N/A,N/A,SAMN41021617,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230710_180033_s3.hifi_reads.bc1008.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02178_PB1_m84091_230710_180033_s3,single,size fractionation,GENOMIC,WGS,69950.0,20825.0,173.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02178/raw_data/PacBio_HiFi/m84091_230710_180033_s3.hifi_reads.bc1008.bam,PACBIO_SMRT,Revio P1,16351.0,19640.0,24021.0,N/A,HG02178,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,40.93,40928479039.0,1965273.0,N/A,HG02178,SAMN41021617,,CDX,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18894.0,20440.0,22488.0,SRR23732292,N/A,N/A,N/A,N/A,N/A,SAMN33621952,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211220_160211-bc1011.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02258_lib1,single,size fractionation,GENOMIC,WGS,50640.0,20578.0,100.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/m64043_211220_160211-bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18651.0,20107.0,22012.0,N/A,HG02258,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,40.09,40089424862.0,1948134.0,N/A,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18916.0,20475.0,22548.0,SRR23732292,N/A,N/A,N/A,N/A,N/A,SAMN33621952,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211219_050421-bc1011.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02258_lib1,single,size fractionation,GENOMIC,WGS,53658.0,20619.0,203.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/m64043_211219_050421-bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18671.0,20138.0,22062.0,N/A,HG02258,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,36.01,36007958539.0,1746272.0,N/A,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18935.0,20497.0,22571.0,SRR23732292,N/A,N/A,N/A,N/A,N/A,SAMN33621952,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220114_181052-bc1011.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02258_lib1,single,size fractionation,GENOMIC,WGS,47039.0,20639.0,217.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/m64043_220114_181052-bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18686.0,20163.0,22078.0,N/A,HG02258,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,6.88,6878212374.0,333250.0,N/A,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18946.0,20502.0,22571.0,SRR23732292,N/A,N/A,N/A,N/A,N/A,SAMN33621952,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211217_180919-bc1011.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02258_lib1,single,size fractionation,GENOMIC,WGS,53399.0,20643.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/m64043_211217_180919-bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18701.0,20169.0,22088.0,N/A,HG02258,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,30.38,30383642106.0,1471798.0,N/A,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17731.0,20899.0,23890.0,SRR23732291,N/A,N/A,N/A,N/A,N/A,SAMN33621953,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220429_171542-bc1002.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02273_lib1,single,size fractionation,GENOMIC,WGS,58982.0,20567.0,139.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02273/raw_data/PacBio_HiFi/m64043_220429_171542-bc1002.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17280.0,20013.0,22954.0,N/A,HG02273,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.03,38026194906.0,1848889.0,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17739.0,20923.0,23937.0,SRR23732291,N/A,N/A,N/A,N/A,N/A,SAMN33621953,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220501_041051-bc1002.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02273_lib1,single,size fractionation,GENOMIC,WGS,60518.0,20590.0,139.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02273/raw_data/PacBio_HiFi/m64043_220501_041051-bc1002.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17281.0,20032.0,22984.0,N/A,HG02273,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,39.21,39207885275.0,1904184.0,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17766.0,20967.0,23999.0,SRR23732291,N/A,N/A,N/A,N/A,N/A,SAMN33621953,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220503_153752-bc1002.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02273_lib1,single,size fractionation,GENOMIC,WGS,67692.0,20629.0,327.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02273/raw_data/PacBio_HiFi/m64043_220503_153752-bc1002.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17297.0,20076.0,23036.0,N/A,HG02273,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,44.37,44366503595.0,2150606.0,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16598.0,19206.0,21600.0,SRR18189657,N/A,N/A,N/A,N/A,N/A,SAMN26237505,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210716_230343.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02280_lib1,single,size fractionation,GENOMIC,WGS,55627.0,18909.0,77.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02280/raw_data/PacBio_HiFi/m64136_210716_230343.hifi_reads.bam,PACBIO_SMRT,P2,16156.0,18541.0,20932.0,N/A,HG02280,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.26,32263383149.0,1706223.0,N/A,HG02280,SAMN26237505,BB23,ACB,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16617.0,19228.0,21618.0,SRR18189657,N/A,N/A,N/A,N/A,N/A,SAMN26237505,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210719_201505.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02280_lib1,single,size fractionation,GENOMIC,WGS,58301.0,18928.0,95.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02280/raw_data/PacBio_HiFi/m64136_210719_201505.hifi_reads.bam,PACBIO_SMRT,P2,16172.0,18564.0,20950.0,N/A,HG02280,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.72,32722313918.0,1728776.0,N/A,HG02280,SAMN26237505,BB23,ACB,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16622.0,19243.0,21644.0,SRR18189657,N/A,N/A,N/A,N/A,N/A,SAMN26237505,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210718_091611.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02280_lib1,single,size fractionation,GENOMIC,WGS,55386.0,18944.0,747.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02280/raw_data/PacBio_HiFi/m64136_210718_091611.hifi_reads.bam,PACBIO_SMRT,P2,16173.0,18582.0,20967.0,N/A,HG02280,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.48,35481365570.0,1872882.0,N/A,HG02280,SAMN26237505,BB23,ACB,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17909.0,21501.0,26127.0,SRR29405830,N/A,N/A,N/A,N/A,N/A,SAMN41021615,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230629_181009_s2.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02392_PB1_m84091_230629_181009_s2,single,size fractionation,GENOMIC,WGS,66424.0,21170.0,77.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02392/raw_data/PacBio_HiFi/m84091_230629_181009_s2.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,16952.0,20015.0,24192.0,N/A,HG02392,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,66.2,66196250958.0,3126764.0,N/A,HG02392,SAMN41021615,,CDX,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17517.0,20915.0,25377.0,SRR29405829,N/A,N/A,N/A,N/A,N/A,SAMN41021615,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230705_171239_s1.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02392_PB1_m84091_230705_171239_s1,single,size fractionation,GENOMIC,WGS,64312.0,20679.0,80.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02392/raw_data/PacBio_HiFi/m84091_230705_171239_s1.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,16660.0,19524.0,23524.0,N/A,HG02392,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,70.43,70428529309.0,3405708.0,N/A,HG02392,SAMN41021615,,CDX,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17383.0,20654.0,24998.0,SRR29405828,N/A,N/A,N/A,N/A,N/A,SAMN41021615,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230710_180033_s3.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02392_PB1_m84091_230710_180033_s3,single,size fractionation,GENOMIC,WGS,69083.0,20509.0,110.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02392/raw_data/PacBio_HiFi/m84091_230710_180033_s3.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,16594.0,19347.0,23221.0,N/A,HG02392,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,37.69,37690426700.0,1837746.0,N/A,HG02392,SAMN41021615,,CDX,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16974.0,19967.0,24015.0,SRR29405827,N/A,N/A,N/A,N/A,N/A,SAMN41021615,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230727_143029_s4.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02392_PB1_m84091_230727_143029_s4,single,size fractionation,GENOMIC,WGS,52237.0,19939.0,448.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02392/raw_data/PacBio_HiFi/m84091_230727_143029_s4.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,16316.0,18819.0,22398.0,N/A,HG02392,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,5.03,5031138131.0,252316.0,N/A,HG02392,SAMN41021615,,CDX,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16304.0,18487.0,21703.0,SRR29405825,N/A,N/A,N/A,N/A,N/A,SAMN41021615,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230817_153352_s4.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02392_PB1_m84091_230817_153352_s4,single,size fractionation,GENOMIC,WGS,53098.0,18520.0,235.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02392/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,15842.0,17738.0,20544.0,N/A,HG02392,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,13.18,13184911846.0,711902.0,N/A,HG02392,SAMN41021615,,CDX,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17952.0,20058.0,24831.0,SRR18189656,N/A,N/A,N/A,N/A,N/A,SAMN26237506,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210508_033135.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02523_lib1,single,size fractionation,GENOMIC,WGS,59221.0,20876.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02523/raw_data/PacBio_HiFi/m64043_210508_033135.hifi_reads.bam,PACBIO_SMRT,P2,17572.0,19266.0,22943.0,N/A,HG02523,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.64,32638821684.0,1563454.0,N/A,HG02523,SAMN26237506,VN090,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17964.0,20086.0,24849.0,SRR18189656,N/A,N/A,N/A,N/A,N/A,SAMN26237506,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210509_110105.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02523_lib1,single,size fractionation,GENOMIC,WGS,57156.0,20889.0,562.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02523/raw_data/PacBio_HiFi/m64043_210509_110105.hifi_reads.bam,PACBIO_SMRT,P2,17581.0,19284.0,22978.0,N/A,HG02523,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,30.66,30658573852.0,1467650.0,N/A,HG02523,SAMN26237506,VN090,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18057.0,20287.0,25204.0,SRR18189656,N/A,N/A,N/A,N/A,N/A,SAMN26237506,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210506_183430.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02523_lib1,single,size fractionation,GENOMIC,WGS,59606.0,21060.0,694.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02523/raw_data/PacBio_HiFi/m64043_210506_183430.hifi_reads.bam,PACBIO_SMRT,P2,17653.0,19411.0,23289.0,N/A,HG02523,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.6,34598182243.0,1642763.0,N/A,HG02523,SAMN26237506,VN090,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,19052.0,19960.0,20835.0,SRR13684288,N/A,N/A,N/A,N/A,N/A,SAMN17861239,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_200211_192235.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02559.HiFiEx_b6,single,size fractionation,GENOMIC,WGS,37258.0,19761.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02559/raw_data/PacBio_HiFi/m54329U_200211_192235.ccs.bam,PACBIO_SMRT,P2.0,18953.0,19868.0,20760.0,N/A,HG02559,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,6.84,6838204744.0,346033.0,N/A,HG02559,SAMN17861239,BB68,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18610.0,20214.0,22178.0,SRR13684287,N/A,N/A,N/A,N/A,N/A,SAMN17861239,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64076_200215_021919.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02559.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,49430.0,20252.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02559/raw_data/PacBio_HiFi/m64076_200215_021919.ccs.bam,PACBIO_SMRT,P2.0,18340.0,19877.0,21734.0,N/A,HG02559,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,26.58,26582700348.0,1312567.0,N/A,HG02559,SAMN17861239,BB68,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18687.0,20318.0,22342.0,SRR13684287,N/A,N/A,N/A,N/A,N/A,SAMN17861239,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_200219_181523.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02559.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,50580.0,20372.0,43.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02559/raw_data/PacBio_HiFi/m54329U_200219_181523.ccs.bam,PACBIO_SMRT,P2.0,18411.0,19968.0,21870.0,N/A,HG02559,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,31.28,31278743348.0,1535338.0,N/A,HG02559,SAMN17861239,BB68,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18706.0,20331.0,22336.0,SRR13684287,N/A,N/A,N/A,N/A,N/A,SAMN17861239,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64076_200217_055339.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02559.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,50659.0,20381.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02559/raw_data/PacBio_HiFi/m64076_200217_055339.ccs.bam,PACBIO_SMRT,P2.0,18431.0,19985.0,21877.0,N/A,HG02559,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,31.58,31581599812.0,1549488.0,N/A,HG02559,SAMN17861239,BB68,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18769.0,20412.0,22456.0,SRR13684287,N/A,N/A,N/A,N/A,N/A,SAMN17861239,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_200217_055345.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02559.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,50075.0,20473.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02559/raw_data/PacBio_HiFi/m54329U_200217_055345.ccs.bam,PACBIO_SMRT,P2.0,18489.0,20058.0,21980.0,N/A,HG02559,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,32.26,32259514307.0,1575697.0,N/A,HG02559,SAMN17861239,BB68,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,True,13622.0,16734.0,20462.0,SRR29483252,N/A,N/A,N/A,N/A,N/A,SAMN17861240,v7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84046_230711_233802_s3.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02572.HFSS3_m84046_230711_233802_s3,single,size fractionation,GENOMIC,WGS,57097.0,16065.0,119.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02572/raw_data/PacBio_HiFi/m84046_230711_233802_s3.hifi_reads.default.bam,PACBIO_SMRT,P1,12582.0,15327.0,18827.0,N/A,HG02572,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,70.16,70160006292.0,4367119.0,N/A,HG02572,SAMN17861240,GB21,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19124.0,23125.0,28327.0,SRR29405824,N/A,N/A,N/A,N/A,N/A,SAMN41021657,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230707_183012_s4.hifi_reads.bc1016.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02583_PB1_m84091_230707_183012_s4,single,size fractionation,GENOMIC,WGS,63871.0,22668.0,62.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02583/raw_data/PacBio_HiFi/m84091_230707_183012_s4.hifi_reads.bc1016.bam,PACBIO_SMRT,Revio P1,17966.0,21407.0,26047.0,N/A,HG02583,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,97.56,97558541990.0,4303764.0,N/A,HG02583,SAMN41021657,GB23,GWD,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18888.0,23089.0,28314.0,SRR29405823,N/A,N/A,N/A,N/A,N/A,SAMN41021657,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230714_140949_s3.hifi_reads.bc1016.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02583_PB1_m84091_230714_140949_s3,single,size fractionation,GENOMIC,WGS,74239.0,22446.0,70.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02583/raw_data/PacBio_HiFi/m84091_230714_140949_s3.hifi_reads.bc1016.bam,PACBIO_SMRT,Revio P1,17588.0,21245.0,25972.0,N/A,HG02583,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,103.64,103636997807.0,4617113.0,N/A,HG02583,SAMN41021657,GB23,GWD,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17971.0,19605.0,23555.0,SRR18189655,N/A,N/A,N/A,N/A,N/A,SAMN26237507,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210614_223013.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02602_lib1,single,size fractionation,GENOMIC,WGS,53432.0,20425.0,591.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02602/raw_data/PacBio_HiFi/m64043_210614_223013.hifi_reads.bam,PACBIO_SMRT,P2,17717.0,19089.0,22040.0,N/A,HG02602,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,19.75,19749338623.0,966914.0,N/A,HG02602,SAMN26237507,PK09,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17974.0,19611.0,23584.0,SRR18189655,N/A,N/A,N/A,N/A,N/A,SAMN26237507,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210613_133026.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02602_lib1,single,size fractionation,GENOMIC,WGS,56871.0,20440.0,395.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02602/raw_data/PacBio_HiFi/m64043_210613_133026.hifi_reads.bam,PACBIO_SMRT,P2,17719.0,19093.0,22051.0,N/A,HG02602,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,25.14,25138567629.0,1229861.0,N/A,HG02602,SAMN26237507,PK09,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18012.0,19709.0,23853.0,SRR18189655,N/A,N/A,N/A,N/A,N/A,SAMN26237507,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210612_053030.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02602_lib1,single,size fractionation,GENOMIC,WGS,64694.0,20556.0,242.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02602/raw_data/PacBio_HiFi/m64043_210612_053030.hifi_reads.bam,PACBIO_SMRT,P2,17745.0,19156.0,22281.0,N/A,HG02602,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,19.83,19825720983.0,964466.0,N/A,HG02602,SAMN26237507,PK09,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18202.0,20158.0,24673.0,SRR18189655,N/A,N/A,N/A,N/A,N/A,SAMN26237507,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210618_184604.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02602_lib1,single,size fractionation,GENOMIC,WGS,63465.0,20973.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02602/raw_data/PacBio_HiFi/m64043_210618_184604.hifi_reads.bam,PACBIO_SMRT,P2,17893.0,19453.0,23120.0,N/A,HG02602,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,36.17,36169981448.0,1724579.0,N/A,HG02602,SAMN26237507,PK09,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16935.0,18925.0,22065.0,SRR18189654,N/A,N/A,N/A,N/A,N/A,SAMN26237508,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210528_171842.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02615_lib1,single,size fractionation,GENOMIC,WGS,57329.0,19166.0,653.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02615/raw_data/PacBio_HiFi/m64136_210528_171842.hifi_reads.bam,PACBIO_SMRT,P2,16621.0,18304.0,21230.0,N/A,HG02615,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.77,33766412584.0,1761768.0,N/A,HG02615,SAMN26237508,GB29,GWD,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17180.0,19380.0,22494.0,SRR18189654,N/A,N/A,N/A,N/A,N/A,SAMN26237508,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210531_083342.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02615_lib1,single,size fractionation,GENOMIC,WGS,54872.0,19492.0,418.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02615/raw_data/PacBio_HiFi/m64136_210531_083342.hifi_reads.bam,PACBIO_SMRT,P2,16825.0,18669.0,21697.0,N/A,HG02615,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.48,32475308904.0,1666072.0,N/A,HG02615,SAMN26237508,GB29,GWD,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17182.0,19404.0,22518.0,SRR18189654,N/A,N/A,N/A,N/A,N/A,SAMN26237508,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210530_004827.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02615_lib1,single,size fractionation,GENOMIC,WGS,54925.0,19501.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02615/raw_data/PacBio_HiFi/m64136_210530_004827.hifi_reads.bam,PACBIO_SMRT,P2,16824.0,18684.0,21714.0,N/A,HG02615,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.74,32739078900.0,1678784.0,N/A,HG02615,SAMN26237508,GB29,GWD,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,20731.0,22740.0,25670.0,SRR13684390,N/A,N/A,N/A,N/A,N/A,SAMN17861664,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200603_012738.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02622_lib1,single,size fractionation,GENOMIC,WGS,49813.0,22969.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02622/raw_data/PacBio_HiFi/m64043_200603_012738.ccs.bam,PACBIO_SMRT,,20396.0,22214.0,24844.0,N/A,HG02622,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,35.16,35155415627.0,1530497.0,N/A,HG02622,SAMN17861664,GB31,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,20764.0,22784.0,25744.0,SRR13684390,N/A,N/A,N/A,N/A,N/A,SAMN17861664,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200604_075218.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02622_lib1,single,size fractionation,GENOMIC,WGS,50214.0,23018.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02622/raw_data/PacBio_HiFi/m64043_200604_075218.ccs.bam,PACBIO_SMRT,,20424.0,22252.0,24909.0,N/A,HG02622,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,34.7,34702534691.0,1507617.0,N/A,HG02622,SAMN17861664,GB31,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,20811.0,22892.0,25951.0,SRR13684390,N/A,N/A,N/A,N/A,N/A,SAMN17861664,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200530_164723.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02622_lib1,single,size fractionation,GENOMIC,WGS,49910.0,23125.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02622/raw_data/PacBio_HiFi/m64043_200530_164723.ccs.bam,PACBIO_SMRT,,20458.0,22331.0,25075.0,N/A,HG02622,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,37.23,37233379263.0,1610050.0,N/A,HG02622,SAMN17861664,GB31,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,20958.0,23109.0,26215.0,SRR13684390,N/A,N/A,N/A,N/A,N/A,SAMN17861664,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200601_191521.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02622_lib1,single,size fractionation,GENOMIC,WGS,49954.0,23320.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02622/raw_data/PacBio_HiFi/m64043_200601_191521.ccs.bam,PACBIO_SMRT,,20594.0,22526.0,25327.0,N/A,HG02622,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,36.9,36900505572.0,1582321.0,N/A,HG02622,SAMN17861664,GB31,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18152.0,21403.0,25741.0,SRR29405822,N/A,N/A,N/A,N/A,N/A,SAMN41021691,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231106_194835_s4.hifi_reads.bc1001.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02624_PB1_m84091_231106_194835_s4,single,size fractionation,GENOMIC,WGS,61392.0,21215.0,126.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02624/raw_data/PacBio_HiFi/m84091_231106_194835_s4.hifi_reads.bc1001.bam,PACBIO_SMRT,Revio P1,17347.0,20121.0,24002.0,N/A,HG02624,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,60.42,60423047644.0,2848011.0,N/A,HG02624,SAMN41021691,,GWD,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18409.0,21808.0,26342.0,SRR29405821,N/A,N/A,N/A,N/A,N/A,SAMN41021691,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231113_162942_s4.hifi_reads.bc1001.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02624_PB1_m84091_231113_162942_s4,single,size fractionation,GENOMIC,WGS,72097.0,21567.0,80.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02624/raw_data/PacBio_HiFi/m84091_231113_162942_s4.hifi_reads.bc1001.bam,PACBIO_SMRT,Revio P1,17534.0,20443.0,24485.0,N/A,HG02624,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,72.41,72407932208.0,3357318.0,N/A,HG02624,SAMN41021691,,GWD,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18713.0,22358.0,27192.0,SRR29405820,N/A,N/A,N/A,N/A,N/A,SAMN41021691,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231214_211211_s3.hifi_reads.bc1001.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02624_PB1_m84091_231214_211211_s3,single,size fractionation,GENOMIC,WGS,66338.0,22035.0,146.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02624/raw_data/PacBio_HiFi/m84091_231214_211211_s3.hifi_reads.bc1001.bam,PACBIO_SMRT,Revio P1,17740.0,20852.0,25145.0,N/A,HG02624,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,47.93,47928785289.0,2175052.0,N/A,HG02624,SAMN41021691,,GWD,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14319.0,17514.0,21621.0,SRR29405819,N/A,N/A,N/A,N/A,N/A,SAMN41021691,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240221_215958_s3.hifi_reads.bc1001.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02624_PB1_m84091_240221_215958_s3,single,size fractionation,GENOMIC,WGS,51714.0,16859.0,268.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02624/raw_data/PacBio_HiFi/m84091_240221_215958_s3.hifi_reads.bc1001.bam,PACBIO_SMRT,Revio P1,13197.0,16006.0,19706.0,N/A,HG02624,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,9.77,9765699517.0,579245.0,N/A,HG02624,SAMN41021691,,GWD,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17152.0,18935.0,21316.0,SRR13684389,N/A,N/A,N/A,N/A,N/A,SAMN17861665,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200501_162248.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02630_lib1,single,size fractionation,GENOMIC,WGS,49817.0,18982.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02630/raw_data/PacBio_HiFi/m64043_200501_162248.ccs.bam,PACBIO_SMRT,,16796.0,18472.0,20639.0,N/A,HG02630,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,39.4,39398066325.0,2075445.0,N/A,HG02630,SAMN17861665,GB33,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17331.0,19165.0,21633.0,SRR13684389,N/A,N/A,N/A,N/A,N/A,SAMN17861665,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200505_112554.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02630_lib1,single,size fractionation,GENOMIC,WGS,48960.0,19212.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02630/raw_data/PacBio_HiFi/m64043_200505_112554.ccs.bam,PACBIO_SMRT,,16966.0,18683.0,20926.0,N/A,HG02630,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,36.59,36589957988.0,1904474.0,N/A,HG02630,SAMN17861665,GB33,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17403.0,19260.0,21751.0,SRR13684389,N/A,N/A,N/A,N/A,N/A,SAMN17861665,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200504_050026.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02630_lib1,single,size fractionation,GENOMIC,WGS,49274.0,19300.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02630/raw_data/PacBio_HiFi/m64043_200504_050026.ccs.bam,PACBIO_SMRT,,17031.0,18769.0,21036.0,N/A,HG02630,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,37.59,37589214946.0,1947611.0,N/A,HG02630,SAMN17861665,GB33,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17527.0,19449.0,22047.0,SRR13684389,N/A,N/A,N/A,N/A,N/A,SAMN17861665,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200502_223511.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02630_lib1,single,size fractionation,GENOMIC,WGS,49229.0,19481.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02630/raw_data/PacBio_HiFi/m64043_200502_223511.ccs.bam,PACBIO_SMRT,,17138.0,18926.0,21293.0,N/A,HG02630,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,37.43,37434888190.0,1921608.0,N/A,HG02630,SAMN17861665,GB33,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17462.0,19578.0,23288.0,SRR18189652,N/A,N/A,N/A,N/A,N/A,SAMN26237509,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210517_184202.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02698_lib1,single,size fractionation,GENOMIC,WGS,56902.0,19940.0,633.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02698/raw_data/PacBio_HiFi/m64136_210517_184202.hifi_reads.bam,PACBIO_SMRT,P2,17123.0,18854.0,22222.0,N/A,HG02698,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.78,32782437878.0,1644028.0,N/A,HG02698,SAMN26237509,PK21,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17461.0,19577.0,23289.0,SRR18189652,N/A,N/A,N/A,N/A,N/A,SAMN26237509,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210514_184433.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02698_lib1,single,size fractionation,GENOMIC,WGS,57438.0,19944.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02698/raw_data/PacBio_HiFi/m64136_210514_184433.hifi_reads.bam,PACBIO_SMRT,P2,17123.0,18853.0,22227.0,N/A,HG02698,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,31.5,31502958375.0,1579519.0,N/A,HG02698,SAMN26237509,PK21,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17554.0,19788.0,23507.0,SRR18189652,N/A,N/A,N/A,N/A,N/A,SAMN26237509,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210519_013026.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02698_lib1,single,size fractionation,GENOMIC,WGS,54640.0,20083.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02698/raw_data/PacBio_HiFi/m64043_210519_013026.hifi_reads.bam,PACBIO_SMRT,P2,17194.0,18998.0,22461.0,N/A,HG02698,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.18,33178464571.0,1652007.0,N/A,HG02698,SAMN26237509,PK21,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15108.0,16669.0,19437.0,SRR13684388,N/A,N/A,N/A,N/A,N/A,SAMN17861666,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200403_163826.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02717_lib1,single,size fractionation,GENOMIC,WGS,49781.0,17048.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02717/raw_data/PacBio_HiFi/m64043_200403_163826.ccs.bam,PACBIO_SMRT,,14838.0,16196.0,18413.0,N/A,HG02717,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,36.34,36342520970.0,2131662.0,N/A,HG02717,SAMN17861666,GB50,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15160.0,16748.0,19581.0,SRR13684388,N/A,N/A,N/A,N/A,N/A,SAMN17861666,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200408_064651.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02717_lib1,single,size fractionation,GENOMIC,WGS,49936.0,17129.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02717/raw_data/PacBio_HiFi/m64043_200408_064651.ccs.bam,PACBIO_SMRT,,14884.0,16265.0,18536.0,N/A,HG02717,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,34.82,34817299277.0,2032542.0,N/A,HG02717,SAMN17861666,GB50,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15188.0,16776.0,19595.0,SRR13684388,N/A,N/A,N/A,N/A,N/A,SAMN17861666,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200405_180950.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02717_lib1,single,size fractionation,GENOMIC,WGS,49958.0,17151.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02717/raw_data/PacBio_HiFi/m64043_200405_180950.ccs.bam,PACBIO_SMRT,,14913.0,16294.0,18565.0,N/A,HG02717,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,34.32,34324816343.0,2001329.0,N/A,HG02717,SAMN17861666,GB50,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15201.0,16818.0,19702.0,SRR13684388,N/A,N/A,N/A,N/A,N/A,SAMN17861666,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200407_002219.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02717_lib1,single,size fractionation,GENOMIC,WGS,46041.0,17192.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02717/raw_data/PacBio_HiFi/m64043_200407_002219.ccs.bam,PACBIO_SMRT,,14920.0,16320.0,18637.0,N/A,HG02717,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,34.81,34814542915.0,2024928.0,N/A,HG02717,SAMN17861666,GB50,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17476.0,20753.0,24073.0,SRR18189651,N/A,N/A,N/A,N/A,N/A,SAMN26237510,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210723_184340.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02809_lib1,single,size fractionation,GENOMIC,WGS,63434.0,20456.0,111.0,bc1019 barcoded adapter,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02809/raw_data/PacBio_HiFi/m64043_210723_184340.hifi_reads.bam,PACBIO_SMRT,P2,17008.0,19683.0,22941.0,N/A,HG02809,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,29.21,29214139102.0,1428112.0,N/A,HG02809,SAMN26237510,GB63,GWD,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18029.0,21588.0,25022.0,SRR18189651,N/A,N/A,N/A,N/A,N/A,SAMN26237510,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210728_163353.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02809_lib1,single,size fractionation,GENOMIC,WGS,60391.0,21178.0,111.0,bc1019 barcoded adapter,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02809/raw_data/PacBio_HiFi/m64043_210728_163353.hifi_reads.bam,PACBIO_SMRT,P2,17406.0,20602.0,23832.0,N/A,HG02809,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,31.7,31703994871.0,1496989.0,N/A,HG02809,SAMN26237510,GB63,GWD,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18360.0,21931.0,25380.0,SRR18189651,N/A,N/A,N/A,N/A,N/A,SAMN26237510,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210726_163819.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02809_lib1,single,size fractionation,GENOMIC,WGS,63495.0,21488.0,111.0,bc1019 barcoded adapter,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02809/raw_data/PacBio_HiFi/m64043_210726_163819.hifi_reads.bam,PACBIO_SMRT,P2,17624.0,20956.0,24189.0,N/A,HG02809,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,24.56,24556655893.0,1142800.0,N/A,HG02809,SAMN26237510,GB63,GWD,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18342.0,21941.0,25421.0,SRR18189651,N/A,N/A,N/A,N/A,N/A,SAMN26237510,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210725_053930.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02809_lib1,single,size fractionation,GENOMIC,WGS,64323.0,21494.0,187.0,bc1019 barcoded adapter,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02809/raw_data/PacBio_HiFi/m64043_210725_053930.hifi_reads.bam,PACBIO_SMRT,P2,17612.0,20949.0,24207.0,N/A,HG02809,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,28.58,28581238388.0,1329702.0,N/A,HG02809,SAMN26237510,GB63,GWD,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15933.0,17391.0,19669.0,SRR13684387,N/A,N/A,N/A,N/A,N/A,SAMN17861667,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200410_214826.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02886_lib1,single,size fractionation,GENOMIC,WGS,50049.0,17675.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02886/raw_data/PacBio_HiFi/m64043_200410_214826.ccs.bam,PACBIO_SMRT,,15688.0,17002.0,18953.0,N/A,HG02886,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,34.1,34103394360.0,1929448.0,N/A,HG02886,SAMN17861667,GB89,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16010.0,17504.0,19854.0,SRR13684387,N/A,N/A,N/A,N/A,N/A,SAMN17861667,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200412_040054.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02886_lib1,single,size fractionation,GENOMIC,WGS,48163.0,17797.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02886/raw_data/PacBio_HiFi/m64043_200412_040054.ccs.bam,PACBIO_SMRT,,15758.0,17100.0,19106.0,N/A,HG02886,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,35.97,35972927628.0,2021284.0,N/A,HG02886,SAMN17861667,GB89,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16104.0,17657.0,20126.0,SRR13684387,N/A,N/A,N/A,N/A,N/A,SAMN17861667,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200414_165107.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02886_lib1,single,size fractionation,GENOMIC,WGS,50292.0,17954.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02886/raw_data/PacBio_HiFi/m64043_200414_165107.ccs.bam,PACBIO_SMRT,,15840.0,17229.0,19327.0,N/A,HG02886,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,33.76,33758955124.0,1880255.0,N/A,HG02886,SAMN17861667,GB89,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16302.0,17984.0,20716.0,SRR13684387,N/A,N/A,N/A,N/A,N/A,SAMN17861667,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200413_102554.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02886_lib1,single,size fractionation,GENOMIC,WGS,48532.0,18277.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02886/raw_data/PacBio_HiFi/m64043_200413_102554.ccs.bam,PACBIO_SMRT,,16011.0,17500.0,19798.0,N/A,HG02886,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,33.57,33571543462.0,1836728.0,N/A,HG02886,SAMN17861667,GB89,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18087.0,20257.0,24333.0,SRR23732290,N/A,N/A,N/A,N/A,N/A,SAMN33621954,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220717_152237-bc1017.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02965_lib1,single,size fractionation,GENOMIC,WGS,67060.0,20743.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02965/raw_data/PacBio_HiFi/m64043_220717_152237-bc1017.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17692.0,19502.0,22679.0,N/A,HG02965,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,40.12,40119820394.0,1934110.0,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18128.0,20329.0,24489.0,SRR23732290,N/A,N/A,N/A,N/A,N/A,SAMN33621954,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220719_122051-bc1017.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02965_lib1,single,size fractionation,GENOMIC,WGS,66417.0,20820.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02965/raw_data/PacBio_HiFi/m64043_220719_122051-bc1017.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17723.0,19557.0,22800.0,N/A,HG02965,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,41.99,41992148990.0,2016822.0,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18203.0,20521.0,24916.0,SRR23732290,N/A,N/A,N/A,N/A,N/A,SAMN33621954,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220715_182700-bc1017.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02965_lib1,single,size fractionation,GENOMIC,WGS,73722.0,20989.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02965/raw_data/PacBio_HiFi/m64043_220715_182700-bc1017.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17769.0,19678.0,23131.0,N/A,HG02965,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.65,35646111219.0,1698253.0,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18278.0,19846.0,21842.0,SRR23732289,N/A,N/A,N/A,N/A,N/A,SAMN33621955,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220726_203720-bc1009.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02976_lib1,single,size fractionation,GENOMIC,WGS,57617.0,19914.0,205.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/m64043_220726_203720-bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18011.0,19503.0,21372.0,N/A,HG02976,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,15.05,15045982932.0,755542.0,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18311.0,19886.0,21906.0,SRR23732289,N/A,N/A,N/A,N/A,N/A,SAMN33621955,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220621_134351-bc1009.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02976_lib1,single,size fractionation,GENOMIC,WGS,54707.0,19958.0,214.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/m64043_220621_134351-bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18038.0,19542.0,21427.0,N/A,HG02976,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,25.12,25120924503.0,1258651.0,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18314.0,19893.0,21915.0,SRR23732289,N/A,N/A,N/A,N/A,N/A,SAMN33621955,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220619_164635-bc1009.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02976_lib1,single,size fractionation,GENOMIC,WGS,69085.0,19961.0,633.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/m64043_220619_164635-bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18043.0,19546.0,21434.0,N/A,HG02976,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.29,37286464203.0,1867914.0,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18347.0,19941.0,21988.0,SRR23732289,N/A,N/A,N/A,N/A,N/A,SAMN33621955,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220617_195135-bc1009.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02976_lib1,single,size fractionation,GENOMIC,WGS,53116.0,20017.0,396.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/m64043_220617_195135-bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18072.0,19589.0,21498.0,N/A,HG02976,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.33,35330491836.0,1765009.0,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17504.0,20673.0,25130.0,SRR29405818,N/A,N/A,N/A,N/A,N/A,SAMN41021703,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240122_201558_s1.hifi_reads.bc1012.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03072_PB1_m84091_240122_201558_s1,single,size fractionation,GENOMIC,WGS,63436.0,20638.0,114.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03072/raw_data/PacBio_HiFi/m84091_240122_201558_s1.hifi_reads.bc1012.bam,PACBIO_SMRT,Revio P1,16770.0,19387.0,23268.0,N/A,HG03072,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,72.76,72760626031.0,3525553.0,N/A,HG03072,SAMN41021703,,MSL,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16266.0,20382.0,25318.0,SRR29405817,N/A,N/A,N/A,N/A,N/A,SAMN41021703,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240311_165640_s2.hifi_reads.bc1012.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03072_PB1_m84091_240311_165640_s2,single,size fractionation,GENOMIC,WGS,77803.0,19233.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03072/raw_data/PacBio_HiFi/m84091_240311_165640_s2.hifi_reads.bc1012.bam,PACBIO_SMRT,Revio P1,14598.0,18306.0,22883.0,N/A,HG03072,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,89.67,89666821979.0,4661892.0,N/A,HG03072,SAMN41021703,,MSL,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16627.0,20884.0,25858.0,SRR29405816,N/A,N/A,N/A,N/A,N/A,SAMN41021703,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240315_193817_s2.hifi_reads.bc1012.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03072_PB1_m84091_240315_193817_s2,single,size fractionation,GENOMIC,WGS,57237.0,19655.0,115.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03072/raw_data/PacBio_HiFi/m84091_240315_193817_s2.hifi_reads.bc1012.bam,PACBIO_SMRT,Revio P1,14915.0,18745.0,23432.0,N/A,HG03072,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,43.08,43084215319.0,2191963.0,N/A,HG03072,SAMN41021703,,MSL,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18477.0,22138.0,26903.0,SRR29405814,N/A,N/A,N/A,N/A,N/A,SAMN41021694,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231113_170005_s1.hifi_reads.bc1008.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03108_PB1_m84091_231113_170005_s1,single,size fractionation,GENOMIC,WGS,64350.0,21758.0,156.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03108/raw_data/PacBio_HiFi/m84091_231113_170005_s1.hifi_reads.bc1008.bam,PACBIO_SMRT,Revio P1,17455.0,20616.0,24894.0,N/A,HG03108,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,49.18,49182307712.0,2260373.0,N/A,HG03108,SAMN41021694,,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18635.0,22455.0,27452.0,SRR29405813,N/A,N/A,N/A,N/A,N/A,SAMN41021694,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231214_200959_s1.hifi_reads.bc1008.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03108_PB1_m84091_231214_200959_s1,single,size fractionation,GENOMIC,WGS,65917.0,22030.0,163.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03108/raw_data/PacBio_HiFi/m84091_231214_200959_s1.hifi_reads.bc1008.bam,PACBIO_SMRT,Revio P1,17551.0,20828.0,25292.0,N/A,HG03108,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,61.87,61873183479.0,2808537.0,N/A,HG03108,SAMN41021694,,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15702.0,19375.0,23712.0,SRR29405812,N/A,N/A,N/A,N/A,N/A,SAMN41021694,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240308_215845_s3.hifi_reads.bc1008.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03108_PB1_m84091_240308_215845_s3,single,size fractionation,GENOMIC,WGS,59387.0,18325.0,138.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03108/raw_data/PacBio_HiFi/m84091_240308_215845_s3.hifi_reads.bc1008.bam,PACBIO_SMRT,Revio P1,14205.0,17621.0,21682.0,N/A,HG03108,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,85.74,85735358906.0,4678487.0,N/A,HG03108,SAMN41021694,,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17895.0,20471.0,24342.0,SRR23732288,N/A,N/A,N/A,N/A,N/A,SAMN33621956,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220619_164654-bc1010.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03195_lib1,single,size fractionation,GENOMIC,WGS,64535.0,20666.0,52.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/m64136_220619_164654-bc1010.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17464.0,19472.0,23096.0,N/A,HG03195,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.9,34900743310.0,1688750.0,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17921.0,20557.0,24463.0,SRR23732288,N/A,N/A,N/A,N/A,N/A,SAMN33621956,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220617_195203-bc1010.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03195_lib1,single,size fractionation,GENOMIC,WGS,68687.0,20729.0,54.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/m64136_220617_195203-bc1010.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17481.0,19529.0,23196.0,N/A,HG03195,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.39,38391026616.0,1851955.0,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18042.0,20781.0,24628.0,SRR23732288,N/A,N/A,N/A,N/A,N/A,SAMN33621956,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220621_134558-bc1010.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03195_lib1,single,size fractionation,GENOMIC,WGS,69884.0,20880.0,139.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/m64136_220621_134558-bc1010.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17587.0,19710.0,23384.0,N/A,HG03195,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.83,32834403528.0,1572497.0,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,21539.0,23799.0,26818.0,SRR23732288,N/A,N/A,N/A,N/A,N/A,SAMN33621956,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220726_203720-bc1010.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03195_lib1,single,size fractionation,GENOMIC,WGS,57429.0,23841.0,894.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/m64043_220726_203720-bc1010.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,21102.0,23205.0,25986.0,N/A,HG03195,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,2.81,2810055296.0,117862.0,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18363.0,20023.0,22169.0,SRR23732287,N/A,N/A,N/A,N/A,N/A,SAMN33621957,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220726_203720-bc1008.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03225_lib1,single,size fractionation,GENOMIC,WGS,59173.0,20095.0,521.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03225/raw_data/PacBio_HiFi/m64043_220726_203720-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18057.0,19643.0,21619.0,N/A,HG03225,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,23.86,23862784465.0,1187476.0,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19029.0,21243.0,24403.0,SRR23732287,N/A,N/A,N/A,N/A,N/A,SAMN33621957,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220516_150157-bc1008.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03225_lib1,single,size fractionation,GENOMIC,WGS,56783.0,21296.0,83.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03225/raw_data/PacBio_HiFi/m64043_220516_150157-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18584.0,20581.0,23437.0,N/A,HG03225,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,28.64,28643913675.0,1344981.0,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19060.0,21306.0,24500.0,SRR23732287,N/A,N/A,N/A,N/A,N/A,SAMN33621957,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220518_120044-bc1008.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03225_lib1,single,size fractionation,GENOMIC,WGS,64236.0,21357.0,188.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03225/raw_data/PacBio_HiFi/m64043_220518_120044-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18611.0,20634.0,23516.0,N/A,HG03225,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.73,32725639816.0,1532258.0,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19083.0,21321.0,24508.0,SRR23732287,N/A,N/A,N/A,N/A,N/A,SAMN33621957,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220518_004520-bc1008.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03225_lib1,single,size fractionation,GENOMIC,WGS,56904.0,21381.0,83.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03225/raw_data/PacBio_HiFi/m64136_220518_004520-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18637.0,20656.0,23529.0,N/A,HG03225,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,26.98,26980532443.0,1261872.0,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17041.0,19750.0,23558.0,SRR29405811,N/A,N/A,N/A,N/A,N/A,SAMN41021631,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230707_175906_s3.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03270_PB1_m84091_230707_175906_s3,single,size fractionation,GENOMIC,WGS,62381.0,19740.0,75.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03270/raw_data/PacBio_HiFi/m84091_230707_175906_s3.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,16442.0,18758.0,22106.0,N/A,HG03270,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,112.11,112105606405.0,5678941.0,N/A,HG03270,SAMN41021631,,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17028.0,19751.0,23619.0,SRR29405810,N/A,N/A,N/A,N/A,N/A,SAMN41021631,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230710_183139_s4.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03270_PB1_m84091_230710_183139_s4,single,size fractionation,GENOMIC,WGS,63760.0,19750.0,102.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03270/raw_data/PacBio_HiFi/m84091_230710_183139_s4.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,16426.0,18741.0,22134.0,N/A,HG03270,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,87.91,87910720528.0,4451148.0,N/A,HG03270,SAMN41021631,,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16681.0,19722.0,23552.0,SRR29405802,N/A,N/A,N/A,N/A,N/A,SAMN41021668,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230721_145006_s3.hifi_reads.bc1009.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03369_PB1_m84091_230721_145006_s3,single,size fractionation,GENOMIC,WGS,62946.0,19379.0,109.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03369/raw_data/PacBio_HiFi/m84091_230721_145006_s3.hifi_reads.bc1009.bam,PACBIO_SMRT,Revio P1,15812.0,18566.0,22028.0,N/A,HG03369,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,91.7,91700590557.0,4731803.0,N/A,HG03369,SAMN41021668,,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16806.0,19695.0,23620.0,SRR29405803,N/A,N/A,N/A,N/A,N/A,SAMN41021668,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230727_135923_s3.hifi_reads.bc1009.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03369_PB1_m84091_230727_135923_s3,single,size fractionation,GENOMIC,WGS,62797.0,19550.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03369/raw_data/PacBio_HiFi/m84091_230727_135923_s3.hifi_reads.bc1009.bam,PACBIO_SMRT,Revio P1,16081.0,18597.0,22062.0,N/A,HG03369,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,99.03,99031742869.0,5065533.0,N/A,HG03369,SAMN41021668,,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17280.0,19956.0,23721.0,SRR29405804,N/A,N/A,N/A,N/A,N/A,SAMN41021693,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231106_201855_s1.hifi_reads.bc1003.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03372_PB1_m84091_231106_201855_s1,single,size fractionation,GENOMIC,WGS,61686.0,20025.0,124.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03372/raw_data/PacBio_HiFi/m84091_231106_201855_s1.hifi_reads.bc1003.bam,PACBIO_SMRT,Revio P1,16723.0,18985.0,22321.0,N/A,HG03372,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,82.65,82654306669.0,4127489.0,N/A,HG03372,SAMN41021693,,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17441.0,20290.0,24317.0,SRR29405805,N/A,N/A,N/A,N/A,N/A,SAMN41021693,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231214_204105_s2.hifi_reads.bc1003.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03372_PB1_m84091_231214_204105_s2,single,size fractionation,GENOMIC,WGS,56430.0,20339.0,163.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03372/raw_data/PacBio_HiFi/m84091_231214_204105_s2.hifi_reads.bc1003.bam,PACBIO_SMRT,Revio P1,16831.0,19214.0,22762.0,N/A,HG03372,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,36.64,36636856565.0,1801269.0,N/A,HG03372,SAMN41021693,,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18701.0,24138.0,30172.0,SRR29405806,N/A,N/A,N/A,N/A,N/A,SAMN41021693,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240308_212739_s2.hifi_reads.bc1003.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03372_PB1_m84091_240308_212739_s2,single,size fractionation,GENOMIC,WGS,68454.0,21771.0,54.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03372/raw_data/PacBio_HiFi/m84091_240308_212739_s2.hifi_reads.bc1003.bam,PACBIO_SMRT,Revio P1,15590.0,20986.0,26861.0,N/A,HG03372,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,85.79,85787605612.0,3940309.0,N/A,HG03372,SAMN41021693,,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17553.0,21018.0,25786.0,SRR29405808,N/A,N/A,N/A,N/A,N/A,SAMN41021704,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240110_204947_s3.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03445_PB1_m84091_240110_204947_s3,single,size fractionation,GENOMIC,WGS,67580.0,20874.0,87.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03445/raw_data/PacBio_HiFi/m84091_240110_204947_s3.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,16709.0,19547.0,23723.0,N/A,HG03445,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,65.1,65097127516.0,3118474.0,N/A,HG03445,SAMN41021704,,MSL,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14791.0,18152.0,22221.0,SRR29405809,N/A,N/A,N/A,N/A,N/A,SAMN41021704,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240311_162534_s1.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03445_PB1_m84091_240311_162534_s1,single,size fractionation,GENOMIC,WGS,50409.0,17376.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03445/raw_data/PacBio_HiFi/m84091_240311_162534_s1.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,13606.0,16599.0,20388.0,N/A,HG03445,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,85.92,85916791479.0,4944409.0,N/A,HG03445,SAMN41021704,,MSL,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14916.0,18324.0,22466.0,SRR29405785,N/A,N/A,N/A,N/A,N/A,SAMN41021704,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240315_193817_s2.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03445_PB1_m84091_240315_193817_s2,single,size fractionation,GENOMIC,WGS,54186.0,17544.0,394.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03445/raw_data/PacBio_HiFi/m84091_240315_193817_s2.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,13717.0,16738.0,20594.0,N/A,HG03445,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,45.31,45311493139.0,2582676.0,N/A,HG03445,SAMN41021704,,MSL,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18033.0,19810.0,22523.0,SRR13684386,N/A,N/A,N/A,N/A,N/A,SAMN17861668,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200511_060458.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03453_lib1,single,size fractionation,GENOMIC,WGS,48820.0,20066.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03453/raw_data/PacBio_HiFi/m64043_200511_060458.ccs.bam,PACBIO_SMRT,,17726.0,19328.0,21710.0,N/A,HG03453,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,39.53,39526964195.0,1969769.0,N/A,HG03453,SAMN17861668,SL50,MSL,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18055.0,19851.0,22597.0,SRR13684386,N/A,N/A,N/A,N/A,N/A,SAMN17861668,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200508_172634.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03453_lib1,single,size fractionation,GENOMIC,WGS,49546.0,20105.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03453/raw_data/PacBio_HiFi/m64043_200508_172634.ccs.bam,PACBIO_SMRT,,17748.0,19359.0,21770.0,N/A,HG03453,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,40.65,40647101711.0,2021670.0,N/A,HG03453,SAMN17861668,SL50,MSL,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18068.0,19864.0,22610.0,SRR13684386,N/A,N/A,N/A,N/A,N/A,SAMN17861668,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200509_233929.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03453_lib1,single,size fractionation,GENOMIC,WGS,49421.0,20117.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03453/raw_data/PacBio_HiFi/m64043_200509_233929.ccs.bam,PACBIO_SMRT,,17757.0,19373.0,21782.0,N/A,HG03453,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,41.59,41586898493.0,2067165.0,N/A,HG03453,SAMN17861668,SL50,MSL,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18171.0,20011.0,22800.0,SRR13684386,N/A,N/A,N/A,N/A,N/A,SAMN17861668,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200512_123035.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03453_lib1,single,size fractionation,GENOMIC,WGS,49779.0,20253.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03453/raw_data/PacBio_HiFi/m64043_200512_123035.ccs.bam,PACBIO_SMRT,,17855.0,19506.0,21962.0,N/A,HG03453,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,38.49,38494019627.0,1900582.0,N/A,HG03453,SAMN17861668,SL50,MSL,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17163.0,19140.0,22070.0,SRR13684385,N/A,N/A,N/A,N/A,N/A,SAMN17861669,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200606_175618.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03471_lib1,single,size fractionation,GENOMIC,WGS,50100.0,19241.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03471/raw_data/PacBio_HiFi/m64043_200606_175618.ccs.bam,PACBIO_SMRT,,16785.0,18546.0,21161.0,N/A,HG03471,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,40.47,40465702550.0,2102995.0,N/A,HG03471,SAMN17861669,SL56i,MSL,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17226.0,19219.0,22152.0,SRR13684385,N/A,N/A,N/A,N/A,N/A,SAMN17861669,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200611_073649.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03471_lib1,single,size fractionation,GENOMIC,WGS,49235.0,19314.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03471/raw_data/PacBio_HiFi/m64043_200611_073649.ccs.bam,PACBIO_SMRT,,16846.0,18626.0,21244.0,N/A,HG03471,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,37.35,37350112108.0,1933742.0,N/A,HG03471,SAMN17861669,SL56i,MSL,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17230.0,19223.0,22153.0,SRR13684385,N/A,N/A,N/A,N/A,N/A,SAMN17861669,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200608_185843.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03471_lib1,single,size fractionation,GENOMIC,WGS,49844.0,19316.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03471/raw_data/PacBio_HiFi/m64043_200608_185843.ccs.bam,PACBIO_SMRT,,16854.0,18631.0,21249.0,N/A,HG03471,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,39.51,39510858680.0,2045451.0,N/A,HG03471,SAMN17861669,SL56i,MSL,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17258.0,19270.0,22213.0,SRR13684385,N/A,N/A,N/A,N/A,N/A,SAMN17861669,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200610_011156.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03471_lib1,single,size fractionation,GENOMIC,WGS,49263.0,19357.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03471/raw_data/PacBio_HiFi/m64043_200610_011156.ccs.bam,PACBIO_SMRT,,16876.0,18668.0,21304.0,N/A,HG03471,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,39.85,39846677634.0,2058511.0,N/A,HG03471,SAMN17861669,SL56i,MSL,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16807.0,18511.0,20742.0,SRR13684285,N/A,N/A,N/A,N/A,N/A,SAMN17861241,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_200610_234222.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03516_HiFiEx_mix,single,size fractionation,GENOMIC,WGS,50324.0,18582.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03516/raw_data/PacBio_HiFi/m54329U_200610_234222.ccs.bam,PACBIO_SMRT,P2.0,16469.0,18063.0,20094.0,N/A,HG03516,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,33.01,33007183462.0,1776238.0,N/A,HG03516,SAMN17861241,NG107,ESN,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16845.0,18537.0,20735.0,SRR13684285,N/A,N/A,N/A,N/A,N/A,SAMN17861241,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_200615_084313.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03516_HiFiEx_mix,single,size fractionation,GENOMIC,WGS,50179.0,18595.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03516/raw_data/PacBio_HiFi/m54329U_200615_084313.ccs.bam,PACBIO_SMRT,P2.0,16514.0,18100.0,20110.0,N/A,HG03516,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,23.95,23954636179.0,1288191.0,N/A,HG03516,SAMN17861241,NG107,ESN,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16949.0,18686.0,20974.0,SRR13684285,N/A,N/A,N/A,N/A,N/A,SAMN17861241,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_200612_200443.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03516_HiFiEx_mix,single,size fractionation,GENOMIC,WGS,50430.0,18775.0,49.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03516/raw_data/PacBio_HiFi/m54329U_200612_200443.ccs.bam,PACBIO_SMRT,P2.0,16605.0,18226.0,20301.0,N/A,HG03516,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,32.63,32626020099.0,1737663.0,N/A,HG03516,SAMN17861241,NG107,ESN,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17213.0,19030.0,21427.0,SRR13684285,N/A,N/A,N/A,N/A,N/A,SAMN17861241,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_200614_021746.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03516_HiFiEx_mix,single,size fractionation,GENOMIC,WGS,50513.0,19116.0,49.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03516/raw_data/PacBio_HiFi/m54329U_200614_021746.ccs.bam,PACBIO_SMRT,P2.0,16849.0,18544.0,20706.0,N/A,HG03516,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,20.66,20658278395.0,1080637.0,N/A,HG03516,SAMN17861241,NG107,ESN,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18596.0,20429.0,23160.0,SRR13684384,N/A,N/A,N/A,N/A,N/A,SAMN17861670,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200522_232930.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03540_lib1,single,size fractionation,GENOMIC,WGS,49881.0,20684.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03540/raw_data/PacBio_HiFi/m64043_200522_232930.ccs.bam,PACBIO_SMRT,,18291.0,19937.0,22355.0,N/A,HG03540,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,38.06,38058368349.0,1839904.0,N/A,HG03540,SAMN17861670,GB125,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18612.0,20457.0,23197.0,SRR13684384,N/A,N/A,N/A,N/A,N/A,SAMN17861670,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200521_171703.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03540_lib1,single,size fractionation,GENOMIC,WGS,49707.0,20711.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03540/raw_data/PacBio_HiFi/m64043_200521_171703.ccs.bam,PACBIO_SMRT,,18299.0,19960.0,22387.0,N/A,HG03540,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,39.3,39298150274.0,1897441.0,N/A,HG03540,SAMN17861670,GB125,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18658.0,20527.0,23305.0,SRR13684384,N/A,N/A,N/A,N/A,N/A,SAMN17861670,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200524_055430.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03540_lib1,single,size fractionation,GENOMIC,WGS,49994.0,20781.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03540/raw_data/PacBio_HiFi/m64043_200524_055430.ccs.bam,PACBIO_SMRT,,18344.0,20019.0,22480.0,N/A,HG03540,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,38.6,38599915696.0,1857442.0,N/A,HG03540,SAMN17861670,GB125,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18772.0,20701.0,23544.0,SRR13684384,N/A,N/A,N/A,N/A,N/A,SAMN17861670,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200525_121851.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03540_lib1,single,size fractionation,GENOMIC,WGS,50154.0,20937.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03540/raw_data/PacBio_HiFi/m64043_200525_121851.ccs.bam,PACBIO_SMRT,,18442.0,20175.0,22698.0,N/A,HG03540,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,37.45,37451931637.0,1788752.0,N/A,HG03540,SAMN17861670,GB125,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17501.0,19337.0,21963.0,SRR13684383,N/A,N/A,N/A,N/A,N/A,SAMN17861671,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200518_053124.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03579_lib1,single,size fractionation,GENOMIC,WGS,49746.0,19480.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03579/raw_data/PacBio_HiFi/m64043_200518_053124.ccs.bam,PACBIO_SMRT,,17136.0,18826.0,21141.0,N/A,HG03579,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,39.17,39165319090.0,2010535.0,N/A,HG03579,SAMN17861671,SL72,MSL,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17516.0,19348.0,21959.0,SRR13684383,N/A,N/A,N/A,N/A,N/A,SAMN17861671,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200519_115622.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03579_lib1,single,size fractionation,GENOMIC,WGS,49406.0,19492.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03579/raw_data/PacBio_HiFi/m64043_200519_115622.ccs.bam,PACBIO_SMRT,,17156.0,18841.0,21146.0,N/A,HG03579,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,38.22,38217075483.0,1960652.0,N/A,HG03579,SAMN17861671,SL72,MSL,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17578.0,19426.0,22029.0,SRR13684383,N/A,N/A,N/A,N/A,N/A,SAMN17861671,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200515_165406.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03579_lib1,single,size fractionation,GENOMIC,WGS,48582.0,19543.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03579/raw_data/PacBio_HiFi/m64043_200515_165406.ccs.bam,PACBIO_SMRT,,17216.0,18917.0,21227.0,N/A,HG03579,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,33.33,33330044108.0,1705389.0,N/A,HG03579,SAMN17861671,SL72,MSL,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17647.0,19522.0,22212.0,SRR13684383,N/A,N/A,N/A,N/A,N/A,SAMN17861671,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200516_230634.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03579_lib1,single,size fractionation,GENOMIC,WGS,49804.0,19671.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03579/raw_data/PacBio_HiFi/m64043_200516_230634.ccs.bam,PACBIO_SMRT,,17279.0,18999.0,21365.0,N/A,HG03579,N/A,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,39.28,39277340010.0,1996694.0,N/A,HG03579,SAMN17861671,SL72,MSL,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19013.0,23261.0,28516.0,SRR29405786,N/A,N/A,N/A,N/A,N/A,SAMN41021645,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230712_170232_s2.hifi_reads.bc1020.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03583_PB1_m84091_230712_170232_s2,single,size fractionation,GENOMIC,WGS,66232.0,22547.0,53.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03583/raw_data/PacBio_HiFi/m84091_230712_170232_s2.hifi_reads.bc1020.bam,PACBIO_SMRT,Revio P1,17663.0,21381.0,26167.0,N/A,HG03583,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,89.6,89601336260.0,3973911.0,N/A,HG03583,SAMN41021645,SL73,MSL,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,2251.0,2798.0,3414.0,SRR29405787,N/A,N/A,N/A,N/A,N/A,SAMN41021645,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230719_172335_s4.hifi_reads.bc1020.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03583_PB1_m84091_230719_172335_s4,single,size fractionation,GENOMIC,WGS,4840.0,2542.0,129.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03583/raw_data/PacBio_HiFi/m84091_230719_172335_s4.hifi_reads.bc1020.bam,PACBIO_SMRT,Revio P1,1974.0,2512.0,3146.0,N/A,HG03583,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,0.0,617846.0,243.0,N/A,HG03583,SAMN41021645,SL73,MSL,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18957.0,23160.0,28344.0,SRR29405788,N/A,N/A,N/A,N/A,N/A,SAMN41021645,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230727_132817_s2.hifi_reads.bc1020.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03583_PB1_m84091_230727_132817_s2,single,size fractionation,GENOMIC,WGS,63881.0,22468.0,70.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03583/raw_data/PacBio_HiFi/m84091_230727_132817_s2.hifi_reads.bc1020.bam,PACBIO_SMRT,Revio P1,17637.0,21312.0,26030.0,N/A,HG03583,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,73.59,73592673188.0,3275414.0,N/A,HG03583,SAMN41021645,SL73,MSL,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17589.0,21310.0,26145.0,SRR29405789,N/A,N/A,N/A,N/A,N/A,SAMN41021645,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230817_153352_s4.hifi_reads.bc1020.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03583_PB1_m84091_230817_153352_s4,single,size fractionation,GENOMIC,WGS,58773.0,20982.0,374.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03583/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1020.bam,PACBIO_SMRT,Revio P1,16579.0,19701.0,24014.0,N/A,HG03583,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,13.82,13823052723.0,658801.0,N/A,HG03583,SAMN41021645,SL73,MSL,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16400.0,18463.0,21660.0,SRR18189650,N/A,N/A,N/A,N/A,N/A,SAMN26237511,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210522_023949.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03654_lib1,single,size fractionation,GENOMIC,WGS,54542.0,18706.0,527.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03654/raw_data/PacBio_HiFi/m64043_210522_023949.hifi_reads.bam,PACBIO_SMRT,P2,16104.0,17719.0,20827.0,N/A,HG03654,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,26.32,26324187893.0,1407194.0,N/A,HG03654,SAMN26237511,PK53,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16591.0,18881.0,22010.0,SRR18189650,N/A,N/A,N/A,N/A,N/A,SAMN26237511,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210528_171552.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03654_lib1,single,size fractionation,GENOMIC,WGS,50438.0,18974.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03654/raw_data/PacBio_HiFi/m64043_210528_171552.hifi_reads.bam,PACBIO_SMRT,P2,16266.0,18022.0,21176.0,N/A,HG03654,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,21.29,21288110123.0,1121956.0,N/A,HG03654,SAMN26237511,PK53,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16575.0,18943.0,22091.0,SRR18189650,N/A,N/A,N/A,N/A,N/A,SAMN26237511,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210524_174752.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03654_lib1,single,size fractionation,GENOMIC,WGS,65226.0,19002.0,531.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03654/raw_data/PacBio_HiFi/m64043_210524_174752.hifi_reads.bam,PACBIO_SMRT,P2,16238.0,18030.0,21236.0,N/A,HG03654,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.31,32313779561.0,1700544.0,N/A,HG03654,SAMN26237511,PK53,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16568.0,18939.0,22101.0,SRR18189650,N/A,N/A,N/A,N/A,N/A,SAMN26237511,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210523_101851.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03654_lib1,single,size fractionation,GENOMIC,WGS,60353.0,18996.0,90.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03654/raw_data/PacBio_HiFi/m64043_210523_101851.hifi_reads.bam,PACBIO_SMRT,P2,16229.0,18023.0,21237.0,N/A,HG03654,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.13,34126728073.0,1796437.0,N/A,HG03654,SAMN26237511,PK53,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17495.0,19855.0,21956.0,SRR18189649,N/A,N/A,N/A,N/A,N/A,SAMN26237512,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210610_203329.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03669_lib1,single,size fractionation,GENOMIC,WGS,54502.0,19359.0,205.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03669/raw_data/PacBio_HiFi/m64043_210610_203329.hifi_reads.bam,PACBIO_SMRT,P2,16737.0,19354.0,21419.0,N/A,HG03669,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,24.9,24900003751.0,1286203.0,N/A,HG03669,SAMN26237512,PK58,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18112.0,20210.0,22305.0,SRR18189649,N/A,N/A,N/A,N/A,N/A,SAMN26237512,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210607_090252.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03669_lib1,single,size fractionation,GENOMIC,WGS,56463.0,19746.0,128.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03669/raw_data/PacBio_HiFi/m64043_210607_090252.hifi_reads.bam,PACBIO_SMRT,P2,17364.0,19742.0,21779.0,N/A,HG03669,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,22.27,22267350582.0,1127654.0,N/A,HG03669,SAMN26237512,PK58,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18247.0,20290.0,22400.0,SRR18189649,N/A,N/A,N/A,N/A,N/A,SAMN26237512,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210604_175624.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03669_lib1,single,size fractionation,GENOMIC,WGS,56876.0,19858.0,648.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03669/raw_data/PacBio_HiFi/m64043_210604_175624.hifi_reads.bam,PACBIO_SMRT,P2,17539.0,19825.0,21872.0,N/A,HG03669,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.22,33224375908.0,1673096.0,N/A,HG03669,SAMN26237512,PK58,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18480.0,20459.0,22587.0,SRR18189649,N/A,N/A,N/A,N/A,N/A,SAMN26237512,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210606_013256.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03669_lib1,single,size fractionation,GENOMIC,WGS,53173.0,20045.0,620.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03669/raw_data/PacBio_HiFi/m64043_210606_013256.hifi_reads.bam,PACBIO_SMRT,P2,17833.0,19999.0,22059.0,N/A,HG03669,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.95,32948988442.0,1643693.0,N/A,HG03669,SAMN26237512,PK58,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17783.0,20616.0,24485.0,SRR29405790,N/A,N/A,N/A,N/A,N/A,SAMN41021692,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231106_212107_s3.hifi_reads.bc1021.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03672_PB1_m84091_231106_212107_s3,single,size fractionation,GENOMIC,WGS,65187.0,20604.0,66.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03672/raw_data/PacBio_HiFi/m84091_231106_212107_s3.hifi_reads.bc1021.bam,PACBIO_SMRT,Revio P1,17161.0,19586.0,23056.0,N/A,HG03672,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,74.69,74693823037.0,3625163.0,N/A,HG03672,SAMN41021692,,STU,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17592.0,20281.0,23965.0,SRR29405791,N/A,N/A,N/A,N/A,N/A,SAMN41021692,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231113_173111_s2.hifi_reads.bc1021.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03672_PB1_m84091_231113_173111_s2,single,size fractionation,GENOMIC,WGS,54675.0,20297.0,55.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03672/raw_data/PacBio_HiFi/m84091_231113_173111_s2.hifi_reads.bc1021.bam,PACBIO_SMRT,Revio P1,17020.0,19332.0,22627.0,N/A,HG03672,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,69.52,69517456229.0,3424955.0,N/A,HG03672,SAMN41021692,,STU,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,13591.0,16630.0,20613.0,SRR29405792,N/A,N/A,N/A,N/A,N/A,SAMN41021692,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240221_215958_s3.hifi_reads.bc1021.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03672_PB1_m84091_240221_215958_s3,single,size fractionation,GENOMIC,WGS,54296.0,16009.0,123.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03672/raw_data/PacBio_HiFi/m84091_240221_215958_s3.hifi_reads.bc1021.bam,PACBIO_SMRT,Revio P1,12485.0,15175.0,18679.0,N/A,HG03672,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,55.14,55137884001.0,3444164.0,N/A,HG03672,SAMN41021692,,STU,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17585.0,19797.0,24006.0,SRR18189648,N/A,N/A,N/A,N/A,N/A,SAMN26237513,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210514_184131.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03710_lib1,single,size fractionation,GENOMIC,WGS,59530.0,20384.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03710/raw_data/PacBio_HiFi/m64043_210514_184131.hifi_reads.bam,PACBIO_SMRT,P2,17210.0,18949.0,22578.0,N/A,HG03710,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.92,32918659468.0,1614922.0,N/A,HG03710,SAMN26237513,PK62,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17782.0,20332.0,24670.0,SRR18189648,N/A,N/A,N/A,N/A,N/A,SAMN26237513,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210516_020821.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03710_lib1,single,size fractionation,GENOMIC,WGS,61709.0,20760.0,549.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03710/raw_data/PacBio_HiFi/m64043_210516_020821.hifi_reads.bam,PACBIO_SMRT,P2,17357.0,19260.0,23148.0,N/A,HG03710,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.21,35214602226.0,1696236.0,N/A,HG03710,SAMN26237513,PK62,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17796.0,20381.0,24696.0,SRR18189648,N/A,N/A,N/A,N/A,N/A,SAMN26237513,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210517_175123.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03710_lib1,single,size fractionation,GENOMIC,WGS,61973.0,20781.0,108.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03710/raw_data/PacBio_HiFi/m64043_210517_175123.hifi_reads.bam,PACBIO_SMRT,P2,17364.0,19286.0,23189.0,N/A,HG03710,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.42,33421412427.0,1608247.0,N/A,HG03710,SAMN26237513,PK62,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,19731.0,21450.0,23911.0,SRR18189647,N/A,N/A,N/A,N/A,N/A,SAMN26237514,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210614_204240.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03831_lib1,single,size fractionation,GENOMIC,WGS,54835.0,21688.0,402.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03831/raw_data/PacBio_HiFi/m64136_210614_204240.hifi_reads.bam,PACBIO_SMRT,P2,19447.0,21037.0,23248.0,N/A,HG03831,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,18.67,18666458074.0,860681.0,N/A,HG03831,SAMN26237514,BD27,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,19746.0,21472.0,23951.0,SRR18189647,N/A,N/A,N/A,N/A,N/A,SAMN26237514,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210613_130744.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03831_lib1,single,size fractionation,GENOMIC,WGS,56331.0,21716.0,385.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03831/raw_data/PacBio_HiFi/m64136_210613_130744.hifi_reads.bam,PACBIO_SMRT,P2,19461.0,21056.0,23284.0,N/A,HG03831,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,19.37,19374660094.0,892173.0,N/A,HG03831,SAMN26237514,BD27,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,19766.0,21495.0,23983.0,SRR18189647,N/A,N/A,N/A,N/A,N/A,SAMN26237514,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210612_053350.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03831_lib1,single,size fractionation,GENOMIC,WGS,55969.0,21743.0,641.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03831/raw_data/PacBio_HiFi/m64136_210612_053350.hifi_reads.bam,PACBIO_SMRT,P2,19481.0,21077.0,23313.0,N/A,HG03831,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,19.14,19144027234.0,880429.0,N/A,HG03831,SAMN26237514,BD27,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,19790.0,21555.0,24089.0,SRR18189647,N/A,N/A,N/A,N/A,N/A,SAMN26237514,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210618_184849.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03831_lib1,single,size fractionation,GENOMIC,WGS,61821.0,21813.0,90.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03831/raw_data/PacBio_HiFi/m64136_210618_184849.hifi_reads.bam,PACBIO_SMRT,P2,19499.0,21123.0,23395.0,N/A,HG03831,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.5,38500629563.0,1764977.0,N/A,HG03831,SAMN26237514,BD27,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19071.0,20638.0,22829.0,SRR23732286,N/A,N/A,N/A,N/A,N/A,SAMN33621958,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220110_170603-bc1012.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03834_lib1,single,size fractionation,GENOMIC,WGS,62573.0,20862.0,124.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03834/raw_data/PacBio_HiFi/m64043_220110_170603-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18833.0,20288.0,22289.0,N/A,HG03834,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.42,38424503061.0,1841790.0,N/A,HG03834,SAMN33621958,BD28,BEB,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19083.0,20657.0,22877.0,SRR23732286,N/A,N/A,N/A,N/A,N/A,SAMN33621958,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220109_060731-bc1012.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03834_lib1,single,size fractionation,GENOMIC,WGS,58988.0,20886.0,365.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03834/raw_data/PacBio_HiFi/m64043_220109_060731-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18844.0,20303.0,22326.0,N/A,HG03834,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,40.25,40253924320.0,1927254.0,N/A,HG03834,SAMN33621958,BD28,BEB,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19092.0,20668.0,22878.0,SRR23732286,N/A,N/A,N/A,N/A,N/A,SAMN33621958,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220107_191226-bc1012.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03834_lib1,single,size fractionation,GENOMIC,WGS,62493.0,20891.0,123.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03834/raw_data/PacBio_HiFi/m64043_220107_191226-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18853.0,20313.0,22331.0,N/A,HG03834,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.21,38210943876.0,1829039.0,N/A,HG03834,SAMN33621958,BD28,BEB,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19059.0,23308.0,28475.0,SRR29405794,N/A,N/A,N/A,N/A,N/A,SAMN41021625,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230712_163213_s1.hifi_reads.bc1012.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03874_PB1_m84091_230712_163213_s1,single,size fractionation,GENOMIC,WGS,70251.0,22538.0,52.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03874/raw_data/PacBio_HiFi/m84091_230712_163213_s1.hifi_reads.bc1012.bam,PACBIO_SMRT,Revio P1,17686.0,21435.0,26186.0,N/A,HG03874,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,77.94,77942454192.0,3458255.0,N/A,HG03874,SAMN41021625,,ITU,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16431.0,19069.0,22707.0,SRR29405795,N/A,N/A,N/A,N/A,N/A,SAMN41021625,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230719_155016_s1.hifi_reads.bc1012.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03874_PB1_m84091_230719_155016_s1,single,size fractionation,GENOMIC,WGS,64161.0,18984.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03874/raw_data/PacBio_HiFi/m84091_230719_155016_s1.hifi_reads.bc1012.bam,PACBIO_SMRT,Revio P1,15819.0,18096.0,21335.0,N/A,HG03874,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,101.16,101158627114.0,5328539.0,N/A,HG03874,SAMN41021625,,ITU,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18900.0,23025.0,28033.0,SRR29405796,N/A,N/A,N/A,N/A,N/A,SAMN41021625,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230731_130312_s1.hifi_reads.bc1012.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03874_PB1_m84091_230731_130312_s1,single,size fractionation,GENOMIC,WGS,57091.0,22295.0,148.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03874/raw_data/PacBio_HiFi/m84091_230731_130312_s1.hifi_reads.bc1012.bam,PACBIO_SMRT,Revio P1,17588.0,21233.0,25872.0,N/A,HG03874,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,12.02,12022114455.0,539213.0,N/A,HG03874,SAMN41021625,,ITU,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15865.0,18364.0,21770.0,SRR29405797,N/A,N/A,N/A,N/A,N/A,SAMN41021681,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230727_125753_s1.hifi_reads.bc1016.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG04153_PB1_m84091_230727_125753_s1,single,size fractionation,GENOMIC,WGS,53122.0,18296.0,118.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04153/raw_data/PacBio_HiFi/m84091_230727_125753_s1.hifi_reads.bc1016.bam,PACBIO_SMRT,Revio P1,15297.0,17477.0,20533.0,N/A,HG04153,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,99.68,99682975843.0,5448151.0,N/A,HG04153,SAMN41021681,,BEB,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15734.0,18167.0,21488.0,SRR29405798,N/A,N/A,N/A,N/A,N/A,SAMN41021681,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230802_170158_s1.hifi_reads.bc1016.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG04153_PB1_m84091_230802_170158_s1,single,size fractionation,GENOMIC,WGS,57640.0,18123.0,58.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04153/raw_data/PacBio_HiFi/m84091_230802_170158_s1.hifi_reads.bc1016.bam,PACBIO_SMRT,Revio P1,15190.0,17310.0,20283.0,N/A,HG04153,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,104.9,104895724944.0,5787787.0,N/A,HG04153,SAMN41021681,,BEB,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16162.0,18521.0,21691.0,SRR18158589,N/A,N/A,N/A,N/A,N/A,SAMN26267397,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64076_210709_232529.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04184.HFSS,single,size fractionation,GENOMIC,WGS,51996.0,18490.0,202.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m64076_210709_232529.hifi_reads.bam,PACBIO_SMRT,P2.2,15669.0,17739.0,20632.0,N/A,HG04184,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,26.83,26834639179.0,1451248.0,N/A,HG04184,SAMN26267397,BD61,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16173.0,18541.0,21710.0,SRR18158589,N/A,N/A,N/A,N/A,N/A,SAMN26267397,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64076_210708_084125.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04184.HFSS,single,size fractionation,GENOMIC,WGS,49905.0,18509.0,486.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m64076_210708_084125.hifi_reads.bam,PACBIO_SMRT,P2.2,15682.0,17759.0,20652.0,N/A,HG04184,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,27.88,27875629860.0,1505987.0,N/A,HG04184,SAMN26267397,BD61,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16270.0,18693.0,21906.0,SRR18158589,N/A,N/A,N/A,N/A,N/A,SAMN26267397,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64076_210712_194121.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04184.HFSS,single,size fractionation,GENOMIC,WGS,55878.0,18636.0,224.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m64076_210712_194121.hifi_reads.bam,PACBIO_SMRT,P2.2,15762.0,17888.0,20832.0,N/A,HG04184,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,29.88,29878843321.0,1603266.0,N/A,HG04184,SAMN26267397,BD61,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17407.0,20137.0,23399.0,SRR18158589,N/A,N/A,N/A,N/A,N/A,SAMN26267397,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64076_210701_234028.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04184.HFSS,single,size fractionation,GENOMIC,WGS,53036.0,19821.0,87.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m64076_210701_234028.hifi_reads.bam,PACBIO_SMRT,P2.2,16754.0,19248.0,22379.0,N/A,HG04184,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,23.72,23721206724.0,1196723.0,N/A,HG04184,SAMN26267397,BD61,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16174.0,18546.0,21687.0,SRR29483256,N/A,N/A,N/A,N/A,N/A,SAMN26267397,v7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84046_230523_001708_s3.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG04184.HFSS_m84046_230523_001708_s3,single,size fractionation,GENOMIC,WGS,52393.0,18495.0,281.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m84046_230523_001708_s3.hifi_reads.default.bam,PACBIO_SMRT,P1,15678.0,17765.0,20650.0,N/A,HG04184,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,44.68,44684878979.0,2415981.0,N/A,HG04184,SAMN26267397,BD61,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16162.0,18517.0,21641.0,SRR29483255,N/A,N/A,N/A,N/A,N/A,SAMN26267397,v7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84046_230602_213334_s2.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG04184.HFSS_m84046_230602_213334_s2,single,size fractionation,GENOMIC,WGS,51573.0,18472.0,167.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m84046_230602_213334_s2.hifi_reads.default.bam,PACBIO_SMRT,P1,15669.0,17747.0,20619.0,N/A,HG04184,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,16.63,16633605568.0,900456.0,N/A,HG04184,SAMN26267397,BD61,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17498.0,19545.0,21937.0,SRR23732285,N/A,N/A,N/A,N/A,N/A,SAMN33621959,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211121_164646-bc1008.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,MGISTL_PAN027_HG06807_lib1,single,size fractionation,GENOMIC,WGS,54067.0,19403.0,611.0,,N/A,N/A,s3://human-pangenomics/working/HPRC_PLUS/HG06807/raw_data/PacBio_HiFi/m64043_211121_164646-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16950.0,19031.0,21242.0,N/A,MGISTL_PAN027_HG06807,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.24,34242835423.0,1764732.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,True,17558.0,19607.0,22015.0,SRR23732285,N/A,N/A,N/A,N/A,N/A,SAMN33621959,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211118_185250-bc1008.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,MGISTL_PAN027_HG06807_lib1,single,size fractionation,GENOMIC,WGS,54058.0,19464.0,53.0,,N/A,N/A,s3://human-pangenomics/working/HPRC_PLUS/HG06807/raw_data/PacBio_HiFi/m64043_211118_185250-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17014.0,19094.0,21311.0,N/A,MGISTL_PAN027_HG06807,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.38,35381492742.0,1817775.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,True,17552.0,19611.0,22035.0,SRR23732285,N/A,N/A,N/A,N/A,N/A,SAMN33621959,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211120_054831-bc1008.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,MGISTL_PAN027_HG06807_lib1,single,size fractionation,GENOMIC,WGS,61992.0,19472.0,777.0,,N/A,N/A,s3://human-pangenomics/working/HPRC_PLUS/HG06807/raw_data/PacBio_HiFi/m64043_211120_054831-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17006.0,19086.0,21325.0,N/A,MGISTL_PAN027_HG06807,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.74,35737691389.0,1835294.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,True,18577.0,20065.0,22049.0,SRR23732285,N/A,N/A,N/A,N/A,N/A,SAMN33621959,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211222_184851-bc1008.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,MGISTL_PAN027_HG06807_lib1,single,size fractionation,GENOMIC,WGS,49585.0,20200.0,473.0,,N/A,N/A,s3://human-pangenomics/working/HPRC_PLUS/HG06807/raw_data/PacBio_HiFi/m64043_211222_184851-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18352.0,19757.0,21611.0,N/A,MGISTL_PAN027_HG06807,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,4.7,4703143471.0,232821.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,True,16866.0,19935.0,23961.0,SRR29405799,N/A,N/A,N/A,N/A,N/A,SAMN41021643,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230718_154039_s1.hifi_reads.bc1021.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA18505_PB1_m84091_230718_154039_s1,single,size fractionation,GENOMIC,WGS,64859.0,19688.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18505/raw_data/PacBio_HiFi/m84091_230718_154039_s1.hifi_reads.bc1021.bam,PACBIO_SMRT,Revio P1,16070.0,18745.0,22367.0,N/A,NA18505,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,92.32,92320421358.0,4689114.0,N/A,NA18505,SAMN41021643,Y005,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16725.0,19706.0,23620.0,SRR29405800,N/A,N/A,N/A,N/A,N/A,SAMN41021643,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230721_152112_s4.hifi_reads.bc1021.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA18505_PB1_m84091_230721_152112_s4,single,size fractionation,GENOMIC,WGS,69044.0,19493.0,69.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18505/raw_data/PacBio_HiFi/m84091_230721_152112_s4.hifi_reads.bc1021.bam,PACBIO_SMRT,Revio P1,15964.0,18567.0,22079.0,N/A,NA18505,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,92.34,92337453249.0,4736916.0,N/A,NA18505,SAMN41021643,Y005,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16949.0,20034.0,24033.0,SRR29405801,N/A,N/A,N/A,N/A,N/A,SAMN41021643,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230724_152950_s1.hifi_reads.bc1021.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA18505_PB1_m84091_230724_152950_s1,single,size fractionation,GENOMIC,WGS,49844.0,19765.0,751.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18505/raw_data/PacBio_HiFi/m84091_230724_152950_s1.hifi_reads.bc1021.bam,PACBIO_SMRT,Revio P1,16137.0,18838.0,22460.0,N/A,NA18505,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,5.7,5696115693.0,288191.0,N/A,NA18505,SAMN41021643,Y005,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17070.0,18873.0,21719.0,SRR23732284,N/A,N/A,N/A,N/A,N/A,SAMN33621960,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220712_145025-bc1015.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18612_lib1,single,size fractionation,GENOMIC,WGS,55884.0,19109.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/m64043_220712_145025-bc1015.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16729.0,18347.0,20782.0,N/A,NA18612,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.31,37307640683.0,1952320.0,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17131.0,18974.0,21901.0,SRR23732284,N/A,N/A,N/A,N/A,N/A,SAMN33621960,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220708_205637-bc1015.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18612_lib1,single,size fractionation,GENOMIC,WGS,70458.0,19211.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/m64043_220708_205637-bc1015.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16783.0,18429.0,20931.0,N/A,NA18612,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.57,35568838553.0,1851400.0,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17163.0,19020.0,21964.0,SRR23732284,N/A,N/A,N/A,N/A,N/A,SAMN33621960,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220710_175250-bc1015.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18612_lib1,single,size fractionation,GENOMIC,WGS,56913.0,19256.0,62.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/m64043_220710_175250-bc1015.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16812.0,18470.0,20993.0,N/A,NA18612,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,39.24,39242478493.0,2037867.0,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16997.0,19747.0,23461.0,SRR29405784,N/A,N/A,N/A,N/A,N/A,SAMN41021618,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230703_172326_s3.hifi_reads.bc1009.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA18620_PB1_m84091_230703_172326_s3,single,size fractionation,GENOMIC,WGS,58609.0,19652.0,104.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18620/raw_data/PacBio_HiFi/m84091_230703_172326_s3.hifi_reads.bc1009.bam,PACBIO_SMRT,Revio P1,16365.0,18763.0,22098.0,N/A,NA18620,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,105.14,105136485130.0,5349692.0,N/A,NA18620,SAMN41021618,,CHB,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16863.0,19517.0,23110.0,SRR29405783,N/A,N/A,N/A,N/A,N/A,SAMN41021618,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230707_165735_s1.hifi_reads.bc1009.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA18620_PB1_m84091_230707_165735_s1,single,size fractionation,GENOMIC,WGS,58414.0,19457.0,156.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18620/raw_data/PacBio_HiFi/m84091_230707_165735_s1.hifi_reads.bc1009.bam,PACBIO_SMRT,Revio P1,16264.0,18586.0,21805.0,N/A,NA18620,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,106.35,106349153661.0,5465594.0,N/A,NA18620,SAMN41021618,,CHB,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14925.0,16155.0,17514.0,SRR23732282,N/A,N/A,N/A,N/A,N/A,SAMN33621961,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220728_173215-bc1011.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18971_lib1,single,size fractionation,GENOMIC,WGS,41182.0,16065.0,123.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/m64043_220728_173215-bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,14712.0,15923.0,17251.0,N/A,NA18971,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,12.34,12335160946.0,767828.0,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18541.0,20882.0,23733.0,SRR23732282,N/A,N/A,N/A,N/A,N/A,SAMN33621961,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220703_150718-bc1011.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18971_lib1,single,size fractionation,GENOMIC,WGS,65993.0,20667.0,62.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/m64043_220703_150718-bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17974.0,20210.0,22885.0,N/A,NA18971,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,31.82,31815106412.0,1539349.0,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18582.0,20932.0,23785.0,SRR23732282,N/A,N/A,N/A,N/A,N/A,SAMN33621961,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220701_181144-bc1011.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18971_lib1,single,size fractionation,GENOMIC,WGS,62433.0,20716.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/m64043_220701_181144-bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18018.0,20255.0,22941.0,N/A,NA18971,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.03,34029092180.0,1642606.0,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18634.0,21002.0,23888.0,SRR23732282,N/A,N/A,N/A,N/A,N/A,SAMN33621961,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220705_120954-bc1011.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18971_lib1,single,size fractionation,GENOMIC,WGS,65996.0,20793.0,249.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/m64043_220705_120954-bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18069.0,20318.0,23028.0,N/A,NA18971,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.59,34591963353.0,1663617.0,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15476.0,17676.0,20775.0,SRR29405781,N/A,N/A,N/A,N/A,N/A,SAMN41021642,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230718_161058_s2.hifi_reads.bc1022.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19036_PB1_m84091_230718_161058_s2,single,size fractionation,GENOMIC,WGS,56042.0,17697.0,74.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19036/raw_data/PacBio_HiFi/m84091_230718_161058_s2.hifi_reads.bc1022.bam,PACBIO_SMRT,Revio P1,15044.0,16944.0,19750.0,N/A,NA19036,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,99.31,99306434215.0,5611450.0,N/A,NA19036,SAMN41021642,,LWK,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15488.0,17695.0,20781.0,SRR29405780,N/A,N/A,N/A,N/A,N/A,SAMN41021642,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230724_152950_s1.hifi_reads.bc1022.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19036_PB1_m84091_230724_152950_s1,single,size fractionation,GENOMIC,WGS,53891.0,17706.0,71.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19036/raw_data/PacBio_HiFi/m84091_230724_152950_s1.hifi_reads.bc1022.bam,PACBIO_SMRT,Revio P1,15053.0,16960.0,19764.0,N/A,NA19036,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,100.14,100139779782.0,5655541.0,N/A,NA19036,SAMN41021642,,LWK,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16758.0,20587.0,25172.0,SRR29405760,N/A,N/A,N/A,N/A,N/A,SAMN41021701,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240221_202725_s4.hifi_reads.bc1022.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19042_PB1_m84091_240221_202725_s4,single,size fractionation,GENOMIC,WGS,61590.0,19663.0,99.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19042/raw_data/PacBio_HiFi/m84091_240221_202725_s4.hifi_reads.bc1022.bam,PACBIO_SMRT,Revio P1,15372.0,18829.0,23120.0,N/A,NA19042,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,65.47,65471433956.0,3329518.0,N/A,NA19042,SAMN41021701,,LWK,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16368.0,20090.0,24633.0,SRR29405759,N/A,N/A,N/A,N/A,N/A,SAMN41021701,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240308_202615_s4.hifi_reads.bc1022.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19042_PB1_m84091_240308_202615_s4,single,size fractionation,GENOMIC,WGS,52948.0,19242.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19042/raw_data/PacBio_HiFi/m84091_240308_202615_s4.hifi_reads.bc1022.bam,PACBIO_SMRT,Revio P1,15049.0,18376.0,22578.0,N/A,NA19042,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,61.44,61435006452.0,3192672.0,N/A,NA19042,SAMN41021701,,LWK,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16683.0,20488.0,25062.0,SRR29405758,N/A,N/A,N/A,N/A,N/A,SAMN41021701,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240308_205633_s1.hifi_reads.bc1022.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19042_PB1_m84091_240308_205633_s1,single,size fractionation,GENOMIC,WGS,54725.0,19574.0,104.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19042/raw_data/PacBio_HiFi/m84091_240308_205633_s1.hifi_reads.bc1022.bam,PACBIO_SMRT,Revio P1,15313.0,18745.0,23017.0,N/A,NA19042,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,60.62,60615596022.0,3096650.0,N/A,NA19042,SAMN41021701,,LWK,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17956.0,20781.0,24644.0,SRR29405779,N/A,N/A,N/A,N/A,N/A,SAMN41021680,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230725_171249_s4.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19131_PB1_m84091_230725_171249_s4,single,size fractionation,GENOMIC,WGS,63090.0,20690.0,66.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19131/raw_data/PacBio_HiFi/m84091_230725_171249_s4.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,17305.0,19769.0,23236.0,N/A,NA19131,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,107.95,107950313295.0,5217376.0,N/A,NA19131,SAMN41021680,,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17920.0,20683.0,24467.0,SRR29405778,N/A,N/A,N/A,N/A,N/A,SAMN41021680,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230731_143545_s4.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19131_PB1_m84091_230731_143545_s4,single,size fractionation,GENOMIC,WGS,57669.0,20603.0,255.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19131/raw_data/PacBio_HiFi/m84091_230731_143545_s4.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,17281.0,19706.0,23082.0,N/A,NA19131,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,73.61,73614424293.0,3572878.0,N/A,NA19131,SAMN41021680,,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17570.0,20107.0,23620.0,SRR29405777,N/A,N/A,N/A,N/A,N/A,SAMN41021680,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230817_153352_s4.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19131_PB1_m84091_230817_153352_s4,single,size fractionation,GENOMIC,WGS,52957.0,20090.0,375.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19131/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,17010.0,19238.0,22376.0,N/A,NA19131,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,18.03,18028708953.0,897397.0,N/A,NA19131,SAMN41021680,,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16141.0,18884.0,22668.0,SRR29405776,N/A,N/A,N/A,N/A,N/A,SAMN41021614,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230629_173950_s1.hifi_reads.bc1001.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19175_PB1_m84091_230629_173950_s1,single,size fractionation,GENOMIC,WGS,56686.0,18886.0,98.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19175/raw_data/PacBio_HiFi/m84091_230629_173950_s1.hifi_reads.bc1001.bam,PACBIO_SMRT,Revio P1,15551.0,17839.0,21210.0,N/A,NA19175,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,105.32,105324853613.0,5576589.0,N/A,NA19175,SAMN41021614,Y044,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15949.0,18550.0,22189.0,SRR29405775,N/A,N/A,N/A,N/A,N/A,SAMN41021614,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230703_162202_s1.hifi_reads.bc1001.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19175_PB1_m84091_230703_162202_s1,single,size fractionation,GENOMIC,WGS,58473.0,18590.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19175/raw_data/PacBio_HiFi/m84091_230703_162202_s1.hifi_reads.bc1001.bam,PACBIO_SMRT,Revio P1,15406.0,17576.0,20814.0,N/A,NA19175,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,99.93,99934802464.0,5375516.0,N/A,NA19175,SAMN41021614,Y044,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16989.0,19863.0,23633.0,SRR29405773,N/A,N/A,N/A,N/A,N/A,SAMN41708786,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230718_171310_s4.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19377_PB1_m84091_230718_171310_s4,single,size fractionation,GENOMIC,WGS,58261.0,19679.0,66.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19377/raw_data/PacBio_HiFi/m84091_230718_171310_s4.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,16274.0,18797.0,22194.0,N/A,NA19377,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,85.18,85178574461.0,4328336.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,True,17125.0,20052.0,23882.0,SRR29405772,N/A,N/A,N/A,N/A,N/A,SAMN41708786,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230724_163116_s3.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19377_PB1_m84091_230724_163116_s3,single,size fractionation,GENOMIC,WGS,58231.0,19846.0,257.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19377/raw_data/PacBio_HiFi/m84091_230724_163116_s3.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,16384.0,18965.0,22411.0,N/A,NA19377,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,88.84,88839158485.0,4476331.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,True,17022.0,19919.0,23714.0,SRR29405771,N/A,N/A,N/A,N/A,N/A,SAMN41708786,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230731_143545_s4.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19377_PB1_m84091_230731_143545_s4,single,size fractionation,GENOMIC,WGS,63370.0,19726.0,548.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19377/raw_data/PacBio_HiFi/m84091_230731_143545_s4.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,16297.0,18847.0,22264.0,N/A,NA19377,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,15.29,15291250872.0,775152.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,True,15451.0,18436.0,22422.0,SRR29405770,N/A,N/A,N/A,N/A,N/A,SAMN41021695,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231110_171321_s4.hifi_reads.bc1009.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19703_PB1_m84091_231110_171321_s4,single,size fractionation,GENOMIC,WGS,53725.0,18247.0,113.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19703/raw_data/PacBio_HiFi/m84091_231110_171321_s4.hifi_reads.bc1009.bam,PACBIO_SMRT,Revio P1,14716.0,17191.0,20771.0,N/A,NA19703,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,59.93,59926767647.0,3284143.0,N/A,NA19703,SAMN41021695,,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15784.0,19072.0,23370.0,SRR29405769,N/A,N/A,N/A,N/A,N/A,SAMN41021695,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231113_180217_s3.hifi_reads.bc1009.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19703_PB1_m84091_231113_180217_s3,single,size fractionation,GENOMIC,WGS,62382.0,18767.0,114.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19703/raw_data/PacBio_HiFi/m84091_231113_180217_s3.hifi_reads.bc1009.bam,PACBIO_SMRT,Revio P1,14929.0,17642.0,21523.0,N/A,NA19703,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,79.31,79305068847.0,4225622.0,N/A,NA19703,SAMN41021695,,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15307.0,19455.0,24562.0,SRR29405768,N/A,N/A,N/A,N/A,N/A,SAMN41021695,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240221_212852_s2.hifi_reads.bc1009.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19703_PB1_m84091_240221_212852_s2,single,size fractionation,GENOMIC,WGS,58776.0,18286.0,91.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19703/raw_data/PacBio_HiFi/m84091_240221_212852_s2.hifi_reads.bc1009.bam,PACBIO_SMRT,Revio P1,13621.0,17233.0,21908.0,N/A,NA19703,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,53.77,53768952232.0,2940298.0,N/A,NA19703,SAMN41021695,,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17029.0,19741.0,23447.0,SRR29405767,N/A,N/A,N/A,N/A,N/A,SAMN41021665,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230718_164204_s3.hifi_reads.bc1001.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19835_PB1_m84091_230718_164204_s3,single,size fractionation,GENOMIC,WGS,63615.0,19675.0,137.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19835/raw_data/PacBio_HiFi/m84091_230718_164204_s3.hifi_reads.bc1001.bam,PACBIO_SMRT,Revio P1,16408.0,18760.0,22062.0,N/A,NA19835,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,90.08,90080817427.0,4578439.0,N/A,NA19835,SAMN41021665,,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17053.0,19779.0,23499.0,SRR29405766,N/A,N/A,N/A,N/A,N/A,SAMN41021665,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230724_160010_s2.hifi_reads.bc1001.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19835_PB1_m84091_230724_160010_s2,single,size fractionation,GENOMIC,WGS,66428.0,19704.0,66.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19835/raw_data/PacBio_HiFi/m84091_230724_160010_s2.hifi_reads.bc1001.bam,PACBIO_SMRT,Revio P1,16425.0,18793.0,22106.0,N/A,NA19835,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,95.5,95502198267.0,4846730.0,N/A,NA19835,SAMN41021665,,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17085.0,19828.0,23581.0,SRR29405765,N/A,N/A,N/A,N/A,N/A,SAMN41021665,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230731_133332_s2.hifi_reads.bc1001.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19835_PB1_m84091_230731_133332_s2,single,size fractionation,GENOMIC,WGS,60316.0,19748.0,699.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19835/raw_data/PacBio_HiFi/m84091_230731_133332_s2.hifi_reads.bc1001.bam,PACBIO_SMRT,Revio P1,16451.0,18820.0,22170.0,N/A,NA19835,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,7.8,7796745438.0,394796.0,N/A,NA19835,SAMN41021665,,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19469.0,23728.0,29119.0,SRR29405764,N/A,N/A,N/A,N/A,N/A,SAMN41021658,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230710_172927_s2.hifi_reads.bc1017.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA20287_PB1_m84091_230710_172927_s2,single,size fractionation,GENOMIC,WGS,74258.0,23076.0,57.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20287/raw_data/PacBio_HiFi/m84091_230710_172927_s2.hifi_reads.bc1017.bam,PACBIO_SMRT,Revio P1,18152.0,21843.0,26717.0,N/A,NA20287,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,88.13,88125973925.0,3818829.0,N/A,NA20287,SAMN41021658,2470,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19009.0,23557.0,29066.0,SRR29405762,N/A,N/A,N/A,N/A,N/A,SAMN41021658,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230714_130822_s1.hifi_reads.bc1017.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA20287_PB1_m84091_230714_130822_s1,single,size fractionation,GENOMIC,WGS,67766.0,22598.0,56.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20287/raw_data/PacBio_HiFi/m84091_230714_130822_s1.hifi_reads.bc1017.bam,PACBIO_SMRT,Revio P1,17419.0,21447.0,26500.0,N/A,NA20287,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,98.11,98106485796.0,4341325.0,N/A,NA20287,SAMN41021658,2470,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19189.0,20755.0,22563.0,SRR23732281,N/A,N/A,N/A,N/A,N/A,SAMN33621962,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220726_203708-bc1020.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA20805_lib1,single,size fractionation,GENOMIC,WGS,66827.0,20660.0,133.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/m64136_220726_203708-bc1020.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18923.0,20455.0,22209.0,N/A,NA20805,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.97,37967752313.0,1837659.0,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19203.0,20770.0,22581.0,SRR23732281,N/A,N/A,N/A,N/A,N/A,SAMN33621962,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220730_113921-bc1020.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA20805_lib1,single,size fractionation,GENOMIC,WGS,72987.0,20683.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/m64136_220730_113921-bc1020.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18939.0,20471.0,22226.0,N/A,NA20805,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,41.08,41078853991.0,1986077.0,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19207.0,20776.0,22588.0,SRR23732281,N/A,N/A,N/A,N/A,N/A,SAMN33621962,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220728_160902-bc1020.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA20805_lib1,single,size fractionation,GENOMIC,WGS,69098.0,20686.0,139.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/m64136_220728_160902-bc1020.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18940.0,20477.0,22231.0,N/A,NA20805,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,41.33,41329526305.0,1997924.0,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14523.0,16416.0,18966.0,SRR29405761,N/A,N/A,N/A,N/A,N/A,SAMN41021623,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230703_175432_s4.hifi_reads.bc1010.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA20870_PB1_m84091_230703_175432_s4,single,size fractionation,GENOMIC,WGS,47805.0,16457.0,96.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20870/raw_data/PacBio_HiFi/m84091_230703_175432_s4.hifi_reads.bc1010.bam,PACBIO_SMRT,Revio P1,14186.0,15844.0,18207.0,N/A,NA20870,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,110.64,110641518883.0,6722715.0,N/A,NA20870,SAMN41021623,,GIH,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14491.0,16353.0,18869.0,SRR29405756,N/A,N/A,N/A,N/A,N/A,SAMN41021623,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230707_172800_s2.hifi_reads.bc1010.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA20870_PB1_m84091_230707_172800_s2,single,size fractionation,GENOMIC,WGS,50922.0,16401.0,64.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20870/raw_data/PacBio_HiFi/m84091_230707_172800_s2.hifi_reads.bc1010.bam,PACBIO_SMRT,Revio P1,14159.0,15795.0,18128.0,N/A,NA20870,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,107.23,107230122262.0,6537864.0,N/A,NA20870,SAMN41021623,,GIH,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19235.0,23562.0,28989.0,SRR29405755,N/A,N/A,N/A,N/A,N/A,SAMN41021624,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230710_165908_s1.hifi_reads.bc1011.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA21110_PB1_m84091_230710_165908_s1,single,size fractionation,GENOMIC,WGS,69776.0,22741.0,80.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21110/raw_data/PacBio_HiFi/m84091_230710_165908_s1.hifi_reads.bc1011.bam,PACBIO_SMRT,Revio P1,17833.0,21576.0,26520.0,N/A,NA21110,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,89.31,89314005933.0,3927286.0,N/A,NA21110,SAMN41021624,,GIH,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19169.0,23455.0,28779.0,SRR29405754,N/A,N/A,N/A,N/A,N/A,SAMN41021624,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230714_133843_s2.hifi_reads.bc1011.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA21110_PB1_m84091_230714_133843_s2,single,size fractionation,GENOMIC,WGS,70255.0,22684.0,105.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21110/raw_data/PacBio_HiFi/m84091_230714_133843_s2.hifi_reads.bc1011.bam,PACBIO_SMRT,Revio P1,17806.0,21529.0,26390.0,N/A,NA21110,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,88.29,88288802421.0,3892054.0,N/A,NA21110,SAMN41021624,,GIH,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19023.0,23287.0,28673.0,SRR29405757,N/A,N/A,N/A,N/A,N/A,SAMN41021624,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230719_165228_s3.hifi_reads.bc1011.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA21110_PB1_m84091_230719_165228_s3,single,size fractionation,GENOMIC,WGS,72474.0,22503.0,396.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21110/raw_data/PacBio_HiFi/m84091_230719_165228_s3.hifi_reads.bc1011.bam,PACBIO_SMRT,Revio P1,17661.0,21320.0,26182.0,N/A,NA21110,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,14.4,14404999640.0,640120.0,N/A,NA21110,SAMN41021624,,GIH,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18329.0,20991.0,24424.0,SRR23922670,N/A,N/A,N/A,N/A,N/A,SAMN33758778,6.3.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_220825_174247-bc2012.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00099_1.HFSS,single,RANDOM,GENOMIC,WGS,64390.0,20844.0,87.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00099/raw_data/PacBio_HiFi/m54329U_220825_174247-bc2012.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17755.0,20124.0,23333.0,N/A,HG00099,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,47.68,47677590021.0,2287312.0,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17300.0,19273.0,22021.0,SRR29483172,N/A,N/A,N/A,N/A,N/A,SAMN41021653,v7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84046_230715_060901_s1.hifi_reads.bc2083.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00344.HFSS2_m84046_230715_060901_s1,single,size fractionation,GENOMIC,WGS,56374.0,19344.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00344/raw_data/PacBio_HiFi/m84046_230715_060901_s1.hifi_reads.bc2083.bam,PACBIO_SMRT,P1,16957.0,18716.0,21258.0,N/A,HG00344,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,60.69,60692182063.0,3137497.0,N/A,HG00344,SAMN41021653,,FIN,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17374.0,19401.0,22208.0,SRR29483173,N/A,N/A,N/A,N/A,N/A,SAMN41021653,v7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84046_230715_064007_s2.hifi_reads.bc2083.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00344.HFSS2_m84046_230715_064007_s2,single,size fractionation,GENOMIC,WGS,56033.0,19456.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00344/raw_data/PacBio_HiFi/m84046_230715_064007_s2.hifi_reads.bc2083.bam,PACBIO_SMRT,P1,17020.0,18821.0,21429.0,N/A,HG00344,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,63.87,63874723531.0,3282883.0,N/A,HG00344,SAMN41021653,,FIN,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17342.0,19345.0,22120.0,SRR29483171,N/A,N/A,N/A,N/A,N/A,SAMN41021653,v7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84046_230718_233949_s3.hifi_reads.bc2083.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00344.HFSS2_m84046_230718_233949_s3,single,size fractionation,GENOMIC,WGS,60663.0,19406.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00344/raw_data/PacBio_HiFi/m84046_230718_233949_s3.hifi_reads.bc2083.bam,PACBIO_SMRT,P1,16994.0,18777.0,21349.0,N/A,HG00344,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,77.94,77941329750.0,4016176.0,N/A,HG00344,SAMN41021653,,FIN,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14949.0,17641.0,21083.0,SRR29483064,N/A,N/A,N/A,N/A,N/A,SAMN41021690,v7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84046_230901_223052_s3.hifi_reads.bc2037.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19012.HFSS_m84046_230901_223052_s3,single,size fractionation,GENOMIC,WGS,52097.0,17279.0,93.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19012/raw_data/PacBio_HiFi/m84046_230901_223052_s3.hifi_reads.bc2037.bam,PACBIO_SMRT,P1,14168.0,16610.0,19754.0,N/A,NA19012,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,59.69,59685857099.0,3454109.0,N/A,NA19012,SAMN41021690,,JPT,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14729.0,17363.0,20769.0,SRR29483065,N/A,N/A,N/A,N/A,N/A,SAMN41021690,v7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84046_230901_230230_s4.hifi_reads.bc2037.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19012.HFSS_m84046_230901_230230_s4,single,size fractionation,GENOMIC,WGS,59026.0,17041.0,259.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19012/raw_data/PacBio_HiFi/m84046_230901_230230_s4.hifi_reads.bc2037.bam,PACBIO_SMRT,P1,13973.0,16354.0,19436.0,N/A,NA19012,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,58.89,58892224761.0,3455827.0,N/A,NA19012,SAMN41021690,,JPT,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14509.0,17066.0,20350.0,SRR29483063,N/A,N/A,N/A,N/A,N/A,SAMN41021690,v7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84046_230906_215022_s3.hifi_reads.bc2037.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19012.HFSS_m84046_230906_215022_s3,single,size fractionation,GENOMIC,WGS,58421.0,16774.0,115.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19012/raw_data/PacBio_HiFi/m84046_230906_215022_s3.hifi_reads.bc2037.bam,PACBIO_SMRT,P1,13779.0,16104.0,19070.0,N/A,NA19012,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,75.46,75460808834.0,4498538.0,N/A,NA19012,SAMN41021690,,JPT,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18143.0,19752.0,21783.0,SRR26545346,N/A,N/A,N/A,N/A,N/A,SAMN33621941,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00140.m64043_220728_173215.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00140_lib1_dc,single,size fractionation,GENOMIC,WGS,55287.0,19810.0,117.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00140.m64043_220728_173215.dc.q20.fastq.gz,PACBIO_SMRT,P2,17863.0,19392.0,21297.0,N/A,HG00140,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,11.35,11345594738.0,572695.0,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,19082.0,21705.0,25964.0,SRR26545346,N/A,N/A,N/A,N/A,N/A,SAMN33621941,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00140.m64136_220719_122056.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00140_lib1_dc,single,size fractionation,GENOMIC,WGS,74729.0,21960.0,279.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00140.m64136_220719_122056.dc.q20.fastq.gz,PACBIO_SMRT,P2,18543.0,20750.0,24315.0,N/A,HG00140,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.15,39151198475.0,1782816.0,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,19133.0,21796.0,26100.0,SRR26545346,N/A,N/A,N/A,N/A,N/A,SAMN33621941,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00140.m64136_220715_182717.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00140_lib1_dc,single,size fractionation,GENOMIC,WGS,72795.0,22040.0,400.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00140.m64136_220715_182717.dc.q20.fastq.gz,PACBIO_SMRT,P2,18583.0,20827.0,24430.0,N/A,HG00140,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,36.92,36918329655.0,1674999.0,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,19136.0,21799.0,26138.0,SRR26545346,N/A,N/A,N/A,N/A,N/A,SAMN33621941,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00140.m64136_220717_152248.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00140_lib1_dc,single,size fractionation,GENOMIC,WGS,68287.0,22054.0,294.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00140.m64136_220717_152248.dc.q20.fastq.gz,PACBIO_SMRT,P2,18584.0,20825.0,24451.0,N/A,HG00140,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.2,39196212009.0,1777227.0,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16728.0,19335.0,22440.0,SRR26545324,N/A,N/A,N/A,N/A,N/A,SAMN33621942,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00323.m64136_220710_175208.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00323_lib1_dc,single,size fractionation,GENOMIC,WGS,62819.0,19162.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00323.m64136_220710_175208.dc.q20.fastq.gz,PACBIO_SMRT,P2,16236.0,18450.0,21516.0,N/A,HG00323,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,37.74,37738047851.0,1969371.0,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16746.0,19368.0,22466.0,SRR26545324,N/A,N/A,N/A,N/A,N/A,SAMN33621942,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00323.m64136_220712_144943.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00323_lib1_dc,single,size fractionation,GENOMIC,WGS,59330.0,19184.0,158.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00323.m64136_220712_144943.dc.q20.fastq.gz,PACBIO_SMRT,P2,16250.0,18482.0,21540.0,N/A,HG00323,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,38.12,38117507590.0,1986891.0,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16772.0,19416.0,22514.0,SRR26545324,N/A,N/A,N/A,N/A,N/A,SAMN33621942,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00323.m64136_220708_205611.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00323_lib1_dc,single,size fractionation,GENOMIC,WGS,62093.0,19221.0,228.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00323.m64136_220708_205611.dc.q20.fastq.gz,PACBIO_SMRT,P2,16271.0,18525.0,21588.0,N/A,HG00323,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,36.65,36647858804.0,1906575.0,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,19422.0,21456.0,23918.0,SRR26545324,N/A,N/A,N/A,N/A,N/A,SAMN33621942,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00323.m64043_220728_173215.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00323_lib1_dc,single,size fractionation,GENOMIC,WGS,57489.0,21356.0,1028.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00323.m64043_220728_173215.dc.q20.fastq.gz,PACBIO_SMRT,P2,19009.0,20965.0,23289.0,N/A,HG00323,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,7.52,7524316582.0,352327.0,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16774.0,18540.0,22353.0,SRR26545313,N/A,N/A,N/A,N/A,N/A,SAMN33621943,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00408.m64136_211111_194404.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00408_lib1_dc,single,size fractionation,GENOMIC,WGS,61297.0,19200.0,83.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00408/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00408.m64136_211111_194404.dc.q20.fastq.gz,PACBIO_SMRT,P2,16485.0,17955.0,20955.0,N/A,HG00408,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,44.81,44812028504.0,2333870.0,N/A,HG00408,SAMN33621943,SH002,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16792.0,18566.0,22425.0,SRR26545313,N/A,N/A,N/A,N/A,N/A,SAMN33621943,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00408.m64136_211114_164241.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00408_lib1_dc,single,size fractionation,GENOMIC,WGS,70538.0,19238.0,299.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00408/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00408.m64136_211114_164241.dc.q20.fastq.gz,PACBIO_SMRT,P2,16500.0,17973.0,21009.0,N/A,HG00408,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,45.27,45267854968.0,2352957.0,N/A,HG00408,SAMN33621943,SH002,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16821.0,18626.0,22516.0,SRR26545313,N/A,N/A,N/A,N/A,N/A,SAMN33621943,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00408.m64136_211113_063830.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00408_lib1_dc,single,size fractionation,GENOMIC,WGS,59303.0,19290.0,808.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00408/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00408.m64136_211113_063830.dc.q20.fastq.gz,PACBIO_SMRT,P2,16522.0,18015.0,21113.0,N/A,HG00408,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,44.37,44370139003.0,2300157.0,N/A,HG00408,SAMN33621943,SH002,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17778.0,21564.0,26256.0,SRR26545306,N/A,N/A,N/A,N/A,N/A,SAMN33758780,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00558.m64076_220216_013707.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00558.HFSS_dc,single,size fractionation,GENOMIC,WGS,61101.0,20924.0,772.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00558.m64076_220216_013707.dc.q20.fastq.gz,PACBIO_SMRT,P2,16550.0,19930.0,24233.0,N/A,HG00558,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,2.7,2702910493.0,129174.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17972.0,21908.0,26673.0,SRR26545306,N/A,N/A,N/A,N/A,N/A,SAMN33758780,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00558.m54329U_220116_013607.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00558.HFSS_dc,single,size fractionation,GENOMIC,WGS,70144.0,21174.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00558.m54329U_220116_013607.dc.q20.fastq.gz,PACBIO_SMRT,P2,16697.0,20193.0,24635.0,N/A,HG00558,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,41.71,41711456205.0,1969873.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17954.0,21883.0,26674.0,SRR26545306,N/A,N/A,N/A,N/A,N/A,SAMN33758780,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00558.m54329U_220107_233847.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00558.HFSS_dc,single,size fractionation,GENOMIC,WGS,86842.0,21160.0,72.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00558.m54329U_220107_233847.dc.q20.fastq.gz,PACBIO_SMRT,P2,16689.0,20169.0,24635.0,N/A,HG00558,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.59,39592932418.0,1871072.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17999.0,21930.0,26711.0,SRR26545306,N/A,N/A,N/A,N/A,N/A,SAMN33758780,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00558.m54329U_220114_143904.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00558.HFSS_dc,single,size fractionation,GENOMIC,WGS,67567.0,21201.0,208.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00558.m54329U_220114_143904.dc.q20.fastq.gz,PACBIO_SMRT,P2,16721.0,20221.0,24665.0,N/A,HG00558,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,41.47,41469474397.0,1955960.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,15067.0,15857.0,16679.0,SRR26545305,N/A,N/A,N/A,N/A,N/A,SAMN33621944,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00597.m64043_211222_184851.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00597_lib1_dc,single,size fractionation,GENOMIC,WGS,38352.0,15822.0,430.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00597.m64043_211222_184851.dc.q20.fastq.gz,PACBIO_SMRT,P2,14996.0,15769.0,16597.0,N/A,HG00597,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,15.0,14997092202.0,947828.0,N/A,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,19260.0,20815.0,22980.0,SRR26545305,N/A,N/A,N/A,N/A,N/A,SAMN33621944,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00597.m64043_211213_155654.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00597_lib1_dc,single,size fractionation,GENOMIC,WGS,67603.0,21050.0,660.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00597.m64043_211213_155654.dc.q20.fastq.gz,PACBIO_SMRT,P2,19047.0,20475.0,22479.0,N/A,HG00597,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,40.12,40116560377.0,1905736.0,N/A,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,19271.0,20829.0,23004.0,SRR26545305,N/A,N/A,N/A,N/A,N/A,SAMN33621944,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00597.m64043_211212_045901.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00597_lib1_dc,single,size fractionation,GENOMIC,WGS,63970.0,21067.0,505.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00597.m64043_211212_045901.dc.q20.fastq.gz,PACBIO_SMRT,P2,19057.0,20487.0,22500.0,N/A,HG00597,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,40.3,40302307968.0,1913042.0,N/A,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,19281.0,20850.0,23032.0,SRR26545305,N/A,N/A,N/A,N/A,N/A,SAMN33621944,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00597.m64043_211210_180342.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00597_lib1_dc,single,size fractionation,GENOMIC,WGS,56567.0,21088.0,435.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00597.m64043_211210_180342.dc.q20.fastq.gz,PACBIO_SMRT,P2,19066.0,20503.0,22523.0,N/A,HG00597,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,40.77,40772332453.0,1933384.0,N/A,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17034.0,20677.0,25214.0,SRR26545304,N/A,N/A,N/A,N/A,N/A,SAMN33758781,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00639.m54329U_211222_104516.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00639.HFSS_dc,single,size fractionation,GENOMIC,WGS,66199.0,19917.0,141.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00639.m54329U_211222_104516.dc.q20.fastq.gz,PACBIO_SMRT,P2,15827.0,19042.0,23213.0,N/A,HG00639,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,38.55,38547156714.0,1935344.0,N/A,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17171.0,20832.0,25354.0,SRR26545304,N/A,N/A,N/A,N/A,N/A,SAMN33758781,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00639.m54329U_211230_014258.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00639.HFSS_dc,single,size fractionation,GENOMIC,WGS,72780.0,20089.0,125.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00639.m54329U_211230_014258.dc.q20.fastq.gz,PACBIO_SMRT,P2,15963.0,19219.0,23402.0,N/A,HG00639,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.94,39936124440.0,1987877.0,N/A,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17181.0,20872.0,25393.0,SRR26545304,N/A,N/A,N/A,N/A,N/A,SAMN33758781,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00639.m64076_220216_013707.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00639.HFSS_dc,single,size fractionation,GENOMIC,WGS,62936.0,20085.0,265.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00639.m64076_220216_013707.dc.q20.fastq.gz,PACBIO_SMRT,P2,15944.0,19227.0,23406.0,N/A,HG00639,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,6.79,6788386147.0,337976.0,N/A,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17281.0,21010.0,25605.0,SRR26545304,N/A,N/A,N/A,N/A,N/A,SAMN33758781,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00639.m54329U_211231_123903.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00639.HFSS_dc,single,size fractionation,GENOMIC,WGS,66087.0,20259.0,156.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00639.m54329U_211231_123903.dc.q20.fastq.gz,PACBIO_SMRT,P2,16048.0,19356.0,23609.0,N/A,HG00639,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,44.55,44552146515.0,2199043.0,N/A,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16494.0,19325.0,23013.0,SRR26545303,N/A,N/A,N/A,N/A,N/A,SAMN33758782,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01074.m54329U_211208_005551.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01074.HFSS2_dc,single,size fractionation,GENOMIC,WGS,63840.0,19133.0,281.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01074.m54329U_211208_005551.dc.q20.fastq.gz,PACBIO_SMRT,P2,15825.0,18284.0,21660.0,N/A,HG01074,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,40.21,40209647823.0,2101481.0,N/A,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16548.0,19395.0,23125.0,SRR26545303,N/A,N/A,N/A,N/A,N/A,SAMN33758782,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01074.m54329U_211211_014820.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01074.HFSS2_dc,single,size fractionation,GENOMIC,WGS,62020.0,19202.0,730.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01074.m54329U_211211_014820.dc.q20.fastq.gz,PACBIO_SMRT,P2,15864.0,18339.0,21742.0,N/A,HG01074,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,42.04,42043092402.0,2189425.0,N/A,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16592.0,19457.0,23203.0,SRR26545303,N/A,N/A,N/A,N/A,N/A,SAMN33758782,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01074.m54329U_211212_111219.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01074.HFSS2_dc,single,size fractionation,GENOMIC,WGS,59550.0,19257.0,374.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01074.m54329U_211212_111219.dc.q20.fastq.gz,PACBIO_SMRT,P2,15898.0,18396.0,21811.0,N/A,HG01074,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,41.99,41993964579.0,2180708.0,N/A,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18194.0,21114.0,25068.0,SRR26545303,N/A,N/A,N/A,N/A,N/A,SAMN33758782,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01074.m54329U_211110_112322.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01074_SRE.HFSS_dc,single,size fractionation,GENOMIC,WGS,74720.0,21084.0,418.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01074.m54329U_211110_112322.dc.q20.fastq.gz,PACBIO_SMRT,P2,17558.0,20064.0,23620.0,N/A,HG01074,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,19.46,19456910571.0,922809.0,N/A,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16682.0,20603.0,25265.0,SRR26545302,N/A,N/A,N/A,N/A,N/A,SAMN33758783,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01081.m54329U_211223_214216.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01081.HFSS_dc,single,size fractionation,GENOMIC,WGS,68446.0,19543.0,259.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01081.m54329U_211223_214216.dc.q20.fastq.gz,PACBIO_SMRT,P2,15202.0,18735.0,23108.0,N/A,HG01081,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,42.24,42242556204.0,2161506.0,N/A,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16828.0,20813.0,25499.0,SRR26545302,N/A,N/A,N/A,N/A,N/A,SAMN33758783,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01081.m54329U_220101_220852.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01081.HFSS_dc,single,size fractionation,GENOMIC,WGS,79823.0,19740.0,202.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01081.m54329U_220101_220852.dc.q20.fastq.gz,PACBIO_SMRT,P2,15335.0,18931.0,23356.0,N/A,HG01081,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,45.58,45580077040.0,2308966.0,N/A,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16856.0,20831.0,25540.0,SRR26545302,N/A,N/A,N/A,N/A,N/A,SAMN33758783,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01081.m54329U_220103_072943.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01081.HFSS_dc,single,size fractionation,GENOMIC,WGS,70904.0,19765.0,376.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01081.m54329U_220103_072943.dc.q20.fastq.gz,PACBIO_SMRT,P2,15348.0,18956.0,23392.0,N/A,HG01081,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,43.27,43269138445.0,2189086.0,N/A,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18481.0,20508.0,23454.0,SRR26545345,N/A,N/A,N/A,N/A,N/A,SAMN33621945,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01192.m64043_211127_171224.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01192_lib1_dc,single,size fractionation,GENOMIC,WGS,57633.0,20651.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01192/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01192.m64043_211127_171224.dc.q20.fastq.gz,PACBIO_SMRT,P2,18091.0,19926.0,22550.0,N/A,HG01192,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,45.13,45126773490.0,2185151.0,N/A,HG01192,SAMN33621945,PR40,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18484.0,20515.0,23451.0,SRR26545345,N/A,N/A,N/A,N/A,N/A,SAMN33621945,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01192.m64043_211124_192057.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01192_lib1_dc,single,size fractionation,GENOMIC,WGS,65995.0,20656.0,198.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01192/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01192.m64043_211124_192057.dc.q20.fastq.gz,PACBIO_SMRT,P2,18096.0,19934.0,22553.0,N/A,HG01192,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,45.84,45839976333.0,2219197.0,N/A,HG01192,SAMN33621945,PR40,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18491.0,20524.0,23468.0,SRR26545345,N/A,N/A,N/A,N/A,N/A,SAMN33621945,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01192.m64043_211126_061537.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01192_lib1_dc,single,size fractionation,GENOMIC,WGS,60586.0,20666.0,238.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01192/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01192.m64043_211126_061537.dc.q20.fastq.gz,PACBIO_SMRT,P2,18104.0,19942.0,22564.0,N/A,HG01192,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,46.58,46575985623.0,2253699.0,N/A,HG01192,SAMN33621945,PR40,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18396.0,20306.0,24573.0,SRR26545344,N/A,N/A,N/A,N/A,N/A,SAMN33621946,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01261.m64043_211222_184851.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01261_lib1_dc,single,size fractionation,GENOMIC,WGS,72765.0,21088.0,724.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01261.m64043_211222_184851.dc.q20.fastq.gz,PACBIO_SMRT,P2,18087.0,19676.0,22781.0,N/A,HG01261,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,16.05,16053597328.0,761247.0,N/A,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18426.0,20343.0,24646.0,SRR26545344,N/A,N/A,N/A,N/A,N/A,SAMN33621946,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01261.m64136_211105_181124.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01261_lib1_dc,single,size fractionation,GENOMIC,WGS,71125.0,21141.0,1050.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01261.m64136_211105_181124.dc.q20.fastq.gz,PACBIO_SMRT,P2,18117.0,19708.0,22830.0,N/A,HG01261,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,38.23,38227743168.0,1808184.0,N/A,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18448.0,20373.0,24675.0,SRR26545344,N/A,N/A,N/A,N/A,N/A,SAMN33621946,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01261.m64136_211108_160613.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01261_lib1_dc,single,size fractionation,GENOMIC,WGS,75334.0,21164.0,426.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01261.m64136_211108_160613.dc.q20.fastq.gz,PACBIO_SMRT,P2,18136.0,19737.0,22882.0,N/A,HG01261,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,38.91,38910766182.0,1838503.0,N/A,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18534.0,20558.0,25081.0,SRR26545344,N/A,N/A,N/A,N/A,N/A,SAMN33621946,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01261.m64136_211107_050725.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01261_lib1_dc,single,size fractionation,GENOMIC,WGS,70912.0,21356.0,365.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01261.m64136_211107_050725.dc.q20.fastq.gz,PACBIO_SMRT,P2,18201.0,19866.0,23276.0,N/A,HG01261,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.58,39578341050.0,1853207.0,N/A,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17820.0,19262.0,21564.0,SRR26545343,N/A,N/A,N/A,N/A,N/A,SAMN33621947,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01975.m64043_211222_184851.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01975_lib1_dc,single,size fractionation,GENOMIC,WGS,67416.0,19726.0,975.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01975.m64043_211222_184851.dc.q20.fastq.gz,PACBIO_SMRT,P2,17632.0,18915.0,20867.0,N/A,HG01975,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,6.64,6637856253.0,336489.0,N/A,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17825.0,19274.0,21562.0,SRR26545343,N/A,N/A,N/A,N/A,N/A,SAMN33621947,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01975.m64043_211114_112934.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01975_lib1_dc,single,size fractionation,GENOMIC,WGS,61098.0,19729.0,189.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01975.m64043_211114_112934.dc.q20.fastq.gz,PACBIO_SMRT,P2,17636.0,18926.0,20878.0,N/A,HG01975,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,40.3,40296908772.0,2042426.0,N/A,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17835.0,19287.0,21600.0,SRR26545343,N/A,N/A,N/A,N/A,N/A,SAMN33621947,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01975.m64043_211113_003158.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01975_lib1_dc,single,size fractionation,GENOMIC,WGS,62559.0,19748.0,559.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01975.m64043_211113_003158.dc.q20.fastq.gz,PACBIO_SMRT,P2,17645.0,18937.0,20899.0,N/A,HG01975,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,41.92,41924253993.0,2122924.0,N/A,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17837.0,19297.0,21624.0,SRR26545343,N/A,N/A,N/A,N/A,N/A,SAMN33621947,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01975.m64043_211115_222749.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01975_lib1_dc,single,size fractionation,GENOMIC,WGS,62458.0,19760.0,226.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01975.m64043_211115_222749.dc.q20.fastq.gz,PACBIO_SMRT,P2,17647.0,18944.0,20918.0,N/A,HG01975,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.56,32558601172.0,1647701.0,N/A,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16417.0,18273.0,21630.0,SRR26545342,N/A,N/A,N/A,N/A,N/A,SAMN33621948,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02015.m64043_210905_032603.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02015_lib1_dc,single,size fractionation,GENOMIC,WGS,57848.0,18677.0,201.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02015/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02015.m64043_210905_032603.dc.q20.fastq.gz,PACBIO_SMRT,P2,16149.0,17631.0,20738.0,N/A,HG02015,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,44.51,44513001720.0,2383211.0,N/A,HG02015,SAMN33621948,VN046,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16445.0,18353.0,21723.0,SRR26545342,N/A,N/A,N/A,N/A,N/A,SAMN33621948,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02015.m64043_210903_163032.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02015_lib1_dc,single,size fractionation,GENOMIC,WGS,63165.0,18732.0,78.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02015/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02015.m64043_210903_163032.dc.q20.fastq.gz,PACBIO_SMRT,P2,16168.0,17681.0,20825.0,N/A,HG02015,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,44.32,44319574571.0,2365972.0,N/A,HG02015,SAMN33621948,VN046,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16461.0,18414.0,21805.0,SRR26545342,N/A,N/A,N/A,N/A,N/A,SAMN33621948,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02015.m64043_210901_164337.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02015_lib1_dc,single,size fractionation,GENOMIC,WGS,69761.0,18776.0,277.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02015/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02015.m64043_210901_164337.dc.q20.fastq.gz,PACBIO_SMRT,P2,16180.0,17715.0,20903.0,N/A,HG02015,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,37.04,37043142999.0,1972837.0,N/A,HG02015,SAMN33621948,VN046,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18068.0,20710.0,24222.0,SRR26545341,N/A,N/A,N/A,N/A,N/A,SAMN33758784,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02040.m64076_220908_204946.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02040.HFSS2_dc,single,size fractionation,GENOMIC,WGS,65424.0,20407.0,131.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02040/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02040.m64076_220908_204946.dc.q20.fastq.gz,PACBIO_SMRT,P2,17440.0,19777.0,23026.0,N/A,HG02040,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,48.0,48000009407.0,2352028.0,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18415.0,21201.0,24764.0,SRR26545341,N/A,N/A,N/A,N/A,N/A,SAMN33758784,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02040.m64076_220910_174812.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02040.HFSS2_dc,single,size fractionation,GENOMIC,WGS,72616.0,20976.0,225.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02040/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02040.m64076_220910_174812.dc.q20.fastq.gz,PACBIO_SMRT,P2,17791.0,20259.0,23601.0,N/A,HG02040,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,52.91,52914762699.0,2522601.0,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18567.0,21402.0,24986.0,SRR26545341,N/A,N/A,N/A,N/A,N/A,SAMN33758784,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02040.m64076_220912_140850.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02040.HFSS2_dc,single,size fractionation,GENOMIC,WGS,73774.0,21164.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02040/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02040.m64076_220912_140850.dc.q20.fastq.gz,PACBIO_SMRT,P2,17925.0,20450.0,23831.0,N/A,HG02040,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,52.13,52129277237.0,2463054.0,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18096.0,19740.0,22405.0,SRR26545340,N/A,N/A,N/A,N/A,N/A,SAMN33621949,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02056.m64136_211120_043838.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02056_lib1_dc,single,size fractionation,GENOMIC,WGS,57533.0,19928.0,616.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02056.m64136_211120_043838.dc.q20.fastq.gz,PACBIO_SMRT,P2,17773.0,19268.0,21471.0,N/A,HG02056,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,35.02,35024314025.0,1757465.0,N/A,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18103.0,19757.0,22444.0,SRR26545340,N/A,N/A,N/A,N/A,N/A,SAMN33621949,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02056.m64136_211118_185339.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02056_lib1_dc,single,size fractionation,GENOMIC,WGS,60285.0,19943.0,112.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02056.m64136_211118_185339.dc.q20.fastq.gz,PACBIO_SMRT,P2,17777.0,19281.0,21492.0,N/A,HG02056,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,36.22,36223085229.0,1816326.0,N/A,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18106.0,19762.0,22461.0,SRR26545340,N/A,N/A,N/A,N/A,N/A,SAMN33621949,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02056.m64136_211121_153454.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02056_lib1_dc,single,size fractionation,GENOMIC,WGS,65568.0,19942.0,360.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02056.m64136_211121_153454.dc.q20.fastq.gz,PACBIO_SMRT,P2,17778.0,19283.0,21507.0,N/A,HG02056,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,34.86,34863233613.0,1748194.0,N/A,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18493.0,20750.0,24547.0,SRR26545340,N/A,N/A,N/A,N/A,N/A,SAMN33621949,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02056.m64043_220114_181052.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02056_lib1_dc,single,size fractionation,GENOMIC,WGS,62265.0,20730.0,375.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02056.m64043_220114_181052.dc.q20.fastq.gz,PACBIO_SMRT,P2,18019.0,19942.0,23257.0,N/A,HG02056,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.52,32515302036.0,1568503.0,N/A,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17001.0,19376.0,21740.0,SRR26545339,N/A,N/A,N/A,N/A,N/A,SAMN33621950,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02129.m64136_220422_181133.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02129_lib1_dc,single,size fractionation,GENOMIC,WGS,65309.0,19239.0,470.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02129/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02129.m64136_220422_181133.dc.q20.fastq.gz,PACBIO_SMRT,P2,16342.0,18840.0,20985.0,N/A,HG02129,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,43.32,43316522487.0,2251471.0,N/A,HG02129,SAMN33621950,VN079,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17051.0,19406.0,21783.0,SRR26545339,N/A,N/A,N/A,N/A,N/A,SAMN33621950,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02129.m64136_220424_050632.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02129_lib1_dc,single,size fractionation,GENOMIC,WGS,78568.0,19272.0,843.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02129/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02129.m64136_220424_050632.dc.q20.fastq.gz,PACBIO_SMRT,P2,16366.0,18867.0,21016.0,N/A,HG02129,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,36.92,36918341105.0,1915557.0,N/A,HG02129,SAMN33621950,VN079,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17079.0,19434.0,21832.0,SRR26545339,N/A,N/A,N/A,N/A,N/A,SAMN33621950,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02129.m64136_220426_155627.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02129_lib1_dc,single,size fractionation,GENOMIC,WGS,70709.0,19303.0,187.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02129/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02129.m64136_220426_155627.dc.q20.fastq.gz,PACBIO_SMRT,P2,16383.0,18887.0,21056.0,N/A,HG02129,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,46.52,46516822262.0,2409807.0,N/A,HG02129,SAMN33621950,VN079,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17221.0,19381.0,22939.0,SRR26545338,N/A,N/A,N/A,N/A,N/A,SAMN33621951,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02155.m64136_220703_150713.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02155_lib1_dc,single,size fractionation,GENOMIC,WGS,64885.0,19652.0,178.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02155.m64136_220703_150713.dc.q20.fastq.gz,PACBIO_SMRT,P2,16840.0,18642.0,21765.0,N/A,HG02155,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.24,37242055909.0,1895027.0,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17249.0,19439.0,23038.0,SRR26545338,N/A,N/A,N/A,N/A,N/A,SAMN33621951,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02155.m64136_220701_181202.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02155_lib1_dc,single,size fractionation,GENOMIC,WGS,72144.0,19703.0,229.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02155.m64136_220701_181202.dc.q20.fastq.gz,PACBIO_SMRT,P2,16863.0,18685.0,21857.0,N/A,HG02155,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,40.37,40366945019.0,2048692.0,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17289.0,19526.0,23149.0,SRR26545338,N/A,N/A,N/A,N/A,N/A,SAMN33621951,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02155.m64136_220705_120453.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02155_lib1_dc,single,size fractionation,GENOMIC,WGS,64142.0,19775.0,219.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02155.m64136_220705_120453.dc.q20.fastq.gz,PACBIO_SMRT,P2,16896.0,18748.0,21962.0,N/A,HG02155,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.02,35024792210.0,1771124.0,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17510.0,20033.0,23617.0,SRR26545338,N/A,N/A,N/A,N/A,N/A,SAMN33621951,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02155.m64043_220728_173215.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02155_lib1_dc,single,size fractionation,GENOMIC,WGS,59148.0,20091.0,822.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02155.m64043_220728_173215.dc.q20.fastq.gz,PACBIO_SMRT,P2,17056.0,19127.0,22493.0,N/A,HG02155,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,13.5,13495209735.0,671675.0,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18911.0,20472.0,22541.0,SRR26545336,N/A,N/A,N/A,N/A,N/A,SAMN33621952,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02258.m64043_211220_160211.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02258_lib1_dc,single,size fractionation,GENOMIC,WGS,61976.0,20610.0,229.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02258.m64043_211220_160211.dc.q20.fastq.gz,PACBIO_SMRT,P2,18663.0,20133.0,22058.0,N/A,HG02258,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,45.99,45993388076.0,2231524.0,N/A,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18932.0,20509.0,22610.0,SRR26545336,N/A,N/A,N/A,N/A,N/A,SAMN33621952,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02258.m64043_211219_050421.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02258_lib1_dc,single,size fractionation,GENOMIC,WGS,58301.0,20655.0,495.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02258.m64043_211219_050421.dc.q20.fastq.gz,PACBIO_SMRT,P2,18682.0,20164.0,22112.0,N/A,HG02258,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,42.26,42256822964.0,2045789.0,N/A,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18955.0,20528.0,22619.0,SRR26545336,N/A,N/A,N/A,N/A,N/A,SAMN33621952,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02258.m64043_220114_181052.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02258_lib1_dc,single,size fractionation,GENOMIC,WGS,49260.0,20673.0,274.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02258.m64043_220114_181052.dc.q20.fastq.gz,PACBIO_SMRT,P2,18706.0,20189.0,22122.0,N/A,HG02258,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,7.63,7632808242.0,369211.0,N/A,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18961.0,20539.0,22637.0,SRR26545336,N/A,N/A,N/A,N/A,N/A,SAMN33621952,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02258.m64043_211217_180919.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02258_lib1_dc,single,size fractionation,GENOMIC,WGS,73646.0,20682.0,202.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02258.m64043_211217_180919.dc.q20.fastq.gz,PACBIO_SMRT,P2,18711.0,20196.0,22143.0,N/A,HG02258,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.17,37170220107.0,1797149.0,N/A,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17771.0,20972.0,23971.0,SRR26545334,N/A,N/A,N/A,N/A,N/A,SAMN33621953,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02273.m64043_220429_171542.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02273_lib1_dc,single,size fractionation,GENOMIC,WGS,75856.0,20625.0,613.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02273/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02273.m64043_220429_171542.dc.q20.fastq.gz,PACBIO_SMRT,P2,17302.0,20091.0,23028.0,N/A,HG02273,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,43.67,43671247680.0,2117371.0,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17775.0,20986.0,24007.0,SRR26545334,N/A,N/A,N/A,N/A,N/A,SAMN33621953,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02273.m64043_220501_041051.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02273_lib1_dc,single,size fractionation,GENOMIC,WGS,60495.0,20639.0,407.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02273/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02273.m64043_220501_041051.dc.q20.fastq.gz,PACBIO_SMRT,P2,17301.0,20100.0,23051.0,N/A,HG02273,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,44.27,44267577714.0,2144747.0,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17794.0,21012.0,24055.0,SRR26545334,N/A,N/A,N/A,N/A,N/A,SAMN33621953,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02273.m64043_220503_153752.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02273_lib1_dc,single,size fractionation,GENOMIC,WGS,70622.0,20668.0,326.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02273/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02273.m64043_220503_153752.dc.q20.fastq.gz,PACBIO_SMRT,P2,17312.0,20126.0,23083.0,N/A,HG02273,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,49.94,49941655334.0,2416355.0,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,15198.0,17410.0,20356.0,SRR26545333,N/A,N/A,N/A,N/A,N/A,SAMN33758786,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02451.m64076_211212_112351.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02451.HFSS2_dc,single,size fractionation,GENOMIC,WGS,56146.0,17354.0,632.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02451.m64076_211212_112351.dc.q20.fastq.gz,PACBIO_SMRT,P2,14753.0,16683.0,19407.0,N/A,HG02451,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,43.55,43552791329.0,2509604.0,N/A,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,15201.0,17416.0,20370.0,SRR26545333,N/A,N/A,N/A,N/A,N/A,SAMN33758786,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02451.m64076_211208_005550.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02451.HFSS2_dc,single,size fractionation,GENOMIC,WGS,54765.0,17360.0,481.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02451.m64076_211208_005550.dc.q20.fastq.gz,PACBIO_SMRT,P2,14755.0,16686.0,19418.0,N/A,HG02451,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,42.95,42951419076.0,2474076.0,N/A,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,15266.0,17521.0,20482.0,SRR26545333,N/A,N/A,N/A,N/A,N/A,SAMN33758786,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02451.m64076_211211_014755.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02451.HFSS2_dc,single,size fractionation,GENOMIC,WGS,54121.0,17441.0,300.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02451.m64076_211211_014755.dc.q20.fastq.gz,PACBIO_SMRT,P2,14809.0,16779.0,19535.0,N/A,HG02451,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,44.77,44774853633.0,2567205.0,N/A,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18448.0,21322.0,25182.0,SRR26545333,N/A,N/A,N/A,N/A,N/A,SAMN33758786,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02451.m64076_211109_232223.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02451_SRE.HFSS_dc,single,size fractionation,GENOMIC,WGS,72499.0,21296.0,376.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02451.m64076_211109_232223.dc.q20.fastq.gz,PACBIO_SMRT,P2,17834.0,20313.0,23792.0,N/A,HG02451,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,15.65,15649416004.0,734852.0,N/A,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16977.0,19733.0,23358.0,SRR26545332,N/A,N/A,N/A,N/A,N/A,SAMN33758787,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02735.m54329U_211204_121716.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02735.HFSS2_dc,single,size fractionation,GENOMIC,WGS,81176.0,19577.0,109.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02735.m54329U_211204_121716.dc.q20.fastq.gz,PACBIO_SMRT,P2,16339.0,18751.0,22072.0,N/A,HG02735,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.35,37351669566.0,1907854.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17063.0,19859.0,23529.0,SRR26545332,N/A,N/A,N/A,N/A,N/A,SAMN33758787,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02735.m54329U_211209_115915.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02735.HFSS2_dc,single,size fractionation,GENOMIC,WGS,65741.0,19685.0,54.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02735.m54329U_211209_115915.dc.q20.fastq.gz,PACBIO_SMRT,P2,16409.0,18859.0,22220.0,N/A,HG02735,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.94,35935850006.0,1825458.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17107.0,19932.0,23590.0,SRR26545332,N/A,N/A,N/A,N/A,N/A,SAMN33758787,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02735.m64076_211209_102926.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02735.HFSS2_dc,single,size fractionation,GENOMIC,WGS,59931.0,19735.0,60.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02735.m64076_211209_102926.dc.q20.fastq.gz,PACBIO_SMRT,P2,16443.0,18920.0,22293.0,N/A,HG02735,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,41.1,41100663518.0,2082621.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16826.0,19345.0,22827.0,SRR26545332,N/A,N/A,N/A,N/A,N/A,SAMN33758787,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02735.m54329U_211109_002533.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02735_SRE.HFSS_dc,single,size fractionation,GENOMIC,WGS,57727.0,19378.0,77.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02735.m54329U_211109_002533.dc.q20.fastq.gz,PACBIO_SMRT,P2,16307.0,18470.0,21589.0,N/A,HG02735,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,14.58,14578158120.0,752277.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18112.0,20332.0,24504.0,SRR26545330,N/A,N/A,N/A,N/A,N/A,SAMN33621954,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02965.m64043_220717_152237.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02965_lib1_dc,single,size fractionation,GENOMIC,WGS,66908.0,20812.0,68.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02965/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02965.m64043_220717_152237.dc.q20.fastq.gz,PACBIO_SMRT,P2,17707.0,19550.0,22811.0,N/A,HG02965,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,46.68,46683138443.0,2243056.0,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18154.0,20401.0,24644.0,SRR26545330,N/A,N/A,N/A,N/A,N/A,SAMN33621954,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02965.m64043_220719_122051.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02965_lib1_dc,single,size fractionation,GENOMIC,WGS,68079.0,20886.0,214.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02965/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02965.m64043_220719_122051.dc.q20.fastq.gz,PACBIO_SMRT,P2,17739.0,19602.0,22926.0,N/A,HG02965,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,47.37,47372964069.0,2268061.0,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18230.0,20581.0,25009.0,SRR26545330,N/A,N/A,N/A,N/A,N/A,SAMN33621954,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02965.m64043_220715_182700.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02965_lib1_dc,single,size fractionation,GENOMIC,WGS,69454.0,21039.0,98.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02965/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02965.m64043_220715_182700.dc.q20.fastq.gz,PACBIO_SMRT,P2,17790.0,19721.0,23220.0,N/A,HG02965,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.86,38863922809.0,1847158.0,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18290.0,19866.0,21878.0,SRR26545329,N/A,N/A,N/A,N/A,N/A,SAMN33621955,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02976.m64043_220726_203720.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02976_lib1_dc,single,size fractionation,GENOMIC,WGS,57493.0,19935.0,207.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02976.m64043_220726_203720.dc.q20.fastq.gz,PACBIO_SMRT,P2,18020.0,19519.0,21402.0,N/A,HG02976,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,16.7,16699847865.0,837705.0,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18319.0,19907.0,21946.0,SRR26545329,N/A,N/A,N/A,N/A,N/A,SAMN33621955,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02976.m64043_220621_134351.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02976_lib1_dc,single,size fractionation,GENOMIC,WGS,63493.0,19977.0,214.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02976.m64043_220621_134351.dc.q20.fastq.gz,PACBIO_SMRT,P2,18045.0,19557.0,21461.0,N/A,HG02976,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,28.11,28110128830.0,1407070.0,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18324.0,19913.0,21949.0,SRR26545329,N/A,N/A,N/A,N/A,N/A,SAMN33621955,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02976.m64043_220619_164635.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02976_lib1_dc,single,size fractionation,GENOMIC,WGS,69184.0,19980.0,634.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02976.m64043_220619_164635.dc.q20.fastq.gz,PACBIO_SMRT,P2,18051.0,19562.0,21464.0,N/A,HG02976,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,41.12,41124467587.0,2058252.0,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18359.0,19964.0,22026.0,SRR26545329,N/A,N/A,N/A,N/A,N/A,SAMN33621955,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02976.m64043_220617_195135.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02976_lib1_dc,single,size fractionation,GENOMIC,WGS,62051.0,20039.0,471.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02976.m64043_220617_195135.dc.q20.fastq.gz,PACBIO_SMRT,P2,18082.0,19607.0,21531.0,N/A,HG02976,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.79,38792124643.0,1935736.0,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16693.0,20345.0,24860.0,SRR26545328,N/A,N/A,N/A,N/A,N/A,SAMN33758789,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03017.m54329U_211225_070909.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03017.HFSS_dc,single,size fractionation,GENOMIC,WGS,68758.0,19601.0,321.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03017.m54329U_211225_070909.dc.q20.fastq.gz,PACBIO_SMRT,P2,15489.0,18704.0,22864.0,N/A,HG03017,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,41.38,41376262119.0,2110857.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16791.0,20513.0,25020.0,SRR26545328,N/A,N/A,N/A,N/A,N/A,SAMN33758789,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03017.m64076_220216_013707.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03017.HFSS_dc,single,size fractionation,GENOMIC,WGS,67208.0,19728.0,363.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03017.m64076_220216_013707.dc.q20.fastq.gz,PACBIO_SMRT,P2,15571.0,18842.0,23033.0,N/A,HG03017,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,9.67,9669883547.0,490160.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17061.0,20909.0,25532.0,SRR26545328,N/A,N/A,N/A,N/A,N/A,SAMN33758789,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03017.m54329U_220117_123334.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03017.HFSS_dc,single,size fractionation,GENOMIC,WGS,67584.0,20089.0,497.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03017.m54329U_220117_123334.dc.q20.fastq.gz,PACBIO_SMRT,P2,15784.0,19179.0,23513.0,N/A,HG03017,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.94,33944353640.0,1689695.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17072.0,20922.0,25581.0,SRR26545328,N/A,N/A,N/A,N/A,N/A,SAMN33758789,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03017.m54329U_220109_103416.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03017.HFSS_dc,single,size fractionation,GENOMIC,WGS,61843.0,20110.0,502.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03017.m54329U_220109_103416.dc.q20.fastq.gz,PACBIO_SMRT,P2,15801.0,19189.0,23539.0,N/A,HG03017,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,36.33,36331570532.0,1806558.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18227.0,22011.0,26361.0,SRR26545328,N/A,N/A,N/A,N/A,N/A,SAMN33758789,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03017.m64076_221001_041132.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03017.HFSS_dc,single,size fractionation,GENOMIC,WGS,75864.0,21174.0,398.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03017.m64076_221001_041132.dc.q20.fastq.gz,PACBIO_SMRT,P2,16931.0,20457.0,24597.0,N/A,HG03017,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,17.18,17181739490.0,811437.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16646.0,19670.0,23521.0,SRR26545327,N/A,N/A,N/A,N/A,N/A,SAMN33758790,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03041.m54329U_211214_012740.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03041.HFSS_dc,single,size fractionation,GENOMIC,WGS,70885.0,19356.0,351.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03041.m54329U_211214_012740.dc.q20.fastq.gz,PACBIO_SMRT,P2,15860.0,18511.0,22051.0,N/A,HG03041,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,44.9,44900731287.0,2319689.0,N/A,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16683.0,19719.0,23595.0,SRR26545327,N/A,N/A,N/A,N/A,N/A,SAMN33758790,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03041.m54329U_211217_080751.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03041.HFSS_dc,single,size fractionation,GENOMIC,WGS,59152.0,19405.0,198.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03041.m54329U_211217_080751.dc.q20.fastq.gz,PACBIO_SMRT,P2,15891.0,18557.0,22115.0,N/A,HG03041,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,44.1,44098173911.0,2272419.0,N/A,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16767.0,19836.0,23713.0,SRR26545327,N/A,N/A,N/A,N/A,N/A,SAMN33758790,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03041.m54329U_211215_225017.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03041.HFSS_dc,single,size fractionation,GENOMIC,WGS,64920.0,19498.0,254.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03041.m54329U_211215_225017.dc.q20.fastq.gz,PACBIO_SMRT,P2,15959.0,18664.0,22242.0,N/A,HG03041,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,43.17,43166262097.0,2213796.0,N/A,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16875.0,19909.0,23693.0,SRR26545326,N/A,N/A,N/A,N/A,N/A,SAMN33758791,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03130.m64076_220513_215716.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03130.HFSS_dc,single,size fractionation,GENOMIC,WGS,60703.0,19584.0,63.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03130/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03130.m64076_220513_215716.dc.q20.fastq.gz,PACBIO_SMRT,P2,16095.0,18774.0,22299.0,N/A,HG03130,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,46.1,46104697209.0,2354099.0,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16980.0,20014.0,23780.0,SRR26545326,N/A,N/A,N/A,N/A,N/A,SAMN33758791,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03130.m64076_220516_221911.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03130.HFSS_dc,single,size fractionation,GENOMIC,WGS,63752.0,19679.0,124.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03130/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03130.m64076_220516_221911.dc.q20.fastq.gz,PACBIO_SMRT,P2,16195.0,18890.0,22402.0,N/A,HG03130,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,46.6,46597144395.0,2367798.0,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17060.0,20133.0,23920.0,SRR26545326,N/A,N/A,N/A,N/A,N/A,SAMN33758791,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03130.m64076_220518_191414.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03130.HFSS_dc,single,size fractionation,GENOMIC,WGS,63755.0,19773.0,78.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03130/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03130.m64076_220518_191414.dc.q20.fastq.gz,PACBIO_SMRT,P2,16256.0,18989.0,22531.0,N/A,HG03130,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,46.73,46730487013.0,2363321.0,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18354.0,21822.0,26099.0,SRR26545325,N/A,N/A,N/A,N/A,N/A,SAMN33758792,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03139.m54329U_220519_225150.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03139.HFSS_dc,single,size fractionation,GENOMIC,WGS,69097.0,21363.0,165.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03139.m54329U_220519_225150.dc.q20.fastq.gz,PACBIO_SMRT,P2,17402.0,20479.0,24480.0,N/A,HG03139,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,47.86,47864327154.0,2240511.0,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18543.0,22080.0,26347.0,SRR26545325,N/A,N/A,N/A,N/A,N/A,SAMN33758792,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03139.m54329U_220525_111437.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03139.HFSS_dc,single,size fractionation,GENOMIC,WGS,82601.0,21561.0,1.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03139.m54329U_220525_111437.dc.q20.fastq.gz,PACBIO_SMRT,P2,17553.0,20712.0,24749.0,N/A,HG03139,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,51.39,51390716180.0,2383395.0,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18562.0,22108.0,26385.0,SRR26545325,N/A,N/A,N/A,N/A,N/A,SAMN33758792,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03139.m54329U_220523_155616.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03139.HFSS_dc,single,size fractionation,GENOMIC,WGS,73240.0,21586.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03139.m54329U_220523_155616.dc.q20.fastq.gz,PACBIO_SMRT,P2,17571.0,20733.0,24777.0,N/A,HG03139,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,52.55,52553906159.0,2434546.0,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17918.0,20538.0,24414.0,SRR26545323,N/A,N/A,N/A,N/A,N/A,SAMN33621956,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03195.m64136_220619_164654.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03195_lib1_dc,single,size fractionation,GENOMIC,WGS,64377.0,20710.0,51.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03195.m64136_220619_164654.dc.q20.fastq.gz,PACBIO_SMRT,P2,17478.0,19520.0,23158.0,N/A,HG03195,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,39.97,39969011098.0,1929937.0,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17945.0,20614.0,24524.0,SRR26545323,N/A,N/A,N/A,N/A,N/A,SAMN33621956,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03195.m64136_220617_195203.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03195_lib1_dc,single,size fractionation,GENOMIC,WGS,68832.0,20768.0,80.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03195.m64136_220617_195203.dc.q20.fastq.gz,PACBIO_SMRT,P2,17496.0,19570.0,23249.0,N/A,HG03195,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,42.65,42653820245.0,2053775.0,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18071.0,20856.0,24697.0,SRR26545323,N/A,N/A,N/A,N/A,N/A,SAMN33621956,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03195.m64136_220621_134558.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03195_lib1_dc,single,size fractionation,GENOMIC,WGS,69709.0,20925.0,94.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03195.m64136_220621_134558.dc.q20.fastq.gz,PACBIO_SMRT,P2,17605.0,19766.0,23449.0,N/A,HG03195,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.45,37451919420.0,1789777.0,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,21569.0,23831.0,26876.0,SRR26545323,N/A,N/A,N/A,N/A,N/A,SAMN33621956,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03195.m64043_220726_203720.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03195_lib1_dc,single,size fractionation,GENOMIC,WGS,57539.0,23879.0,896.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03195.m64043_220726_203720.dc.q20.fastq.gz,PACBIO_SMRT,P2,21130.0,23231.0,26031.0,N/A,HG03195,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,3.17,3165970127.0,132583.0,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16120.0,18479.0,21643.0,SRR26545322,N/A,N/A,N/A,N/A,N/A,SAMN33758793,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03209.m64076_220526_115049.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03209.HFSS_dc,single,size fractionation,GENOMIC,WGS,55651.0,18422.0,404.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03209.m64076_220526_115049.dc.q20.fastq.gz,PACBIO_SMRT,P2,15627.0,17694.0,20594.0,N/A,HG03209,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,30.61,30608231679.0,1661495.0,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16349.0,18849.0,22134.0,SRR26545322,N/A,N/A,N/A,N/A,N/A,SAMN33758793,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03209.m64076_220524_161808.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03209.HFSS_dc,single,size fractionation,GENOMIC,WGS,66291.0,18729.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03209.m64076_220524_161808.dc.q20.fastq.gz,PACBIO_SMRT,P2,15806.0,18002.0,21042.0,N/A,HG03209,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,46.15,46147554036.0,2463835.0,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16398.0,18922.0,22221.0,SRR26545322,N/A,N/A,N/A,N/A,N/A,SAMN33758793,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03209.m64076_220520_234906.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03209.HFSS_dc,single,size fractionation,GENOMIC,WGS,75246.0,18788.0,234.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03209.m64076_220520_234906.dc.q20.fastq.gz,PACBIO_SMRT,P2,15845.0,18066.0,21122.0,N/A,HG03209,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,48.14,48135688091.0,2561922.0,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,16913.0,19576.0,22842.0,SRR26545322,N/A,N/A,N/A,N/A,N/A,SAMN33758793,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03209.m64076_221001_041132.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03209.HFSS_dc,single,size fractionation,GENOMIC,WGS,56120.0,19312.0,187.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03209.m64076_221001_041132.dc.q20.fastq.gz,PACBIO_SMRT,P2,16296.0,18693.0,21804.0,N/A,HG03209,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,15.73,15733637619.0,814679.0,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18378.0,20047.0,22207.0,SRR26545321,N/A,N/A,N/A,N/A,N/A,SAMN33621957,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03225.m64043_220726_203720.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03225_lib1_dc,single,size fractionation,GENOMIC,WGS,59071.0,20119.0,523.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03225/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03225.m64043_220726_203720.dc.q20.fastq.gz,PACBIO_SMRT,P2,18069.0,19662.0,21652.0,N/A,HG03225,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,26.5,26502031981.0,1317249.0,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,19115.0,21372.0,24582.0,SRR26545321,N/A,N/A,N/A,N/A,N/A,SAMN33621957,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03225.m64136_220518_004520.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03225_lib1_dc,single,size fractionation,GENOMIC,WGS,56883.0,21426.0,756.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03225/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03225.m64136_220518_004520.dc.q20.fastq.gz,PACBIO_SMRT,P2,18661.0,20697.0,23594.0,N/A,HG03225,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,31.58,31575236912.0,1473634.0,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,19088.0,21368.0,24585.0,SRR26545321,N/A,N/A,N/A,N/A,N/A,SAMN33621957,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03225.m64043_220518_120044.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03225_lib1_dc,single,size fractionation,GENOMIC,WGS,66440.0,21407.0,201.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03225/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03225.m64043_220518_120044.dc.q20.fastq.gz,PACBIO_SMRT,P2,18631.0,20682.0,23597.0,N/A,HG03225,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.08,38075046543.0,1778562.0,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17306.0,20650.0,24758.0,SRR26545320,N/A,N/A,N/A,N/A,N/A,SAMN33758794,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03239.m64076_220108_100904.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03239.HFSS_dc,single,size fractionation,GENOMIC,WGS,69474.0,20149.0,407.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03239.m64076_220108_100904.dc.q20.fastq.gz,PACBIO_SMRT,P2,16361.0,19318.0,23154.0,N/A,HG03239,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,44.38,44377708664.0,2202415.0,N/A,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17333.0,20696.0,24861.0,SRR26545320,N/A,N/A,N/A,N/A,N/A,SAMN33758794,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03239.m54329U_220105_011819.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03239.HFSS_dc,single,size fractionation,GENOMIC,WGS,66504.0,20189.0,349.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03239.m54329U_220105_011819.dc.q20.fastq.gz,PACBIO_SMRT,P2,16384.0,19344.0,23230.0,N/A,HG03239,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,42.6,42601512093.0,2110106.0,N/A,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17478.0,20872.0,25011.0,SRR26545320,N/A,N/A,N/A,N/A,N/A,SAMN33758794,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03239.m64076_220106_231243.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03239.HFSS_dc,single,size fractionation,GENOMIC,WGS,67583.0,20365.0,51.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03239.m64076_220106_231243.dc.q20.fastq.gz,PACBIO_SMRT,P2,16518.0,19525.0,23407.0,N/A,HG03239,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,45.07,45069093757.0,2213029.0,N/A,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17007.0,20201.0,24261.0,SRR26545319,N/A,N/A,N/A,N/A,N/A,SAMN33758795,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03704.m54329U_220203_054640.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03704.HFSS3_dc,single,size fractionation,GENOMIC,WGS,64291.0,19907.0,211.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03704.m54329U_220203_054640.dc.q20.fastq.gz,PACBIO_SMRT,P2,16175.0,18958.0,22692.0,N/A,HG03704,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,19.38,19378076147.0,973408.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17074.0,20313.0,24414.0,SRR26545319,N/A,N/A,N/A,N/A,N/A,SAMN33758795,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03704.m54329U_220207_224702.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03704.HFSS3_dc,single,size fractionation,GENOMIC,WGS,68385.0,20001.0,78.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03704.m54329U_220207_224702.dc.q20.fastq.gz,PACBIO_SMRT,P2,16230.0,19048.0,22815.0,N/A,HG03704,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.73,32728988289.0,1636299.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17100.0,20362.0,24491.0,SRR26545319,N/A,N/A,N/A,N/A,N/A,SAMN33758795,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03704.m64076_220216_013707.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03704.HFSS3_dc,single,size fractionation,GENOMIC,WGS,65949.0,20042.0,55.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03704.m64076_220216_013707.dc.q20.fastq.gz,PACBIO_SMRT,P2,16242.0,19083.0,22868.0,N/A,HG03704,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,14.73,14731492664.0,735009.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17924.0,20800.0,24645.0,SRR26545319,N/A,N/A,N/A,N/A,N/A,SAMN33758795,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03704.m54329U_211111_222027.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03704_SRE.HFSS_dc,single,size fractionation,GENOMIC,WGS,67019.0,20762.0,633.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03704.m54329U_211111_222027.dc.q20.fastq.gz,PACBIO_SMRT,P2,17300.0,19779.0,23266.0,N/A,HG03704,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,24.06,24057997215.0,1158701.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17963.0,20863.0,24755.0,SRR26545319,N/A,N/A,N/A,N/A,N/A,SAMN33758795,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03704.m54329U_211105_213234.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03704_SRE.HFSS_dc,single,size fractionation,GENOMIC,WGS,61092.0,20821.0,494.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03704.m54329U_211105_213234.dc.q20.fastq.gz,PACBIO_SMRT,P2,17330.0,19833.0,23351.0,N/A,HG03704,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,28.27,28272672004.0,1357879.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,19086.0,20669.0,22889.0,SRR26545318,N/A,N/A,N/A,N/A,N/A,SAMN33621958,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03834.m64043_220110_170603.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03834_lib1_dc,single,size fractionation,GENOMIC,WGS,68202.0,20894.0,218.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03834/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03834.m64043_220110_170603.dc.q20.fastq.gz,PACBIO_SMRT,P2,18845.0,20311.0,22338.0,N/A,HG03834,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,43.31,43314020799.0,2072948.0,N/A,HG03834,SAMN33621958,BD28,BEB,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,19099.0,20689.0,22932.0,SRR26545318,N/A,N/A,N/A,N/A,N/A,SAMN33621958,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03834.m64043_220109_060731.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03834_lib1_dc,single,size fractionation,GENOMIC,WGS,59137.0,20918.0,633.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03834/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03834.m64043_220109_060731.dc.q20.fastq.gz,PACBIO_SMRT,P2,18857.0,20329.0,22373.0,N/A,HG03834,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,44.86,44856751278.0,2144359.0,N/A,HG03834,SAMN33621958,BD28,BEB,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,19105.0,20700.0,22939.0,SRR26545318,N/A,N/A,N/A,N/A,N/A,SAMN33621958,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03834.m64043_220107_191226.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03834_lib1_dc,single,size fractionation,GENOMIC,WGS,62360.0,20924.0,150.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03834/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03834.m64043_220107_191226.dc.q20.fastq.gz,PACBIO_SMRT,P2,18862.0,20336.0,22383.0,N/A,HG03834,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,44.25,44246676139.0,2114567.0,N/A,HG03834,SAMN33621958,BD28,BEB,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17541.0,19598.0,22033.0,SRR26545317,N/A,N/A,N/A,N/A,N/A,SAMN33621959,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG06807.m64043_211121_164646.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,MGISTL_PAN027_HG06807_lib1_dc,single,size fractionation,GENOMIC,WGS,59863.0,19462.0,392.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG06807/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG06807.m64043_211121_164646.dc.q20.fastq.gz,PACBIO_SMRT,P2,16991.0,19074.0,21318.0,N/A,HG06807,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,39.8,39801221379.0,2045015.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17596.0,19651.0,22091.0,SRR26545317,N/A,N/A,N/A,N/A,N/A,SAMN33621959,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG06807.m64043_211118_185250.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,MGISTL_PAN027_HG06807_lib1_dc,single,size fractionation,GENOMIC,WGS,60970.0,19511.0,54.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG06807/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG06807.m64043_211118_185250.dc.q20.fastq.gz,PACBIO_SMRT,P2,17050.0,19130.0,21375.0,N/A,HG06807,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,40.49,40486148287.0,2074968.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17588.0,19657.0,22115.0,SRR26545317,N/A,N/A,N/A,N/A,N/A,SAMN33621959,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG06807.m64043_211120_054831.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,MGISTL_PAN027_HG06807_lib1_dc,single,size fractionation,GENOMIC,WGS,61974.0,19521.0,778.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG06807/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG06807.m64043_211120_054831.dc.q20.fastq.gz,PACBIO_SMRT,P2,17039.0,19124.0,21389.0,N/A,HG06807,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,40.96,40956155223.0,2097981.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18587.0,20089.0,22096.0,SRR26545317,N/A,N/A,N/A,N/A,N/A,SAMN33621959,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG06807.m64043_211222_184851.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,MGISTL_PAN027_HG06807_lib1_dc,single,size fractionation,GENOMIC,WGS,50882.0,20223.0,471.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG06807/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG06807.m64043_211222_184851.dc.q20.fastq.gz,PACBIO_SMRT,P2,18360.0,19777.0,21651.0,N/A,HG06807,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,5.38,5380961739.0,266071.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17515.0,20503.0,24336.0,SRR26545316,N/A,N/A,N/A,N/A,N/A,SAMN33758796,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18522.m54329U_220607_194753.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18522.HFSS_dc,single,size fractionation,GENOMIC,WGS,68821.0,20245.0,151.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18522.m54329U_220607_194753.dc.q20.fastq.gz,PACBIO_SMRT,P2,16787.0,19423.0,22963.0,N/A,NA18522,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,52.78,52778863034.0,2606914.0,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17687.0,20710.0,24542.0,SRR26545316,N/A,N/A,N/A,N/A,N/A,SAMN33758796,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18522.m54329U_220605_194957.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18522.HFSS_dc,single,size fractionation,GENOMIC,WGS,63653.0,20418.0,258.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18522.m54329U_220605_194957.dc.q20.fastq.gz,PACBIO_SMRT,P2,16944.0,19621.0,23198.0,N/A,NA18522,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,48.38,48379025716.0,2369316.0,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17726.0,20761.0,24609.0,SRR26545316,N/A,N/A,N/A,N/A,N/A,SAMN33758796,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18522.m54329U_220604_002013.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18522.HFSS_dc,single,size fractionation,GENOMIC,WGS,62626.0,20463.0,171.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18522.m54329U_220604_002013.dc.q20.fastq.gz,PACBIO_SMRT,P2,16975.0,19663.0,23257.0,N/A,NA18522,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,47.37,47365852194.0,2314654.0,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17086.0,18910.0,21802.0,SRR26545315,N/A,N/A,N/A,N/A,N/A,SAMN33621960,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18612.m64043_220712_145025.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18612_lib1_dc,single,size fractionation,GENOMIC,WGS,55792.0,19144.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18612.m64043_220712_145025.dc.q20.fastq.gz,PACBIO_SMRT,P2,16740.0,18371.0,20844.0,N/A,NA18612,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,42.03,42026657293.0,2195233.0,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17142.0,19004.0,21971.0,SRR26545315,N/A,N/A,N/A,N/A,N/A,SAMN33621960,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18612.m64043_220708_205637.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18612_lib1_dc,single,size fractionation,GENOMIC,WGS,69844.0,19241.0,216.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18612.m64043_220708_205637.dc.q20.fastq.gz,PACBIO_SMRT,P2,16790.0,18449.0,20987.0,N/A,NA18612,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,40.18,40178243656.0,2088141.0,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17177.0,19055.0,22042.0,SRR26545315,N/A,N/A,N/A,N/A,N/A,SAMN33621960,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18612.m64043_220710_175250.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18612_lib1_dc,single,size fractionation,GENOMIC,WGS,62025.0,19289.0,94.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18612.m64043_220710_175250.dc.q20.fastq.gz,PACBIO_SMRT,P2,16821.0,18492.0,21053.0,N/A,NA18612,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,43.92,43921276073.0,2276997.0,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,14930.0,16162.0,17526.0,SRR26545312,N/A,N/A,N/A,N/A,N/A,SAMN33621961,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18971.m64043_220728_173215.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18971_lib1_dc,single,size fractionation,GENOMIC,WGS,41507.0,16074.0,852.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18971.m64043_220728_173215.dc.q20.fastq.gz,PACBIO_SMRT,P2,14717.0,15930.0,17261.0,N/A,NA18971,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,13.42,13417983575.0,834762.0,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18584.0,20950.0,23829.0,SRR26545312,N/A,N/A,N/A,N/A,N/A,SAMN33621961,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18971.m64043_220703_150718.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18971_lib1_dc,single,size fractionation,GENOMIC,WGS,66060.0,20730.0,268.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18971.m64043_220703_150718.dc.q20.fastq.gz,PACBIO_SMRT,P2,18009.0,20266.0,22971.0,N/A,NA18971,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.51,37513233912.0,1809594.0,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18626.0,20996.0,23871.0,SRR26545312,N/A,N/A,N/A,N/A,N/A,SAMN33621961,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18971.m64043_220701_181144.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18971_lib1_dc,single,size fractionation,GENOMIC,WGS,67714.0,20775.0,71.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18971.m64043_220701_181144.dc.q20.fastq.gz,PACBIO_SMRT,P2,18056.0,20311.0,23018.0,N/A,NA18971,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,39.1,39097735609.0,1881896.0,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18670.0,21059.0,23954.0,SRR26545312,N/A,N/A,N/A,N/A,N/A,SAMN33621961,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18971.m64043_220705_120954.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18971_lib1_dc,single,size fractionation,GENOMIC,WGS,68021.0,20840.0,249.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18971.m64043_220705_120954.dc.q20.fastq.gz,PACBIO_SMRT,P2,18099.0,20367.0,23095.0,N/A,NA18971,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.15,38145066508.0,1830361.0,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,19193.0,20760.0,22574.0,SRR26545308,N/A,N/A,N/A,N/A,N/A,SAMN33621962,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA20805.m64136_220726_203708.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA20805_lib1_dc,single,size fractionation,GENOMIC,WGS,66651.0,20668.0,203.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20805.m64136_220726_203708.dc.q20.fastq.gz,PACBIO_SMRT,P2,18927.0,20459.0,22216.0,N/A,NA20805,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,43.47,43466891933.0,2103074.0,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,19214.0,20782.0,22595.0,SRR26545308,N/A,N/A,N/A,N/A,N/A,SAMN33621962,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA20805.m64136_220730_113921.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA20805_lib1_dc,single,size fractionation,GENOMIC,WGS,73183.0,20694.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20805.m64136_220730_113921.dc.q20.fastq.gz,PACBIO_SMRT,P2,18948.0,20482.0,22238.0,N/A,NA20805,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,45.8,45800547928.0,2213142.0,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,19217.0,20787.0,22600.0,SRR26545308,N/A,N/A,N/A,N/A,N/A,SAMN33621962,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA20805.m64136_220728_160902.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA20805_lib1_dc,single,size fractionation,GENOMIC,WGS,69125.0,20696.0,41.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20805.m64136_220728_160902.dc.q20.fastq.gz,PACBIO_SMRT,P2,18948.0,20486.0,22243.0,N/A,NA20805,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,45.91,45913998332.0,2218413.0,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18348.0,21041.0,24496.0,SRR26545347,N/A,N/A,N/A,N/A,N/A,SAMN33758778,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00099.m54329U_220825_174247.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00099_1.HFSS_dc,single,size fractionation,GENOMIC,WGS,64413.0,20874.0,107.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00099/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00099.m54329U_220825_174247.dc.q20.fastq.gz,PACBIO_SMRT,P2,17762.0,20158.0,23398.0,N/A,HG00099,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,56.1,56102007798.0,2687625.0,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17731.0,20061.0,23169.0,SRR26545347,N/A,N/A,N/A,N/A,N/A,SAMN33758778,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00099.m54329U_220827_143814.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00099_2.HFSS_dc,single,size fractionation,GENOMIC,WGS,62341.0,20020.0,345.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00099/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00099.m54329U_220827_143814.dc.q20.fastq.gz,PACBIO_SMRT,P2,17277.0,19348.0,22242.0,N/A,HG00099,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,52.92,52918724515.0,2643186.0,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17772.0,20126.0,23248.0,SRR26545347,N/A,N/A,N/A,N/A,N/A,SAMN33758778,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00099.m54329U_220829_095708.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00099_2.HFSS_dc,single,size fractionation,GENOMIC,WGS,59992.0,20070.0,138.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00099/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00099.m54329U_220829_095708.dc.q20.fastq.gz,PACBIO_SMRT,P2,17309.0,19403.0,22315.0,N/A,HG00099,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,57.54,57539149577.0,2866917.0,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17476.0,19949.0,23253.0,SRR26545335,N/A,N/A,N/A,N/A,N/A,SAMN33758779,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00280.m54329U_220901_221341.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00280.HFSS_dc,single,size fractionation,GENOMIC,WGS,66666.0,19922.0,91.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00280/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00280.m54329U_220901_221341.dc.q20.fastq.gz,PACBIO_SMRT,P2,16987.0,19159.0,22208.0,N/A,HG00280,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,55.1,55104620054.0,2766007.0,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17549.0,20043.0,23323.0,SRR26545335,N/A,N/A,N/A,N/A,N/A,SAMN33758779,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00280.m64076_220831_191646.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00280.HFSS_dc,single,size fractionation,GENOMIC,WGS,63656.0,19988.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00280/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00280.m64076_220831_191646.dc.q20.fastq.gz,PACBIO_SMRT,P2,17049.0,19244.0,22305.0,N/A,HG00280,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,42.32,42317282570.0,2117048.0,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18112.0,20808.0,24128.0,SRR26545335,N/A,N/A,N/A,N/A,N/A,SAMN33758779,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00280.m64457e_220825_195635.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00280.HFSS_dc,single,size fractionation,GENOMIC,WGS,63894.0,20606.0,112.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00280/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00280.m64457e_220825_195635.dc.q20.fastq.gz,PACBIO_SMRT,P2,17533.0,19955.0,23125.0,N/A,HG00280,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,54.14,54142441428.0,2627493.0,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17838.0,20307.0,23473.0,SRR26545337,N/A,N/A,N/A,N/A,N/A,SAMN33758785,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02165.m64076_220906_083112.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG02165.HFSS2_dc,single,size fractionation,GENOMIC,WGS,87882.0,20188.0,87.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02165/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02165.m64076_220906_083112.dc.q20.fastq.gz,PACBIO_SMRT,P2,17336.0,19537.0,22524.0,N/A,HG02165,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,52.17,52170777564.0,2584216.0,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17979.0,20487.0,23651.0,SRR26545337,N/A,N/A,N/A,N/A,N/A,SAMN33758785,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02165.m64076_220904_113359.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG02165.HFSS2_dc,single,size fractionation,GENOMIC,WGS,72650.0,20338.0,130.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02165/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02165.m64076_220904_113359.dc.q20.fastq.gz,PACBIO_SMRT,P2,17463.0,19709.0,22708.0,N/A,HG02165,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,50.23,50229787137.0,2469674.0,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18516.0,21244.0,24474.0,SRR26545337,N/A,N/A,N/A,N/A,N/A,SAMN33758785,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02165.m64076_220902_143723.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG02165.HFSS2_dc,single,size fractionation,GENOMIC,WGS,66734.0,20961.0,99.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02165/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02165.m64076_220902_143723.dc.q20.fastq.gz,PACBIO_SMRT,P2,17922.0,20399.0,23533.0,N/A,HG02165,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,55.04,55037083639.0,2625582.0,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,19019.0,22638.0,27067.0,SRR26545331,N/A,N/A,N/A,N/A,N/A,SAMN33758788,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02922.m54329U_220903_190900.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG02922.HFSS2_dc,single,size fractionation,GENOMIC,WGS,79382.0,22101.0,94.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02922.m54329U_220903_190900.dc.q20.fastq.gz,PACBIO_SMRT,P2,17997.0,21224.0,25387.0,N/A,HG02922,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,50.85,50853098058.0,2300856.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,19088.0,22733.0,27136.0,SRR26545331,N/A,N/A,N/A,N/A,N/A,SAMN33758788,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02922.m54329U_220905_144015.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG02922.HFSS2_dc,single,size fractionation,GENOMIC,WGS,70046.0,22169.0,106.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02922.m54329U_220905_144015.dc.q20.fastq.gz,PACBIO_SMRT,P2,18053.0,21313.0,25468.0,N/A,HG02922,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,52.66,52662515153.0,2375491.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,19097.0,22742.0,27144.0,SRR26545331,N/A,N/A,N/A,N/A,N/A,SAMN33758788,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02922.m54329U_220907_100858.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG02922.HFSS2_dc,single,size fractionation,GENOMIC,WGS,79336.0,22179.0,62.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02922.m54329U_220907_100858.dc.q20.fastq.gz,PACBIO_SMRT,P2,18063.0,21326.0,25482.0,N/A,HG02922,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,51.41,51413282571.0,2318045.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,15993.0,18290.0,21372.0,SRR26545331,N/A,N/A,N/A,N/A,N/A,SAMN33758788,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02922.m54329U_220816_182601.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG02922.HFSS_dc,single,size fractionation,GENOMIC,WGS,53624.0,18249.0,177.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02922.m54329U_220816_182601.dc.q20.fastq.gz,PACBIO_SMRT,P2,15503.0,17530.0,20338.0,N/A,HG02922,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,22.69,22686605933.0,1243109.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17784.0,20210.0,23363.0,SRR26545314,N/A,N/A,N/A,N/A,N/A,SAMN33758797,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18747.m54329U_220823_191353.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG18747_1.HFSS_dc,single,size fractionation,GENOMIC,WGS,79549.0,20088.0,33.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18747.m54329U_220823_191353.dc.q20.fastq.gz,PACBIO_SMRT,P2,17275.0,19456.0,22407.0,N/A,NA18747,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,52.25,52249233160.0,2600981.0,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18240.0,20845.0,24034.0,SRR26545314,N/A,N/A,N/A,N/A,N/A,SAMN33758797,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18747.m64076_221001_041132.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG18747_1.HFSS_dc,single,size fractionation,GENOMIC,WGS,56150.0,20608.0,261.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18747.m64076_221001_041132.dc.q20.fastq.gz,PACBIO_SMRT,P2,17679.0,20046.0,23100.0,N/A,NA18747,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,11.05,11045353698.0,535967.0,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18304.0,21151.0,24660.0,SRR26545314,N/A,N/A,N/A,N/A,N/A,SAMN33758797,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18747.m64076_220828_113336.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG18747_2.HFSS_dc,single,size fractionation,GENOMIC,WGS,100381.0,20895.0,310.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18747.m64076_220828_113336.dc.q20.fastq.gz,PACBIO_SMRT,P2,17663.0,20204.0,23537.0,N/A,NA18747,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.27,38267150734.0,1831328.0,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18579.0,21490.0,24994.0,SRR26545314,N/A,N/A,N/A,N/A,N/A,SAMN33758797,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18747.m64076_220826_143529.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG18747_2.HFSS_dc,single,size fractionation,GENOMIC,WGS,94866.0,21184.0,79.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18747.m64076_220826_143529.dc.q20.fastq.gz,PACBIO_SMRT,P2,17908.0,20530.0,23895.0,N/A,NA18747,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,36.38,36384789825.0,1717517.0,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18402.0,21142.0,24541.0,SRR26545311,N/A,N/A,N/A,N/A,N/A,SAMN33758798,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18983.m64457e_220906_104717.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG18983.HFSS2_dc,single,size fractionation,GENOMIC,WGS,67640.0,20919.0,93.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18983.m64457e_220906_104717.dc.q20.fastq.gz,PACBIO_SMRT,P2,17801.0,20258.0,23491.0,N/A,NA18983,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,50.45,50447860405.0,2411520.0,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18627.0,21417.0,24804.0,SRR26545311,N/A,N/A,N/A,N/A,N/A,SAMN33758798,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18983.m64457e_220902_165459.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG18983.HFSS2_dc,single,size fractionation,GENOMIC,WGS,76258.0,21146.0,34.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18983.m64457e_220902_165459.dc.q20.fastq.gz,PACBIO_SMRT,P2,18005.0,20525.0,23772.0,N/A,NA18983,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,51.19,51186272600.0,2420594.0,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18810.0,21684.0,25111.0,SRR26545311,N/A,N/A,N/A,N/A,N/A,SAMN33758798,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18983.m64457e_220904_135104.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG18983.HFSS2_dc,single,size fractionation,GENOMIC,WGS,81056.0,21361.0,306.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18983.m64457e_220904_135104.dc.q20.fastq.gz,PACBIO_SMRT,P2,18152.0,20764.0,24069.0,N/A,NA18983,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,49.33,49331386607.0,2309378.0,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18330.0,21301.0,25103.0,SRR26545310,N/A,N/A,N/A,N/A,N/A,SAMN33758799,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA19043.m54329U_220918_114340.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG19043.HFSS_dc,single,size fractionation,GENOMIC,WGS,69418.0,21029.0,91.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA19043.m54329U_220918_114340.dc.q20.fastq.gz,PACBIO_SMRT,P2,17607.0,20246.0,23775.0,N/A,NA19043,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,48.71,48707102911.0,2316125.0,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18394.0,21404.0,25224.0,SRR26545310,N/A,N/A,N/A,N/A,N/A,SAMN33758799,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA19043.m54329U_220920_065703.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG19043.HFSS_dc,single,size fractionation,GENOMIC,WGS,87309.0,21115.0,210.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA19043.m54329U_220920_065703.dc.q20.fastq.gz,PACBIO_SMRT,P2,17664.0,20329.0,23894.0,N/A,NA19043,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,50.49,50490598694.0,2391163.0,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18574.0,21618.0,25465.0,SRR26545310,N/A,N/A,N/A,N/A,N/A,SAMN33758799,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA19043.m54329U_220916_162216.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG19043.HFSS_dc,single,size fractionation,GENOMIC,WGS,69336.0,21310.0,87.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA19043.m54329U_220916_162216.dc.q20.fastq.gz,PACBIO_SMRT,P2,17826.0,20542.0,24138.0,N/A,NA19043,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,50.93,50925680464.0,2389655.0,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18425.0,21166.0,24637.0,SRR26545309,N/A,N/A,N/A,N/A,N/A,SAMN33758800,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA20752.m64457e_220831_195843.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG20752.HFSS_dc,single,size fractionation,GENOMIC,WGS,62925.0,20984.0,93.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20752.m64457e_220831_195843.dc.q20.fastq.gz,PACBIO_SMRT,P2,17824.0,20273.0,23534.0,N/A,NA20752,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,50.58,50576730141.0,2410165.0,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18481.0,21288.0,24835.0,SRR26545309,N/A,N/A,N/A,N/A,N/A,SAMN33758800,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA20752.m64457e_220829_104034.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG20752.HFSS_dc,single,size fractionation,GENOMIC,WGS,65854.0,21088.0,217.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20752.m64457e_220829_104034.dc.q20.fastq.gz,PACBIO_SMRT,P2,17863.0,20364.0,23707.0,N/A,NA20752,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,55.42,55420791871.0,2628030.0,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,18658.0,21535.0,25099.0,SRR26545309,N/A,N/A,N/A,N/A,N/A,SAMN33758800,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA20752.m64457e_220827_152226.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG20752.HFSS_dc,single,size fractionation,GENOMIC,WGS,69060.0,21285.0,118.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20752.m64457e_220827_152226.dc.q20.fastq.gz,PACBIO_SMRT,P2,18014.0,20585.0,23973.0,N/A,NA20752,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,56.5,56497537713.0,2654227.0,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17218.0,20086.0,23663.0,SRR26545307,N/A,N/A,N/A,N/A,N/A,SAMN33758801,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA20905.m64076_220916_183810.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG20905.HFSS_dc,single,size fractionation,GENOMIC,WGS,65430.0,19788.0,31.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20905.m64076_220916_183810.dc.q20.fastq.gz,PACBIO_SMRT,P2,16519.0,19074.0,22434.0,N/A,NA20905,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,50.14,50138285736.0,2533646.0,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17251.0,20134.0,23719.0,SRR26545307,N/A,N/A,N/A,N/A,N/A,SAMN33758801,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA20905.m64076_220918_143117.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG20905.HFSS_dc,single,size fractionation,GENOMIC,WGS,69147.0,19826.0,76.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20905.m64076_220918_143117.dc.q20.fastq.gz,PACBIO_SMRT,P2,16544.0,19114.0,22486.0,N/A,NA20905,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,50.75,50753646069.0,2559946.0,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,1.2,False,17882.0,20905.0,24496.0,SRR26545307,N/A,N/A,N/A,N/A,N/A,SAMN33758801,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA20905.m64076_220914_214248.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG20905.HFSS_dc,single,size fractionation,GENOMIC,WGS,70280.0,20480.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20905.m64076_220914_214248.dc.q20.fastq.gz,PACBIO_SMRT,P2,17106.0,19854.0,23313.0,N/A,NA20905,N/A,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,51.05,51048888164.0,2492570.0,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16660.0,19398.0,22815.0,SRR18158610,N/A,N/A,N/A,N/A,N/A,SAMN26267378,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_210516_091844.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00642.HFSS,single,size fractionation,GENOMIC,WGS,49254.0,19195.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00642/raw_data/PacBio_HiFi/m64076_210516_091844.hifi_reads.bam,PACBIO_SMRT,P2.2,16014.0,18446.0,21636.0,N/A,HG00642,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,27.53,27532337755.0,1434335.0,N/A,HG00642,SAMN26267378,PR04,PUR,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17312.0,20226.0,23731.0,SRR18158610,N/A,N/A,N/A,N/A,N/A,SAMN26267378,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m54329U_210524_174516.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00642.HFSS,single,size fractionation,GENOMIC,WGS,58561.0,19897.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00642/raw_data/PacBio_HiFi/m54329U_210524_174516.hifi_reads.bam,PACBIO_SMRT,P2.2,16571.0,19217.0,22526.0,N/A,HG00642,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,37.25,37253071882.0,1872206.0,N/A,HG00642,SAMN26267378,PR04,PUR,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17342.0,20270.0,23768.0,SRR18158610,N/A,N/A,N/A,N/A,N/A,SAMN26267378,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_210520_213355.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00642.HFSS,single,size fractionation,GENOMIC,WGS,55280.0,19929.0,73.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00642/raw_data/PacBio_HiFi/m64076_210520_213355.hifi_reads.bam,PACBIO_SMRT,P2.2,16590.0,19252.0,22571.0,N/A,HG00642,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.58,31582049533.0,1584710.0,N/A,HG00642,SAMN26267378,PR04,PUR,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17338.0,20311.0,23867.0,SRR18158610,N/A,N/A,N/A,N/A,N/A,SAMN26267378,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_210522_082905.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00642.HFSS,single,size fractionation,GENOMIC,WGS,51866.0,19954.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00642/raw_data/PacBio_HiFi/m64076_210522_082905.hifi_reads.bam,PACBIO_SMRT,P2.2,16572.0,19271.0,22642.0,N/A,HG00642,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.4,31397468252.0,1573487.0,N/A,HG00642,SAMN26267378,PR04,PUR,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16264.0,18927.0,22328.0,SRR29483231,N/A,N/A,N/A,N/A,N/A,SAMN26267378,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230531_221339_s3.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG00642.HFSS_m84046_230531_221339_s3,single,size fractionation,GENOMIC,WGS,53665.0,18760.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00642/raw_data/PacBio_HiFi/m84046_230531_221339_s3.hifi_reads.default.bam,PACBIO_SMRT,P1,15656.0,17984.0,21135.0,N/A,HG00642,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,52.61,52609914284.0,2804349.0,N/A,HG00642,SAMN26267378,PR04,PUR,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17398.0,19748.0,22588.0,SRR13684289,N/A,N/A,N/A,N/A,N/A,SAMN17861233,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200306_185917.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01258.HiFiEx_f1,single,size fractionation,GENOMIC,WGS,49803.0,19234.0,44.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01258/raw_data/PacBio_HiFi_Swap_Fixed/m64076_200306_185917.ccs.bam,PACBIO_SMRT,P2.0,16739.0,18969.0,21696.0,N/A,HG01258,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,26.04,26041896578.0,1353905.0,N/A,HG01258,SAMN17861233,CLM16,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17945.0,20385.0,23250.0,SRR13684289,N/A,N/A,N/A,N/A,N/A,SAMN17861233,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200311_082315.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01258.HiFiEx_f1,single,size fractionation,GENOMIC,WGS,50257.0,20032.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01258/raw_data/PacBio_HiFi_Swap_Fixed/m64076_200311_082315.ccs.bam,PACBIO_SMRT,P2.0,17344.0,19636.0,22397.0,N/A,HG01258,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,29.29,29289007356.0,1462110.0,N/A,HG01258,SAMN17861233,CLM16,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18072.0,20520.0,23388.0,SRR13684289,N/A,N/A,N/A,N/A,N/A,SAMN17861233,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200310_015720.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01258.HiFiEx_f1,single,size fractionation,GENOMIC,WGS,50256.0,20164.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01258/raw_data/PacBio_HiFi_Swap_Fixed/m64076_200310_015720.ccs.bam,PACBIO_SMRT,P2.0,17467.0,19772.0,22536.0,N/A,HG01258,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,26.51,26506907662.0,1314550.0,N/A,HG01258,SAMN17861233,CLM16,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18172.0,20670.0,23557.0,SRR13684289,N/A,N/A,N/A,N/A,N/A,SAMN17861233,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200308_194406.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01258.HiFiEx_f1,single,size fractionation,GENOMIC,WGS,49891.0,20258.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01258/raw_data/PacBio_HiFi_Swap_Fixed/m64076_200308_194406.ccs.bam,PACBIO_SMRT,P2.0,17537.0,19892.0,22696.0,N/A,HG01258,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,29.31,29310691456.0,1446864.0,N/A,HG01258,SAMN17861233,CLM16,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15796.0,18026.0,21068.0,SRR29483239,N/A,N/A,N/A,N/A,N/A,SAMN26267379,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230720_182350_s1.hifi_reads.bc2005.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01346.HFSS2_m84046_230720_182350_s1,single,size fractionation,GENOMIC,WGS,68536.0,17967.0,76.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01346/raw_data/PacBio_HiFi/m84046_230720_182350_s1.hifi_reads.bc2005.bam,PACBIO_SMRT,P1,15338.0,17299.0,20105.0,N/A,HG01346,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,67.03,67031281657.0,3730708.0,N/A,HG01346,SAMN26267379,CLM27,CLM,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18952.0,19881.0,20718.0,SRR13684281,N/A,N/A,N/A,N/A,N/A,SAMN17861235,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200221_234426.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01361.HiFiEx_f6,single,size fractionation,GENOMIC,WGS,42847.0,19178.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01361/raw_data/PacBio_HiFi_Swap_Fixed/m64076_200221_234426.ccs.bam,PACBIO_SMRT,P2.0,18750.0,19745.0,20615.0,N/A,HG01361,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,6.76,6760635369.0,352516.0,N/A,HG01361,SAMN17861235,CLM32,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16577.0,19409.0,21507.0,SRR18158596,N/A,N/A,N/A,N/A,N/A,SAMN26267382,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_210525_000003.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02132_f345,single,size fractionation,GENOMIC,WGS,54229.0,18891.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02132/raw_data/PacBio_HiFi/m64076_210525_000003.hifi_reads.bam,PACBIO_SMRT,P2.2,16238.0,18343.0,21069.0,N/A,HG02132,N/A,N/A,C2,Megaruptor 3,SageELF,SRP305758,N/A,18.99,18987492433.0,1005090.0,N/A,HG02132,SAMN26267382,VN080,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,14802.0,17468.0,20662.0,SRR18158606,N/A,N/A,N/A,N/A,N/A,SAMN26267392,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_210529_081414.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02135.HFSS,single,size fractionation,GENOMIC,WGS,52020.0,17020.0,488.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m64076_210529_081414.hifi_reads.bam,PACBIO_SMRT,P2.2,14014.0,16473.0,19483.0,N/A,HG02135,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,13.47,13469495739.0,791363.0,N/A,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15234.0,17968.0,21144.0,SRR18158606,N/A,N/A,N/A,N/A,N/A,SAMN26267392,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_210602_215048.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02135.HFSS,single,size fractionation,GENOMIC,WGS,49107.0,17440.0,90.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m64076_210602_215048.hifi_reads.bam,PACBIO_SMRT,P2.2,14407.0,16959.0,20003.0,N/A,HG02135,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,16.38,16375648923.0,938959.0,N/A,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17578.0,19101.0,20919.0,SRR13684279,N/A,N/A,N/A,N/A,N/A,SAMN17861237,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200125_231256.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02257.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,49634.0,19086.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02257/raw_data/PacBio_HiFi/m64076_200125_231256.ccs.bam,PACBIO_SMRT,P2.0,17321.0,18791.0,20528.0,N/A,HG02257,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,19.71,19712196692.0,1032799.0,N/A,HG02257,SAMN17861237,BB21,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17658.0,19206.0,21077.0,SRR13684279,N/A,N/A,N/A,N/A,N/A,SAMN17861237,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200127_180545.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02257.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,50471.0,19202.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02257/raw_data/PacBio_HiFi/m64076_200127_180545.ccs.bam,PACBIO_SMRT,P2.0,17393.0,18884.0,20665.0,N/A,HG02257,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,31.79,31789384503.0,1655490.0,N/A,HG02257,SAMN17861237,BB21,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17733.0,19284.0,21154.0,SRR13684279,N/A,N/A,N/A,N/A,N/A,SAMN17861237,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200130_064345.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02257.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,49612.0,19284.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02257/raw_data/PacBio_HiFi/m64076_200130_064345.ccs.bam,PACBIO_SMRT,P2.0,17469.0,18965.0,20743.0,N/A,HG02257,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,28.67,28667205005.0,1486566.0,N/A,HG02257,SAMN17861237,BB21,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17785.0,19348.0,21236.0,SRR13684279,N/A,N/A,N/A,N/A,N/A,SAMN17861237,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200129_001835.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02257.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,48893.0,19352.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02257/raw_data/PacBio_HiFi/m64076_200129_001835.ccs.bam,PACBIO_SMRT,P2.0,17518.0,19022.0,20817.0,N/A,HG02257,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,30.47,30466253940.0,1574258.0,N/A,HG02257,SAMN17861237,BB21,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15230.0,17807.0,21124.0,SRR18158586,N/A,N/A,N/A,N/A,N/A,SAMN26267395,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m54329U_210711_215946.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02300.HFSS,single,size fractionation,GENOMIC,WGS,51252.0,17584.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02300/raw_data/PacBio_HiFi/m54329U_210711_215946.hifi_reads.bam,PACBIO_SMRT,P2.2,14590.0,16868.0,19910.0,N/A,HG02300,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,29.06,29062980186.0,1652728.0,N/A,HG02300,SAMN26267395,PEL52,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15321.0,17949.0,21313.0,SRR18158586,N/A,N/A,N/A,N/A,N/A,SAMN26267395,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m54329U_210710_123004.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02300.HFSS,single,size fractionation,GENOMIC,WGS,53464.0,17705.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02300/raw_data/PacBio_HiFi/m54329U_210710_123004.hifi_reads.bam,PACBIO_SMRT,P2.2,14658.0,16983.0,20073.0,N/A,HG02300,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,33.8,33800067777.0,1909050.0,N/A,HG02300,SAMN26267395,PEL52,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15347.0,17975.0,21331.0,SRR18158586,N/A,N/A,N/A,N/A,N/A,SAMN26267395,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m54329U_210702_182525.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02300.HFSS,single,size fractionation,GENOMIC,WGS,54870.0,17744.0,408.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02300/raw_data/PacBio_HiFi/m54329U_210702_182525.hifi_reads.bam,PACBIO_SMRT,P2.2,14692.0,17017.0,20106.0,N/A,HG02300,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,30.36,30358671051.0,1710846.0,N/A,HG02300,SAMN26267395,PEL52,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15297.0,17906.0,21212.0,SRR29483139,N/A,N/A,N/A,N/A,N/A,SAMN26267395,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230519_231055_s2.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02300.HFSS_m84046_230519_231055_s2,single,size fractionation,GENOMIC,WGS,53764.0,17649.0,175.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02300/raw_data/PacBio_HiFi/m84046_230519_231055_s2.hifi_reads.default.bam,PACBIO_SMRT,P1,14640.0,16956.0,20011.0,N/A,HG02300,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,39.7,39698841965.0,2249313.0,N/A,HG02300,SAMN26267395,PEL52,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15145.0,17663.0,20886.0,SRR29483187,N/A,N/A,N/A,N/A,N/A,SAMN26267395,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230617_040148_s2.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02300.HFSS_m84046_230617_040148_s2,single,size fractionation,GENOMIC,WGS,50401.0,17448.0,181.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02300/raw_data/PacBio_HiFi/m84046_230617_040148_s2.hifi_reads.default.bam,PACBIO_SMRT,P1,14524.0,16754.0,19719.0,N/A,HG02300,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,32.05,32052364911.0,1837009.0,N/A,HG02300,SAMN26267395,PEL52,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15155.0,17676.0,20913.0,SRR29483188,N/A,N/A,N/A,N/A,N/A,SAMN26267395,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230628_210130_s1.default--default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02300.HFSS_m84046_230628_210130_s1,single,size fractionation,GENOMIC,WGS,52469.0,17467.0,381.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02300/raw_data/PacBio_HiFi/m84046_230628_210130_s1.default--default.bam,PACBIO_SMRT,P1,14533.0,16767.0,19744.0,N/A,HG02300,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,17.1,17104030297.0,979167.0,N/A,HG02300,SAMN26267395,PEL52,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15169.0,17361.0,20287.0,SRR23922667,N/A,N/A,N/A,N/A,N/A,SAMN33758786,6.2.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_211212_112351-bc1003.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02451.HFSS2,single,RANDOM,GENOMIC,WGS,56001.0,17314.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/m64076_211212_112351-bc1003.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,14730.0,16643.0,19345.0,N/A,HG02451,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.44,39439776523.0,2277851.0,N/A,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15174.0,17364.0,20294.0,SRR23922667,N/A,N/A,N/A,N/A,N/A,SAMN33758786,6.2.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_211208_005550-bc1003.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02451.HFSS2,single,RANDOM,GENOMIC,WGS,50248.0,17319.0,424.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/m64076_211208_005550-bc1003.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,14736.0,16646.0,19353.0,N/A,HG02451,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,38.49,38494025289.0,2222540.0,N/A,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15239.0,17471.0,20411.0,SRR23922667,N/A,N/A,N/A,N/A,N/A,SAMN33758786,6.2.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_211211_014755-bc1003.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02451.HFSS2,single,RANDOM,GENOMIC,WGS,51805.0,17401.0,199.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/m64076_211211_014755-bc1003.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,14790.0,16739.0,19472.0,N/A,HG02451,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,40.52,40519515849.0,2328484.0,N/A,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18097.0,19841.0,22009.0,SRR13684286,N/A,N/A,N/A,N/A,N/A,SAMN17861240,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200313_161705.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02572.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,50071.0,19789.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02572/raw_data/PacBio_HiFi/m64076_200313_161705.ccs.bam,PACBIO_SMRT,P2.0,17766.0,19421.0,21472.0,N/A,HG02572,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,26.95,26950290432.0,1361865.0,N/A,HG02572,SAMN17861240,GB21,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18177.0,19971.0,22212.0,SRR13684286,N/A,N/A,N/A,N/A,N/A,SAMN17861240,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200317_041201.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02572.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,49941.0,19929.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02572/raw_data/PacBio_HiFi/m64076_200317_041201.ccs.bam,PACBIO_SMRT,P2.0,17833.0,19531.0,21639.0,N/A,HG02572,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,21.41,21411661479.0,1074359.0,N/A,HG02572,SAMN17861240,GB21,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18223.0,20011.0,22232.0,SRR13684286,N/A,N/A,N/A,N/A,N/A,SAMN17861240,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200318_103811.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02572.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,49965.0,19965.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02572/raw_data/PacBio_HiFi/m64076_200318_103811.ccs.bam,PACBIO_SMRT,P2.0,17882.0,19577.0,21677.0,N/A,HG02572,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,21.93,21934534323.0,1098595.0,N/A,HG02572,SAMN17861240,GB21,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18307.0,20106.0,22336.0,SRR13684286,N/A,N/A,N/A,N/A,N/A,SAMN17861240,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m54329U_200319_002813.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02572.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,50301.0,20082.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02572/raw_data/PacBio_HiFi/m54329U_200319_002813.ccs.bam,PACBIO_SMRT,P2.0,17971.0,19670.0,21779.0,N/A,HG02572,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,25.59,25594226013.0,1274460.0,N/A,HG02572,SAMN17861240,GB21,GWD,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16285.0,18752.0,22039.0,SRR18158608,N/A,N/A,N/A,N/A,N/A,SAMN26267384,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_210703_103644.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02683.HFSS,single,size fractionation,GENOMIC,WGS,56433.0,18648.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02683/raw_data/PacBio_HiFi/m64076_210703_103644.hifi_reads.bam,PACBIO_SMRT,P2.2,15744.0,17909.0,20918.0,N/A,HG02683,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,34.53,34531266097.0,1851700.0,N/A,HG02683,SAMN26267384,PK16,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16290.0,18769.0,22049.0,SRR18158608,N/A,N/A,N/A,N/A,N/A,SAMN26267384,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m54329U_210709_030038.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02683.HFSS,single,size fractionation,GENOMIC,WGS,50152.0,18660.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02683/raw_data/PacBio_HiFi/m54329U_210709_030038.hifi_reads.bam,PACBIO_SMRT,P2.2,15748.0,17919.0,20929.0,N/A,HG02683,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.5,32502589310.0,1741784.0,N/A,HG02683,SAMN26267384,PK16,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16332.0,18828.0,22147.0,SRR18158608,N/A,N/A,N/A,N/A,N/A,SAMN26267384,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m54329U_210707_171722.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02683.HFSS,single,size fractionation,GENOMIC,WGS,57006.0,18713.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02683/raw_data/PacBio_HiFi/m54329U_210707_171722.hifi_reads.bam,PACBIO_SMRT,P2.2,15779.0,17970.0,21007.0,N/A,HG02683,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,33.92,33923407547.0,1812777.0,N/A,HG02683,SAMN26267384,PK16,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16242.0,18658.0,21835.0,SRR29483140,N/A,N/A,N/A,N/A,N/A,SAMN26267384,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230522_234602_s2.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02683.HFSS_m84046_230522_234602_s2,single,size fractionation,GENOMIC,WGS,52194.0,18549.0,181.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02683/raw_data/PacBio_HiFi/m84046_230522_234602_s2.hifi_reads.default.bam,PACBIO_SMRT,P1,15716.0,17848.0,20774.0,N/A,HG02683,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,83.44,83440743489.0,4498174.0,N/A,HG02683,SAMN26267384,PK16,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16140.0,18528.0,21716.0,SRR29483241,N/A,N/A,N/A,N/A,N/A,SAMN33758790,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230720_182350_s1.hifi_reads.bc2003.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03041.HFSS2_m84046_230720_182350_s1,single,size fractionation,GENOMIC,WGS,52881.0,18511.0,126.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m84046_230720_182350_s1.hifi_reads.bc2003.bam,PACBIO_SMRT,P1,15640.0,17728.0,20626.0,N/A,HG03041,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,10.94,10936928289.0,590816.0,N/A,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17301.0,20000.0,23516.0,SRR18158599,N/A,N/A,N/A,N/A,N/A,SAMN26267387,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m54329U_210507_224951-bc1017_BAK8B_OA.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03942a.HFSS,single,size fractionation,GENOMIC,WGS,45692.0,19872.0,142.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03942/raw_data/PacBio_HiFi/m54329U_210507_224951-bc1017_BAK8B_OA.hifi_reads.bam,PACBIO_SMRT,P2.2,16690.0,19090.0,22312.0,N/A,HG03942,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,2.94,2941012697.0,147995.0,N/A,HG03942,SAMN26267387,BD42,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15407.0,17139.0,19609.0,SRR29483091,N/A,N/A,N/A,N/A,N/A,SAMN41021641,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230630_233157_s3.bc2069--bc2069.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00128.HFSS2_m84046_230630_233157_s3,single,size fractionation,GENOMIC,WGS,51374.0,17276.0,120.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00128/raw_data/PacBio_HiFi/m84046_230630_233157_s3.bc2069--bc2069.bam,PACBIO_SMRT,P1,15138.0,16658.0,18930.0,N/A,HG00128,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,82.23,82225293457.0,4759375.0,N/A,HG00128,SAMN41021641,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17354.0,18894.0,20960.0,SRR29483093,N/A,N/A,N/A,N/A,N/A,SAMN41021641,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230602_203207_s4.hifi_reads.bc2044.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00128.HFSS_m84046_230602_203207_s4,single,size fractionation,GENOMIC,WGS,56094.0,18972.0,146.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00128/raw_data/PacBio_HiFi/m84046_230602_203207_s4.hifi_reads.bc2044.bam,PACBIO_SMRT,P1,17118.0,18544.0,20490.0,N/A,HG00128,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,33.23,33229202038.0,1751436.0,N/A,HG00128,SAMN41021641,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17205.0,18656.0,20611.0,SRR29483094,N/A,N/A,N/A,N/A,N/A,SAMN41021641,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230617_043254_s3.hifi_reads.bc2044.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00128.HFSS_m84046_230617_043254_s3,single,size fractionation,GENOMIC,WGS,54809.0,18733.0,124.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00128/raw_data/PacBio_HiFi/m84046_230617_043254_s3.hifi_reads.bc2044.bam,PACBIO_SMRT,P1,16984.0,18337.0,20173.0,N/A,HG00128,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,43.12,43116301374.0,2301584.0,N/A,HG00128,SAMN41021641,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17223.0,18688.0,20659.0,SRR29483092,N/A,N/A,N/A,N/A,N/A,SAMN41021641,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230617_050400_s4.hifi_reads.bc2044.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00128.HFSS_m84046_230617_050400_s4,single,size fractionation,GENOMIC,WGS,55452.0,18766.0,67.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00128/raw_data/PacBio_HiFi/m84046_230617_050400_s4.hifi_reads.bc2044.bam,PACBIO_SMRT,P1,17002.0,18364.0,20215.0,N/A,HG00128,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,46.97,46970020324.0,2502838.0,N/A,HG00128,SAMN41021641,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17829.0,20270.0,23418.0,SRR23922648,N/A,N/A,N/A,N/A,N/A,SAMN33758785,6.3.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_220906_083112-bc2054.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG02165.HFSS2,single,RANDOM,GENOMIC,WGS,57739.0,20170.0,87.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02165/raw_data/PacBio_HiFi/m64076_220906_083112-bc2054.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17338.0,19513.0,22476.0,N/A,HG02165,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,44.24,44241695516.0,2193354.0,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17970.0,20447.0,23596.0,SRR23922648,N/A,N/A,N/A,N/A,N/A,SAMN33758785,6.3.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_220904_113359-bc2054.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG02165.HFSS2,single,RANDOM,GENOMIC,WGS,61252.0,20321.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02165/raw_data/PacBio_HiFi/m64076_220904_113359-bc2054.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17465.0,19685.0,22659.0,N/A,HG02165,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,42.08,42083036071.0,2070860.0,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18503.0,21207.0,24441.0,SRR23922648,N/A,N/A,N/A,N/A,N/A,SAMN33758785,6.3.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_220902_143723-bc2054.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG02165.HFSS2,single,RANDOM,GENOMIC,WGS,66727.0,20945.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02165/raw_data/PacBio_HiFi/m64076_220902_143723-bc2054.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17918.0,20372.0,23498.0,N/A,HG02165,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,48.39,48389996564.0,2310300.0,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17301.0,19484.0,22463.0,SRR29483247,N/A,N/A,N/A,N/A,N/A,SAMN33758785,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230617_040148_s2.hifi_reads.bc2054.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG02165.HFSS2_m84046_230617_040148_s2,single,size fractionation,GENOMIC,WGS,54140.0,19386.0,279.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02165/raw_data/PacBio_HiFi/m84046_230617_040148_s2.hifi_reads.bc2054.bam,PACBIO_SMRT,P1,16852.0,18792.0,21539.0,N/A,HG02165,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,45.38,45376049257.0,2340645.0,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16267.0,18439.0,21420.0,SRR29483127,N/A,N/A,N/A,N/A,N/A,SAMN41021686,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230831_231439_s1.hifi_reads.bc2033.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03103.HFSS_m84046_230831_231439_s1,single,size fractionation,GENOMIC,WGS,58234.0,18443.0,64.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03103/raw_data/PacBio_HiFi/m84046_230831_231439_s1.hifi_reads.bc2033.bam,PACBIO_SMRT,P1,15834.0,17755.0,20472.0,N/A,HG03103,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,63.89,63888430038.0,3464099.0,N/A,HG03103,SAMN41021686,,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16387.0,18611.0,21617.0,SRR29483124,N/A,N/A,N/A,N/A,N/A,SAMN41021686,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230831_234545_s2.hifi_reads.bc2033.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03103.HFSS_m84046_230831_234545_s2,single,size fractionation,GENOMIC,WGS,56378.0,18585.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03103/raw_data/PacBio_HiFi/m84046_230831_234545_s2.hifi_reads.bc2033.bam,PACBIO_SMRT,P1,15937.0,17907.0,20668.0,N/A,HG03103,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,62.6,62604382554.0,3368424.0,N/A,HG03103,SAMN41021686,,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16105.0,18160.0,21031.0,SRR29483125,N/A,N/A,N/A,N/A,N/A,SAMN41021686,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230905_231311_s2.hifi_reads.bc2033.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03103.HFSS_m84046_230905_231311_s2,single,size fractionation,GENOMIC,WGS,55667.0,18204.0,94.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03103/raw_data/PacBio_HiFi/m84046_230905_231311_s2.hifi_reads.bc2033.bam,PACBIO_SMRT,P1,15703.0,17521.0,20126.0,N/A,HG03103,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,59.5,59498338298.0,3268313.0,N/A,HG03103,SAMN41021686,,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16386.0,18383.0,20842.0,SRR29483136,N/A,N/A,N/A,N/A,N/A,SAMN41021677,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230721_192545_s2.hifi_reads.bc2080.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03136.HFSS_m84046_230721_192545_s2,single,size fractionation,GENOMIC,WGS,50586.0,18206.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03136/raw_data/PacBio_HiFi/m84046_230721_192545_s2.hifi_reads.bc2080.bam,PACBIO_SMRT,P1,15959.0,17828.0,20169.0,N/A,HG03136,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,61.28,61280281634.0,3365913.0,N/A,HG03136,SAMN41021677,,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16433.0,18442.0,20924.0,SRR29483206,N/A,N/A,N/A,N/A,N/A,SAMN41021677,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230722_180255_s3.hifi_reads.bc2080.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03136.HFSS_m84046_230722_180255_s3,single,size fractionation,GENOMIC,WGS,49504.0,18263.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03136/raw_data/PacBio_HiFi/m84046_230722_180255_s3.hifi_reads.bc2080.bam,PACBIO_SMRT,P1,15999.0,17881.0,20244.0,N/A,HG03136,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,64.4,64399312194.0,3526179.0,N/A,HG03136,SAMN41021677,,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16357.0,18349.0,20811.0,SRR29483217,N/A,N/A,N/A,N/A,N/A,SAMN41021677,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230722_183401_s4.hifi_reads.bc2080.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03136.HFSS_m84046_230722_183401_s4,single,size fractionation,GENOMIC,WGS,50197.0,18172.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03136/raw_data/PacBio_HiFi/m84046_230722_183401_s4.hifi_reads.bc2080.bam,PACBIO_SMRT,P1,15927.0,17794.0,20134.0,N/A,HG03136,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,67.42,67421766467.0,3710029.0,N/A,HG03136,SAMN41021677,,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15957.0,17779.0,20153.0,SRR29483169,N/A,N/A,N/A,N/A,N/A,SAMN41021663,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230721_175304_s3.hifi_reads.bc2091.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18871.HFSS_m84046_230721_175304_s3,single,size fractionation,GENOMIC,WGS,47945.0,17734.0,69.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18871/raw_data/PacBio_HiFi/m84046_230721_175304_s3.hifi_reads.bc2091.bam,PACBIO_SMRT,P1,15615.0,17288.0,19526.0,N/A,NA18871,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,66.88,66877137813.0,3770954.0,N/A,NA18871,SAMN41021663,,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15981.0,17809.0,20188.0,SRR29483170,N/A,N/A,N/A,N/A,N/A,SAMN41021663,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230721_182333_s4.hifi_reads.bc2091.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18871.HFSS_m84046_230721_182333_s4,single,size fractionation,GENOMIC,WGS,49600.0,17760.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18871/raw_data/PacBio_HiFi/m84046_230721_182333_s4.hifi_reads.bc2091.bam,PACBIO_SMRT,P1,15636.0,17317.0,19561.0,N/A,NA18871,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,63.93,63934526697.0,3599850.0,N/A,NA18871,SAMN41021663,,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15902.0,17694.0,20041.0,SRR29483168,N/A,N/A,N/A,N/A,N/A,SAMN41021663,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230721_185439_s1.hifi_reads.bc2091.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18871.HFSS_m84046_230721_185439_s1,single,size fractionation,GENOMIC,WGS,56615.0,17659.0,83.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18871/raw_data/PacBio_HiFi/m84046_230721_185439_s1.hifi_reads.bc2091.bam,PACBIO_SMRT,P1,15566.0,17216.0,19420.0,N/A,NA18871,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,59.5,59501427505.0,3369453.0,N/A,NA18871,SAMN41021663,,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15949.0,18213.0,21280.0,SRR29483245,N/A,N/A,N/A,N/A,N/A,SAMN41021610,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230513_215634_s1.hifi_reads.bc2014.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19776.HFSS_m84046_230513_215634_s1,single,size fractionation,GENOMIC,WGS,53733.0,18152.0,92.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19776/raw_data/PacBio_HiFi/m84046_230513_215634_s1.hifi_reads.bc2014.bam,PACBIO_SMRT,P1,15498.0,17471.0,20321.0,N/A,NA19776,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,64.58,64583935206.0,3557844.0,N/A,NA19776,SAMN41021610,,MXL,AMR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15856.0,18070.0,21108.0,SRR29483246,N/A,N/A,N/A,N/A,N/A,SAMN41021610,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230516_205603_s2.hifi_reads.bc2014.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19776.HFSS_m84046_230516_205603_s2,single,size fractionation,GENOMIC,WGS,51132.0,18033.0,351.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19776/raw_data/PacBio_HiFi/m84046_230516_205603_s2.hifi_reads.bc2014.bam,PACBIO_SMRT,P1,15421.0,17346.0,20151.0,N/A,NA19776,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,64.39,64385618990.0,3570399.0,N/A,NA19776,SAMN41021610,,MXL,AMR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15860.0,18087.0,21145.0,SRR29483265,N/A,N/A,N/A,N/A,N/A,SAMN41021610,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230516_212709_s3.hifi_reads.bc2014.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19776.HFSS_m84046_230516_212709_s3,single,size fractionation,GENOMIC,WGS,49787.0,18046.0,108.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19776/raw_data/PacBio_HiFi/m84046_230516_212709_s3.hifi_reads.bc2014.bam,PACBIO_SMRT,P1,15422.0,17354.0,20179.0,N/A,NA19776,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,64.58,64584192632.0,3578712.0,N/A,NA19776,SAMN41021610,,MXL,AMR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16530.0,18391.0,20858.0,SRR29483085,N/A,N/A,N/A,N/A,N/A,SAMN41021664,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230721_175304_s3.hifi_reads.bc2092.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG20850.HFSS_m84046_230721_175304_s3,single,size fractionation,GENOMIC,WGS,50125.0,18382.0,91.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20850/raw_data/PacBio_HiFi/m84046_230721_175304_s3.hifi_reads.bc2092.bam,PACBIO_SMRT,P1,16194.0,17892.0,20208.0,N/A,NA20850,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,66.23,66234086448.0,3603056.0,N/A,NA20850,SAMN41021664,,GIH,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16550.0,18414.0,20877.0,SRR29483088,N/A,N/A,N/A,N/A,N/A,SAMN41021664,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230721_182333_s4.hifi_reads.bc2092.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG20850.HFSS_m84046_230721_182333_s4,single,size fractionation,GENOMIC,WGS,54426.0,18401.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20850/raw_data/PacBio_HiFi/m84046_230721_182333_s4.hifi_reads.bc2092.bam,PACBIO_SMRT,P1,16213.0,17914.0,20230.0,N/A,NA20850,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,63.33,63327918484.0,3441545.0,N/A,NA20850,SAMN41021664,,GIH,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16467.0,18296.0,20733.0,SRR29483086,N/A,N/A,N/A,N/A,N/A,SAMN41021664,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230721_185439_s1.hifi_reads.bc2092.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG20850.HFSS_m84046_230721_185439_s1,single,size fractionation,GENOMIC,WGS,49617.0,18297.0,118.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20850/raw_data/PacBio_HiFi/m84046_230721_185439_s1.hifi_reads.bc2092.bam,PACBIO_SMRT,P1,16140.0,17808.0,20093.0,N/A,NA20850,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,58.42,58421144215.0,3192817.0,N/A,NA20850,SAMN41021664,,GIH,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18052.0,20662.0,24153.0,SRR23922646,N/A,N/A,N/A,N/A,N/A,SAMN33758784,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_220908_204946-bc2056.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02040.HFSS2,single,RANDOM,GENOMIC,WGS,63774.0,20362.0,72.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02040/raw_data/PacBio_HiFi/m64076_220908_204946-bc2056.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17430.0,19743.0,22962.0,N/A,HG02040,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,40.98,40975751860.0,2012274.0,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18390.0,21140.0,24689.0,SRR23922646,N/A,N/A,N/A,N/A,N/A,SAMN33758784,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_220910_174812-bc2056.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02040.HFSS2,single,RANDOM,GENOMIC,WGS,72682.0,20935.0,106.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02040/raw_data/PacBio_HiFi/m64076_220910_174812-bc2056.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17777.0,20216.0,23524.0,N/A,HG02040,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,44.56,44556381201.0,2128239.0,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18550.0,21351.0,24919.0,SRR23922646,N/A,N/A,N/A,N/A,N/A,SAMN33758784,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_220912_140850-bc2056.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02040.HFSS2,single,RANDOM,GENOMIC,WGS,56457.0,21135.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02040/raw_data/PacBio_HiFi/m64076_220912_140850-bc2056.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17919.0,20417.0,23768.0,N/A,HG02040,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,44.37,44365842122.0,2099134.0,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17858.0,20494.0,23946.0,SRR18158591,N/A,N/A,N/A,N/A,N/A,SAMN26267380,6.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m54329U_210507_224951-bc1011_BAK8A_OA.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02071a.HFSS,single,size fractionation,GENOMIC,WGS,42220.0,20459.0,769.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02071/raw_data/PacBio_HiFi/m54329U_210507_224951-bc1011_BAK8A_OA.hifi_reads.bam,PACBIO_SMRT,P2.2,17306.0,19625.0,22805.0,N/A,HG02071,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,3.03,3026195060.0,147915.0,N/A,HG02071,SAMN26267380,VN065,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17339.0,19332.0,22074.0,SRR29483131,N/A,N/A,N/A,N/A,N/A,SAMN17861237,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230628_182559_s4.hifi_reads.bc2064.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02257.HFSS_m84046_230628_182559_s4,single,size fractionation,GENOMIC,WGS,63975.0,19265.0,77.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02257/raw_data/PacBio_HiFi/m84046_230628_182559_s4.hifi_reads.bc2064.bam,PACBIO_SMRT,P1,16922.0,18740.0,21259.0,N/A,HG02257,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,76.47,76465650128.0,3968964.0,N/A,HG02257,SAMN17861237,BB21,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18400.0,19709.0,21393.0,SRR13684278,N/A,N/A,N/A,N/A,N/A,SAMN17861238,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m54329U_200215_021808.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02486.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,49591.0,19809.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02486/raw_data/PacBio_HiFi/m54329U_200215_021808.ccs.bam,PACBIO_SMRT,P2.0,18232.0,19469.0,21079.0,N/A,HG02486,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,18.06,18059386105.0,911631.0,N/A,HG02486,SAMN17861238,BB55,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16283.0,18766.0,22057.0,SRR18158588,N/A,N/A,N/A,N/A,N/A,SAMN26267396,6.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_210718_085619.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02738.HFSS,single,size fractionation,GENOMIC,WGS,51144.0,18666.0,696.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m64076_210718_085619.hifi_reads.bam,PACBIO_SMRT,P2.2,15727.0,17909.0,20907.0,N/A,HG02738,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,23.08,23081037343.0,1236481.0,N/A,HG02738,SAMN26267396,PK27,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16403.0,18981.0,22357.0,SRR18158588,N/A,N/A,N/A,N/A,N/A,SAMN26267396,6.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_210711_102225.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02738.HFSS,single,size fractionation,GENOMIC,WGS,52901.0,18849.0,135.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m64076_210711_102225.hifi_reads.bam,PACBIO_SMRT,P2.2,15824.0,18082.0,21176.0,N/A,HG02738,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,24.96,24958517767.0,1324061.0,N/A,HG02738,SAMN26267396,PK27,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16413.0,18995.0,22389.0,SRR18158588,N/A,N/A,N/A,N/A,N/A,SAMN26267396,6.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_210706_214544.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02738.HFSS,single,size fractionation,GENOMIC,WGS,56090.0,18869.0,159.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m64076_210706_214544.hifi_reads.bam,PACBIO_SMRT,P2.2,15831.0,18094.0,21198.0,N/A,HG02738,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,22.46,22457209908.0,1190157.0,N/A,HG02738,SAMN26267396,PK27,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16478.0,19100.0,22533.0,SRR18158588,N/A,N/A,N/A,N/A,N/A,SAMN26267396,6.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_210714_200553.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02738.HFSS,single,size fractionation,GENOMIC,WGS,62028.0,18960.0,256.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m64076_210714_200553.hifi_reads.bam,PACBIO_SMRT,P2.2,15879.0,18180.0,21325.0,N/A,HG02738,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,24.17,24174029510.0,1274956.0,N/A,HG02738,SAMN26267396,PK27,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16217.0,18680.0,21920.0,SRR29483190,N/A,N/A,N/A,N/A,N/A,SAMN26267396,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230623_213746_s2.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02738.HFSS_m84046_230623_213746_s2,single,size fractionation,GENOMIC,WGS,57240.0,18574.0,217.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m84046_230623_213746_s2.hifi_reads.default.bam,PACBIO_SMRT,P1,15671.0,17839.0,20803.0,N/A,HG02738,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,49.06,49064316698.0,2641558.0,N/A,HG02738,SAMN26267396,PK27,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16333.0,18868.0,22206.0,SRR29483189,N/A,N/A,N/A,N/A,N/A,SAMN26267396,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230628_182559_s4.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02738.HFSS_m84046_230628_182559_s4,single,size fractionation,GENOMIC,WGS,53905.0,18746.0,267.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m84046_230628_182559_s4.hifi_reads.default.bam,PACBIO_SMRT,P1,15759.0,17990.0,21044.0,N/A,HG02738,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,36.78,36782838182.0,1962110.0,N/A,HG02738,SAMN26267396,PK27,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16848.0,19851.0,23622.0,SRR23922660,N/A,N/A,N/A,N/A,N/A,SAMN33758791,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_220513_215716-bc2018.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03130.HFSS,single,RANDOM,GENOMIC,WGS,54183.0,19549.0,63.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03130/raw_data/PacBio_HiFi/m64076_220513_215716-bc2018.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16080.0,18732.0,22231.0,N/A,HG03130,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.69,39686464232.0,2030081.0,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16938.0,19932.0,23673.0,SRR23922660,N/A,N/A,N/A,N/A,N/A,SAMN33758791,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_220516_221911-bc2018.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03130.HFSS,single,RANDOM,GENOMIC,WGS,63690.0,19623.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03130/raw_data/PacBio_HiFi/m64076_220516_221911-bc2018.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16170.0,18830.0,22304.0,N/A,HG03130,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.14,39141478923.0,1994630.0,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17005.0,20034.0,23797.0,SRR23922660,N/A,N/A,N/A,N/A,N/A,SAMN33758791,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_220518_191414-bc2018.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03130.HFSS,single,RANDOM,GENOMIC,WGS,55594.0,19705.0,78.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03130/raw_data/PacBio_HiFi/m64076_220518_191414-bc2018.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16222.0,18912.0,22419.0,N/A,HG03130,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,38.6,38602098340.0,1958959.0,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16444.0,19248.0,22814.0,SRR29483150,N/A,N/A,N/A,N/A,N/A,SAMN33758791,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230602_213334_s2.hifi_reads.bc2018.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03130.HFSS_m84046_230602_213334_s2,single,size fractionation,GENOMIC,WGS,47072.0,19024.0,227.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03130/raw_data/PacBio_HiFi/m84046_230602_213334_s2.hifi_reads.bc2018.bam,PACBIO_SMRT,P1,15757.0,18235.0,21520.0,N/A,HG03130,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,59.15,59153812312.0,3109314.0,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16050.0,18337.0,21412.0,SRR23922657,N/A,N/A,N/A,N/A,N/A,SAMN33758793,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_220526_115049-bc2020.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03209.HFSS,single,RANDOM,GENOMIC,WGS,53890.0,18307.0,91.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/m64076_220526_115049-bc2020.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,15577.0,17588.0,20402.0,N/A,HG03209,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,21.78,21783182095.0,1189873.0,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16331.0,18799.0,22046.0,SRR23922657,N/A,N/A,N/A,N/A,N/A,SAMN33758793,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_220524_161808-bc2020.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03209.HFSS,single,RANDOM,GENOMIC,WGS,52802.0,18697.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/m64076_220524_161808-bc2020.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,15799.0,17970.0,20972.0,N/A,HG03209,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.04,39036651192.0,2087855.0,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16387.0,18885.0,22158.0,SRR23922657,N/A,N/A,N/A,N/A,N/A,SAMN33758793,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_220520_234906-bc2020.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03209.HFSS,single,RANDOM,GENOMIC,WGS,59822.0,18766.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/m64076_220520_234906-bc2020.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,15843.0,18042.0,21068.0,N/A,HG03209,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,41.41,41408759487.0,2206531.0,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16905.0,19552.0,22812.0,SRR23922657,N/A,N/A,N/A,N/A,N/A,SAMN33758793,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_221001_041132-bc2020.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03209.HFSS,single,RANDOM,GENOMIC,WGS,56747.0,19301.0,1106.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/m64076_221001_041132-bc2020.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16295.0,18678.0,21777.0,N/A,HG03209,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,14.06,14062564475.0,728559.0,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15993.0,18281.0,21360.0,SRR29483244,N/A,N/A,N/A,N/A,N/A,SAMN33758793,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230617_033126_s1.hifi_reads.bc2020.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03209.HFSS_m84046_230617_033126_s1,single,size fractionation,GENOMIC,WGS,53665.0,18251.0,171.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/m84046_230617_033126_s1.hifi_reads.bc2020.bam,PACBIO_SMRT,P1,15518.0,17532.0,20352.0,N/A,HG03209,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,54.84,54844107587.0,3004908.0,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15849.0,18248.0,21503.0,SRR29483076,N/A,N/A,N/A,N/A,N/A,SAMN17861241,v8.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_231202_110908_s4.hifi_reads.bc2056.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03516.HFSS_m84046_231202_110908_s4,single,size fractionation,GENOMIC,WGS,68453.0,18230.0,72.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03516/raw_data/PacBio_HiFi/m84046_231202_110908_s4.hifi_reads.bc2056.bam,PACBIO_SMRT,P1,15348.0,17425.0,20374.0,N/A,HG03516,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,69.9,69896055959.0,3833995.0,N/A,HG03516,SAMN17861241,NG107,ESN,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16352.0,18744.0,21771.0,SRR29483177,N/A,N/A,N/A,N/A,N/A,SAMN26267386,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230628_213236_s2.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03927.HFSS_m84046_230628_213236_s2,single,size fractionation,GENOMIC,WGS,49598.0,18609.0,155.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03927/raw_data/PacBio_HiFi/m84046_230628_213236_s2.hifi_reads.default.bam,PACBIO_SMRT,P1,15901.0,17968.0,20842.0,N/A,HG03927,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,49.65,49648184579.0,2667914.0,N/A,HG03927,SAMN26267386,BD37,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15301.0,18468.0,22367.0,SRR18158602,N/A,N/A,N/A,N/A,N/A,SAMN26267389,6.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m54329U_210620_071842.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04199.HFSS,single,size fractionation,GENOMIC,WGS,52167.0,17909.0,638.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04199/raw_data/PacBio_HiFi/m54329U_210620_071842.hifi_reads.bam,PACBIO_SMRT,P2.2,14288.0,17132.0,20712.0,N/A,HG04199,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,24.65,24653293607.0,1376549.0,N/A,HG04199,SAMN26267389,ST203,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15348.0,18545.0,22493.0,SRR18158602,N/A,N/A,N/A,N/A,N/A,SAMN26267389,6.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m54329U_210614_155303.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04199.HFSS,single,size fractionation,GENOMIC,WGS,63500.0,17981.0,790.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04199/raw_data/PacBio_HiFi/m54329U_210614_155303.hifi_reads.bam,PACBIO_SMRT,P2.2,14323.0,17188.0,20808.0,N/A,HG04199,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,21.31,21311089314.0,1185147.0,N/A,HG04199,SAMN26267389,ST203,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15607.0,18877.0,22900.0,SRR18158602,N/A,N/A,N/A,N/A,N/A,SAMN26267389,6.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m54329U_210621_233920.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04199.HFSS,single,size fractionation,GENOMIC,WGS,62576.0,18283.0,351.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04199/raw_data/PacBio_HiFi/m54329U_210621_233920.hifi_reads.bam,PACBIO_SMRT,P2.2,14542.0,17491.0,21190.0,N/A,HG04199,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,21.51,21512850335.0,1176633.0,N/A,HG04199,SAMN26267389,ST203,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17491.0,20902.0,24822.0,SRR18158602,N/A,N/A,N/A,N/A,N/A,SAMN26267389,6.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_210613_183806.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04199.HFSS,single,size fractionation,GENOMIC,WGS,60720.0,20095.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04199/raw_data/PacBio_HiFi/m64076_210613_183806.hifi_reads.bam,PACBIO_SMRT,P2.2,16326.0,19542.0,23310.0,N/A,HG04199,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.56,31564451397.0,1570687.0,N/A,HG04199,SAMN26267389,ST203,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15156.0,18235.0,21988.0,SRR29483253,N/A,N/A,N/A,N/A,N/A,SAMN26267389,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230703_225306_s4.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG04199.HFSS_m84046_230703_225306_s4,single,size fractionation,GENOMIC,WGS,64393.0,17690.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04199/raw_data/PacBio_HiFi/m84046_230703_225306_s4.hifi_reads.default.bam,PACBIO_SMRT,P1,14184.0,16954.0,20428.0,N/A,HG04199,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,93.32,93321357983.0,5275176.0,N/A,HG04199,SAMN26267389,ST203,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17720.0,20026.0,23102.0,SRR23922669,N/A,N/A,N/A,N/A,N/A,SAMN33758778,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m54329U_220827_143814-bc2050.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00099_2.HFSS,single,RANDOM,GENOMIC,WGS,54052.0,19996.0,52.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00099/raw_data/PacBio_HiFi/m54329U_220827_143814-bc2050.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17274.0,19325.0,22189.0,N/A,HG00099,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,45.53,45528316868.0,2276772.0,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17765.0,20098.0,23193.0,SRR23922669,N/A,N/A,N/A,N/A,N/A,SAMN33758778,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m54329U_220829_095708-bc2050.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00099_2.HFSS,single,RANDOM,GENOMIC,WGS,59908.0,20052.0,138.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00099/raw_data/PacBio_HiFi/m54329U_220829_095708-bc2050.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17309.0,19387.0,22273.0,N/A,HG00099,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,50.76,50762698477.0,2531476.0,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16729.0,18691.0,21293.0,SRR29483180,N/A,N/A,N/A,N/A,N/A,SAMN41021676,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230724_190043_s1.hifi_reads.bc2096.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00258.HFSS_m84046_230724_190043_s1,single,size fractionation,GENOMIC,WGS,55371.0,18645.0,148.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00258/raw_data/PacBio_HiFi/m84046_230724_190043_s1.hifi_reads.bc2096.bam,PACBIO_SMRT,P1,16344.0,18140.0,20558.0,N/A,HG00258,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,51.43,51428204939.0,2758278.0,N/A,HG00258,SAMN41021676,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16744.0,18719.0,21334.0,SRR29483179,N/A,N/A,N/A,N/A,N/A,SAMN41021676,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230724_193107_s2.hifi_reads.bc2096.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00258.HFSS_m84046_230724_193107_s2,single,size fractionation,GENOMIC,WGS,60525.0,18670.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00258/raw_data/PacBio_HiFi/m84046_230724_193107_s2.hifi_reads.bc2096.bam,PACBIO_SMRT,P1,16353.0,18163.0,20593.0,N/A,HG00258,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,53.79,53789021399.0,2881022.0,N/A,HG00258,SAMN41021676,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16693.0,18637.0,21211.0,SRR29483178,N/A,N/A,N/A,N/A,N/A,SAMN41021676,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230724_200213_s3.hifi_reads.bc2096.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00258.HFSS_m84046_230724_200213_s3,single,size fractionation,GENOMIC,WGS,52749.0,18592.0,127.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00258/raw_data/PacBio_HiFi/m84046_230724_200213_s3.hifi_reads.bc2096.bam,PACBIO_SMRT,P1,16308.0,18093.0,20489.0,N/A,HG00258,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,50.28,50277136375.0,2704234.0,N/A,HG00258,SAMN41021676,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16692.0,18633.0,21200.0,SRR29483181,N/A,N/A,N/A,N/A,N/A,SAMN41021676,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230728_232723_s1.hifi_reads.bc2096.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00258.HFSS_m84046_230728_232723_s1,single,size fractionation,GENOMIC,WGS,56068.0,18590.0,135.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00258/raw_data/PacBio_HiFi/m84046_230728_232723_s1.hifi_reads.bc2096.bam,PACBIO_SMRT,P1,16311.0,18091.0,20477.0,N/A,HG00258,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,50.38,50381614416.0,2710084.0,N/A,HG00258,SAMN41021676,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17461.0,19906.0,23180.0,SRR23922658,N/A,N/A,N/A,N/A,N/A,SAMN33758779,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m54329U_220901_221341-bc2051.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00280.HFSS,single,RANDOM,GENOMIC,WGS,57069.0,19893.0,87.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00280/raw_data/PacBio_HiFi/m54329U_220901_221341-bc2051.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16982.0,19131.0,22147.0,N/A,HG00280,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,47.18,47176915770.0,2371461.0,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17534.0,19996.0,23256.0,SRR23922658,N/A,N/A,N/A,N/A,N/A,SAMN33758779,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_220831_191646-bc2051.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00280.HFSS,single,RANDOM,GENOMIC,WGS,56326.0,19962.0,83.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00280/raw_data/PacBio_HiFi/m64076_220831_191646-bc2051.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17046.0,19212.0,22241.0,N/A,HG00280,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,35.34,35342284205.0,1770422.0,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18089.0,20753.0,24064.0,SRR23922658,N/A,N/A,N/A,N/A,N/A,SAMN33758779,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64457e_220825_195635-bc2051.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00280.HFSS,single,RANDOM,GENOMIC,WGS,60934.0,20575.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00280/raw_data/PacBio_HiFi/m64457e_220825_195635-bc2051.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17523.0,19914.0,23058.0,N/A,HG00280,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,45.9,45904022245.0,2231036.0,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17352.0,19722.0,22899.0,SRR29483120,N/A,N/A,N/A,N/A,N/A,SAMN33758779,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230628_213236_s2.hifi_reads.bc2051.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00280.HFSS_m84046_230628_213236_s2,single,size fractionation,GENOMIC,WGS,54674.0,19728.0,165.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00280/raw_data/PacBio_HiFi/m84046_230628_213236_s2.hifi_reads.bc2051.bam,PACBIO_SMRT,P1,16892.0,18978.0,21911.0,N/A,HG00280,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,55.58,55575840201.0,2816967.0,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16087.0,18236.0,21243.0,SRR29483126,N/A,N/A,N/A,N/A,N/A,SAMN41021654,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230701_000218_s4.hifi_reads.bc2048.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00350.HFSS_m84046_230701_000218_s4,single,size fractionation,GENOMIC,WGS,66787.0,18297.0,78.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00350/raw_data/PacBio_HiFi/m84046_230701_000218_s4.hifi_reads.bc2048.bam,PACBIO_SMRT,P1,15669.0,17546.0,20257.0,N/A,HG00350,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,65.98,65979378041.0,3605979.0,N/A,HG00350,SAMN41021654,,FIN,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16096.0,18257.0,21259.0,SRR29483185,N/A,N/A,N/A,N/A,N/A,SAMN41021654,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230703_222200_s3.hifi_reads.bc2048.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00350.HFSS_m84046_230703_222200_s3,single,size fractionation,GENOMIC,WGS,54183.0,18308.0,101.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00350/raw_data/PacBio_HiFi/m84046_230703_222200_s3.hifi_reads.bc2048.bam,PACBIO_SMRT,P1,15675.0,17565.0,20287.0,N/A,HG00350,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,117.05,117048570883.0,6393106.0,N/A,HG00350,SAMN41021654,,FIN,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16260.0,18532.0,21668.0,SRR29483197,N/A,N/A,N/A,N/A,N/A,SAMN41021654,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230712_231732_s2.hifi_reads.bc2048.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00350.HFSS_m84046_230712_231732_s2,single,size fractionation,GENOMIC,WGS,52872.0,18551.0,102.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00350/raw_data/PacBio_HiFi/m84046_230712_231732_s2.hifi_reads.bc2048.bam,PACBIO_SMRT,P1,15806.0,17792.0,20634.0,N/A,HG00350,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,20.63,20631179910.0,1112115.0,N/A,HG00350,SAMN41021654,,FIN,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15849.0,17793.0,20438.0,SRR29483214,N/A,N/A,N/A,N/A,N/A,SAMN41021674,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230724_190043_s1.hifi_reads.bc2094.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01028.HFSS_m84046_230724_190043_s1,single,size fractionation,GENOMIC,WGS,49266.0,17784.0,97.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01028/raw_data/PacBio_HiFi/m84046_230724_190043_s1.hifi_reads.bc2094.bam,PACBIO_SMRT,P1,15464.0,17217.0,19649.0,N/A,HG01028,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,58.3,58299850347.0,3278083.0,N/A,HG01028,SAMN41021674,,CDX,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15861.0,17819.0,20475.0,SRR29483211,N/A,N/A,N/A,N/A,N/A,SAMN41021674,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230724_193107_s2.hifi_reads.bc2094.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01028.HFSS_m84046_230724_193107_s2,single,size fractionation,GENOMIC,WGS,51678.0,17807.0,83.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01028/raw_data/PacBio_HiFi/m84046_230724_193107_s2.hifi_reads.bc2094.bam,PACBIO_SMRT,P1,15475.0,17236.0,19684.0,N/A,HG01028,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,60.86,60855170041.0,3417421.0,N/A,HG01028,SAMN41021674,,CDX,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15814.0,17739.0,20361.0,SRR29483212,N/A,N/A,N/A,N/A,N/A,SAMN41021674,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230724_200213_s3.hifi_reads.bc2094.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01028.HFSS_m84046_230724_200213_s3,single,size fractionation,GENOMIC,WGS,49951.0,17733.0,129.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01028/raw_data/PacBio_HiFi/m84046_230724_200213_s3.hifi_reads.bc2094.bam,PACBIO_SMRT,P1,15432.0,17171.0,19582.0,N/A,HG01028,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,57.21,57205768778.0,3225797.0,N/A,HG01028,SAMN41021674,,CDX,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15818.0,17739.0,20357.0,SRR29483213,N/A,N/A,N/A,N/A,N/A,SAMN41021674,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230728_232723_s1.hifi_reads.bc2094.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01028.HFSS_m84046_230728_232723_s1,single,size fractionation,GENOMIC,WGS,51477.0,17735.0,147.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01028/raw_data/PacBio_HiFi/m84046_230728_232723_s1.hifi_reads.bc2094.bam,PACBIO_SMRT,P1,15438.0,17171.0,19579.0,N/A,HG01028,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,28.97,28974810104.0,1633726.0,N/A,HG01028,SAMN41021674,,CDX,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17282.0,19417.0,22331.0,SRR29483155,N/A,N/A,N/A,N/A,N/A,SAMN41021662,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230721_192545_s2.hifi_reads.bc2090.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01766.HFSS_m84046_230721_192545_s2,single,size fractionation,GENOMIC,WGS,57480.0,19432.0,181.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01766/raw_data/PacBio_HiFi/m84046_230721_192545_s2.hifi_reads.bc2090.bam,PACBIO_SMRT,P1,16868.0,18775.0,21454.0,N/A,HG01766,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,53.1,53097306006.0,2732398.0,N/A,HG01766,SAMN41021662,,IBS,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17338.0,19506.0,22474.0,SRR29483158,N/A,N/A,N/A,N/A,N/A,SAMN41021662,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230722_180255_s3.hifi_reads.bc2090.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01766.HFSS_m84046_230722_180255_s3,single,size fractionation,GENOMIC,WGS,61514.0,19516.0,222.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01766/raw_data/PacBio_HiFi/m84046_230722_180255_s3.hifi_reads.bc2090.bam,PACBIO_SMRT,P1,16913.0,18846.0,21569.0,N/A,HG01766,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,56.31,56312489585.0,2885411.0,N/A,HG01766,SAMN41021662,,IBS,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17264.0,19392.0,22330.0,SRR29483156,N/A,N/A,N/A,N/A,N/A,SAMN41021662,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230722_183401_s4.hifi_reads.bc2090.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01766.HFSS_m84046_230722_183401_s4,single,size fractionation,GENOMIC,WGS,55690.0,19412.0,138.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01766/raw_data/PacBio_HiFi/m84046_230722_183401_s4.hifi_reads.bc2090.bam,PACBIO_SMRT,P1,16847.0,18747.0,21431.0,N/A,HG01766,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,58.35,58353964607.0,3005966.0,N/A,HG01766,SAMN41021662,,IBS,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17225.0,19299.0,22149.0,SRR29483157,N/A,N/A,N/A,N/A,N/A,SAMN41021662,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230728_232723_s1.hifi_reads.bc2090.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01766.HFSS_m84046_230728_232723_s1,single,size fractionation,GENOMIC,WGS,52137.0,19323.0,64.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01766/raw_data/PacBio_HiFi/m84046_230728_232723_s1.hifi_reads.bc2090.bam,PACBIO_SMRT,P1,16820.0,18682.0,21289.0,N/A,HG01766,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,27.49,27492756899.0,1422746.0,N/A,HG01766,SAMN41021662,,IBS,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18188.0,20858.0,24325.0,SRR29483167,N/A,N/A,N/A,N/A,N/A,SAMN33758784,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230531_221339_s3.hifi_reads.bc2056.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG02040.HFSS2_m84046_230531_221339_s3,single,size fractionation,GENOMIC,WGS,58406.0,20593.0,310.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02040/raw_data/PacBio_HiFi/m84046_230531_221339_s3.hifi_reads.bc2056.bam,PACBIO_SMRT,P1,17572.0,19939.0,23175.0,N/A,HG02040,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,46.89,46891446851.0,2277007.0,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16558.0,18440.0,20733.0,SRR29483263,N/A,N/A,N/A,N/A,N/A,SAMN41021675,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230727_225904_s1.hifi_reads.bc2095.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03778.HFSS_m84046_230727_225904_s1,single,size fractionation,GENOMIC,WGS,53059.0,18327.0,91.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03778/raw_data/PacBio_HiFi/m84046_230727_225904_s1.hifi_reads.bc2095.bam,PACBIO_SMRT,P1,16201.0,17959.0,20169.0,N/A,HG03778,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,41.85,41851544501.0,2283495.0,N/A,HG03778,SAMN41021675,,ITU,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16551.0,18435.0,20725.0,SRR29483262,N/A,N/A,N/A,N/A,N/A,SAMN41021675,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230728_195023_s2.hifi_reads.bc2095.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03778.HFSS_m84046_230728_195023_s2,single,size fractionation,GENOMIC,WGS,53357.0,18321.0,67.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03778/raw_data/PacBio_HiFi/m84046_230728_195023_s2.hifi_reads.bc2095.bam,PACBIO_SMRT,P1,16194.0,17951.0,20165.0,N/A,HG03778,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,41.21,41213430190.0,2249399.0,N/A,HG03778,SAMN41021675,,ITU,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16373.0,18184.0,20428.0,SRR29483243,N/A,N/A,N/A,N/A,N/A,SAMN41021675,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230728_202047_s3.hifi_reads.bc2095.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03778.HFSS_m84046_230728_202047_s3,single,size fractionation,GENOMIC,WGS,53713.0,18101.0,106.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03778/raw_data/PacBio_HiFi/m84046_230728_202047_s3.hifi_reads.bc2095.bam,PACBIO_SMRT,P1,16034.0,17726.0,19871.0,N/A,HG03778,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,42.36,42363322281.0,2340299.0,N/A,HG03778,SAMN41021675,,ITU,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16342.0,18145.0,20384.0,SRR29483261,N/A,N/A,N/A,N/A,N/A,SAMN41021675,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230728_205153_s4.hifi_reads.bc2095.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03778.HFSS_m84046_230728_205153_s4,single,size fractionation,GENOMIC,WGS,58389.0,18065.0,163.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03778/raw_data/PacBio_HiFi/m84046_230728_205153_s4.hifi_reads.bc2095.bam,PACBIO_SMRT,P1,16005.0,17688.0,19830.0,N/A,HG03778,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,42.16,42162842373.0,2333827.0,N/A,HG03778,SAMN41021675,,ITU,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16321.0,18116.0,20351.0,SRR29483242,N/A,N/A,N/A,N/A,N/A,SAMN41021675,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230731_200859_s2.hifi_reads.bc2095.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03778.HFSS_m84046_230731_200859_s2,single,size fractionation,GENOMIC,WGS,48971.0,18038.0,332.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03778/raw_data/PacBio_HiFi/m84046_230731_200859_s2.hifi_reads.bc2095.bam,PACBIO_SMRT,P1,15986.0,17660.0,19802.0,N/A,HG03778,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,7.49,7492283139.0,415348.0,N/A,HG03778,SAMN41021675,,ITU,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17158.0,19275.0,22219.0,SRR29483209,N/A,N/A,N/A,N/A,N/A,SAMN41021661,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230727_225904_s1.hifi_reads.bc2089.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18879.HFSS_m84046_230727_225904_s1,single,size fractionation,GENOMIC,WGS,53615.0,19311.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18879/raw_data/PacBio_HiFi/m84046_230727_225904_s1.hifi_reads.bc2089.bam,PACBIO_SMRT,P1,16771.0,18638.0,21350.0,N/A,NA18879,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,35.95,35952728466.0,1861755.0,N/A,NA18879,SAMN41021661,,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17146.0,19254.0,22189.0,SRR29483138,N/A,N/A,N/A,N/A,N/A,SAMN41021661,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230728_195023_s2.hifi_reads.bc2089.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18879.HFSS_m84046_230728_195023_s2,single,size fractionation,GENOMIC,WGS,55640.0,19295.0,105.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18879/raw_data/PacBio_HiFi/m84046_230728_195023_s2.hifi_reads.bc2089.bam,PACBIO_SMRT,P1,16762.0,18623.0,21322.0,N/A,NA18879,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,35.23,35231680700.0,1825888.0,N/A,NA18879,SAMN41021661,,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16954.0,18930.0,21749.0,SRR29483137,N/A,N/A,N/A,N/A,N/A,SAMN41021661,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230728_202047_s3.hifi_reads.bc2089.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18879.HFSS_m84046_230728_202047_s3,single,size fractionation,GENOMIC,WGS,59168.0,19012.0,120.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18879/raw_data/PacBio_HiFi/m84046_230728_202047_s3.hifi_reads.bc2089.bam,PACBIO_SMRT,P1,16597.0,18348.0,20912.0,N/A,NA18879,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,33.95,33948783319.0,1785585.0,N/A,NA18879,SAMN41021661,,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16927.0,18885.0,21715.0,SRR29483210,N/A,N/A,N/A,N/A,N/A,SAMN41021661,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230728_205153_s4.hifi_reads.bc2089.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18879.HFSS_m84046_230728_205153_s4,single,size fractionation,GENOMIC,WGS,53708.0,18979.0,213.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18879/raw_data/PacBio_HiFi/m84046_230728_205153_s4.hifi_reads.bc2089.bam,PACBIO_SMRT,P1,16571.0,18309.0,20873.0,N/A,NA18879,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,33.67,33673965830.0,1774191.0,N/A,NA18879,SAMN41021661,,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16912.0,18864.0,21657.0,SRR29483205,N/A,N/A,N/A,N/A,N/A,SAMN41021661,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230731_200859_s2.hifi_reads.bc2089.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18879.HFSS_m84046_230731_200859_s2,single,size fractionation,GENOMIC,WGS,55809.0,18948.0,72.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18879/raw_data/PacBio_HiFi/m84046_230731_200859_s2.hifi_reads.bc2089.bam,PACBIO_SMRT,P1,16560.0,18291.0,20831.0,N/A,NA18879,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,58.57,58568710214.0,3090957.0,N/A,NA18879,SAMN41021661,,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14632.0,18402.0,22221.0,SRR23922649,N/A,N/A,N/A,N/A,N/A,SAMN33758798,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m54329U_220903_190900-bc2055.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG18983.HFSS2,single,RANDOM,GENOMIC,WGS,33909.0,15264.0,1468.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m54329U_220903_190900-bc2055.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,10464.0,15809.0,19988.0,N/A,NA18983,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,0.07,72199804.0,4730.0,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14885.0,18612.0,22626.0,SRR23922649,N/A,N/A,N/A,N/A,N/A,SAMN33758798,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m54329U_220905_144015-bc2055.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG18983.HFSS2,single,RANDOM,GENOMIC,WGS,34905.0,15906.0,1528.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m54329U_220905_144015-bc2055.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,11550.0,16246.0,20407.0,N/A,NA18983,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,0.08,77255780.0,4857.0,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14998.0,18874.0,22950.0,SRR23922649,N/A,N/A,N/A,N/A,N/A,SAMN33758798,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m54329U_220907_100858-bc2055.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG18983.HFSS2,single,RANDOM,GENOMIC,WGS,35951.0,16025.0,1389.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m54329U_220907_100858-bc2055.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,11779.0,16362.0,20701.0,N/A,NA18983,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,0.07,73078048.0,4560.0,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18385.0,21100.0,24496.0,SRR23922649,N/A,N/A,N/A,N/A,N/A,SAMN33758798,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64457e_220906_104717-bc2055.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG18983.HFSS2,single,RANDOM,GENOMIC,WGS,58895.0,20897.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m64457e_220906_104717-bc2055.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17794.0,20225.0,23449.0,N/A,NA18983,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,42.79,42794312016.0,2047793.0,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18608.0,21371.0,24756.0,SRR23922649,N/A,N/A,N/A,N/A,N/A,SAMN33758798,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64457e_220902_165459-bc2055.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG18983.HFSS2,single,RANDOM,GENOMIC,WGS,76383.0,21122.0,79.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m64457e_220902_165459-bc2055.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17996.0,20489.0,23724.0,N/A,NA18983,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,43.05,43050138465.0,2038086.0,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18786.0,21640.0,25068.0,SRR23922649,N/A,N/A,N/A,N/A,N/A,SAMN33758798,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64457e_220904_135104-bc2055.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG18983.HFSS2,single,RANDOM,GENOMIC,WGS,66528.0,21337.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m64457e_220904_135104-bc2055.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,18140.0,20727.0,24026.0,N/A,NA18983,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,42.15,42152212914.0,1975484.0,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17522.0,19854.0,23031.0,SRR29483151,N/A,N/A,N/A,N/A,N/A,SAMN33758798,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230623_210640_s1.hifi_reads.bc2055.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18983.HFSS2_m84046_230623_210640_s1,single,size fractionation,GENOMIC,WGS,57247.0,19849.0,91.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m84046_230623_210640_s1.hifi_reads.bc2055.bam,PACBIO_SMRT,P1,17052.0,19115.0,22023.0,N/A,NA18983,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,54.17,54169299224.0,2729065.0,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17537.0,19855.0,22896.0,SRR29483235,N/A,N/A,N/A,N/A,N/A,SAMN41021613,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230501_151821_s4.hifi_reads.bc2092.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19390.HFSS_m84046_230501_151821_s4,single,size fractionation,GENOMIC,WGS,56423.0,19784.0,68.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19390/raw_data/PacBio_HiFi/m84046_230501_151821_s4.hifi_reads.bc2092.bam,PACBIO_SMRT,P1,17066.0,19145.0,21977.0,N/A,NA19390,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,53.64,53643124518.0,2711404.0,N/A,NA19390,SAMN41021613,,LWK,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17278.0,19458.0,22398.0,SRR29483234,N/A,N/A,N/A,N/A,N/A,SAMN41021613,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230504_205453_s3.hifi_reads.bc2092.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19390.HFSS_m84046_230504_205453_s3,single,size fractionation,GENOMIC,WGS,53621.0,19446.0,102.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19390/raw_data/PacBio_HiFi/m84046_230504_205453_s3.hifi_reads.bc2092.bam,PACBIO_SMRT,P1,16842.0,18801.0,21507.0,N/A,NA19390,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,55.57,55572902869.0,2857712.0,N/A,NA19390,SAMN41021613,,LWK,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17341.0,19551.0,22514.0,SRR29483232,N/A,N/A,N/A,N/A,N/A,SAMN41021613,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230504_212559_s4.hifi_reads.bc2092.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19390.HFSS_m84046_230504_212559_s4,single,size fractionation,GENOMIC,WGS,54239.0,19527.0,150.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19390/raw_data/PacBio_HiFi/m84046_230504_212559_s4.hifi_reads.bc2092.bam,PACBIO_SMRT,P1,16899.0,18884.0,21620.0,N/A,NA19390,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,55.0,55002385545.0,2816659.0,N/A,NA19390,SAMN41021613,,LWK,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17357.0,19579.0,22543.0,SRR29483233,N/A,N/A,N/A,N/A,N/A,SAMN41021613,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230508_200815_s4.hifi_reads.bc2092.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19390.HFSS_m84046_230508_200815_s4,single,size fractionation,GENOMIC,WGS,53448.0,19547.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19390/raw_data/PacBio_HiFi/m84046_230508_200815_s4.hifi_reads.bc2092.bam,PACBIO_SMRT,P1,16911.0,18907.0,21651.0,N/A,NA19390,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,32.76,32758719626.0,1675885.0,N/A,NA19390,SAMN41021613,,LWK,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16931.0,20504.0,24966.0,SRR23922643,N/A,N/A,N/A,N/A,N/A,SAMN33758781,6.2.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_211222_104516-bc1010.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00639.HFSS,single,RANDOM,GENOMIC,WGS,64002.0,19762.0,79.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/m54329U_211222_104516-bc1010.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15750.0,18909.0,22999.0,N/A,HG00639,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,30.16,30157424611.0,1525960.0,N/A,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17062.0,20664.0,25118.0,SRR23922643,N/A,N/A,N/A,N/A,N/A,SAMN33758781,6.2.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_211230_014258-bc1010.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00639.HFSS,single,RANDOM,GENOMIC,WGS,56516.0,19943.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/m54329U_211230_014258-bc1010.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15883.0,19084.0,23193.0,N/A,HG00639,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.78,32778391595.0,1643577.0,N/A,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17104.0,20746.0,25246.0,SRR23922643,N/A,N/A,N/A,N/A,N/A,SAMN33758781,6.2.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64076_220216_013707-bc1010.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00639.HFSS,single,RANDOM,GENOMIC,WGS,52534.0,19981.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/m64076_220216_013707-bc1010.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15886.0,19132.0,23275.0,N/A,HG00639,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,5.69,5693715374.0,284943.0,N/A,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17196.0,20876.0,25416.0,SRR23922643,N/A,N/A,N/A,N/A,N/A,SAMN33758781,6.2.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_211231_123903-bc1010.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00639.HFSS,single,RANDOM,GENOMIC,WGS,61767.0,20150.0,118.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/m54329U_211231_123903-bc1010.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15989.0,19255.0,23451.0,N/A,HG00639,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,37.54,37535814568.0,1862777.0,N/A,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16436.0,19215.0,22858.0,SRR23922645,N/A,N/A,N/A,N/A,N/A,SAMN33758782,6.2.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_211208_005551-bc1008.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01074.HFSS2,single,RANDOM,GENOMIC,WGS,53902.0,19049.0,200.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m54329U_211208_005551-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15785.0,18197.0,21525.0,N/A,HG01074,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,34.93,34933587178.0,1833869.0,N/A,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16493.0,19304.0,22988.0,SRR23922645,N/A,N/A,N/A,N/A,N/A,SAMN33758782,6.2.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_211211_014820-bc1008.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01074.HFSS2,single,RANDOM,GENOMIC,WGS,61840.0,19128.0,139.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m54329U_211211_014820-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15826.0,18266.0,21628.0,N/A,HG01074,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,37.48,37481785263.0,1959425.0,N/A,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16537.0,19364.0,23063.0,SRR23922645,N/A,N/A,N/A,N/A,N/A,SAMN33758782,6.2.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_211212_111219-bc1008.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01074.HFSS2,single,RANDOM,GENOMIC,WGS,57471.0,19180.0,112.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m54329U_211212_111219-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15858.0,18322.0,21695.0,N/A,HG01074,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,37.56,37561501658.0,1958351.0,N/A,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16545.0,18768.0,21880.0,SRR29483195,N/A,N/A,N/A,N/A,N/A,SAMN33758786,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230720_185410_s2.hifi_reads.bc2006.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02451.HFSS3_m84046_230720_185410_s2,single,size fractionation,GENOMIC,WGS,49086.0,18780.0,175.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/m84046_230720_185410_s2.hifi_reads.bc2006.bam,PACBIO_SMRT,P1,16117.0,18053.0,20895.0,N/A,HG02451,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,49.77,49774606276.0,2650321.0,N/A,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17505.0,19487.0,22369.0,SRR29483162,N/A,N/A,N/A,N/A,N/A,SAMN26267383,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230707_202610_s3.hifi_reads.bc2060.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02647.HFSS_m84046_230707_202610_s3,single,size fractionation,GENOMIC,WGS,55836.0,19602.0,150.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02647/raw_data/PacBio_HiFi/m84046_230707_202610_s3.hifi_reads.bc2060.bam,PACBIO_SMRT,P1,17151.0,18903.0,21502.0,N/A,HG02647,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,46.23,46225303347.0,2358113.0,N/A,HG02647,SAMN26267383,GB38,GWD,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16796.0,19279.0,22705.0,SRR23922666,N/A,N/A,N/A,N/A,N/A,SAMN33758787,6.2.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_211109_002533-bc1002.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02735_SRE.HFSS,single,RANDOM,GENOMIC,WGS,55937.0,19329.0,120.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m54329U_211109_002533-bc1002.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16296.0,18426.0,21500.0,N/A,HG02735,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,11.82,11815933021.0,611305.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17225.0,20513.0,24597.0,SRR23922656,N/A,N/A,N/A,N/A,N/A,SAMN33758794,6.2.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64076_220108_100904-bc1015.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03239.HFSS,single,RANDOM,GENOMIC,WGS,57608.0,20045.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/m64076_220108_100904-bc1015.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16305.0,19208.0,23004.0,N/A,HG03239,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,35.95,35954386623.0,1793658.0,N/A,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17274.0,20592.0,24716.0,SRR23922656,N/A,N/A,N/A,N/A,N/A,SAMN33758794,6.2.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_220105_011819-bc1015.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03239.HFSS,single,RANDOM,GENOMIC,WGS,62749.0,20108.0,136.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/m54329U_220105_011819-bc1015.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16345.0,19264.0,23104.0,N/A,HG03239,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,35.76,35760461752.0,1778411.0,N/A,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17390.0,20721.0,24825.0,SRR23922656,N/A,N/A,N/A,N/A,N/A,SAMN33758794,6.2.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64076_220106_231243-bc1015.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03239.HFSS,single,RANDOM,GENOMIC,WGS,67645.0,20251.0,77.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/m64076_220106_231243-bc1015.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16457.0,19407.0,23235.0,N/A,HG03239,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,36.35,36349648567.0,1794879.0,N/A,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17337.0,20717.0,24742.0,SRR18158600,N/A,N/A,N/A,N/A,N/A,SAMN26267388,6.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64076_210623_104349.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04115.HFSS,single,size fractionation,GENOMIC,WGS,56102.0,20047.0,739.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04115/raw_data/PacBio_HiFi/m64076_210623_104349.hifi_reads.bam,PACBIO_SMRT,P2.2,16228.0,19366.0,23149.0,N/A,HG04115,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.88,32878572833.0,1640056.0,N/A,HG04115,SAMN26267388,ST111,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18543.0,22203.0,26421.0,SRR18158600,N/A,N/A,N/A,N/A,N/A,SAMN26267388,6.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64076_210627_085544.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04115.HFSS,single,size fractionation,GENOMIC,WGS,61232.0,21316.0,108.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04115/raw_data/PacBio_HiFi/m64076_210627_085544.hifi_reads.bam,PACBIO_SMRT,P2.2,17276.0,20735.0,24789.0,N/A,HG04115,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.54,31539555547.0,1479605.0,N/A,HG04115,SAMN26267388,ST111,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18743.0,22340.0,26476.0,SRR18158600,N/A,N/A,N/A,N/A,N/A,SAMN26267388,6.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64076_210625_220013.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04115.HFSS,single,size fractionation,GENOMIC,WGS,58397.0,21493.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04115/raw_data/PacBio_HiFi/m64076_210625_220013.hifi_reads.bam,PACBIO_SMRT,P2.2,17533.0,20925.0,24919.0,N/A,HG04115,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,30.35,30350204611.0,1412094.0,N/A,HG04115,SAMN26267388,ST111,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17488.0,20454.0,24255.0,SRR23922652,N/A,N/A,N/A,N/A,N/A,SAMN33758796,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_220607_194753-bc2021.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,NA18522.HFSS,single,RANDOM,GENOMIC,WGS,69031.0,20210.0,69.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/m54329U_220607_194753-bc2021.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16774.0,19386.0,22898.0,N/A,NA18522,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,46.37,46372792364.0,2294482.0,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17666.0,20663.0,24465.0,SRR23922652,N/A,N/A,N/A,N/A,N/A,SAMN33758796,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_220605_194957-bc2021.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,NA18522.HFSS,single,RANDOM,GENOMIC,WGS,57002.0,20386.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/m54329U_220605_194957-bc2021.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16934.0,19589.0,23129.0,N/A,NA18522,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,42.51,42511152283.0,2085214.0,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17705.0,20717.0,24537.0,SRR23922652,N/A,N/A,N/A,N/A,N/A,SAMN33758796,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_220604_002013-bc2021.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,NA18522.HFSS,single,RANDOM,GENOMIC,WGS,62801.0,20434.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/m54329U_220604_002013-bc2021.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16965.0,19634.0,23192.0,N/A,NA18522,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,41.71,41706367952.0,2040973.0,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17082.0,19795.0,23308.0,SRR29483174,N/A,N/A,N/A,N/A,N/A,SAMN33758796,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230531_214232_s2.hifi_reads.bc2021.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,NA18522.HFSS_m84046_230531_214232_s2,single,size fractionation,GENOMIC,WGS,47307.0,19649.0,262.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/m84046_230531_214232_s2.hifi_reads.bc2021.bam,PACBIO_SMRT,P1,16462.0,18854.0,22075.0,N/A,NA18522,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,32.01,32010595867.0,1629099.0,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17035.0,19715.0,23227.0,SRR29483104,N/A,N/A,N/A,N/A,N/A,SAMN33758796,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230603_204152_s4.hifi_reads.bc2021.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,NA18522.HFSS_m84046_230603_204152_s4,single,size fractionation,GENOMIC,WGS,54099.0,19590.0,544.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/m84046_230603_204152_s4.hifi_reads.bc2021.bam,PACBIO_SMRT,P1,16418.0,18792.0,22005.0,N/A,NA18522,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,26.51,26512228758.0,1353337.0,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,False,18875.0,20054.0,21609.0,SRR13684284,N/A,N/A,N/A,N/A,N/A,SAMN17861242,ccs 4.2.0 (commit v4.2.0-1-g450908e4),N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64076_201013_225902.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,NA24385_HG002.f4.f3,single,size fractionation,GENOMIC,WGS,57023.0,20390.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC_PLUS/HG002/raw_data/PacBio_HiFi/UW_supplement/m64076_201013_225902.ccs.bam,PACBIO_SMRT,P2.0,18712.0,19835.0,21255.0,N/A,HG002,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,17.33,17328670239.0,849857.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,False,19081.0,20444.0,22636.0,SRR13684284,N/A,N/A,N/A,N/A,N/A,SAMN17861242,ccs 4.2.0 (commit v4.2.0-1-g450908e4),N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64076_201016_191536.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,NA24385_HG002.f4.f3,single,size fractionation,GENOMIC,WGS,59678.0,21020.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC_PLUS/HG002/raw_data/PacBio_HiFi/UW_supplement/m64076_201016_191536.ccs.bam,PACBIO_SMRT,P2.0,18875.0,20128.0,21934.0,N/A,HG002,N/A,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,19.2,19201161177.0,913451.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,True,18153.0,20772.0,24191.0,SRR29483176,N/A,N/A,N/A,N/A,N/A,SAMN33758778,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230517_211630_s4.hifi_reads.bc2012.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00099_1.HFSS_m84046_230517_211630_s4,single,size fractionation,GENOMIC,WGS,54368.0,20651.0,331.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00099/raw_data/PacBio_HiFi/m84046_230517_211630_s4.hifi_reads.bc2012.bam,PACBIO_SMRT,P1,17597.0,19914.0,23094.0,N/A,HG00099,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,61.48,61484744616.0,2977212.0,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17227.0,19817.0,23257.0,SRR29483229,N/A,N/A,N/A,N/A,N/A,SAMN41021687,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230831_231439_s1.hifi_reads.bc2034.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01048.HFSS_m84046_230831_231439_s1,single,size fractionation,GENOMIC,WGS,60075.0,19703.0,112.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01048/raw_data/PacBio_HiFi/m84046_230831_231439_s1.hifi_reads.bc2034.bam,PACBIO_SMRT,P1,16642.0,18931.0,22072.0,N/A,HG01048,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,56.29,56294891530.0,2857155.0,N/A,HG01048,SAMN41021687,,PUR,AMR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17360.0,19992.0,23444.0,SRR29483230,N/A,N/A,N/A,N/A,N/A,SAMN41021687,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230831_234545_s2.hifi_reads.bc2034.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01048.HFSS_m84046_230831_234545_s2,single,size fractionation,GENOMIC,WGS,59663.0,19854.0,128.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01048/raw_data/PacBio_HiFi/m84046_230831_234545_s2.hifi_reads.bc2034.bam,PACBIO_SMRT,P1,16761.0,19095.0,22264.0,N/A,HG01048,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,56.02,56024496861.0,2821770.0,N/A,HG01048,SAMN41021687,,PUR,AMR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17002.0,19452.0,22752.0,SRR29483228,N/A,N/A,N/A,N/A,N/A,SAMN41021687,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230905_231311_s2.hifi_reads.bc2034.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01048.HFSS_m84046_230905_231311_s2,single,size fractionation,GENOMIC,WGS,58044.0,19385.0,164.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01048/raw_data/PacBio_HiFi/m84046_230905_231311_s2.hifi_reads.bc2034.bam,PACBIO_SMRT,P1,16464.0,18631.0,21631.0,N/A,HG01048,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,39.58,39578673831.0,2041679.0,N/A,HG01048,SAMN41021687,,PUR,AMR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17468.0,20142.0,23647.0,SRR29483266,N/A,N/A,N/A,N/A,N/A,SAMN41021687,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230906_222128_s4.hifi_reads.bc2034.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01048.HFSS_m84046_230906_222128_s4,single,size fractionation,GENOMIC,WGS,63360.0,19991.0,359.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01048/raw_data/PacBio_HiFi/m84046_230906_222128_s4.hifi_reads.bc2034.bam,PACBIO_SMRT,P1,16853.0,19228.0,22437.0,N/A,HG01048,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,61.82,61822391486.0,3092444.0,N/A,HG01048,SAMN41021687,,PUR,AMR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15986.0,18264.0,21324.0,SRR23922664,N/A,N/A,N/A,N/A,N/A,SAMN33758788,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_220816_182601-bc2045.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG02922.HFSS,single,RANDOM,GENOMIC,WGS,48799.0,18233.0,141.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m54329U_220816_182601-bc2045.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,15504.0,17513.0,20303.0,N/A,HG02922,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,19.94,19937213389.0,1093416.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18159.0,22312.0,26640.0,SRR23922663,N/A,N/A,N/A,N/A,N/A,SAMN33758788,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64457e_220906_104717-bc2053.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG02922.HFSS2,single,RANDOM,GENOMIC,WGS,42061.0,19880.0,1321.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m64457e_220906_104717-bc2053.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,15374.0,20075.0,24486.0,N/A,HG02922,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,0.2,200809444.0,10101.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18780.0,22731.0,27224.0,SRR23922663,N/A,N/A,N/A,N/A,N/A,SAMN33758788,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64457e_220902_165459-bc2053.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG02922.HFSS2,single,RANDOM,GENOMIC,WGS,41854.0,20570.0,1212.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m64457e_220902_165459-bc2053.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16402.0,20700.0,25116.0,N/A,HG02922,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,0.2,195361726.0,9497.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18975.0,22556.0,26969.0,SRR23922663,N/A,N/A,N/A,N/A,N/A,SAMN33758788,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_220903_190900-bc2053.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG02922.HFSS2,single,RANDOM,GENOMIC,WGS,76923.0,22047.0,110.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m54329U_220903_190900-bc2053.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17970.0,21163.0,25288.0,N/A,HG02922,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,43.9,43896414378.0,1990977.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19046.0,22651.0,27039.0,SRR23922663,N/A,N/A,N/A,N/A,N/A,SAMN33758788,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_220907_100858-bc2053.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG02922.HFSS2,single,RANDOM,GENOMIC,WGS,79328.0,22118.0,62.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m54329U_220907_100858-bc2053.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,18032.0,21258.0,25381.0,N/A,HG02922,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,44.48,44475348827.0,2010767.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19050.0,22658.0,27045.0,SRR23922663,N/A,N/A,N/A,N/A,N/A,SAMN33758788,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_220905_144015-bc2053.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG02922.HFSS2,single,RANDOM,GENOMIC,WGS,68274.0,22119.0,106.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m54329U_220905_144015-bc2053.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,18030.0,21258.0,25382.0,N/A,HG02922,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,46.38,46375666417.0,2096626.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19118.0,23139.0,27684.0,SRR23922663,N/A,N/A,N/A,N/A,N/A,SAMN33758788,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64457e_220904_135104-bc2053.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG02922.HFSS2,single,RANDOM,GENOMIC,WGS,43604.0,21152.0,1163.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m64457e_220904_135104-bc2053.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16859.0,21228.0,25652.0,N/A,HG02922,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,0.19,194353188.0,9188.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18042.0,21259.0,25330.0,SRR29483121,N/A,N/A,N/A,N/A,N/A,SAMN33758788,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230617_040148_s2.hifi_reads.bc2053.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG02922.HFSS2_m84046_230617_040148_s2,single,size fractionation,GENOMIC,WGS,57502.0,20935.0,172.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m84046_230617_040148_s2.hifi_reads.bc2053.bam,PACBIO_SMRT,P1,17209.0,20041.0,23790.0,N/A,HG02922,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,20.21,20206254963.0,965182.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18408.0,20518.0,23530.0,SRR29483259,N/A,N/A,N/A,N/A,N/A,SAMN41021651,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230715_060901_s1.hifi_reads.bc2084.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03521.HFSS2_m84046_230715_060901_s1,single,size fractionation,GENOMIC,WGS,58005.0,20640.0,66.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03521/raw_data/PacBio_HiFi/m84046_230715_060901_s1.hifi_reads.bc2084.bam,PACBIO_SMRT,P1,18025.0,19908.0,22635.0,N/A,HG03521,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,52.35,52350380501.0,2536343.0,N/A,HG03521,SAMN41021651,NG109,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18499.0,20676.0,23771.0,SRR29483257,N/A,N/A,N/A,N/A,N/A,SAMN41021651,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230715_064007_s2.hifi_reads.bc2084.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03521.HFSS2_m84046_230715_064007_s2,single,size fractionation,GENOMIC,WGS,57192.0,20784.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03521/raw_data/PacBio_HiFi/m84046_230715_064007_s2.hifi_reads.bc2084.bam,PACBIO_SMRT,P1,18099.0,20036.0,22840.0,N/A,HG03521,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,56.04,56036523269.0,2696081.0,N/A,HG03521,SAMN41021651,NG109,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18419.0,20551.0,23601.0,SRR29483260,N/A,N/A,N/A,N/A,N/A,SAMN41021651,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230718_230843_s2.hifi_reads.bc2084.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03521.HFSS2_m84046_230718_230843_s2,single,size fractionation,GENOMIC,WGS,63166.0,20671.0,96.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03521/raw_data/PacBio_HiFi/m84046_230718_230843_s2.hifi_reads.bc2084.bam,PACBIO_SMRT,P1,18030.0,19928.0,22685.0,N/A,HG03521,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,100.26,100261536810.0,4850185.0,N/A,HG03521,SAMN41021651,NG109,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17771.0,20172.0,23299.0,SRR23922651,N/A,N/A,N/A,N/A,N/A,SAMN33758797,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_220823_191353-bc2011.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG18747_1.HFSS,single,RANDOM,GENOMIC,WGS,62402.0,20063.0,53.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/m54329U_220823_191353-bc2011.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17271.0,19431.0,22353.0,N/A,NA18747,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,44.48,44479802984.0,2216924.0,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18231.0,20819.0,24016.0,SRR23922651,N/A,N/A,N/A,N/A,N/A,SAMN33758797,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64076_221001_041132-bc2011.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG18747_1.HFSS,single,RANDOM,GENOMIC,WGS,53613.0,20597.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/m64076_221001_041132-bc2011.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17677.0,20028.0,23080.0,N/A,NA18747,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,9.85,9845535652.0,477989.0,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17420.0,19695.0,22725.0,SRR29483196,N/A,N/A,N/A,N/A,N/A,SAMN33758797,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230531_214232_s2.hifi_reads.bc2011.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18747_1.HFSS_m84046_230531_214232_s2,single,size fractionation,GENOMIC,WGS,50521.0,19634.0,342.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/m84046_230531_214232_s2.hifi_reads.bc2011.bam,PACBIO_SMRT,P1,16951.0,18998.0,21798.0,N/A,NA18747,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,53.0,53004210316.0,2699589.0,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18289.0,21114.0,24619.0,SRR23922650,N/A,N/A,N/A,N/A,N/A,SAMN33758797,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64076_220828_113336-bc2049.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG18747_2.HFSS,single,RANDOM,GENOMIC,WGS,85977.0,20876.0,158.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/m64076_220828_113336-bc2049.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17657.0,20179.0,23497.0,N/A,NA18747,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,33.24,33237414229.0,1592112.0,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18567.0,21454.0,24961.0,SRR23922650,N/A,N/A,N/A,N/A,N/A,SAMN33758797,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64076_220826_143529-bc2049.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG18747_2.HFSS,single,RANDOM,GENOMIC,WGS,86286.0,21168.0,95.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/m64076_220826_143529-bc2049.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17906.0,20506.0,23861.0,N/A,NA18747,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.67,31669760595.0,1496050.0,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18403.0,21119.0,24581.0,SRR23922641,N/A,N/A,N/A,N/A,N/A,SAMN33758800,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64457e_220831_195843-bc2052.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG20752.HFSS,single,RANDOM,GENOMIC,WGS,59695.0,20957.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/m64457e_220831_195843-bc2052.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17815.0,20236.0,23481.0,N/A,NA20752,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,42.15,42154577403.0,2011426.0,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18457.0,21225.0,24757.0,SRR23922641,N/A,N/A,N/A,N/A,N/A,SAMN33758800,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64457e_220829_104034-bc2052.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG20752.HFSS,single,RANDOM,GENOMIC,WGS,62512.0,21051.0,71.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/m64457e_220829_104034-bc2052.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17851.0,20320.0,23631.0,N/A,NA20752,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,46.94,46944843952.0,2229963.0,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18633.0,21476.0,25034.0,SRR23922641,N/A,N/A,N/A,N/A,N/A,SAMN33758800,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64457e_220827_152226-bc2052.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG20752.HFSS,single,RANDOM,GENOMIC,WGS,57993.0,21252.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/m64457e_220827_152226-bc2052.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,18001.0,20542.0,23905.0,N/A,NA20752,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,48.19,48188048219.0,2267416.0,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18178.0,20893.0,24415.0,SRR29483087,N/A,N/A,N/A,N/A,N/A,SAMN33758800,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230517_211630_s4.hifi_reads.bc2052.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG20752.HFSS_m84046_230517_211630_s4,single,size fractionation,GENOMIC,WGS,59161.0,20759.0,295.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/m84046_230517_211630_s4.hifi_reads.bc2052.bam,PACBIO_SMRT,P1,17598.0,19991.0,23277.0,N/A,NA20752,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,66.15,66145642174.0,3186209.0,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17858.0,20434.0,23892.0,SRR29483079,N/A,N/A,N/A,N/A,N/A,SAMN41021629,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230501_151821_s4.hifi_reads.bc2089.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG21106.HFSS_m84046_230501_151821_s4,single,size fractionation,GENOMIC,WGS,61270.0,20353.0,160.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21106/raw_data/PacBio_HiFi/m84046_230501_151821_s4.hifi_reads.bc2089.bam,PACBIO_SMRT,P1,17335.0,19580.0,22772.0,N/A,NA21106,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,62.99,62992755287.0,3094861.0,N/A,NA21106,SAMN41021629,,GIH,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17581.0,19979.0,23306.0,SRR29483080,N/A,N/A,N/A,N/A,N/A,SAMN41021629,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230504_205453_s3.hifi_reads.bc2089.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG21106.HFSS_m84046_230504_205453_s3,single,size fractionation,GENOMIC,WGS,62176.0,19950.0,120.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21106/raw_data/PacBio_HiFi/m84046_230504_205453_s3.hifi_reads.bc2089.bam,PACBIO_SMRT,P1,17104.0,19191.0,22218.0,N/A,NA21106,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,59.25,59248862130.0,2969815.0,N/A,NA21106,SAMN41021629,,GIH,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17651.0,20094.0,23456.0,SRR29483078,N/A,N/A,N/A,N/A,N/A,SAMN41021629,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230504_212559_s4.hifi_reads.bc2089.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG21106.HFSS_m84046_230504_212559_s4,single,size fractionation,GENOMIC,WGS,64740.0,20063.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21106/raw_data/PacBio_HiFi/m84046_230504_212559_s4.hifi_reads.bc2089.bam,PACBIO_SMRT,P1,17166.0,19289.0,22361.0,N/A,NA21106,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,58.75,58748127302.0,2928042.0,N/A,NA21106,SAMN41021629,,GIH,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17670.0,20133.0,23491.0,SRR29483081,N/A,N/A,N/A,N/A,N/A,SAMN41021629,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230508_200815_s4.hifi_reads.bc2089.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG21106.HFSS_m84046_230508_200815_s4,single,size fractionation,GENOMIC,WGS,49086.0,20088.0,96.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21106/raw_data/PacBio_HiFi/m84046_230508_200815_s4.hifi_reads.bc2089.bam,PACBIO_SMRT,P1,17180.0,19327.0,22403.0,N/A,NA21106,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,14.31,14313923906.0,712531.0,N/A,NA21106,SAMN41021629,,GIH,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17676.0,21415.0,26110.0,SRR23922640,N/A,N/A,N/A,N/A,N/A,SAMN33758780,6.2.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m64076_220216_013707-bc1016.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00558.HFSS,single,RANDOM,GENOMIC,WGS,61233.0,20813.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m64076_220216_013707-bc1016.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16484.0,19802.0,24088.0,N/A,HG00558,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,2.27,2266821485.0,108911.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17832.0,21688.0,26407.0,SRR23922640,N/A,N/A,N/A,N/A,N/A,SAMN33758780,6.2.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_220116_013607-bc1016.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00558.HFSS,single,RANDOM,GENOMIC,WGS,56168.0,21008.0,60.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m54329U_220116_013607-bc1016.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16605.0,20020.0,24384.0,N/A,HG00558,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,33.95,33954147643.0,1616247.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17870.0,21746.0,26503.0,SRR23922640,N/A,N/A,N/A,N/A,N/A,SAMN33758780,6.2.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_220107_233847-bc1016.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00558.HFSS,single,RANDOM,GENOMIC,WGS,60416.0,21059.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m54329U_220107_233847-bc1016.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16632.0,20068.0,24477.0,N/A,HG00558,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,33.82,33821381595.0,1605959.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17911.0,21795.0,26553.0,SRR23922640,N/A,N/A,N/A,N/A,N/A,SAMN33758780,6.2.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_220114_143904-bc1016.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00558.HFSS,single,RANDOM,GENOMIC,WGS,67560.0,21101.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m54329U_220114_143904-bc1016.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16663.0,20114.0,24516.0,N/A,HG00558,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,35.32,35323811810.0,1673999.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17480.0,21094.0,25469.0,SRR29483184,N/A,N/A,N/A,N/A,N/A,SAMN33758780,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230519_231055_s2.hifi_reads.bc1016.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG00558.HFSS_m84046_230519_231055_s2,single,size fractionation,GENOMIC,WGS,55399.0,20498.0,142.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m84046_230519_231055_s2.hifi_reads.bc1016.bam,PACBIO_SMRT,P1,16361.0,19597.0,23660.0,N/A,HG00558,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,25.49,25488070000.0,1243430.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17264.0,20787.0,25096.0,SRR29483117,N/A,N/A,N/A,N/A,N/A,SAMN33758780,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230602_213334_s2.hifi_reads.bc1016.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG00558.HFSS_m84046_230602_213334_s2,single,size fractionation,GENOMIC,WGS,51616.0,20238.0,293.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m84046_230602_213334_s2.hifi_reads.bc1016.bam,PACBIO_SMRT,P1,16196.0,19339.0,23325.0,N/A,HG00558,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,12.4,12401182090.0,612757.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17054.0,20519.0,24782.0,SRR29483183,N/A,N/A,N/A,N/A,N/A,SAMN33758780,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230623_210640_s1.hifi_reads.bc1016.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG00558.HFSS_m84046_230623_210640_s1,single,size fractionation,GENOMIC,WGS,60697.0,20024.0,257.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m84046_230623_210640_s1.hifi_reads.bc1016.bam,PACBIO_SMRT,P1,16028.0,19093.0,23018.0,N/A,HG00558,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,8.82,8815084955.0,440223.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16066.0,18348.0,21458.0,SRR18158609,N/A,N/A,N/A,N/A,N/A,SAMN26267379,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210629_024631.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01346.HFSS,single,size fractionation,GENOMIC,WGS,65910.0,18354.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01346/raw_data/PacBio_HiFi/m54329U_210629_024631.hifi_reads.bam,PACBIO_SMRT,P2.2,15619.0,17606.0,20451.0,N/A,HG01346,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,36.16,36156051049.0,1969921.0,N/A,HG01346,SAMN26267379,CLM27,CLM,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16112.0,18422.0,21555.0,SRR18158609,N/A,N/A,N/A,N/A,N/A,SAMN26267379,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210624_221223.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01346.HFSS,single,size fractionation,GENOMIC,WGS,58600.0,18413.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01346/raw_data/PacBio_HiFi/m54329U_210624_221223.hifi_reads.bam,PACBIO_SMRT,P2.2,15656.0,17669.0,20534.0,N/A,HG01346,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,36.3,36295801919.0,1971103.0,N/A,HG01346,SAMN26267379,CLM27,CLM,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17106.0,19771.0,22965.0,SRR18158609,N/A,N/A,N/A,N/A,N/A,SAMN26267379,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m64076_210621_234241.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01346.HFSS,single,size fractionation,GENOMIC,WGS,54400.0,19491.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01346/raw_data/PacBio_HiFi/m64076_210621_234241.hifi_reads.bam,PACBIO_SMRT,P2.2,16500.0,18914.0,21989.0,N/A,HG01346,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,35.23,35233616251.0,1807614.0,N/A,HG01346,SAMN26267379,CLM27,CLM,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15417.0,17702.0,20896.0,SRR29483159,N/A,N/A,N/A,N/A,N/A,SAMN17861236,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230712_224626_s1.hifi_reads.bc2066.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01891.HFSS_m84046_230712_224626_s1,single,size fractionation,GENOMIC,WGS,59862.0,17719.0,96.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01891/raw_data/PacBio_HiFi/m84046_230712_224626_s1.hifi_reads.bc2066.bam,PACBIO_SMRT,P1,14944.0,16897.0,19756.0,N/A,HG01891,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,65.72,65719771205.0,3708847.0,N/A,HG01891,SAMN17861236,BB05,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17041.0,19031.0,21910.0,SRR18158594,N/A,N/A,N/A,N/A,N/A,SAMN26267381,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210630_194237.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02074.HFSS,single,size fractionation,GENOMIC,WGS,55439.0,19211.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02074/raw_data/PacBio_HiFi/m54329U_210630_194237.hifi_reads.bam,PACBIO_SMRT,P2.2,16722.0,18451.0,21057.0,N/A,HG02074,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,27.52,27521697583.0,1432559.0,N/A,HG02074,SAMN26267381,VN066,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17053.0,19059.0,21971.0,SRR18158594,N/A,N/A,N/A,N/A,N/A,SAMN26267381,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210626_074001.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02074.HFSS,single,size fractionation,GENOMIC,WGS,52031.0,19235.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02074/raw_data/PacBio_HiFi/m54329U_210626_074001.hifi_reads.bam,PACBIO_SMRT,P2.2,16726.0,18473.0,21109.0,N/A,HG02074,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,35.81,35810627390.0,1861673.0,N/A,HG02074,SAMN26267381,VN066,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17601.0,19883.0,22893.0,SRR18158594,N/A,N/A,N/A,N/A,N/A,SAMN26267381,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m64076_210630_101034.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02074.HFSS,single,size fractionation,GENOMIC,WGS,48587.0,19886.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02074/raw_data/PacBio_HiFi/m64076_210630_101034.hifi_reads.bam,PACBIO_SMRT,P2.2,17187.0,19213.0,22032.0,N/A,HG02074,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.0,30996747067.0,1558716.0,N/A,HG02074,SAMN26267381,VN066,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16883.0,18741.0,21445.0,SRR29483182,N/A,N/A,N/A,N/A,N/A,SAMN26267381,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230624_204605_s4.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02074.HFSSb_m84046_230624_204605_s4,single,size fractionation,GENOMIC,WGS,56155.0,18938.0,150.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02074/raw_data/PacBio_HiFi/m84046_230624_204605_s4.hifi_reads.default.bam,PACBIO_SMRT,P1,16591.0,18220.0,20663.0,N/A,HG02074,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,110.61,110611791731.0,5840667.0,N/A,HG02074,SAMN26267381,VN066,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15708.0,17809.0,20702.0,SRR18158585,N/A,N/A,N/A,N/A,N/A,SAMN26267392,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m64076_210719_222908.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02135.HFSS3,single,size fractionation,GENOMIC,WGS,53626.0,17878.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m64076_210719_222908.hifi_reads.bam,PACBIO_SMRT,P2.2,15316.0,17143.0,19779.0,N/A,HG02135,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,26.15,26147000508.0,1462475.0,N/A,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,15715.0,17837.0,20761.0,SRR18158585,N/A,N/A,N/A,N/A,N/A,SAMN26267392,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210715_074913.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02135.HFSS3,single,size fractionation,GENOMIC,WGS,52844.0,17903.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m54329U_210715_074913.hifi_reads.bam,PACBIO_SMRT,P2.2,15318.0,17164.0,19825.0,N/A,HG02135,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.88,32882058946.0,1836654.0,N/A,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15520.0,17497.0,20254.0,SRR29483221,N/A,N/A,N/A,N/A,N/A,SAMN26267392,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230602_220440_s3.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02135.HFSS3_m84046_230602_220440_s3,single,size fractionation,GENOMIC,WGS,53510.0,17594.0,183.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m84046_230602_220440_s3.hifi_reads.default.bam,PACBIO_SMRT,P1,15163.0,16892.0,19394.0,N/A,HG02135,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,24.44,24443364448.0,1389290.0,N/A,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15285.0,17087.0,19621.0,SRR29483223,N/A,N/A,N/A,N/A,N/A,SAMN26267392,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230623_210640_s1.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02135.HFSS3_m84046_230623_210640_s1,single,size fractionation,GENOMIC,WGS,46428.0,17215.0,239.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m84046_230623_210640_s1.hifi_reads.default.bam,PACBIO_SMRT,P1,14976.0,16553.0,18852.0,N/A,HG02135,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,6.76,6757940288.0,392552.0,N/A,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15345.0,17194.0,19817.0,SRR29483222,N/A,N/A,N/A,N/A,N/A,SAMN26267392,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230628_175536_s3.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02135.HFSS3_m84046_230628_175536_s3,single,size fractionation,GENOMIC,WGS,50299.0,17326.0,162.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m84046_230628_175536_s3.hifi_reads.default.bam,PACBIO_SMRT,P1,15024.0,16644.0,19006.0,N/A,HG02135,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,9.5,9496849118.0,548099.0,N/A,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15258.0,17040.0,19561.0,SRR29483225,N/A,N/A,N/A,N/A,N/A,SAMN26267392,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230707_202610_s3.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02135.HFSS3_m84046_230707_202610_s3,single,size fractionation,GENOMIC,WGS,43275.0,17162.0,422.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m84046_230707_202610_s3.hifi_reads.default.bam,PACBIO_SMRT,P1,14949.0,16511.0,18799.0,N/A,HG02135,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,7.38,7376184912.0,429774.0,N/A,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15283.0,17064.0,19574.0,SRR29483224,N/A,N/A,N/A,N/A,N/A,SAMN26267392,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230712_224626_s1.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02135.HFSS3_m84046_230712_224626_s1,single,size fractionation,GENOMIC,WGS,46258.0,17189.0,93.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m84046_230712_224626_s1.hifi_reads.default.bam,PACBIO_SMRT,P1,14978.0,16540.0,18821.0,N/A,HG02135,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,8.57,8573437259.0,498747.0,N/A,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16551.0,18911.0,22142.0,SRR18158587,N/A,N/A,N/A,N/A,N/A,SAMN26267394,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210719_222842.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02293.HFSS,single,size fractionation,GENOMIC,WGS,56470.0,18948.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02293/raw_data/PacBio_HiFi/m54329U_210719_222842.hifi_reads.bam,PACBIO_SMRT,P2.2,16087.0,18129.0,21059.0,N/A,HG02293,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,34.41,34407815191.0,1815880.0,N/A,HG02293,SAMN26267394,PEL51,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16588.0,18973.0,22224.0,SRR18158587,N/A,N/A,N/A,N/A,N/A,SAMN26267394,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210721_092510.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02293.HFSS,single,size fractionation,GENOMIC,WGS,54303.0,19001.0,362.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02293/raw_data/PacBio_HiFi/m54329U_210721_092510.hifi_reads.bam,PACBIO_SMRT,P2.2,16116.0,18184.0,21136.0,N/A,HG02293,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,29.49,29489403820.0,1551989.0,N/A,HG02293,SAMN26267394,PEL51,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16720.0,19171.0,22463.0,SRR18158587,N/A,N/A,N/A,N/A,N/A,SAMN26267394,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m64076_210716_220011.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02293.HFSS,single,size fractionation,GENOMIC,WGS,59628.0,19168.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02293/raw_data/PacBio_HiFi/m64076_210716_220011.hifi_reads.bam,PACBIO_SMRT,P2.2,16225.0,18357.0,21365.0,N/A,HG02293,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.73,32725980265.0,1707292.0,N/A,HG02293,SAMN26267394,PEL51,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16133.0,18179.0,21038.0,SRR29483072,N/A,N/A,N/A,N/A,N/A,SAMN26267394,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230707_205716_s4.default--default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02293.HFSS_m84046_230707_205716_s4,single,size fractionation,GENOMIC,WGS,58469.0,18288.0,224.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02293/raw_data/PacBio_HiFi/m84046_230707_205716_s4.default--default.bam,PACBIO_SMRT,P1,15762.0,17545.0,20132.0,N/A,HG02293,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,46.86,46858961814.0,2562243.0,N/A,HG02293,SAMN26267394,PEL51,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16224.0,18309.0,21179.0,SRR29483074,N/A,N/A,N/A,N/A,N/A,SAMN26267394,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230718_233949_s3.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02293.HFSS_m84046_230718_233949_s3,single,size fractionation,GENOMIC,WGS,59398.0,18403.0,544.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02293/raw_data/PacBio_HiFi/m84046_230718_233949_s3.hifi_reads.default.bam,PACBIO_SMRT,P1,15843.0,17667.0,20276.0,N/A,HG02293,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,22.14,22143072197.0,1203172.0,N/A,HG02293,SAMN26267394,PEL51,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16081.0,18053.0,20771.0,SRR29483071,N/A,N/A,N/A,N/A,N/A,SAMN26267394,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230724_203319_s4.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02293.HFSS_m84046_230724_203319_s4,single,size fractionation,GENOMIC,WGS,42508.0,18160.0,184.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02293/raw_data/PacBio_HiFi/m84046_230724_203319_s4.hifi_reads.default.bam,PACBIO_SMRT,P1,15728.0,17464.0,19938.0,N/A,HG02293,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,8.72,8717022835.0,479989.0,N/A,HG02293,SAMN26267394,PEL51,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17419.0,20184.0,23860.0,SRR29483119,N/A,N/A,N/A,N/A,N/A,SAMN17861239,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230628_175536_s3.hifi_reads.bc2057.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02559.HFSS_m84046_230628_175536_s3,single,size fractionation,GENOMIC,WGS,66441.0,20045.0,207.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02559/raw_data/PacBio_HiFi/m84046_230628_175536_s3.hifi_reads.bc2057.bam,PACBIO_SMRT,P1,16797.0,19190.0,22545.0,N/A,HG02559,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,48.11,48112123387.0,2400146.0,N/A,HG02559,SAMN17861239,BB68,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18003.0,20636.0,24265.0,SRR29483141,N/A,N/A,N/A,N/A,N/A,SAMN33758789,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230701_003325_s1.hifi_reads.bc2058.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03017.HFSS2_m84046_230701_003325_s1,single,size fractionation,GENOMIC,WGS,53663.0,20647.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m84046_230701_003325_s1.hifi_reads.bc2058.bam,PACBIO_SMRT,P1,17449.0,19740.0,22995.0,N/A,HG03017,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,27.23,27229904923.0,1318825.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17897.0,20470.0,23991.0,SRR29483143,N/A,N/A,N/A,N/A,N/A,SAMN33758789,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230707_202610_s3.hifi_reads.bc2058.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03017.HFSS2_m84046_230707_202610_s3,single,size fractionation,GENOMIC,WGS,51971.0,20478.0,765.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m84046_230707_202610_s3.hifi_reads.bc2058.bam,PACBIO_SMRT,P1,17362.0,19599.0,22761.0,N/A,HG03017,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,8.03,8032535789.0,392243.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17976.0,20585.0,24154.0,SRR29483142,N/A,N/A,N/A,N/A,N/A,SAMN33758789,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230711_233802_s3.hifi_reads.bc2058.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03017.HFSS2_m84046_230711_233802_s3,single,size fractionation,GENOMIC,WGS,56905.0,20598.0,196.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m84046_230711_233802_s3.hifi_reads.bc2058.bam,PACBIO_SMRT,P1,17426.0,19700.0,22903.0,N/A,HG03017,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,17.29,17291182646.0,839447.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16610.0,19602.0,23411.0,SRR23922661,N/A,N/A,N/A,N/A,N/A,SAMN33758790,6.2.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_211214_012740-bc1009.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03041.HFSS,single,RANDOM,GENOMIC,WGS,54806.0,19306.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m54329U_211214_012740-bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15843.0,18462.0,21965.0,N/A,HG03041,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,38.05,38046233336.0,1970604.0,N/A,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16644.0,19654.0,23489.0,SRR23922661,N/A,N/A,N/A,N/A,N/A,SAMN33758790,6.2.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_211217_080751-bc1009.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03041.HFSS,single,RANDOM,GENOMIC,WGS,58287.0,19356.0,117.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m54329U_211217_080751-bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15871.0,18510.0,22035.0,N/A,HG03041,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,37.66,37659966853.0,1945591.0,N/A,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16724.0,19757.0,23596.0,SRR23922661,N/A,N/A,N/A,N/A,N/A,SAMN33758790,6.2.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_211215_225017-bc1009.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03041.HFSS,single,RANDOM,GENOMIC,WGS,56131.0,19439.0,118.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m54329U_211215_225017-bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15931.0,18603.0,22146.0,N/A,HG03041,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,36.72,36724761349.0,1889210.0,N/A,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16090.0,18765.0,22221.0,SRR29483238,N/A,N/A,N/A,N/A,N/A,SAMN33758790,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230523_001708_s3.hifi_reads.bc1009.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03041.HFSS_m84046_230523_001708_s3,single,size fractionation,GENOMIC,WGS,58882.0,18583.0,167.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m84046_230523_001708_s3.hifi_reads.bc1009.bam,PACBIO_SMRT,P1,15448.0,17795.0,20967.0,N/A,HG03041,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,38.82,38822969583.0,2089108.0,N/A,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16061.0,18732.0,22169.0,SRR29483240,N/A,N/A,N/A,N/A,N/A,SAMN33758790,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230602_213334_s2.hifi_reads.bc1009.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03041.HFSS_m84046_230602_213334_s2,single,size fractionation,GENOMIC,WGS,44858.0,18547.0,51.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m84046_230602_213334_s2.hifi_reads.bc1009.bam,PACBIO_SMRT,P1,15426.0,17761.0,20918.0,N/A,HG03041,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,2.05,2054888434.0,110788.0,N/A,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16754.0,19296.0,22712.0,SRR23922653,N/A,N/A,N/A,N/A,N/A,SAMN33758795,6.2.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_220203_054640-bc1018.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03704.HFSS4,single,RANDOM,GENOMIC,WGS,48616.0,19289.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m54329U_220203_054640-bc1018.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16218.0,18426.0,21504.0,N/A,HG03704,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,4.82,4818202256.0,249779.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16773.0,19756.0,23569.0,SRR29483161,N/A,N/A,N/A,N/A,N/A,SAMN33758795,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230720_185410_s2.hifi_reads.bc2002.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03704.HFSS5_m84046_230720_185410_s2,single,size fractionation,GENOMIC,WGS,55270.0,19506.0,94.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m84046_230720_185410_s2.hifi_reads.bc2002.bam,PACBIO_SMRT,P1,16019.0,18635.0,22124.0,N/A,HG03704,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,45.28,45275343137.0,2321098.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15689.0,18817.0,22648.0,SRR29483220,N/A,N/A,N/A,N/A,N/A,SAMN26267388,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230624_201459_s3.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG04115.HFSS_m84046_230624_201459_s3,single,size fractionation,GENOMIC,WGS,61259.0,18289.0,185.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04115/raw_data/PacBio_HiFi/m84046_230624_201459_s3.hifi_reads.default.bam,PACBIO_SMRT,P1,14713.0,17534.0,21059.0,N/A,HG04115,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,102.79,102791304261.0,5620099.0,N/A,HG04115,SAMN26267388,ST111,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16962.0,19431.0,22592.0,SRR18158603,N/A,N/A,N/A,N/A,N/A,SAMN26267390,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210517_210109-bc1003_BAK8A_OA.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04204.HFSS,single,size fractionation,GENOMIC,WGS,54149.0,19352.0,287.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04204/raw_data/PacBio_HiFi/m54329U_210517_210109-bc1003_BAK8A_OA.hifi_reads.bam,PACBIO_SMRT,P2.2,16456.0,18640.0,21590.0,N/A,HG04204,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,24.98,24982993730.0,1290942.0,N/A,HG04204,SAMN26267390,ST006,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16934.0,19409.0,22632.0,SRR18158603,N/A,N/A,N/A,N/A,N/A,SAMN26267390,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210507_224951-bc1003_BAK8A_OA.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04204.HFSS,single,size fractionation,GENOMIC,WGS,48819.0,19345.0,552.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04204/raw_data/PacBio_HiFi/m54329U_210507_224951-bc1003_BAK8A_OA.hifi_reads.bam,PACBIO_SMRT,P2.2,16436.0,18608.0,21607.0,N/A,HG04204,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,3.67,3674050040.0,189916.0,N/A,HG04204,SAMN26267390,ST006,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,16942.0,19438.0,22667.0,SRR18158603,N/A,N/A,N/A,N/A,N/A,SAMN26267390,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210514_222517-bc1003_BAK8A_OA.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04204.HFSS,single,size fractionation,GENOMIC,WGS,52568.0,19359.0,59.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04204/raw_data/PacBio_HiFi/m54329U_210514_222517-bc1003_BAK8A_OA.hifi_reads.bam,PACBIO_SMRT,P2.2,16424.0,18624.0,21632.0,N/A,HG04204,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,27.88,27879875624.0,1440144.0,N/A,HG04204,SAMN26267390,ST006,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17171.0,19759.0,23019.0,SRR18158603,N/A,N/A,N/A,N/A,N/A,SAMN26267390,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210519_065152-bc1003_BAK8A_OA.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04204.HFSS,single,size fractionation,GENOMIC,WGS,55860.0,19617.0,62.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04204/raw_data/PacBio_HiFi/m54329U_210519_065152-bc1003_BAK8A_OA.hifi_reads.bam,PACBIO_SMRT,P2.2,16614.0,18916.0,21983.0,N/A,HG04204,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,30.99,30994485468.0,1579943.0,N/A,HG04204,SAMN26267390,ST006,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17264.0,19894.0,23179.0,SRR18158603,N/A,N/A,N/A,N/A,N/A,SAMN26267390,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210520_213459-bc1003_BAK8A_OA.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04204.HFSS,single,size fractionation,GENOMIC,WGS,57880.0,19734.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04204/raw_data/PacBio_HiFi/m54329U_210520_213459-bc1003_BAK8A_OA.hifi_reads.bam,PACBIO_SMRT,P2.2,16694.0,19036.0,22131.0,N/A,HG04204,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.26,32264696883.0,1634946.0,N/A,HG04204,SAMN26267390,ST006,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16521.0,18831.0,21925.0,SRR29483198,N/A,N/A,N/A,N/A,N/A,SAMN26267390,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230623_213746_s2.hifi_reads.bc1003.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG04204.HFSS_m84046_230623_213746_s2,single,size fractionation,GENOMIC,WGS,60239.0,18830.0,232.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04204/raw_data/PacBio_HiFi/m84046_230623_213746_s2.hifi_reads.bc1003.bam,PACBIO_SMRT,P1,16070.0,18088.0,20933.0,N/A,HG04204,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,62.39,62394610705.0,3313451.0,N/A,HG04204,SAMN26267390,ST006,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17205.0,19981.0,23533.0,SRR18158583,N/A,N/A,N/A,N/A,N/A,SAMN26267391,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210507_224951-bc1008_BAK8A_OA.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04228a.HFSS,single,size fractionation,GENOMIC,WGS,50556.0,19802.0,573.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04228/raw_data/PacBio_HiFi/m54329U_210507_224951-bc1008_BAK8A_OA.hifi_reads.bam,PACBIO_SMRT,P2.2,16563.0,19003.0,22307.0,N/A,HG04228,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,3.36,3359403014.0,169644.0,N/A,HG04228,SAMN26267391,ST232,STU,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18218.0,20516.0,23811.0,SRR29483082,N/A,N/A,N/A,N/A,N/A,SAMN41021660,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230716_051716_s3.hifi_reads.bc2086.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00097.HFSS_m84046_230716_051716_s3,single,size fractionation,GENOMIC,WGS,60165.0,20551.0,77.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00097/raw_data/PacBio_HiFi/m84046_230716_051716_s3.hifi_reads.bc2086.bam,PACBIO_SMRT,P1,17766.0,19795.0,22777.0,N/A,HG00097,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,56.11,56111550391.0,2730343.0,N/A,HG00097,SAMN41021660,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18220.0,20531.0,23848.0,SRR29483083,N/A,N/A,N/A,N/A,N/A,SAMN41021660,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230716_054822_s4.hifi_reads.bc2086.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00097.HFSS_m84046_230716_054822_s4,single,size fractionation,GENOMIC,WGS,53858.0,20563.0,135.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00097/raw_data/PacBio_HiFi/m84046_230716_054822_s4.hifi_reads.bc2086.bam,PACBIO_SMRT,P1,17766.0,19800.0,22810.0,N/A,HG00097,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,59.48,59475971630.0,2892254.0,N/A,HG00097,SAMN41021660,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18134.0,20372.0,23618.0,SRR29483084,N/A,N/A,N/A,N/A,N/A,SAMN41021660,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230718_223822_s1.hifi_reads.bc2086.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00097.HFSS_m84046_230718_223822_s1,single,size fractionation,GENOMIC,WGS,58103.0,20427.0,131.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00097/raw_data/PacBio_HiFi/m84046_230718_223822_s1.hifi_reads.bc2086.bam,PACBIO_SMRT,P1,17693.0,19676.0,22592.0,N/A,HG00097,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,81.99,81988073357.0,4013688.0,N/A,HG00097,SAMN41021660,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18216.0,20376.0,23263.0,SRR29483102,N/A,N/A,N/A,N/A,N/A,SAMN41021673,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230727_225904_s1.hifi_reads.bc2093.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03457.HFSS_m84046_230727_225904_s1,single,size fractionation,GENOMIC,WGS,53305.0,20347.0,125.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03457/raw_data/PacBio_HiFi/m84046_230727_225904_s1.hifi_reads.bc2093.bam,PACBIO_SMRT,P1,17800.0,19764.0,22452.0,N/A,HG03457,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,40.34,40341169723.0,1982643.0,N/A,HG03457,SAMN41021673,,MSL,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18205.0,20365.0,23238.0,SRR29483153,N/A,N/A,N/A,N/A,N/A,SAMN41021673,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230728_195023_s2.hifi_reads.bc2093.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03457.HFSS_m84046_230728_195023_s2,single,size fractionation,GENOMIC,WGS,51457.0,20335.0,212.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03457/raw_data/PacBio_HiFi/m84046_230728_195023_s2.hifi_reads.bc2093.bam,PACBIO_SMRT,P1,17791.0,19755.0,22429.0,N/A,HG03457,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,39.74,39739563028.0,1954186.0,N/A,HG03457,SAMN41021673,,MSL,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17991.0,20036.0,22816.0,SRR29483101,N/A,N/A,N/A,N/A,N/A,SAMN41021673,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230728_202047_s3.hifi_reads.bc2093.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03457.HFSS_m84046_230728_202047_s3,single,size fractionation,GENOMIC,WGS,54776.0,20048.0,113.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03457/raw_data/PacBio_HiFi/m84046_230728_202047_s3.hifi_reads.bc2093.bam,PACBIO_SMRT,P1,17602.0,19469.0,22028.0,N/A,HG03457,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,32.17,32168165375.0,1604550.0,N/A,HG03457,SAMN41021673,,MSL,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17961.0,19997.0,22775.0,SRR29483103,N/A,N/A,N/A,N/A,N/A,SAMN41021673,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230728_205153_s4.hifi_reads.bc2093.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03457.HFSS_m84046_230728_205153_s4,single,size fractionation,GENOMIC,WGS,62363.0,20011.0,104.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03457/raw_data/PacBio_HiFi/m84046_230728_205153_s4.hifi_reads.bc2093.bam,PACBIO_SMRT,P1,17574.0,19429.0,21990.0,N/A,HG03457,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,31.92,31921561388.0,1595159.0,N/A,HG03457,SAMN41021673,,MSL,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17939.0,19969.0,22719.0,SRR29483152,N/A,N/A,N/A,N/A,N/A,SAMN41021673,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230731_200859_s2.hifi_reads.bc2093.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03457.HFSS_m84046_230731_200859_s2,single,size fractionation,GENOMIC,WGS,53032.0,19977.0,65.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03457/raw_data/PacBio_HiFi/m84046_230731_200859_s2.hifi_reads.bc2093.bam,PACBIO_SMRT,P1,17555.0,19406.0,21946.0,N/A,HG03457,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,47.33,47333857834.0,2369344.0,N/A,HG03457,SAMN41021673,,MSL,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18566.0,21565.0,25434.0,SRR29483061,N/A,N/A,N/A,N/A,N/A,SAMN41021626,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230513_215634_s1.hifi_reads.bc2001.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18508.HFSS2_m84046_230513_215634_s1,single,size fractionation,GENOMIC,WGS,59160.0,21369.0,154.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18508/raw_data/PacBio_HiFi/m84046_230513_215634_s1.hifi_reads.bc2001.bam,PACBIO_SMRT,P1,17884.0,20503.0,24079.0,N/A,NA18508,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,65.5,65503405021.0,3065312.0,N/A,NA18508,SAMN41021626,,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18440.0,21398.0,25254.0,SRR29483060,N/A,N/A,N/A,N/A,N/A,SAMN41021626,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230516_205603_s2.hifi_reads.bc2001.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18508.HFSS2_m84046_230516_205603_s2,single,size fractionation,GENOMIC,WGS,63991.0,21225.0,106.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18508/raw_data/PacBio_HiFi/m84046_230516_205603_s2.hifi_reads.bc2001.bam,PACBIO_SMRT,P1,17783.0,20349.0,23902.0,N/A,NA18508,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,62.04,62040051803.0,2922965.0,N/A,NA18508,SAMN41021626,,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18476.0,21459.0,25360.0,SRR29483075,N/A,N/A,N/A,N/A,N/A,SAMN41021626,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230516_212709_s3.hifi_reads.bc2001.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18508.HFSS2_m84046_230516_212709_s3,single,size fractionation,GENOMIC,WGS,71331.0,21275.0,72.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18508/raw_data/PacBio_HiFi/m84046_230516_212709_s3.hifi_reads.bc2001.bam,PACBIO_SMRT,P1,17801.0,20391.0,23993.0,N/A,NA18508,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,62.74,62737808226.0,2948816.0,N/A,NA18508,SAMN41021626,,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18062.0,20748.0,24325.0,SRR29483258,N/A,N/A,N/A,N/A,N/A,SAMN41021688,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230909_231800_s4.hifi_reads.bc2035.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19190.HFSS_m84046_230909_231800_s4,single,size fractionation,GENOMIC,WGS,73514.0,20606.0,118.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19190/raw_data/PacBio_HiFi/m84046_230909_231800_s4.hifi_reads.bc2035.bam,PACBIO_SMRT,P1,17453.0,19823.0,23101.0,N/A,NA19190,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,108.91,108911448346.0,5285173.0,N/A,NA19190,SAMN41021688,,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18034.0,20697.0,24253.0,SRR29483264,N/A,N/A,N/A,N/A,N/A,SAMN41021688,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230913_204538_s3.hifi_reads.bc2035.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19190.HFSS_m84046_230913_204538_s3,single,size fractionation,GENOMIC,WGS,65090.0,20563.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19190/raw_data/PacBio_HiFi/m84046_230913_204538_s3.hifi_reads.bc2035.bam,PACBIO_SMRT,P1,17426.0,19786.0,23023.0,N/A,NA19190,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,112.26,112259504727.0,5459074.0,N/A,NA19190,SAMN41021688,,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18490.0,21366.0,25101.0,SRR29483097,N/A,N/A,N/A,N/A,N/A,SAMN41021611,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230428_231421_s3.hifi_reads.bc2090.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19682.HFSS_m84046_230428_231421_s3,single,size fractionation,GENOMIC,WGS,58162.0,21146.0,150.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19682/raw_data/PacBio_HiFi/m84046_230428_231421_s3.hifi_reads.bc2090.bam,PACBIO_SMRT,P1,17804.0,20356.0,23795.0,N/A,NA19682,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,48.1,48098225913.0,2274532.0,N/A,NA19682,SAMN41021611,,MXL,AMR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18285.0,21045.0,24676.0,SRR29483077,N/A,N/A,N/A,N/A,N/A,SAMN41021611,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230504_195327_s1.hifi_reads.bc2090.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19682.HFSS_m84046_230504_195327_s1,single,size fractionation,GENOMIC,WGS,60900.0,20862.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19682/raw_data/PacBio_HiFi/m84046_230504_195327_s1.hifi_reads.bc2090.bam,PACBIO_SMRT,P1,17638.0,20087.0,23410.0,N/A,NA19682,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,52.88,52882168551.0,2534850.0,N/A,NA19682,SAMN41021611,,MXL,AMR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18264.0,21023.0,24652.0,SRR29483096,N/A,N/A,N/A,N/A,N/A,SAMN41021611,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230504_202347_s2.hifi_reads.bc2090.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19682.HFSS_m84046_230504_202347_s2,single,size fractionation,GENOMIC,WGS,57024.0,20838.0,172.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19682/raw_data/PacBio_HiFi/m84046_230504_202347_s2.hifi_reads.bc2090.bam,PACBIO_SMRT,P1,17619.0,20059.0,23384.0,N/A,NA19682,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,53.85,53845834322.0,2583948.0,N/A,NA19682,SAMN41021611,,MXL,AMR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18421.0,21254.0,24954.0,SRR29483095,N/A,N/A,N/A,N/A,N/A,SAMN41021611,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230508_193709_s3.hifi_reads.bc2090.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19682.HFSS_m84046_230508_193709_s3,single,size fractionation,GENOMIC,WGS,67233.0,21052.0,166.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19682/raw_data/PacBio_HiFi/m84046_230508_193709_s3.hifi_reads.bc2090.bam,PACBIO_SMRT,P1,17751.0,20266.0,23659.0,N/A,NA19682,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,39.11,39111213756.0,1857772.0,N/A,NA19682,SAMN41021611,,MXL,AMR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17191.0,20025.0,23576.0,SRR23922642,N/A,N/A,N/A,N/A,N/A,SAMN33758801,6.3.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m64076_220916_183810-bc2060.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG20905.HFSS,single,RANDOM,GENOMIC,WGS,65512.0,19751.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/m64076_220916_183810-bc2060.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16508.0,19031.0,22356.0,N/A,NA20905,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,41.7,41700838716.0,2111321.0,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17228.0,20081.0,23645.0,SRR23922642,N/A,N/A,N/A,N/A,N/A,SAMN33758801,6.3.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m64076_220918_143117-bc2060.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG20905.HFSS,single,RANDOM,GENOMIC,WGS,69049.0,19793.0,54.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/m64076_220918_143117-bc2060.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16533.0,19077.0,22417.0,N/A,NA20905,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,43.28,43283072105.0,2186710.0,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17852.0,20849.0,24428.0,SRR23922642,N/A,N/A,N/A,N/A,N/A,SAMN33758801,6.3.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m64076_220914_214248-bc2060.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG20905.HFSS,single,RANDOM,GENOMIC,WGS,60851.0,20442.0,79.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/m64076_220914_214248-bc2060.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17087.0,19810.0,23243.0,N/A,NA20905,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,43.92,43916560522.0,2148277.0,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16722.0,19366.0,22770.0,SRR29483135,N/A,N/A,N/A,N/A,N/A,SAMN33758801,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230522_234602_s2.hifi_reads.bc2060.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG20905.HFSS_m84046_230522_234602_s2,single,size fractionation,GENOMIC,WGS,60727.0,19184.0,185.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/m84046_230522_234602_s2.hifi_reads.bc2060.bam,PACBIO_SMRT,P1,16112.0,18448.0,21605.0,N/A,NA20905,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,21.89,21887464498.0,1140898.0,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16564.0,19129.0,22502.0,SRR29483134,N/A,N/A,N/A,N/A,N/A,SAMN33758801,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230623_210640_s1.hifi_reads.bc2060.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG20905.HFSS_m84046_230623_210640_s1,single,size fractionation,GENOMIC,WGS,57118.0,18993.0,1118.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/m84046_230623_210640_s1.hifi_reads.bc2060.bam,PACBIO_SMRT,P1,15983.0,18240.0,21338.0,N/A,NA20905,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,15.99,15990076578.0,841852.0,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17581.0,19752.0,22399.0,SRR29483130,N/A,N/A,N/A,N/A,N/A,SAMN41021627,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230428_231421_s3.hifi_reads.bc2094.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG21093.HFSS_m84046_230428_231421_s3,single,size fractionation,GENOMIC,WGS,69875.0,19543.0,110.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21093/raw_data/PacBio_HiFi/m84046_230428_231421_s3.hifi_reads.bc2094.bam,PACBIO_SMRT,P1,17112.0,19145.0,21685.0,N/A,NA21093,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,60.26,60257689766.0,3083311.0,N/A,NA21093,SAMN41021627,,GIH,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17466.0,19584.0,22193.0,SRR29483199,N/A,N/A,N/A,N/A,N/A,SAMN41021627,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230504_195327_s1.hifi_reads.bc2094.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG21093.HFSS_m84046_230504_195327_s1,single,size fractionation,GENOMIC,WGS,55799.0,19393.0,124.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21093/raw_data/PacBio_HiFi/m84046_230504_195327_s1.hifi_reads.bc2094.bam,PACBIO_SMRT,P1,17008.0,18995.0,21488.0,N/A,NA21093,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,53.16,53155443118.0,2740877.0,N/A,NA21093,SAMN41021627,,GIH,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17449.0,19567.0,22172.0,SRR29483129,N/A,N/A,N/A,N/A,N/A,SAMN41021627,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230504_202347_s2.hifi_reads.bc2094.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG21093.HFSS_m84046_230504_202347_s2,single,size fractionation,GENOMIC,WGS,56026.0,19376.0,123.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21093/raw_data/PacBio_HiFi/m84046_230504_202347_s2.hifi_reads.bc2094.bam,PACBIO_SMRT,P1,16991.0,18980.0,21470.0,N/A,NA21093,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,54.11,54112612451.0,2792692.0,N/A,NA21093,SAMN41021627,,GIH,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17551.0,19704.0,22326.0,SRR29483128,N/A,N/A,N/A,N/A,N/A,SAMN41021627,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230508_193709_s3.hifi_reads.bc2094.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG21093.HFSS_m84046_230508_193709_s3,single,size fractionation,GENOMIC,WGS,53286.0,19496.0,440.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21093/raw_data/PacBio_HiFi/m84046_230508_193709_s3.hifi_reads.bc2094.bam,PACBIO_SMRT,P1,17081.0,19108.0,21617.0,N/A,NA21093,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,26.41,26413339853.0,1354780.0,N/A,NA21093,SAMN41021627,,GIH,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18180.0,20509.0,23778.0,SRR29483089,N/A,N/A,N/A,N/A,N/A,SAMN33758781,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230707_192442_s1.hifi_reads.bc2059.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG00639.HFSS2_m84046_230707_192442_s1,single,size fractionation,GENOMIC,WGS,59856.0,20556.0,92.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/m84046_230707_192442_s1.hifi_reads.bc2059.bam,PACBIO_SMRT,P1,17709.0,19769.0,22709.0,N/A,HG00639,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,69.03,69026709448.0,3357938.0,N/A,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18146.0,21004.0,24897.0,SRR23922644,N/A,N/A,N/A,N/A,N/A,SAMN33758782,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_211110_112322-bc1008.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01074_SRE.HFSS,single,RANDOM,GENOMIC,WGS,61655.0,21008.0,139.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m54329U_211110_112322-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17537.0,19990.0,23484.0,N/A,HG01074,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,15.23,15230826716.0,724982.0,N/A,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16588.0,20463.0,25067.0,SRR23922647,N/A,N/A,N/A,N/A,N/A,SAMN33758783,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_211223_214216-bc1011.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01081.HFSS,single,RANDOM,GENOMIC,WGS,58991.0,19422.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/m54329U_211223_214216-bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15137.0,18626.0,22945.0,N/A,HG01081,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,34.52,34516634519.0,1777187.0,N/A,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16723.0,20642.0,25280.0,SRR23922647,N/A,N/A,N/A,N/A,N/A,SAMN33758783,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220103_072943-bc1011.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01081.HFSS,single,RANDOM,GENOMIC,WGS,70984.0,19600.0,62.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/m54329U_220103_072943-bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15254.0,18803.0,23168.0,N/A,HG01081,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,35.48,35477098664.0,1809964.0,N/A,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16724.0,20665.0,25307.0,SRR23922647,N/A,N/A,N/A,N/A,N/A,SAMN33758783,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220101_220852-bc1011.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01081.HFSS,single,RANDOM,GENOMIC,WGS,66384.0,19615.0,72.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/m54329U_220101_220852-bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15259.0,18807.0,23180.0,N/A,HG01081,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,38.13,38127675820.0,1943784.0,N/A,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18721.0,21753.0,25731.0,SRR29483114,N/A,N/A,N/A,N/A,N/A,SAMN17861232,v8.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_231202_090949_s3.hifi_reads.bc2055.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01123.HFSS3_m84046_231202_090949_s3,single,size fractionation,GENOMIC,WGS,60699.0,21612.0,106.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01123/raw_data/PacBio_HiFi/m84046_231202_090949_s3.hifi_reads.bc2055.bam,PACBIO_SMRT,P1,18022.0,20671.0,24294.0,N/A,HG01123,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,45.09,45092269241.0,2086408.0,N/A,HG01123,SAMN17861232,CLM02,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17826.0,20574.0,24233.0,SRR29483154,N/A,N/A,N/A,N/A,N/A,SAMN17861233,v8.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_231202_090949_s3.hifi_reads.bc2054.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01258.HFSS2_m84046_231202_090949_s3,single,size fractionation,GENOMIC,WGS,65204.0,20494.0,74.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01258/raw_data/PacBio_HiFi/m84046_231202_090949_s3.hifi_reads.bc2054.bam,PACBIO_SMRT,P1,17228.0,19622.0,22959.0,N/A,HG01258,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,50.29,50288278175.0,2453786.0,N/A,HG01258,SAMN17861233,CLM16,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18403.0,21230.0,25048.0,SRR23922668,N/A,N/A,N/A,N/A,N/A,SAMN33758786,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m64076_211109_232223-bc1003.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02451_SRE.HFSS,single,RANDOM,GENOMIC,WGS,58519.0,21225.0,139.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/m64076_211109_232223-bc1003.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17810.0,20246.0,23690.0,N/A,HG02451,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,12.87,12874949688.0,606568.0,N/A,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16940.0,19656.0,23239.0,SRR23922665,N/A,N/A,N/A,N/A,N/A,SAMN33758787,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_211204_121716-bc1002.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02735.HFSS2,single,RANDOM,GENOMIC,WGS,57951.0,19522.0,55.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m54329U_211204_121716-bc1002.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16317.0,18697.0,21974.0,N/A,HG02735,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.72,31721863148.0,1624922.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17011.0,19773.0,23407.0,SRR23922665,N/A,N/A,N/A,N/A,N/A,SAMN33758787,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_211209_115915-bc1002.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02735.HFSS2,single,RANDOM,GENOMIC,WGS,62313.0,19615.0,53.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m54329U_211209_115915-bc1002.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16371.0,18792.0,22115.0,N/A,HG02735,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.46,32462661287.0,1654923.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17062.0,19856.0,23486.0,SRR23922665,N/A,N/A,N/A,N/A,N/A,SAMN33758787,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m64076_211209_102926-bc1002.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02735.HFSS2,single,RANDOM,GENOMIC,WGS,59898.0,19674.0,59.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m64076_211209_102926-bc1002.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16411.0,18859.0,22198.0,N/A,HG02735,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,36.78,36782283250.0,1869576.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16617.0,20225.0,24689.0,SRR23922662,N/A,N/A,N/A,N/A,N/A,SAMN33758789,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_211225_070909-bc1012.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03017.HFSS,single,RANDOM,GENOMIC,WGS,64185.0,19500.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m54329U_211225_070909-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15437.0,18613.0,22719.0,N/A,HG03017,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,34.05,34046953548.0,1745970.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16707.0,20379.0,24868.0,SRR23922662,N/A,N/A,N/A,N/A,N/A,SAMN33758789,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m64076_220216_013707-bc1012.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03017.HFSS,single,RANDOM,GENOMIC,WGS,53564.0,19618.0,136.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m64076_220216_013707-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15514.0,18737.0,22888.0,N/A,HG03017,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,8.14,8141215131.0,414973.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16960.0,20748.0,25330.0,SRR23922662,N/A,N/A,N/A,N/A,N/A,SAMN33758789,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220117_123334-bc1012.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03017.HFSS,single,RANDOM,GENOMIC,WGS,67494.0,19961.0,52.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m54329U_220117_123334-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15714.0,19049.0,23321.0,N/A,HG03017,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,28.78,28780552619.0,1441796.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16992.0,20799.0,25417.0,SRR23922662,N/A,N/A,N/A,N/A,N/A,SAMN33758789,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220109_103416-bc1012.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03017.HFSS,single,RANDOM,GENOMIC,WGS,61362.0,20013.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m54329U_220109_103416-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15745.0,19090.0,23391.0,N/A,HG03017,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.4,31400943238.0,1569013.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18187.0,21954.0,26294.0,SRR23922662,N/A,N/A,N/A,N/A,N/A,SAMN33758789,6.3.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m64076_221001_041132-bc1012.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03017.HFSS,single,RANDOM,GENOMIC,WGS,67114.0,21129.0,396.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m64076_221001_041132-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16904.0,20408.0,24540.0,N/A,HG03017,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,15.3,15298343686.0,724011.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18311.0,21741.0,25979.0,SRR23922659,N/A,N/A,N/A,N/A,N/A,SAMN33758792,6.3.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220519_225150-bc2019.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03139.HFSS,single,RANDOM,GENOMIC,WGS,69263.0,21306.0,81.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/m54329U_220519_225150-bc2019.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17377.0,20423.0,24372.0,N/A,HG03139,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.82,39824520384.0,1869144.0,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18495.0,21985.0,26234.0,SRR23922659,N/A,N/A,N/A,N/A,N/A,SAMN33758792,6.3.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220525_111437-bc2019.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03139.HFSS,single,RANDOM,GENOMIC,WGS,66085.0,21499.0,90.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/m54329U_220525_111437-bc2019.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17524.0,20644.0,24640.0,N/A,HG03139,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,43.17,43172373160.0,2008028.0,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18531.0,22043.0,26312.0,SRR23922659,N/A,N/A,N/A,N/A,N/A,SAMN33758792,6.3.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220523_155616-bc2019.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03139.HFSS,single,RANDOM,GENOMIC,WGS,69240.0,21547.0,87.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/m54329U_220523_155616-bc2019.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17554.0,20687.0,24701.0,N/A,HG03139,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,45.15,45152468620.0,2095470.0,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17994.0,21265.0,25337.0,SRR29483267,N/A,N/A,N/A,N/A,N/A,SAMN33758792,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230602_220440_s3.hifi_reads.bc2019.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03139.HFSS_m84046_230602_220440_s3,single,size fractionation,GENOMIC,WGS,65959.0,20902.0,373.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/m84046_230602_220440_s3.hifi_reads.bc2019.bam,PACBIO_SMRT,P1,17129.0,20033.0,23812.0,N/A,HG03139,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,29.66,29658674895.0,1418934.0,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17513.0,20548.0,24391.0,SRR29483073,N/A,N/A,N/A,N/A,N/A,SAMN33758792,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230623_210640_s1.hifi_reads.bc2019.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03139.HFSS_m84046_230623_210640_s1,single,size fractionation,GENOMIC,WGS,53529.0,20305.0,576.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/m84046_230623_210640_s1.hifi_reads.bc2019.bam,PACBIO_SMRT,P1,16759.0,19438.0,22972.0,N/A,HG03139,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,9.2,9203503033.0,453258.0,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19138.0,21453.0,24638.0,SRR29483236,N/A,N/A,N/A,N/A,N/A,SAMN33758794,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230628_210130_s1.bc2063--bc2063.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03239.HFSS2_m84046_230628_210130_s1,single,size fractionation,GENOMIC,WGS,54941.0,21468.0,74.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/m84046_230628_210130_s1.bc2063--bc2063.bam,PACBIO_SMRT,P1,18668.0,20762.0,23665.0,N/A,HG03239,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,42.75,42746369705.0,1991153.0,N/A,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19102.0,21406.0,24603.0,SRR29483237,N/A,N/A,N/A,N/A,N/A,SAMN33758794,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230703_225306_s4.hifi_reads.bc2063.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03239.HFSS2_m84046_230703_225306_s4,single,size fractionation,GENOMIC,WGS,60287.0,21430.0,195.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/m84046_230703_225306_s4.hifi_reads.bc2063.bam,PACBIO_SMRT,P1,18634.0,20721.0,23619.0,N/A,HG03239,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,13.19,13194840551.0,615696.0,N/A,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16931.0,20064.0,24078.0,SRR23922654,N/A,N/A,N/A,N/A,N/A,SAMN33758795,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220203_054640-bc1001.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03704.HFSS3,single,RANDOM,GENOMIC,WGS,64236.0,19805.0,77.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m54329U_220203_054640-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16127.0,18857.0,22528.0,N/A,HG03704,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,15.52,15515677051.0,783402.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17016.0,20217.0,24294.0,SRR23922654,N/A,N/A,N/A,N/A,N/A,SAMN33758795,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220207_224702-bc1001.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03704.HFSS3,single,RANDOM,GENOMIC,WGS,63954.0,19930.0,65.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m54329U_220207_224702-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16192.0,18974.0,22705.0,N/A,HG03704,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,27.43,27431572003.0,1376378.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17037.0,20253.0,24361.0,SRR23922654,N/A,N/A,N/A,N/A,N/A,SAMN33758795,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m64076_220216_013707-bc1001.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03704.HFSS3,single,RANDOM,GENOMIC,WGS,62497.0,19965.0,54.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m64076_220216_013707-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16204.0,19002.0,22753.0,N/A,HG03704,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,12.14,12144176455.0,608249.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16602.0,19545.0,23299.0,SRR29483160,N/A,N/A,N/A,N/A,N/A,SAMN33758795,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230617_040148_s2.hifi_reads.bc1001.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03704.HFSS3_m84046_230617_040148_s2,single,size fractionation,GENOMIC,WGS,56891.0,19344.0,238.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m84046_230617_040148_s2.hifi_reads.bc1001.bam,PACBIO_SMRT,P1,15892.0,18445.0,21886.0,N/A,HG03704,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,13.38,13378951859.0,691613.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19339.0,21716.0,25155.0,SRR29483146,N/A,N/A,N/A,N/A,N/A,SAMN41021637,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230602_203207_s4.hifi_reads.bc2043.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00126.HFSS_m84046_230602_203207_s4,single,size fractionation,GENOMIC,WGS,72198.0,21838.0,114.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00126/raw_data/PacBio_HiFi/m84046_230602_203207_s4.hifi_reads.bc2043.bam,PACBIO_SMRT,P1,18891.0,20975.0,24050.0,N/A,HG00126,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,31.21,31211081209.0,1429169.0,N/A,HG00126,SAMN41021637,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19001.0,21095.0,24190.0,SRR29483144,N/A,N/A,N/A,N/A,N/A,SAMN41021637,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230617_043254_s3.hifi_reads.bc2043.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00126.HFSS_m84046_230617_043254_s3,single,size fractionation,GENOMIC,WGS,65475.0,21250.0,221.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00126/raw_data/PacBio_HiFi/m84046_230617_043254_s3.hifi_reads.bc2043.bam,PACBIO_SMRT,P1,18611.0,20482.0,23230.0,N/A,HG00126,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,24.39,24387352695.0,1147622.0,N/A,HG00126,SAMN41021637,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19050.0,21192.0,24330.0,SRR29483148,N/A,N/A,N/A,N/A,N/A,SAMN41021637,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230617_050400_s4.hifi_reads.bc2043.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00126.HFSS_m84046_230617_050400_s4,single,size fractionation,GENOMIC,WGS,66961.0,21345.0,441.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00126/raw_data/PacBio_HiFi/m84046_230617_050400_s4.hifi_reads.bc2043.bam,PACBIO_SMRT,P1,18650.0,20561.0,23358.0,N/A,HG00126,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,27.01,27014561078.0,1265571.0,N/A,HG00126,SAMN41021637,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19066.0,21223.0,24390.0,SRR29483149,N/A,N/A,N/A,N/A,N/A,SAMN41021637,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230621_231827_s1.hifi_reads.bc2043.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00126.HFSS_m84046_230621_231827_s1,single,size fractionation,GENOMIC,WGS,61779.0,21377.0,101.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00126/raw_data/PacBio_HiFi/m84046_230621_231827_s1.hifi_reads.bc2043.bam,PACBIO_SMRT,P1,18665.0,20584.0,23411.0,N/A,HG00126,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,55.42,55422349206.0,2592602.0,N/A,HG00126,SAMN41021637,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19090.0,21277.0,24496.0,SRR29483145,N/A,N/A,N/A,N/A,N/A,SAMN41021637,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230621_234848_s2.hifi_reads.bc2043.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00126.HFSS_m84046_230621_234848_s2,single,size fractionation,GENOMIC,WGS,61977.0,21432.0,87.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00126/raw_data/PacBio_HiFi/m84046_230621_234848_s2.hifi_reads.bc2043.bam,PACBIO_SMRT,P1,18681.0,20624.0,23493.0,N/A,HG00126,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,59.61,59614431287.0,2781508.0,N/A,HG00126,SAMN41021637,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18299.0,21233.0,24994.0,SRR23922639,N/A,N/A,N/A,N/A,N/A,SAMN33758799,6.3.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220918_114340-bc2061.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG19043.HFSS,single,RANDOM,GENOMIC,WGS,68642.0,20980.0,91.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/m54329U_220918_114340-bc2061.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17591.0,20198.0,23685.0,N/A,NA19043,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,41.39,41394833271.0,1972976.0,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18360.0,21333.0,25123.0,SRR23922639,N/A,N/A,N/A,N/A,N/A,SAMN33758799,6.3.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220920_065703-bc2061.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG19043.HFSS,single,RANDOM,GENOMIC,WGS,73652.0,21064.0,59.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/m54329U_220920_065703-bc2061.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17643.0,20280.0,23804.0,N/A,NA19043,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,44.05,44045561368.0,2090945.0,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18546.0,21557.0,25367.0,SRR23922639,N/A,N/A,N/A,N/A,N/A,SAMN33758799,6.3.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220916_162216-bc2061.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG19043.HFSS,single,RANDOM,GENOMIC,WGS,64342.0,21267.0,92.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/m54329U_220916_162216-bc2061.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17811.0,20499.0,24051.0,N/A,NA19043,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,43.52,43517972648.0,2046237.0,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17898.0,20663.0,24260.0,SRR29483132,N/A,N/A,N/A,N/A,N/A,SAMN33758799,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230519_231055_s2.hifi_reads.bc2061.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19043.HFSS_m84046_230519_231055_s2,single,size fractionation,GENOMIC,WGS,53274.0,20453.0,208.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/m84046_230519_231055_s2.hifi_reads.bc2061.bam,PACBIO_SMRT,P1,17235.0,19694.0,23011.0,N/A,NA19043,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,27.85,27852231438.0,1361729.0,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17843.0,20581.0,24187.0,SRR29483133,N/A,N/A,N/A,N/A,N/A,SAMN33758799,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230712_000908_s4.hifi_reads.bc2061.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19043.HFSS_m84046_230712_000908_s4,single,size fractionation,GENOMIC,WGS,52679.0,20399.0,703.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/m84046_230712_000908_s4.hifi_reads.bc2061.bam,PACBIO_SMRT,P1,17194.0,19625.0,22917.0,N/A,NA19043,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,9.57,9568200153.0,469037.0,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17815.0,20299.0,23660.0,SRR29483268,N/A,N/A,N/A,N/A,N/A,SAMN41021612,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230428_224315_s2.hifi_reads.bc2091.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19700.HFSS_m84046_230428_224315_s2,single,size fractionation,GENOMIC,WGS,57226.0,20222.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19700/raw_data/PacBio_HiFi/m84046_230428_224315_s2.hifi_reads.bc2091.bam,PACBIO_SMRT,P1,17282.0,19474.0,22536.0,N/A,NA19700,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,43.12,43118953859.0,2132234.0,N/A,NA19700,SAMN41021612,,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18012.0,20626.0,24141.0,SRR29483251,N/A,N/A,N/A,N/A,N/A,SAMN41021612,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230502_203455_s3.hifi_reads.bc2091.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19700.HFSS_m84046_230502_203455_s3,single,size fractionation,GENOMIC,WGS,60828.0,20519.0,308.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19700/raw_data/PacBio_HiFi/m84046_230502_203455_s3.hifi_reads.bc2091.bam,PACBIO_SMRT,P1,17441.0,19741.0,22948.0,N/A,NA19700,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,49.6,49604792343.0,2417394.0,N/A,NA19700,SAMN41021612,,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18014.0,20622.0,24114.0,SRR29483269,N/A,N/A,N/A,N/A,N/A,SAMN41021612,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230502_210601_s4.hifi_reads.bc2091.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19700.HFSS_m84046_230502_210601_s4,single,size fractionation,GENOMIC,WGS,68960.0,20514.0,78.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19700/raw_data/PacBio_HiFi/m84046_230502_210601_s4.hifi_reads.bc2091.bam,PACBIO_SMRT,P1,17443.0,19743.0,22936.0,N/A,NA19700,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,45.25,45253526042.0,2205939.0,N/A,NA19700,SAMN41021612,,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17862.0,20373.0,23769.0,SRR29483250,N/A,N/A,N/A,N/A,N/A,SAMN41021612,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230508_200815_s4.hifi_reads.bc2091.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19700.HFSS_m84046_230508_200815_s4,single,size fractionation,GENOMIC,WGS,61204.0,20292.0,276.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19700/raw_data/PacBio_HiFi/m84046_230508_200815_s4.hifi_reads.bc2091.bam,PACBIO_SMRT,P1,17320.0,19533.0,22629.0,N/A,NA19700,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,49.92,49918934430.0,2459967.0,N/A,NA19700,SAMN41021612,,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17727.0,20515.0,24254.0,SRR29483186,N/A,N/A,N/A,N/A,N/A,SAMN33758782,v7.0.0,N/A,unaligned reads,HiFi sequencing of 26kb fractionated gDNA,m84046_230712_231732_s2.hifi_reads.bc2061.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01074.HFSS3_m84046_230712_231732_s2,single,size fractionation,GENOMIC,WGS,62885.0,20441.0,73.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m84046_230712_231732_s2.hifi_reads.bc2061.bam,PACBIO_SMRT,P1,17105.0,19521.0,22903.0,N/A,HG01074,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,36.58,36576237795.0,1789356.0,N/A,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17745.0,20525.0,24244.0,SRR29483147,N/A,N/A,N/A,N/A,N/A,SAMN33758782,v7.0.0,N/A,unaligned reads,HiFi sequencing of 26kb fractionated gDNA,m84046_230719_001055_s4.hifi_reads.bc2061.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01074.HFSS3_m84046_230719_001055_s4,single,size fractionation,GENOMIC,WGS,56330.0,20450.0,270.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m84046_230719_001055_s4.hifi_reads.bc2061.bam,PACBIO_SMRT,P1,17126.0,19537.0,22909.0,N/A,HG01074,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,18.47,18474875553.0,903402.0,N/A,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18662.0,21906.0,26034.0,SRR29483271,N/A,N/A,N/A,N/A,N/A,SAMN17861234,v8.0.0,N/A,unaligned reads,HiFi sequencing of 26kb fractionated gDNA,m84046_231202_071034_s1.hifi_reads.bc2053.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01358.HFSS2_m84046_231202_071034_s1,single,size fractionation,GENOMIC,WGS,65908.0,21635.0,63.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m84046_231202_071034_s1.hifi_reads.bc2053.bam,PACBIO_SMRT,P1,17831.0,20701.0,24489.0,N/A,HG01358,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,23.73,23725857199.0,1096627.0,N/A,HG01358,SAMN17861234,CLM31,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18580.0,21794.0,25898.0,SRR29483270,N/A,N/A,N/A,N/A,N/A,SAMN17861234,v8.0.0,N/A,unaligned reads,HiFi sequencing of 26kb fractionated gDNA,m84046_231202_110908_s4.hifi_reads.bc2053.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01358.HFSS2_m84046_231202_110908_s4,single,size fractionation,GENOMIC,WGS,61399.0,21541.0,97.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m84046_231202_110908_s4.hifi_reads.bc2053.bam,PACBIO_SMRT,P1,17767.0,20614.0,24354.0,N/A,HG01358,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,22.54,22537442552.0,1046235.0,N/A,HG01358,SAMN17861234,CLM31,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17566.0,20026.0,23391.0,SRR18158595,N/A,N/A,N/A,N/A,N/A,SAMN26267382,6.0.0,N/A,unaligned reads,HiFi sequencing of 26kb fractionated gDNA,m54329U_210705_145805.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02132.HFSS,single,size fractionation,GENOMIC,WGS,54001.0,20048.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02132/raw_data/PacBio_HiFi/m54329U_210705_145805.hifi_reads.bam,PACBIO_SMRT,P2.2,17091.0,19228.0,22296.0,N/A,HG02132,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,33.68,33675370058.0,1679725.0,N/A,HG02132,SAMN26267382,VN080,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17581.0,20057.0,23441.0,SRR18158595,N/A,N/A,N/A,N/A,N/A,SAMN26267382,6.0.0,N/A,unaligned reads,HiFi sequencing of 26kb fractionated gDNA,m54329U_210627_170630.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02132.HFSS,single,size fractionation,GENOMIC,WGS,60968.0,20060.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02132/raw_data/PacBio_HiFi/m54329U_210627_170630.hifi_reads.bam,PACBIO_SMRT,P2.2,17094.0,19245.0,22334.0,N/A,HG02132,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.21,39213248472.0,1954721.0,N/A,HG02132,SAMN26267382,VN080,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,False,17605.0,20088.0,23460.0,SRR18158595,N/A,N/A,N/A,N/A,N/A,SAMN26267382,6.0.0,N/A,unaligned reads,HiFi sequencing of 26kb fractionated gDNA,m54329U_210704_040110.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02132.HFSS,single,size fractionation,GENOMIC,WGS,57821.0,20099.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02132/raw_data/PacBio_HiFi/m54329U_210704_040110.hifi_reads.bam,PACBIO_SMRT,P2.2,17121.0,19279.0,22365.0,N/A,HG02132,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,30.6,30602363971.0,1522575.0,N/A,HG02132,SAMN26267382,VN080,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17318.0,19591.0,22726.0,SRR29483254,N/A,N/A,N/A,N/A,N/A,SAMN26267382,v7.0.0,N/A,unaligned reads,HiFi sequencing of 26kb fractionated gDNA,m84046_230603_204152_s4.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02132.HFSSc_m84046_230603_204152_s4,single,size fractionation,GENOMIC,WGS,57148.0,19635.0,276.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02132/raw_data/PacBio_HiFi/m84046_230603_204152_s4.hifi_reads.default.bam,PACBIO_SMRT,P1,16890.0,18876.0,21735.0,N/A,HG02132,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,67.41,67412093607.0,3433233.0,N/A,HG02132,SAMN26267382,VN080,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17853.0,20671.0,24461.0,SRR23922655,N/A,N/A,N/A,N/A,N/A,SAMN33758795,6.2.0,N/A,unaligned reads,HiFi sequencing of 26kb fractionated gDNA,m54329U_211111_222027-bc1001.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03704_SRE.HFSS,single,RANDOM,GENOMIC,WGS,67087.0,20659.0,727.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m54329U_211111_222027-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17248.0,19681.0,23109.0,N/A,HG03704,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,20.85,20852506753.0,1009358.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17908.0,20760.0,24604.0,SRR23922655,N/A,N/A,N/A,N/A,N/A,SAMN33758795,6.2.0,N/A,unaligned reads,HiFi sequencing of 26kb fractionated gDNA,m54329U_211105_213234-bc1001.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03704_SRE.HFSS,single,RANDOM,GENOMIC,WGS,61181.0,20735.0,493.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m54329U_211105_213234-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17290.0,19755.0,23225.0,N/A,HG03704,N/A,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,25.14,25139477214.0,1212386.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18187.0,21393.0,25429.0,SRR29483116,N/A,N/A,N/A,N/A,N/A,SAMN33758780,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230720_182350_s1.hifi_reads.bc2004.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG00558.HFSS2_m84046_230720_182350_s1,single,size fractionation,GENOMIC,WGS,60806.0,21085.0,151.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m84046_230720_182350_s1.hifi_reads.bc2004.bam,PACBIO_SMRT,P1,17361.0,20208.0,23908.0,N/A,HG00558,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,23.14,23136924177.0,1097268.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18986.0,22251.0,26513.0,SRR29483098,N/A,N/A,N/A,N/A,N/A,SAMN17861235,v8.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_231202_071034_s1.hifi_reads.bc2052.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01361.HFSS3_m84046_231202_071034_s1,single,size fractionation,GENOMIC,WGS,72539.0,22058.0,51.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01361/raw_data/PacBio_HiFi/m84046_231202_071034_s1.hifi_reads.bc2052.bam,PACBIO_SMRT,P1,18204.0,21031.0,24921.0,N/A,HG01361,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,75.65,75651333730.0,3429635.0,N/A,HG01361,SAMN17861235,CLM32,CLM,AMR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17223.0,19884.0,23464.0,SRR29483203,N/A,N/A,N/A,N/A,N/A,SAMN33758787,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230628_175536_s3.hifi_reads.bc2062.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02735.HFSS_m84046_230628_175536_s3,single,size fractionation,GENOMIC,WGS,58136.0,19828.0,117.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m84046_230628_175536_s3.hifi_reads.bc2062.bam,PACBIO_SMRT,P1,16632.0,18951.0,22183.0,N/A,HG02735,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,35.08,35078406524.0,1769118.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17093.0,19661.0,23147.0,SRR29483204,N/A,N/A,N/A,N/A,N/A,SAMN33758787,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230703_225306_s4.hifi_reads.bc2062.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02735.HFSS_m84046_230703_225306_s4,single,size fractionation,GENOMIC,WGS,68232.0,19634.0,80.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m84046_230703_225306_s4.hifi_reads.bc2062.bam,PACBIO_SMRT,P1,16531.0,18772.0,21903.0,N/A,HG02735,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,7.99,7992405067.0,407052.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17018.0,19561.0,22975.0,SRR29483201,N/A,N/A,N/A,N/A,N/A,SAMN33758787,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230707_192442_s1.hifi_reads.bc2062.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02735.HFSS_m84046_230707_192442_s1,single,size fractionation,GENOMIC,WGS,57257.0,19528.0,121.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m84046_230707_192442_s1.hifi_reads.bc2062.bam,PACBIO_SMRT,P1,16472.0,18685.0,21775.0,N/A,HG02735,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,8.8,8797263927.0,450494.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17067.0,19632.0,23110.0,SRR29483202,N/A,N/A,N/A,N/A,N/A,SAMN33758787,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230711_230656_s2.hifi_reads.bc2062.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02735.HFSS_m84046_230711_230656_s2,single,size fractionation,GENOMIC,WGS,58940.0,19604.0,131.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m84046_230711_230656_s2.hifi_reads.bc2062.bam,PACBIO_SMRT,P1,16508.0,18748.0,21880.0,N/A,HG02735,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,19.62,19620926536.0,1000841.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19292.0,21676.0,25074.0,SRR29483107,N/A,N/A,N/A,N/A,N/A,SAMN41021638,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230719_001055_s4.hifi_reads.bc2085.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00133.HFSS2_m84046_230719_001055_s4,single,size fractionation,GENOMIC,WGS,67080.0,21796.0,96.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230719_001055_s4.hifi_reads.bc2085.bam,PACBIO_SMRT,P1,18839.0,20947.0,24008.0,N/A,HG00133,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,23.52,23522900809.0,1079223.0,N/A,HG00133,SAMN41021638,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19469.0,22259.0,26112.0,SRR29483207,N/A,N/A,N/A,N/A,N/A,SAMN41021659,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230716_051716_s3.hifi_reads.bc2087.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00272.HFSS_m84046_230716_051716_s3,single,size fractionation,GENOMIC,WGS,62245.0,22209.0,70.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00272/raw_data/PacBio_HiFi/m84046_230716_051716_s3.hifi_reads.bc2087.bam,PACBIO_SMRT,P1,18841.0,21311.0,24765.0,N/A,HG00272,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,55.89,55893022230.0,2516610.0,N/A,HG00272,SAMN41021659,,FIN,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19487.0,22300.0,26169.0,SRR29483227,N/A,N/A,N/A,N/A,N/A,SAMN41021659,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230716_054822_s4.hifi_reads.bc2087.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00272.HFSS_m84046_230716_054822_s4,single,size fractionation,GENOMIC,WGS,71087.0,22239.0,146.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00272/raw_data/PacBio_HiFi/m84046_230716_054822_s4.hifi_reads.bc2087.bam,PACBIO_SMRT,P1,18854.0,21337.0,24814.0,N/A,HG00272,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,59.28,59280573492.0,2665556.0,N/A,HG00272,SAMN41021659,,FIN,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19353.0,22079.0,25872.0,SRR29483226,N/A,N/A,N/A,N/A,N/A,SAMN41021659,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230718_223822_s1.hifi_reads.bc2087.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00272.HFSS_m84046_230718_223822_s1,single,size fractionation,GENOMIC,WGS,54405.0,22049.0,201.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00272/raw_data/PacBio_HiFi/m84046_230718_223822_s1.hifi_reads.bc2087.bam,PACBIO_SMRT,P1,18745.0,21161.0,24545.0,N/A,HG00272,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,28.65,28648842428.0,1299274.0,N/A,HG00272,SAMN41021659,,FIN,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19451.0,22207.0,26022.0,SRR29483208,N/A,N/A,N/A,N/A,N/A,SAMN41021659,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230719_001055_s4.hifi_reads.bc2087.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00272.HFSS_m84046_230719_001055_s4,single,size fractionation,GENOMIC,WGS,60184.0,22165.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00272/raw_data/PacBio_HiFi/m84046_230719_001055_s4.hifi_reads.bc2087.bam,PACBIO_SMRT,P1,18831.0,21277.0,24693.0,N/A,HG00272,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,66.54,66535915752.0,3001821.0,N/A,HG00272,SAMN41021659,,FIN,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18844.0,21346.0,24661.0,SRR29483192,N/A,N/A,N/A,N/A,N/A,SAMN41021628,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230428_224315_s2.hifi_reads.bc2095.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03611.HFSS_m84046_230428_224315_s2,single,size fractionation,GENOMIC,WGS,70469.0,21240.0,97.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03611/raw_data/PacBio_HiFi/m84046_230428_224315_s2.hifi_reads.bc2095.bam,PACBIO_SMRT,P1,18299.0,20564.0,23620.0,N/A,HG03611,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,50.73,50725357081.0,2388156.0,N/A,HG03611,SAMN41021628,,BEB,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19051.0,21666.0,25125.0,SRR29483193,N/A,N/A,N/A,N/A,N/A,SAMN41021628,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230502_203455_s3.hifi_reads.bc2095.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03611.HFSS_m84046_230502_203455_s3,single,size fractionation,GENOMIC,WGS,61936.0,21530.0,90.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03611/raw_data/PacBio_HiFi/m84046_230502_203455_s3.hifi_reads.bc2095.bam,PACBIO_SMRT,P1,18474.0,20832.0,24030.0,N/A,HG03611,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,55.04,55038711682.0,2556363.0,N/A,HG03611,SAMN41021628,,BEB,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19055.0,21657.0,25096.0,SRR29483194,N/A,N/A,N/A,N/A,N/A,SAMN41021628,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230502_210601_s4.hifi_reads.bc2095.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03611.HFSS_m84046_230502_210601_s4,single,size fractionation,GENOMIC,WGS,64183.0,21525.0,163.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03611/raw_data/PacBio_HiFi/m84046_230502_210601_s4.hifi_reads.bc2095.bam,PACBIO_SMRT,P1,18482.0,20831.0,24004.0,N/A,HG03611,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,50.19,50186456480.0,2331526.0,N/A,HG03611,SAMN41021628,,BEB,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18945.0,21483.0,24862.0,SRR29483191,N/A,N/A,N/A,N/A,N/A,SAMN41021628,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230508_193709_s3.hifi_reads.bc2095.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03611.HFSS_m84046_230508_193709_s3,single,size fractionation,GENOMIC,WGS,65660.0,21373.0,87.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03611/raw_data/PacBio_HiFi/m84046_230508_193709_s3.hifi_reads.bc2095.bam,PACBIO_SMRT,P1,18387.0,20681.0,23796.0,N/A,HG03611,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,36.61,36610166478.0,1712887.0,N/A,HG03611,SAMN41021628,,BEB,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,21625.0,24531.0,28292.0,SRR29483106,N/A,N/A,N/A,N/A,N/A,SAMN41021638,v7.0.0,N/A,unaligned reads,HiFi sequencing of 29kb fractionated gDNA,m84046_230602_203207_s4.hifi_reads.bc2045.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00133.HFSS_m84046_230602_203207_s4,single,size fractionation,GENOMIC,WGS,72239.0,24306.0,355.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230602_203207_s4.hifi_reads.bc2045.bam,PACBIO_SMRT,P1,20931.0,23631.0,27114.0,N/A,HG00133,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,31.58,31577829326.0,1299153.0,N/A,HG00133,SAMN41021638,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,21024.0,23704.0,27160.0,SRR29483109,N/A,N/A,N/A,N/A,N/A,SAMN41021638,v7.0.0,N/A,unaligned reads,HiFi sequencing of 29kb fractionated gDNA,m84046_230617_043254_s3.hifi_reads.bc2045.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00133.HFSS_m84046_230617_043254_s3,single,size fractionation,GENOMIC,WGS,63763.0,23515.0,204.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230617_043254_s3.hifi_reads.bc2045.bam,PACBIO_SMRT,P1,20391.0,22908.0,26092.0,N/A,HG00133,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,26.57,26568174953.0,1129803.0,N/A,HG00133,SAMN41021638,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,21132.0,23874.0,27395.0,SRR29483108,N/A,N/A,N/A,N/A,N/A,SAMN41021638,v7.0.0,N/A,unaligned reads,HiFi sequencing of 29kb fractionated gDNA,m84046_230617_050400_s4.hifi_reads.bc2045.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00133.HFSS_m84046_230617_050400_s4,single,size fractionation,GENOMIC,WGS,71360.0,23674.0,496.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230617_050400_s4.hifi_reads.bc2045.bam,PACBIO_SMRT,P1,20482.0,23047.0,26301.0,N/A,HG00133,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,30.05,30053356453.0,1269426.0,N/A,HG00133,SAMN41021638,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,21149.0,23887.0,27366.0,SRR29483110,N/A,N/A,N/A,N/A,N/A,SAMN41021638,v7.0.0,N/A,unaligned reads,HiFi sequencing of 29kb fractionated gDNA,m84046_230621_231827_s1.hifi_reads.bc2045.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00133.HFSS_m84046_230621_231827_s1,single,size fractionation,GENOMIC,WGS,66619.0,23673.0,129.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230621_231827_s1.hifi_reads.bc2045.bam,PACBIO_SMRT,P1,20500.0,23070.0,26294.0,N/A,HG00133,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,44.44,44444296421.0,1877396.0,N/A,HG00133,SAMN41021638,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,21210.0,23986.0,27519.0,SRR29483105,N/A,N/A,N/A,N/A,N/A,SAMN41021638,v7.0.0,N/A,unaligned reads,HiFi sequencing of 29kb fractionated gDNA,m84046_230621_234848_s2.hifi_reads.bc2045.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00133.HFSS_m84046_230621_234848_s2,single,size fractionation,GENOMIC,WGS,66274.0,23765.0,131.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230621_234848_s2.hifi_reads.bc2045.bam,PACBIO_SMRT,P1,20553.0,23142.0,26421.0,N/A,HG00133,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,48.28,48277281549.0,2031393.0,N/A,HG00133,SAMN41021638,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17382.0,21006.0,25610.0,SRR29483122,N/A,N/A,N/A,N/A,N/A,SAMN33758783,v7.0.0,N/A,unaligned reads,HiFi sequencing of 30kb fractionated gDNA,m84046_230628_210130_s1.bc2065--bc2065.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01081.HFSS2_m84046_230628_210130_s1,single,size fractionation,GENOMIC,WGS,59312.0,20555.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/m84046_230628_210130_s1.bc2065--bc2065.bam,PACBIO_SMRT,P1,16320.0,19465.0,23603.0,N/A,HG01081,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,41.55,41547174663.0,2021262.0,N/A,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17533.0,21259.0,26015.0,SRR29483123,N/A,N/A,N/A,N/A,N/A,SAMN33758783,v7.0.0,N/A,unaligned reads,HiFi sequencing of 30kb fractionated gDNA,m84046_230707_205716_s4.bc2065--bc2065.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01081.HFSS2_m84046_230707_205716_s4,single,size fractionation,GENOMIC,WGS,65603.0,20767.0,353.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/m84046_230707_205716_s4.bc2065--bc2065.bam,PACBIO_SMRT,P1,16417.0,19643.0,23928.0,N/A,HG01081,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,15.55,15545477788.0,748539.0,N/A,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,20100.0,23348.0,27768.0,SRR29483165,N/A,N/A,N/A,N/A,N/A,SAMN41021639,v7.0.0,N/A,unaligned reads,HiFi sequencing of 30kb fractionated gDNA,m84046_230623_203534_s4.hifi_reads.bc2052.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00290.HFSS_m84046_230623_203534_s4,single,size fractionation,GENOMIC,WGS,76067.0,23190.0,81.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00290/raw_data/PacBio_HiFi/m84046_230623_203534_s4.hifi_reads.bc2052.bam,PACBIO_SMRT,P1,19302.0,22141.0,26079.0,N/A,HG00290,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,48.93,48925804619.0,2109741.0,N/A,HG00290,SAMN41021639,,FIN,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,20231.0,23502.0,27916.0,SRR29483113,N/A,N/A,N/A,N/A,N/A,SAMN41021639,v7.0.0,N/A,unaligned reads,HiFi sequencing of 30kb fractionated gDNA,m84046_230627_201017_s1.hifi_reads.bc2052.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00290.HFSS_m84046_230627_201017_s1,single,size fractionation,GENOMIC,WGS,65547.0,23319.0,95.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00290/raw_data/PacBio_HiFi/m84046_230627_201017_s1.hifi_reads.bc2052.bam,PACBIO_SMRT,P1,19421.0,22295.0,26247.0,N/A,HG00290,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,52.13,52132844954.0,2235593.0,N/A,HG00290,SAMN41021639,,FIN,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,20301.0,23645.0,28142.0,SRR29483166,N/A,N/A,N/A,N/A,N/A,SAMN41021639,v7.0.0,N/A,unaligned reads,HiFi sequencing of 30kb fractionated gDNA,m84046_230627_204123_s2.hifi_reads.bc2052.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00290.HFSS_m84046_230627_204123_s2,single,size fractionation,GENOMIC,WGS,70791.0,23446.0,71.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00290/raw_data/PacBio_HiFi/m84046_230627_204123_s2.hifi_reads.bc2052.bam,PACBIO_SMRT,P1,19471.0,22398.0,26424.0,N/A,HG00290,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,59.21,59212119276.0,2525417.0,N/A,HG00290,SAMN41021639,,FIN,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19901.0,23010.0,27163.0,SRR29483112,N/A,N/A,N/A,N/A,N/A,SAMN41021639,v7.0.0,N/A,unaligned reads,HiFi sequencing of 30kb fractionated gDNA,m84046_230630_233157_s3.bc2052--bc2052.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00290.HFSS_m84046_230630_233157_s3,single,size fractionation,GENOMIC,WGS,61418.0,22851.0,248.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00290/raw_data/PacBio_HiFi/m84046_230630_233157_s3.bc2052--bc2052.bam,PACBIO_SMRT,P1,19152.0,21892.0,25649.0,N/A,HG00290,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,24.71,24710313352.0,1081336.0,N/A,HG00290,SAMN41021639,,FIN,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19912.0,22984.0,27160.0,SRR29483111,N/A,N/A,N/A,N/A,N/A,SAMN41021639,v7.0.0,N/A,unaligned reads,HiFi sequencing of 30kb fractionated gDNA,m84046_230712_224626_s1.hifi_reads.bc2052.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00290.HFSS_m84046_230712_224626_s1,single,size fractionation,GENOMIC,WGS,67558.0,22852.0,299.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00290/raw_data/PacBio_HiFi/m84046_230712_224626_s1.hifi_reads.bc2052.bam,PACBIO_SMRT,P1,19159.0,21877.0,25619.0,N/A,HG00290,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,11.1,11095310100.0,485522.0,N/A,HG00290,SAMN41021639,,FIN,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,20589.0,24374.0,29576.0,SRR29483069,N/A,N/A,N/A,N/A,N/A,SAMN41021640,v7.0.0,N/A,unaligned reads,HiFi sequencing of 31kb fractionated gDNA,m84046_230623_203534_s4.hifi_reads.bc2053.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19443.HFSS_m84046_230623_203534_s4,single,size fractionation,GENOMIC,WGS,65167.0,24043.0,395.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19443/raw_data/PacBio_HiFi/m84046_230623_203534_s4.hifi_reads.bc2053.bam,PACBIO_SMRT,P1,19576.0,22812.0,27402.0,N/A,NA19443,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,56.71,56713043234.0,2358793.0,N/A,NA19443,SAMN41021640,,LWK,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,20719.0,24513.0,29644.0,SRR29483067,N/A,N/A,N/A,N/A,N/A,SAMN41021640,v7.0.0,N/A,unaligned reads,HiFi sequencing of 31kb fractionated gDNA,m84046_230627_201017_s1.hifi_reads.bc2053.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19443.HFSS_m84046_230627_201017_s1,single,size fractionation,GENOMIC,WGS,69047.0,24154.0,284.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19443/raw_data/PacBio_HiFi/m84046_230627_201017_s1.hifi_reads.bc2053.bam,PACBIO_SMRT,P1,19705.0,22975.0,27549.0,N/A,NA19443,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,45.57,45568679596.0,1886575.0,N/A,NA19443,SAMN41021640,,LWK,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,20845.0,24761.0,30036.0,SRR29483068,N/A,N/A,N/A,N/A,N/A,SAMN41021640,v7.0.0,N/A,unaligned reads,HiFi sequencing of 31kb fractionated gDNA,m84046_230627_204123_s2.hifi_reads.bc2053.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19443.HFSS_m84046_230627_204123_s2,single,size fractionation,GENOMIC,WGS,68598.0,24367.0,118.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19443/raw_data/PacBio_HiFi/m84046_230627_204123_s2.hifi_reads.bc2053.bam,PACBIO_SMRT,P1,19785.0,23141.0,27839.0,N/A,NA19443,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,52.2,52195530984.0,2142052.0,N/A,NA19443,SAMN41021640,,LWK,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,20294.0,23869.0,28673.0,SRR29483066,N/A,N/A,N/A,N/A,N/A,SAMN41021640,v7.0.0,N/A,unaligned reads,HiFi sequencing of 31kb fractionated gDNA,m84046_230701_000218_s4.hifi_reads.bc2053.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19443.HFSS_m84046_230701_000218_s4,single,size fractionation,GENOMIC,WGS,63048.0,23566.0,283.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19443/raw_data/PacBio_HiFi/m84046_230701_000218_s4.hifi_reads.bc2053.bam,PACBIO_SMRT,P1,19361.0,22443.0,26745.0,N/A,NA19443,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,26.42,26416408863.0,1120935.0,N/A,NA19443,SAMN41021640,,LWK,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,20795.0,24663.0,29903.0,SRR29483070,N/A,N/A,N/A,N/A,N/A,SAMN41021640,v7.0.0,N/A,unaligned reads,HiFi sequencing of 31kb fractionated gDNA,m84046_230712_231732_s2.hifi_reads.bc2053.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19443.HFSS_m84046_230712_231732_s2,single,size fractionation,GENOMIC,WGS,60102.0,24287.0,568.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19443/raw_data/PacBio_HiFi/m84046_230712_231732_s2.hifi_reads.bc2053.bam,PACBIO_SMRT,P1,19750.0,23071.0,27722.0,N/A,NA19443,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,13.93,13925497069.0,573361.0,N/A,NA19443,SAMN41021640,,LWK,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17268.0,21072.0,26697.0,SRR29483249,N/A,N/A,N/A,N/A,N/A,SAMN17861238,v7.0.0,N/A,unaligned reads,HiFi sequencing of 37kb fractionated gDNA,m84046_230707_195504_s2.hifi_reads.bc2067.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02486.HFSS_m84046_230707_195504_s2,single,size fractionation,GENOMIC,WGS,72036.0,20969.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02486/raw_data/PacBio_HiFi/m84046_230707_195504_s2.hifi_reads.bc2067.bam,PACBIO_SMRT,P1,16342.0,19259.0,23914.0,N/A,HG02486,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,26.35,26347065832.0,1256460.0,N/A,HG02486,SAMN17861238,BB55,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17015.0,20540.0,25788.0,SRR29483248,N/A,N/A,N/A,N/A,N/A,SAMN17861238,v7.0.0,N/A,unaligned reads,HiFi sequencing of 37kb fractionated gDNA,m84046_230707_202610_s3.hifi_reads.bc2067.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02486.HFSS_m84046_230707_202610_s3,single,size fractionation,GENOMIC,WGS,69861.0,20515.0,268.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02486/raw_data/PacBio_HiFi/m84046_230707_202610_s3.hifi_reads.bc2067.bam,PACBIO_SMRT,P1,16188.0,18919.0,23266.0,N/A,HG02486,N/A,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,25.54,25537218642.0,1244789.0,N/A,HG02486,SAMN17861238,BB55,ACB,AFR,YR1 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18509.0,21228.0,24912.0,SRR29396926,N/A,N/A,N/A,N/A,N/A,SAMN41021696,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231027_202621_s3.hifi_reads.bc2070.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00106_lib1_m84081_231027_202621_s3_m84081_231027_202621_s3,single,size fractionation,GENOMIC,WGS,77433.0,21103.0,96.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00106/raw_data/PacBio_HiFi/m84081_231027_202621_s3.hifi_reads.bc2070.bam,PACBIO_SMRT,Revio P1,17907.0,20285.0,23650.0,N/A,HG00106,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,86.52,86515704685.0,4099673.0,N/A,HG00106,SAMN41021696,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18829.0,21822.0,25832.0,SRR29396925,N/A,N/A,N/A,N/A,N/A,SAMN41021696,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231029_023649_s3.hifi_reads.bc2070.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00106_lib1_m84081_231029_023649_s3_m84081_231029_023649_s3,single,size fractionation,GENOMIC,WGS,67088.0,21638.0,120.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00106/raw_data/PacBio_HiFi/m84081_231029_023649_s3.hifi_reads.bc2070.bam,PACBIO_SMRT,Revio P1,18150.0,20737.0,24408.0,N/A,HG00106,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,86.6,86599346640.0,4002067.0,N/A,HG00106,SAMN41021696,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18546.0,21296.0,25075.0,SRR29396914,N/A,N/A,N/A,N/A,N/A,SAMN41021696,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231112_034048_s4.hifi_reads.bc2070.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00106_lib1_m84081_231112_034048_s4_m84081_231112_034048_s4,single,size fractionation,GENOMIC,WGS,59221.0,21198.0,134.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00106/raw_data/PacBio_HiFi/m84081_231112_034048_s4.hifi_reads.bc2070.bam,PACBIO_SMRT,Revio P1,17936.0,20335.0,23756.0,N/A,HG00106,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,17.46,17464604937.0,823862.0,N/A,HG00106,SAMN41021696,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17714.0,19547.0,22192.0,SRR29396903,N/A,N/A,N/A,N/A,N/A,SAMN41021697,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231110_195735_s1.hifi_reads.bc2071.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00117_lib1_m84081_231110_195735_s1_m84081_231110_195735_s1,single,size fractionation,GENOMIC,WGS,58989.0,19490.0,141.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00117/raw_data/PacBio_HiFi/m84081_231110_195735_s1.hifi_reads.bc2071.bam,PACBIO_SMRT,Revio P1,17367.0,19007.0,21433.0,N/A,HG00117,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,92.66,92655924917.0,4753908.0,N/A,HG00117,SAMN41021697,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17795.0,19687.0,22372.0,SRR29396892,N/A,N/A,N/A,N/A,N/A,SAMN41021697,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231112_020730_s1.hifi_reads.bc2071.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00117_lib1_m84081_231112_020730_s1_m84081_231112_020730_s1,single,size fractionation,GENOMIC,WGS,60579.0,19696.0,95.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00117/raw_data/PacBio_HiFi/m84081_231112_020730_s1.hifi_reads.bc2071.bam,PACBIO_SMRT,Revio P1,17457.0,19143.0,21621.0,N/A,HG00117,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,104.13,104125394431.0,5286393.0,N/A,HG00117,SAMN41021697,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18565.0,20268.0,22546.0,SRR29396881,N/A,N/A,N/A,N/A,N/A,SAMN41021634,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230616_182824_s3.hifi_reads.bc2013.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00146_lib1_m84081_230616_182824_s3_m84081_230616_182824_s3,single,size fractionation,GENOMIC,WGS,60682.0,20383.0,104.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00146/raw_data/PacBio_HiFi/m84081_230616_182824_s3.hifi_reads.bc2013.bam,PACBIO_SMRT,Revio P1,18255.0,19863.0,21947.0,N/A,HG00146,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,113.25,113249664653.0,5556039.0,N/A,HG00146,SAMN41021634,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18538.0,20235.0,22498.0,SRR29396855,N/A,N/A,N/A,N/A,N/A,SAMN41021634,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230616_185930_s4.hifi_reads.bc2013.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00146_lib1_m84081_230616_185930_s4_m84081_230616_185930_s4,single,size fractionation,GENOMIC,WGS,58620.0,20349.0,67.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00146/raw_data/PacBio_HiFi/m84081_230616_185930_s4.hifi_reads.bc2013.bam,PACBIO_SMRT,Revio P1,18230.0,19832.0,21906.0,N/A,HG00146,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,112.06,112060886510.0,5506717.0,N/A,HG00146,SAMN41021634,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16572.0,18682.0,20737.0,SRR29396866,N/A,N/A,N/A,N/A,N/A,SAMN41021635,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230623_202140_s1.hifi_reads.bc2014.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00232_lib1_m84081_230623_202140_s1_m84081_230623_202140_s1,single,size fractionation,GENOMIC,WGS,49595.0,18385.0,98.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230623_202140_s1.hifi_reads.bc2014.bam,PACBIO_SMRT,Revio P1,16076.0,18183.0,20208.0,N/A,HG00232,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,81.31,81313868165.0,4422744.0,N/A,HG00232,SAMN41021635,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16716.0,18822.0,20895.0,SRR29396847,N/A,N/A,N/A,N/A,N/A,SAMN41021635,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230623_205201_s2.hifi_reads.bc2014.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00232_lib1_m84081_230623_205201_s2_m84081_230623_205201_s2,single,size fractionation,GENOMIC,WGS,53546.0,18530.0,110.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230623_205201_s2.hifi_reads.bc2014.bam,PACBIO_SMRT,Revio P1,16210.0,18325.0,20354.0,N/A,HG00232,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,82.64,82640938538.0,4459695.0,N/A,HG00232,SAMN41021635,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18323.0,19799.0,21713.0,SRR29396836,N/A,N/A,N/A,N/A,N/A,SAMN41021635,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230714_201817_s1.hifi_reads.bc2014.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00232_lib1_m84081_230714_201817_s1_m84081_230714_201817_s1,single,size fractionation,GENOMIC,WGS,70267.0,19860.0,431.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230714_201817_s1.hifi_reads.bc2014.bam,PACBIO_SMRT,Revio P1,18065.0,19484.0,21267.0,N/A,HG00232,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,6.3,6302465374.0,317329.0,N/A,HG00232,SAMN41021635,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18313.0,19795.0,21716.0,SRR29396924,N/A,N/A,N/A,N/A,N/A,SAMN41021635,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230714_205519_s2.hifi_reads.bc2014.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00232_lib1_m84081_230714_205519_s2_m84081_230714_205519_s2,single,size fractionation,GENOMIC,WGS,52961.0,19856.0,405.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230714_205519_s2.hifi_reads.bc2014.bam,PACBIO_SMRT,Revio P1,18063.0,19476.0,21260.0,N/A,HG00232,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,7.01,7010861592.0,353075.0,N/A,HG00232,SAMN41021635,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18300.0,19779.0,21693.0,SRR29396923,N/A,N/A,N/A,N/A,N/A,SAMN41021635,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230714_212624_s3.hifi_reads.bc2014.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00232_lib1_m84081_230714_212624_s3_m84081_230714_212624_s3,single,size fractionation,GENOMIC,WGS,52520.0,19843.0,503.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230714_212624_s3.hifi_reads.bc2014.bam,PACBIO_SMRT,Revio P1,18046.0,19460.0,21241.0,N/A,HG00232,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,7.64,7637421327.0,384888.0,N/A,HG00232,SAMN41021635,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18366.0,19870.0,21834.0,SRR29396922,N/A,N/A,N/A,N/A,N/A,SAMN41021635,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230714_215730_s4.hifi_reads.bc2014.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00232_lib1_m84081_230714_215730_s4_m84081_230714_215730_s4,single,size fractionation,GENOMIC,WGS,51376.0,19943.0,169.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230714_215730_s4.hifi_reads.bc2014.bam,PACBIO_SMRT,Revio P1,18108.0,19543.0,21367.0,N/A,HG00232,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,7.96,7956857338.0,398971.0,N/A,HG00232,SAMN41021635,,GBR,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17642.0,19342.0,21981.0,SRR29396921,N/A,N/A,N/A,N/A,N/A,SAMN41021632,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230610_202430_s3.hifi_reads.bc2011.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00320_lib1_m84081_230610_202430_s3_m84081_230610_202430_s3,single,size fractionation,GENOMIC,WGS,60709.0,19726.0,81.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00320/raw_data/PacBio_HiFi/m84081_230610_202430_s3.hifi_reads.bc2011.bam,PACBIO_SMRT,Revio P1,17326.0,18861.0,21063.0,N/A,HG00320,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,89.16,89163244941.0,4519882.0,N/A,HG00320,SAMN41021632,,FIN,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17646.0,19363.0,22068.0,SRR29396920,N/A,N/A,N/A,N/A,N/A,SAMN41021632,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230610_205536_s4.hifi_reads.bc2011.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00320_lib1_m84081_230610_205536_s4_m84081_230610_205536_s4,single,size fractionation,GENOMIC,WGS,69079.0,19771.0,117.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00320/raw_data/PacBio_HiFi/m84081_230610_205536_s4.hifi_reads.bc2011.bam,PACBIO_SMRT,Revio P1,17324.0,18869.0,21103.0,N/A,HG00320,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,122.35,122345830061.0,6188084.0,N/A,HG00320,SAMN41021632,,FIN,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17219.0,19652.0,22061.0,SRR29396919,N/A,N/A,N/A,N/A,N/A,SAMN41021636,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230623_212309_s3.hifi_reads.bc2015.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00321_lib1_m84081_230623_212309_s3_m84081_230623_212309_s3,single,size fractionation,GENOMIC,WGS,54945.0,19328.0,121.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00321/raw_data/PacBio_HiFi/m84081_230623_212309_s3.hifi_reads.bc2015.bam,PACBIO_SMRT,Revio P1,16644.0,19027.0,21383.0,N/A,HG00321,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,87.77,87765176697.0,4540789.0,N/A,HG00321,SAMN41021636,,FIN,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17309.0,19749.0,22192.0,SRR29396918,N/A,N/A,N/A,N/A,N/A,SAMN41021636,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230623_215414_s4.hifi_reads.bc2015.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00321_lib1_m84081_230623_215414_s4_m84081_230623_215414_s4,single,size fractionation,GENOMIC,WGS,58041.0,19429.0,100.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00321/raw_data/PacBio_HiFi/m84081_230623_215414_s4.hifi_reads.bc2015.bam,PACBIO_SMRT,Revio P1,16717.0,19122.0,21494.0,N/A,HG00321,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,87.05,87052360386.0,4480452.0,N/A,HG00321,SAMN41021636,,FIN,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19023.0,20701.0,22882.0,SRR29396917,N/A,N/A,N/A,N/A,N/A,SAMN41021636,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230630_190803_s1.hifi_reads.bc2015.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00321_lib1_m84081_230630_190803_s1_m84081_230630_190803_s1,single,size fractionation,GENOMIC,WGS,49486.0,20762.0,182.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00321/raw_data/PacBio_HiFi/m84081_230630_190803_s1.hifi_reads.bc2015.bam,PACBIO_SMRT,Revio P1,18719.0,20324.0,22343.0,N/A,HG00321,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,6.7,6703217313.0,322856.0,N/A,HG00321,SAMN41021636,,FIN,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19059.0,20746.0,22950.0,SRR29396916,N/A,N/A,N/A,N/A,N/A,SAMN41021636,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230630_193909_s2.hifi_reads.bc2015.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00321_lib1_m84081_230630_193909_s2_m84081_230630_193909_s2,single,size fractionation,GENOMIC,WGS,49979.0,20812.0,389.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00321/raw_data/PacBio_HiFi/m84081_230630_193909_s2.hifi_reads.bc2015.bam,PACBIO_SMRT,Revio P1,18755.0,20362.0,22397.0,N/A,HG00321,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,7.95,7946873289.0,381838.0,N/A,HG00321,SAMN41021636,,FIN,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18631.0,20539.0,23013.0,SRR29396915,N/A,N/A,N/A,N/A,N/A,SAMN41708788,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230714_212624_s3.hifi_reads.bc2021.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00384_lib1_m84081_230714_212624_s3_m84081_230714_212624_s3,single,size fractionation,GENOMIC,WGS,65604.0,20514.0,125.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00384/raw_data/PacBio_HiFi/m84081_230714_212624_s3.hifi_reads.bc2021.bam,PACBIO_SMRT,Revio P1,18246.0,20053.0,22342.0,N/A,HG00384,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,87.24,87240672013.0,4252735.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,True,18726.0,20664.0,23182.0,SRR29396913,N/A,N/A,N/A,N/A,N/A,SAMN41708788,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230714_215730_s4.hifi_reads.bc2021.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00384_lib1_m84081_230714_215730_s4_m84081_230714_215730_s4,single,size fractionation,GENOMIC,WGS,68989.0,20643.0,168.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00384/raw_data/PacBio_HiFi/m84081_230714_215730_s4.hifi_reads.bc2021.bam,PACBIO_SMRT,Revio P1,18337.0,20167.0,22494.0,N/A,HG00384,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,91.3,91298102319.0,4422543.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,True,18377.0,20134.0,22352.0,SRR29396912,N/A,N/A,N/A,N/A,N/A,SAMN41708788,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230721_175633_s1.hifi_reads.bc2021.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00384_lib1_m84081_230721_175633_s1_m84081_230721_175633_s1,single,size fractionation,GENOMIC,WGS,58703.0,20120.0,317.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00384/raw_data/PacBio_HiFi/m84081_230721_175633_s1.hifi_reads.bc2021.bam,PACBIO_SMRT,Revio P1,18030.0,19719.0,21788.0,N/A,HG00384,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,5.58,5580145860.0,277337.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,True,18398.0,20167.0,22384.0,SRR29396911,N/A,N/A,N/A,N/A,N/A,SAMN41708788,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230721_182654_s2.hifi_reads.bc2021.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00384_lib1_m84081_230721_182654_s2_m84081_230721_182654_s2,single,size fractionation,GENOMIC,WGS,47639.0,20151.0,117.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00384/raw_data/PacBio_HiFi/m84081_230721_182654_s2.hifi_reads.bc2021.bam,PACBIO_SMRT,Revio P1,18055.0,19753.0,21815.0,N/A,HG00384,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,5.79,5787641754.0,287210.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,True,16106.0,17401.0,19434.0,SRR29396910,N/A,N/A,N/A,N/A,N/A,SAMN41708789,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230624_203119_s1.hifi_reads.bc2016.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01248_lib1_m84081_230624_203119_s1_m84081_230624_203119_s1,single,size fractionation,GENOMIC,WGS,61976.0,17882.0,66.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01248/raw_data/PacBio_HiFi/m84081_230624_203119_s1.hifi_reads.bc2016.bam,PACBIO_SMRT,Revio P1,15906.0,17070.0,18759.0,N/A,HG01248,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,89.19,89192360395.0,4987552.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,True,16091.0,17375.0,19381.0,SRR29396909,N/A,N/A,N/A,N/A,N/A,SAMN41708789,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230624_210225_s2.hifi_reads.bc2016.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01248_lib1_m84081_230624_210225_s2_m84081_230624_210225_s2,single,size fractionation,GENOMIC,WGS,60735.0,17854.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01248/raw_data/PacBio_HiFi/m84081_230624_210225_s2.hifi_reads.bc2016.bam,PACBIO_SMRT,Revio P1,15893.0,17050.0,18723.0,N/A,HG01248,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,95.0,94995476037.0,5320601.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,True,15793.0,16767.0,17911.0,SRR29396908,N/A,N/A,N/A,N/A,N/A,SAMN41708789,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230628_183924_s1.hifi_reads.bc2016.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01248_lib1_m84081_230628_183924_s1_m84081_230628_183924_s1,single,size fractionation,GENOMIC,WGS,32129.0,16750.0,386.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01248/raw_data/PacBio_HiFi/m84081_230628_183924_s1.hifi_reads.bc2016.bam,PACBIO_SMRT,Revio P1,15675.0,16622.0,17744.0,N/A,HG01248,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,3.95,3946167499.0,235592.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,True,15805.0,16781.0,17940.0,SRR29396907,N/A,N/A,N/A,N/A,N/A,SAMN41708789,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230628_190945_s2.hifi_reads.bc2016.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01248_lib1_m84081_230628_190945_s2_m84081_230628_190945_s2,single,size fractionation,GENOMIC,WGS,32308.0,16767.0,166.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01248/raw_data/PacBio_HiFi/m84081_230628_190945_s2.hifi_reads.bc2016.bam,PACBIO_SMRT,Revio P1,15689.0,16634.0,17769.0,N/A,HG01248,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,4.1,4098992812.0,244457.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,True,16603.0,18371.0,20789.0,SRR29396906,N/A,N/A,N/A,N/A,N/A,SAMN41708787,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231027_205726_s4.hifi_reads.bc2068.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01785_lib1_m84081_231027_205726_s4_m84081_231027_205726_s4,single,size fractionation,GENOMIC,WGS,55706.0,18463.0,154.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01785/raw_data/PacBio_HiFi/m84081_231027_205726_s4.hifi_reads.bc2068.bam,PACBIO_SMRT,Revio P1,16282.0,17891.0,20106.0,N/A,HG01785,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,69.13,69132600711.0,3744219.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,True,16703.0,18530.0,21036.0,SRR29396905,N/A,N/A,N/A,N/A,N/A,SAMN41708787,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231029_030755_s4.hifi_reads.bc2068.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01785_lib1_m84081_231029_030755_s4_m84081_231029_030755_s4,single,size fractionation,GENOMIC,WGS,55915.0,18627.0,101.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01785/raw_data/PacBio_HiFi/m84081_231029_030755_s4.hifi_reads.bc2068.bam,PACBIO_SMRT,Revio P1,16370.0,18025.0,20317.0,N/A,HG01785,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,62.55,62547368039.0,3357874.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,True,16721.0,18558.0,21059.0,SRR29396904,N/A,N/A,N/A,N/A,N/A,SAMN41708787,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231122_210358_s4.hifi_reads.bc2068.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01785_lib1_m84081_231122_210358_s4_m84081_231122_210358_s4,single,size fractionation,GENOMIC,WGS,60041.0,18654.0,129.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01785/raw_data/PacBio_HiFi/m84081_231122_210358_s4.hifi_reads.bc2068.bam,PACBIO_SMRT,Revio P1,16385.0,18051.0,20338.0,N/A,HG01785,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,37.65,37653152376.0,2018483.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,True,16693.0,18507.0,21003.0,SRR29396902,N/A,N/A,N/A,N/A,N/A,SAMN41708787,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231124_031433_s4.hifi_reads.bc2068.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01785_lib1_m84081_231124_031433_s4_m84081_231124_031433_s4,single,size fractionation,GENOMIC,WGS,60926.0,18608.0,96.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01785/raw_data/PacBio_HiFi/m84081_231124_031433_s4.hifi_reads.bc2068.bam,PACBIO_SMRT,Revio P1,16363.0,18008.0,20291.0,N/A,HG01785,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,42.0,41997271684.0,2256941.0,N/A,,,,,, +N/A,N/A,N/A,N/A,N/A,N/A,,True,16076.0,18208.0,20275.0,SRR29396901,N/A,N/A,N/A,N/A,N/A,SAMN41021633,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230616_172650_s1.hifi_reads.bc2012.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01786_lib1_m84081_230616_172650_s1_m84081_230616_172650_s1,single,size fractionation,GENOMIC,WGS,50578.0,17901.0,196.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01786/raw_data/PacBio_HiFi/m84081_230616_172650_s1.hifi_reads.bc2012.bam,PACBIO_SMRT,Revio P1,15623.0,17685.0,19754.0,N/A,HG01786,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,113.0,112999869409.0,6312457.0,N/A,HG01786,SAMN41021633,,IBS,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16115.0,18250.0,20321.0,SRR29396900,N/A,N/A,N/A,N/A,N/A,SAMN41021633,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230616_175717_s2.hifi_reads.bc2012.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01786_lib1_m84081_230616_175717_s2_m84081_230616_175717_s2,single,size fractionation,GENOMIC,WGS,59847.0,17946.0,67.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01786/raw_data/PacBio_HiFi/m84081_230616_175717_s2.hifi_reads.bc2012.bam,PACBIO_SMRT,Revio P1,15658.0,17729.0,19799.0,N/A,HG01786,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,114.9,114898048594.0,6402094.0,N/A,HG01786,SAMN41021633,,IBS,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17915.0,20556.0,24118.0,SRR29396899,N/A,N/A,N/A,N/A,N/A,SAMN41021698,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231209_031410_s3.hifi_reads.bc2002.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01798_lib1_m84081_231209_031410_s3_m84081_231209_031410_s3,single,size fractionation,GENOMIC,WGS,72053.0,20511.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01798/raw_data/PacBio_HiFi/m84081_231209_031410_s3.hifi_reads.bc2002.bam,PACBIO_SMRT,Revio P1,17361.0,19647.0,22911.0,N/A,HG01798,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,131.49,131487040767.0,6410544.0,N/A,HG01798,SAMN41021698,,CDX,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17859.0,20457.0,23995.0,SRR29396898,N/A,N/A,N/A,N/A,N/A,SAMN41021698,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231209_034516_s4.hifi_reads.bc2002.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01798_lib1_m84081_231209_034516_s4_m84081_231209_034516_s4,single,size fractionation,GENOMIC,WGS,71376.0,20431.0,152.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01798/raw_data/PacBio_HiFi/m84081_231209_034516_s4.hifi_reads.bc2002.bam,PACBIO_SMRT,Revio P1,17318.0,19570.0,22802.0,N/A,HG01798,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,118.99,118994102370.0,5823951.0,N/A,HG01798,SAMN41021698,,CDX,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18044.0,20025.0,22730.0,SRR29396897,N/A,N/A,N/A,N/A,N/A,SAMN41021684,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231103_210721_s4.hifi_reads.bc2069.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01894_lib1_m84081_231103_210721_s4_m84081_231103_210721_s4,single,size fractionation,GENOMIC,WGS,68862.0,19872.0,78.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01894/raw_data/PacBio_HiFi/m84081_231103_210721_s4.hifi_reads.bc2069.bam,PACBIO_SMRT,Revio P1,17619.0,19444.0,21948.0,N/A,HG01894,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,99.24,99237532921.0,4993697.0,N/A,HG01894,SAMN41021684,,ACB,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18104.0,20117.0,22844.0,SRR29396896,N/A,N/A,N/A,N/A,N/A,SAMN41021684,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231105_014442_s1.hifi_reads.bc2069.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01894_lib1_m84081_231105_014442_s1_m84081_231105_014442_s1,single,size fractionation,GENOMIC,WGS,66222.0,19978.0,112.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01894/raw_data/PacBio_HiFi/m84081_231105_014442_s1.hifi_reads.bc2069.bam,PACBIO_SMRT,Revio P1,17679.0,19531.0,22063.0,N/A,HG01894,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,102.95,102950156305.0,5152973.0,N/A,HG01894,SAMN41021684,,ACB,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19131.0,21984.0,25894.0,SRR29396895,N/A,N/A,N/A,N/A,N/A,SAMN41021683,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231027_195514_s2.hifi_reads.bc2067.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03343_lib1_m84081_231027_195514_s2_m84081_231027_195514_s2,single,size fractionation,GENOMIC,WGS,65357.0,21823.0,93.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231027_195514_s2.hifi_reads.bc2067.bam,PACBIO_SMRT,Revio P1,18478.0,20971.0,24504.0,N/A,HG03343,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,80.39,80389909890.0,3683635.0,N/A,HG03343,SAMN41021683,,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19209.0,22113.0,26029.0,SRR29396894,N/A,N/A,N/A,N/A,N/A,SAMN41021683,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231029_020543_s2.hifi_reads.bc2067.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03343_lib1_m84081_231029_020543_s2_m84081_231029_020543_s2,single,size fractionation,GENOMIC,WGS,67011.0,21937.0,131.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231029_020543_s2.hifi_reads.bc2067.bam,PACBIO_SMRT,Revio P1,18542.0,21085.0,24644.0,N/A,HG03343,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,76.38,76377325201.0,3481519.0,N/A,HG03343,SAMN41021683,,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19006.0,21714.0,25367.0,SRR29396893,N/A,N/A,N/A,N/A,N/A,SAMN41021683,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231112_023836_s2.hifi_reads.bc2067.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03343_lib1_m84081_231112_023836_s2_m84081_231112_023836_s2,single,size fractionation,GENOMIC,WGS,64938.0,21611.0,96.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231112_023836_s2.hifi_reads.bc2067.bam,PACBIO_SMRT,Revio P1,18408.0,20799.0,24117.0,N/A,HG03343,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,23.81,23811565860.0,1101791.0,N/A,HG03343,SAMN41021683,,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19100.0,21896.0,25690.0,SRR29396891,N/A,N/A,N/A,N/A,N/A,SAMN41021683,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231119_015049_s1.hifi_reads.bc2067.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03343_lib1_m84081_231119_015049_s1_m84081_231119_015049_s1,single,size fractionation,GENOMIC,WGS,58315.0,21759.0,236.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231119_015049_s1.hifi_reads.bc2067.bam,PACBIO_SMRT,Revio P1,18472.0,20925.0,24369.0,N/A,HG03343,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,3.83,3829545883.0,175994.0,N/A,HG03343,SAMN41021683,,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19070.0,21916.0,25762.0,SRR29396890,N/A,N/A,N/A,N/A,N/A,SAMN41021683,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231119_022155_s2.hifi_reads.bc2067.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03343_lib1_m84081_231119_022155_s2_m84081_231119_022155_s2,single,size fractionation,GENOMIC,WGS,59141.0,21766.0,105.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231119_022155_s2.hifi_reads.bc2067.bam,PACBIO_SMRT,Revio P1,18430.0,20912.0,24406.0,N/A,HG03343,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,4.12,4116704775.0,189126.0,N/A,HG03343,SAMN41021683,,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19107.0,21952.0,25819.0,SRR29396889,N/A,N/A,N/A,N/A,N/A,SAMN41021683,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231119_025301_s3.hifi_reads.bc2067.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03343_lib1_m84081_231119_025301_s3_m84081_231119_025301_s3,single,size fractionation,GENOMIC,WGS,51526.0,21808.0,528.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231119_025301_s3.hifi_reads.bc2067.bam,PACBIO_SMRT,Revio P1,18462.0,20945.0,24475.0,N/A,HG03343,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,3.91,3912424496.0,179401.0,N/A,HG03343,SAMN41021683,,ESN,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18380.0,20864.0,24295.0,SRR29396888,N/A,N/A,N/A,N/A,N/A,SAMN41021700,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231207_210341_s3.hifi_reads.bc2003.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03388_lib1_m84081_231207_210341_s3_m84081_231207_210341_s3,single,size fractionation,GENOMIC,WGS,72686.0,20836.0,162.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03388/raw_data/PacBio_HiFi/m84081_231207_210341_s3.hifi_reads.bc2003.bam,PACBIO_SMRT,Revio P1,17871.0,20053.0,23185.0,N/A,HG03388,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,129.7,129702255571.0,6224816.0,N/A,HG03388,SAMN41021700,,MSL,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18383.0,20870.0,24306.0,SRR29396887,N/A,N/A,N/A,N/A,N/A,SAMN41021700,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231207_213447_s4.hifi_reads.bc2003.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03388_lib1_m84081_231207_213447_s4_m84081_231207_213447_s4,single,size fractionation,GENOMIC,WGS,73270.0,20845.0,69.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03388/raw_data/PacBio_HiFi/m84081_231207_213447_s4.hifi_reads.bc2003.bam,PACBIO_SMRT,Revio P1,17874.0,20060.0,23196.0,N/A,HG03388,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,120.72,120724810545.0,5791516.0,N/A,HG03388,SAMN41021700,,MSL,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18183.0,19680.0,21584.0,SRR29396886,N/A,N/A,N/A,N/A,N/A,SAMN41021647,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230624_213331_s3.hifi_reads.bc2017.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03784_lib1_m84081_230624_213331_s3_m84081_230624_213331_s3,single,size fractionation,GENOMIC,WGS,52498.0,19740.0,112.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03784/raw_data/PacBio_HiFi/m84081_230624_213331_s3.hifi_reads.bc2017.bam,PACBIO_SMRT,Revio P1,17942.0,19367.0,21164.0,N/A,HG03784,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,101.37,101373501273.0,5135431.0,N/A,HG03784,SAMN41021647,,ITU,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18197.0,19700.0,21609.0,SRR29396885,N/A,N/A,N/A,N/A,N/A,SAMN41021647,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230624_220437_s4.hifi_reads.bc2017.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03784_lib1_m84081_230624_220437_s4_m84081_230624_220437_s4,single,size fractionation,GENOMIC,WGS,52968.0,19759.0,109.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03784/raw_data/PacBio_HiFi/m84081_230624_220437_s4.hifi_reads.bc2017.bam,PACBIO_SMRT,Revio P1,17955.0,19386.0,21188.0,N/A,HG03784,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,92.33,92325346149.0,4672355.0,N/A,HG03784,SAMN41021647,,ITU,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,12883.0,16614.0,21492.0,SRR29396884,N/A,N/A,N/A,N/A,N/A,SAMN37797112,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230516_194621_s2.hifi_reads.bc1019.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03792_lib1_m84081_230516_194621_s2_m84081_230516_194621_s2,single,size fractionation,GENOMIC,WGS,57876.0,16097.0,272.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03792/raw_data/PacBio_HiFi/m84081_230516_194621_s2.hifi_reads.bc1019.bam,PACBIO_SMRT,Revio P1,12554.0,13686.0,19898.0,N/A,HG03792,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,96.93,96934869826.0,6021669.0,N/A,HG03792,SAMN37797112,,ITU,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15778.0,17596.0,20589.0,SRR29396883,N/A,N/A,N/A,N/A,N/A,SAMN37797112,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230519_183943_s4.hifi_reads.bc1019.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03792_lib1_m84081_230519_183943_s4_m84081_230519_183943_s4,single,size fractionation,GENOMIC,WGS,58126.0,17831.0,70.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03792/raw_data/PacBio_HiFi/m84081_230519_183943_s4.hifi_reads.bc1019.bam,PACBIO_SMRT,Revio P1,15463.0,17021.0,19621.0,N/A,HG03792,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,104.38,104383006633.0,5853810.0,N/A,HG03792,SAMN37797112,,ITU,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18620.0,21241.0,24890.0,SRR29396882,N/A,N/A,N/A,N/A,N/A,SAMN41021699,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231207_203234_s2.hifi_reads.bc2004.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03919_lib1_m84081_231207_203234_s2_m84081_231207_203234_s2,single,size fractionation,GENOMIC,WGS,72543.0,21199.0,76.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03919/raw_data/PacBio_HiFi/m84081_231207_203234_s2.hifi_reads.bc2004.bam,PACBIO_SMRT,Revio P1,18059.0,20357.0,23658.0,N/A,HG03919,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,140.54,140544542753.0,6629555.0,N/A,HG03919,SAMN41021699,,BEB,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18575.0,21188.0,24867.0,SRR29396880,N/A,N/A,N/A,N/A,N/A,SAMN41021699,8.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231222_081401_s1.hifi_reads.bc2004.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03919_lib1_m84081_231222_081401_s1_m84081_231222_081401_s1,single,size fractionation,GENOMIC,WGS,63119.0,21167.0,110.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03919/raw_data/PacBio_HiFi/m84081_231222_081401_s1.hifi_reads.bc2004.bam,PACBIO_SMRT,Revio P1,18019.0,20300.0,23614.0,N/A,HG03919,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,13.19,13190463788.0,623139.0,N/A,HG03919,SAMN41021699,,BEB,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18730.0,21474.0,25246.0,SRR29396879,N/A,N/A,N/A,N/A,N/A,SAMN41021699,8.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231222_101332_s2.hifi_reads.bc2004.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03919_lib1_m84081_231222_101332_s2_m84081_231222_101332_s2,single,size fractionation,GENOMIC,WGS,63775.0,21391.0,186.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03919/raw_data/PacBio_HiFi/m84081_231222_101332_s2.hifi_reads.bc2004.bam,PACBIO_SMRT,Revio P1,18140.0,20529.0,23965.0,N/A,HG03919,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,17.11,17107725274.0,799745.0,N/A,HG03919,SAMN41021699,,BEB,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18799.0,21588.0,25372.0,SRR29396877,N/A,N/A,N/A,N/A,N/A,SAMN41021699,8.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231222_121301_s3.hifi_reads.bc2004.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03919_lib1_m84081_231222_121301_s3_m84081_231222_121301_s3,single,size fractionation,GENOMIC,WGS,68308.0,21488.0,153.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03919/raw_data/PacBio_HiFi/m84081_231222_121301_s3.hifi_reads.bc2004.bam,PACBIO_SMRT,Revio P1,18200.0,20624.0,24100.0,N/A,HG03919,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,17.39,17390549679.0,809277.0,N/A,HG03919,SAMN41021699,,BEB,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18709.0,21455.0,25198.0,SRR29396876,N/A,N/A,N/A,N/A,N/A,SAMN41021699,8.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231222_141231_s4.hifi_reads.bc2004.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03919_lib1_m84081_231222_141231_s4_m84081_231222_141231_s4,single,size fractionation,GENOMIC,WGS,73649.0,21367.0,170.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03919/raw_data/PacBio_HiFi/m84081_231222_141231_s4.hifi_reads.bc2004.bam,PACBIO_SMRT,Revio P1,18120.0,20509.0,23937.0,N/A,HG03919,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,17.33,17327703121.0,810924.0,N/A,HG03919,SAMN41021699,,BEB,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16374.0,17931.0,20599.0,SRR29396875,N/A,N/A,N/A,N/A,N/A,SAMN41021669,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230714_201817_s1.hifi_reads.bc2020.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18565_lib1_m84081_230714_201817_s1_m84081_230714_201817_s1,single,size fractionation,GENOMIC,WGS,61109.0,18377.0,69.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18565/raw_data/PacBio_HiFi/m84081_230714_201817_s1.hifi_reads.bc2020.bam,PACBIO_SMRT,Revio P1,16103.0,17487.0,19619.0,N/A,NA18565,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,80.17,80173317654.0,4362524.0,N/A,NA18565,SAMN41021669,,CHB,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16369.0,17921.0,20603.0,SRR29396850,N/A,N/A,N/A,N/A,N/A,SAMN41021669,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230714_205519_s2.hifi_reads.bc2020.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18565_lib1_m84081_230714_205519_s2_m84081_230714_205519_s2,single,size fractionation,GENOMIC,WGS,62662.0,18381.0,127.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18565/raw_data/PacBio_HiFi/m84081_230714_205519_s2.hifi_reads.bc2020.bam,PACBIO_SMRT,Revio P1,16099.0,17478.0,19611.0,N/A,NA18565,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,89.43,89433355582.0,4865353.0,N/A,NA18565,SAMN41021669,,CHB,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15896.0,16985.0,18239.0,SRR29396851,N/A,N/A,N/A,N/A,N/A,SAMN41021669,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230728_191731_s1.hifi_reads.bc2020.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18565_lib1_m84081_230728_191731_s1_m84081_230728_191731_s1,single,size fractionation,GENOMIC,WGS,40638.0,16954.0,115.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18565/raw_data/PacBio_HiFi/m84081_230728_191731_s1.hifi_reads.bc2020.bam,PACBIO_SMRT,Revio P1,15749.0,16808.0,18036.0,N/A,NA18565,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,25.52,25516860218.0,1505035.0,N/A,NA18565,SAMN41021669,,CHB,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16700.0,19282.0,21832.0,SRR29396852,N/A,N/A,N/A,N/A,N/A,SAMN41021619,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230601_202307_s1.hifi_reads.bc2007.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18608_lib1_m84081_230601_202307_s1_m84081_230601_202307_s1,single,size fractionation,GENOMIC,WGS,55691.0,18947.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18608/raw_data/PacBio_HiFi/m84081_230601_202307_s1.hifi_reads.bc2007.bam,PACBIO_SMRT,Revio P1,16136.0,18571.0,21088.0,N/A,NA18608,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,38.3,38302395427.0,2021458.0,N/A,NA18608,SAMN41021619,,CHB,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17367.0,19920.0,22570.0,SRR29396853,N/A,N/A,N/A,N/A,N/A,SAMN41021619,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230601_210338_s2.hifi_reads.bc2007.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18608_lib1_m84081_230601_210338_s2_m84081_230601_210338_s2,single,size fractionation,GENOMIC,WGS,59027.0,19576.0,102.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18608/raw_data/PacBio_HiFi/m84081_230601_210338_s2.hifi_reads.bc2007.bam,PACBIO_SMRT,Revio P1,16693.0,19229.0,21770.0,N/A,NA18608,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,126.14,126144469880.0,6443731.0,N/A,NA18608,SAMN41021619,,CHB,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14946.0,15796.0,16779.0,SRR29396854,N/A,N/A,N/A,N/A,N/A,SAMN41021619,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230623_202140_s1.hifi_reads.bc2007.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18608_lib1_m84081_230623_202140_s1_m84081_230623_202140_s1,single,size fractionation,GENOMIC,WGS,37936.0,15785.0,222.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18608/raw_data/PacBio_HiFi/m84081_230623_202140_s1.hifi_reads.bc2007.bam,PACBIO_SMRT,Revio P1,14852.0,15680.0,16650.0,N/A,NA18608,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,13.51,13512296010.0,856010.0,N/A,NA18608,SAMN41021619,,CHB,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14970.0,15823.0,16816.0,SRR29396856,N/A,N/A,N/A,N/A,N/A,SAMN41021619,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230623_205201_s2.hifi_reads.bc2007.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18608_lib1_m84081_230623_205201_s2_m84081_230623_205201_s2,single,size fractionation,GENOMIC,WGS,35337.0,15815.0,106.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18608/raw_data/PacBio_HiFi/m84081_230623_205201_s2.hifi_reads.bc2007.bam,PACBIO_SMRT,Revio P1,14877.0,15705.0,16685.0,N/A,NA18608,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,13.0,13001339007.0,822059.0,N/A,NA18608,SAMN41021619,,CHB,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16437.0,18517.0,21881.0,SRR29396857,N/A,N/A,N/A,N/A,N/A,SAMN41021621,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230609_201402_s3.hifi_reads.bc2009.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18952_lib1_m84081_230609_201402_s3_m84081_230609_201402_s3,single,size fractionation,GENOMIC,WGS,60825.0,18761.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18952/raw_data/PacBio_HiFi/m84081_230609_201402_s3.hifi_reads.bc2009.bam,PACBIO_SMRT,Revio P1,16068.0,17806.0,20751.0,N/A,NA18952,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,114.63,114630102801.0,6109785.0,N/A,NA18952,SAMN41021621,,JPT,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16463.0,18574.0,21974.0,SRR29396858,N/A,N/A,N/A,N/A,N/A,SAMN41021621,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230609_204508_s4.hifi_reads.bc2009.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18952_lib1_m84081_230609_204508_s4_m84081_230609_204508_s4,single,size fractionation,GENOMIC,WGS,59176.0,18813.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18952/raw_data/PacBio_HiFi/m84081_230609_204508_s4.hifi_reads.bc2009.bam,PACBIO_SMRT,Revio P1,16090.0,17847.0,20830.0,N/A,NA18952,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,121.87,121866756120.0,6477676.0,N/A,NA18952,SAMN41021621,,JPT,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18405.0,20084.0,22257.0,SRR29396859,N/A,N/A,N/A,N/A,N/A,SAMN41021620,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230601_213444_s3.hifi_reads.bc2008.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18974_lib1_m84081_230601_213444_s3_m84081_230601_213444_s3,single,size fractionation,GENOMIC,WGS,57105.0,20164.0,108.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18974/raw_data/PacBio_HiFi/m84081_230601_213444_s3.hifi_reads.bc2008.bam,PACBIO_SMRT,Revio P1,18100.0,19697.0,21703.0,N/A,NA18974,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,122.72,122716117340.0,6085854.0,N/A,NA18974,SAMN41021620,,JPT,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18446.0,20144.0,22355.0,SRR29396860,N/A,N/A,N/A,N/A,N/A,SAMN41021620,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230601_220550_s4.hifi_reads.bc2008.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18974_lib1_m84081_230601_220550_s4_m84081_230601_220550_s4,single,size fractionation,GENOMIC,WGS,59690.0,20232.0,110.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18974/raw_data/PacBio_HiFi/m84081_230601_220550_s4.hifi_reads.bc2008.bam,PACBIO_SMRT,Revio P1,18138.0,19749.0,21784.0,N/A,NA18974,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,130.05,130053489701.0,6428043.0,N/A,NA18974,SAMN41021620,,JPT,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18353.0,19960.0,21963.0,SRR29396861,N/A,N/A,N/A,N/A,N/A,SAMN41021622,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230610_192218_s1.hifi_reads.bc2010.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18976_lib1_m84081_230610_192218_s1_m84081_230610_192218_s1,single,size fractionation,GENOMIC,WGS,56767.0,19991.0,211.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18976/raw_data/PacBio_HiFi/m84081_230610_192218_s1.hifi_reads.bc2010.bam,PACBIO_SMRT,Revio P1,18064.0,19603.0,21493.0,N/A,NA18976,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,111.51,111506398484.0,5577778.0,N/A,NA18976,SAMN41021622,,JPT,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18294.0,19884.0,21860.0,SRR29396862,N/A,N/A,N/A,N/A,N/A,SAMN41021622,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230610_195324_s2.hifi_reads.bc2010.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18976_lib1_m84081_230610_195324_s2_m84081_230610_195324_s2,single,size fractionation,GENOMIC,WGS,57421.0,19905.0,124.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18976/raw_data/PacBio_HiFi/m84081_230610_195324_s2.hifi_reads.bc2010.bam,PACBIO_SMRT,Revio P1,18008.0,19535.0,21403.0,N/A,NA18976,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,116.01,116006257856.0,5827789.0,N/A,NA18976,SAMN41021622,,JPT,EAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17716.0,19923.0,23009.0,SRR29396863,N/A,N/A,N/A,N/A,N/A,SAMN41021682,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231027_192451_s1.hifi_reads.bc2066.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19099_lib1_m84081_231027_192451_s1_m84081_231027_192451_s1,single,size fractionation,GENOMIC,WGS,68354.0,19999.0,134.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19099/raw_data/PacBio_HiFi/m84081_231027_192451_s1.hifi_reads.bc2066.bam,PACBIO_SMRT,Revio P1,17304.0,19241.0,22055.0,N/A,NA19099,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,71.42,71420056983.0,3571017.0,N/A,NA19099,SAMN41021682,,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17859.0,20167.0,23322.0,SRR29396864,N/A,N/A,N/A,N/A,N/A,SAMN41021682,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231029_013437_s1.hifi_reads.bc2066.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19099_lib1_m84081_231029_013437_s1_m84081_231029_013437_s1,single,size fractionation,GENOMIC,WGS,64507.0,20214.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19099/raw_data/PacBio_HiFi/m84081_231029_013437_s1.hifi_reads.bc2066.bam,PACBIO_SMRT,Revio P1,17421.0,19447.0,22342.0,N/A,NA19099,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,67.43,67429698005.0,3335768.0,N/A,NA19099,SAMN41021682,,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17827.0,20119.0,23306.0,SRR29396865,N/A,N/A,N/A,N/A,N/A,SAMN41021682,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231122_210358_s4.hifi_reads.bc2066.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19099_lib1_m84081_231122_210358_s4_m84081_231122_210358_s4,single,size fractionation,GENOMIC,WGS,67431.0,20194.0,109.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19099/raw_data/PacBio_HiFi/m84081_231122_210358_s4.hifi_reads.bc2066.bam,PACBIO_SMRT,Revio P1,17394.0,19399.0,22303.0,N/A,NA19099,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,29.88,29875159090.0,1479407.0,N/A,NA19099,SAMN41021682,,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17785.0,20050.0,23188.0,SRR29396867,N/A,N/A,N/A,N/A,N/A,SAMN41021682,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231124_031433_s4.hifi_reads.bc2066.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19099_lib1_m84081_231124_031433_s4_m84081_231124_031433_s4,single,size fractionation,GENOMIC,WGS,58771.0,20121.0,159.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19099/raw_data/PacBio_HiFi/m84081_231124_031433_s4.hifi_reads.bc2066.bam,PACBIO_SMRT,Revio P1,17362.0,19344.0,22214.0,N/A,NA19099,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,33.0,32997796125.0,1639967.0,N/A,NA19099,SAMN41021682,,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15850.0,18107.0,20460.0,SRR29396868,N/A,N/A,N/A,N/A,N/A,SAMN37797088,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230508_200546_s2.hifi_reads.bc2003.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19120_lib1_m84081_230508_200546_s2_m84081_230508_200546_s2,single,size fractionation,GENOMIC,WGS,55134.0,17886.0,141.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19120/raw_data/PacBio_HiFi/m84081_230508_200546_s2.hifi_reads.bc2003.bam,PACBIO_SMRT,Revio P1,15453.0,17439.0,19846.0,N/A,NA19120,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,108.12,108117696397.0,6044757.0,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15681.0,17843.0,20250.0,SRR29396869,N/A,N/A,N/A,N/A,N/A,SAMN37797088,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230511_183900_s4.hifi_reads.bc2003.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19120_lib1_m84081_230511_183900_s4_m84081_230511_183900_s4,single,size fractionation,GENOMIC,WGS,52931.0,17696.0,104.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19120/raw_data/PacBio_HiFi/m84081_230511_183900_s4.hifi_reads.bc2003.bam,PACBIO_SMRT,Revio P1,15317.0,17177.0,19632.0,N/A,NA19120,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,110.42,110418103547.0,6239650.0,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17383.0,20239.0,24086.0,SRR29396870,N/A,N/A,N/A,N/A,N/A,SAMN41021685,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231209_021158_s1.hifi_reads.bc2001.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19834_lib1_m84081_231209_021158_s1_m84081_231209_021158_s1,single,size fractionation,GENOMIC,WGS,74893.0,20177.0,121.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19834/raw_data/PacBio_HiFi/m84081_231209_021158_s1.hifi_reads.bc2001.bam,PACBIO_SMRT,Revio P1,16746.0,19185.0,22651.0,N/A,NA19834,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,126.56,126557623344.0,6272240.0,N/A,NA19834,SAMN41021685,,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17317.0,20155.0,24001.0,SRR29396871,N/A,N/A,N/A,N/A,N/A,SAMN41021685,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231209_024304_s2.hifi_reads.bc2001.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19834_lib1_m84081_231209_024304_s2_m84081_231209_024304_s2,single,size fractionation,GENOMIC,WGS,75079.0,20104.0,71.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19834/raw_data/PacBio_HiFi/m84081_231209_024304_s2.hifi_reads.bc2001.bam,PACBIO_SMRT,Revio P1,16688.0,19103.0,22563.0,N/A,NA19834,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,132.28,132283331917.0,6579738.0,N/A,NA19834,SAMN41021685,,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16483.0,18789.0,20901.0,SRR29396872,N/A,N/A,N/A,N/A,N/A,SAMN41021607,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230523_180945_s1.hifi_reads.bc2005.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19909_lib1_m84081_230523_180945_s1_m84081_230523_180945_s1,single,size fractionation,GENOMIC,WGS,57607.0,18430.0,106.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_230523_180945_s1.hifi_reads.bc2005.bam,PACBIO_SMRT,Revio P1,15942.0,18242.0,20340.0,N/A,NA19909,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,96.3,96297665360.0,5224855.0,N/A,NA19909,SAMN41021607,,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16837.0,19008.0,21069.0,SRR29396873,N/A,N/A,N/A,N/A,N/A,SAMN41021607,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230525_172954_s3.hifi_reads.bc2005.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19909_lib1_m84081_230525_172954_s3_m84081_230525_172954_s3,single,size fractionation,GENOMIC,WGS,61002.0,18665.0,147.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_230525_172954_s3.hifi_reads.bc2005.bam,PACBIO_SMRT,Revio P1,16265.0,18511.0,20525.0,N/A,NA19909,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,101.88,101875080979.0,5457862.0,N/A,NA19909,SAMN41021607,,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,9208.0,16322.0,22107.0,SRR29396874,N/A,N/A,N/A,N/A,N/A,SAMN41021607,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230609_194256_s2.hifi_reads.bc2001.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19909_lib1_m84081_230609_194256_s2_m84081_230609_194256_s2,single,size fractionation,GENOMIC,WGS,68370.0,10935.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_230609_194256_s2.hifi_reads.bc2001.bam,PACBIO_SMRT,Revio P1,4569.0,8259.0,16194.0,N/A,NA19909,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,75.08,75084927598.0,6866185.0,N/A,NA19909,SAMN41021607,,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18349.0,20277.0,22620.0,SRR29396849,N/A,N/A,N/A,N/A,N/A,SAMN41021607,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230728_194836_s2.hifi_reads.bc2029.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19909_lib1_m84081_230728_194836_s2_m84081_230728_194836_s2,single,size fractionation,GENOMIC,WGS,59827.0,20203.0,81.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_230728_194836_s2.hifi_reads.bc2029.bam,PACBIO_SMRT,Revio P1,17957.0,19803.0,22006.0,N/A,NA19909,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,97.32,97319859213.0,4817014.0,N/A,NA19909,SAMN41021607,,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18269.0,20173.0,22480.0,SRR29396848,N/A,N/A,N/A,N/A,N/A,SAMN41021607,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230728_201942_s3.hifi_reads.bc2029.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19909_lib1_m84081_230728_201942_s3_m84081_230728_201942_s3,single,size fractionation,GENOMIC,WGS,69516.0,20097.0,186.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_230728_201942_s3.hifi_reads.bc2029.bam,PACBIO_SMRT,Revio P1,17882.0,19709.0,21881.0,N/A,NA19909,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,99.46,99459938408.0,4948799.0,N/A,NA19909,SAMN41021607,,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16382.0,18616.0,21670.0,SRR29396846,N/A,N/A,N/A,N/A,N/A,SAMN41021607,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231207_200206_s1.hifi_reads.bc2008.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19909_lib1_m84081_231207_200206_s1_m84081_231207_200206_s1,single,size fractionation,GENOMIC,WGS,64325.0,18557.0,194.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_231207_200206_s1.hifi_reads.bc2008.bam,PACBIO_SMRT,Revio P1,15890.0,17884.0,20653.0,N/A,NA19909,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,117.98,117981479384.0,6357730.0,N/A,NA19909,SAMN41021607,,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18437.0,20033.0,22430.0,SRR29396845,N/A,N/A,N/A,N/A,N/A,SAMN41021608,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230516_191559_s1.hifi_reads.bc2004.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA20282_lib1_m84081_230516_191559_s1_m84081_230516_191559_s1,single,size fractionation,GENOMIC,WGS,59671.0,20325.0,80.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20282/raw_data/PacBio_HiFi/m84081_230516_191559_s1.hifi_reads.bc2004.bam,PACBIO_SMRT,Revio P1,18184.0,19636.0,21758.0,N/A,NA20282,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,110.93,110933334360.0,5457889.0,N/A,NA20282,SAMN41021608,,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18405.0,19965.0,22284.0,SRR29396844,N/A,N/A,N/A,N/A,N/A,SAMN41021608,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230519_180923_s3.hifi_reads.bc2004.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA20282_lib1_m84081_230519_180923_s3_m84081_230519_180923_s3,single,size fractionation,GENOMIC,WGS,63641.0,20251.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20282/raw_data/PacBio_HiFi/m84081_230519_180923_s3.hifi_reads.bc2004.bam,PACBIO_SMRT,Revio P1,18160.0,19586.0,21648.0,N/A,NA20282,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,105.47,105471260068.0,5208064.0,N/A,NA20282,SAMN41021608,,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17149.0,19520.0,21918.0,SRR29396843,N/A,N/A,N/A,N/A,N/A,SAMN41021609,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230523_184006_s2.hifi_reads.bc2006.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA20346_lib1_m84081_230523_184006_s2_m84081_230523_184006_s2,single,size fractionation,GENOMIC,WGS,49406.0,18873.0,98.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20346/raw_data/PacBio_HiFi/m84081_230523_184006_s2.hifi_reads.bc2006.bam,PACBIO_SMRT,Revio P1,16365.0,18835.0,21147.0,N/A,NA20346,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,87.48,87476288770.0,4634901.0,N/A,NA20346,SAMN41021609,,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17649.0,19871.0,22305.0,SRR29396842,N/A,N/A,N/A,N/A,N/A,SAMN41021609,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230525_180017_s4.hifi_reads.bc2006.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA20346_lib1_m84081_230525_180017_s4_m84081_230525_180017_s4,single,size fractionation,GENOMIC,WGS,57217.0,19342.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20346/raw_data/PacBio_HiFi/m84081_230525_180017_s4.hifi_reads.bc2006.bam,PACBIO_SMRT,Revio P1,16880.0,19243.0,21521.0,N/A,NA20346,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,98.95,98945478632.0,5115540.0,N/A,NA20346,SAMN41021609,,ASW,AFR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17402.0,18694.0,20298.0,SRR29396841,N/A,N/A,N/A,N/A,N/A,SAMN41021671,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230715_203436_s1.hifi_reads.bc2022.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA20809_lib1_m84081_230715_203436_s1_m84081_230715_203436_s1,single,size fractionation,GENOMIC,WGS,52070.0,18703.0,95.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20809/raw_data/PacBio_HiFi/m84081_230715_203436_s1.hifi_reads.bc2022.bam,PACBIO_SMRT,Revio P1,17209.0,18451.0,19993.0,N/A,NA20809,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,87.08,87078143934.0,4655640.0,N/A,NA20809,SAMN41021671,,TSI,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17345.0,18621.0,20208.0,SRR29396840,N/A,N/A,N/A,N/A,N/A,SAMN41021671,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230715_210542_s2.hifi_reads.bc2022.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA20809_lib1_m84081_230715_210542_s2_m84081_230715_210542_s2,single,size fractionation,GENOMIC,WGS,60584.0,18628.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20809/raw_data/PacBio_HiFi/m84081_230715_210542_s2.hifi_reads.bc2022.bam,PACBIO_SMRT,Revio P1,17154.0,18382.0,19906.0,N/A,NA20809,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,85.38,85378958115.0,4583245.0,N/A,NA20809,SAMN41021671,,TSI,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17351.0,18625.0,20198.0,SRR29396839,N/A,N/A,N/A,N/A,N/A,SAMN41021671,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230728_191731_s1.hifi_reads.bc2022.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA20809_lib1_m84081_230728_191731_s1_m84081_230728_191731_s1,single,size fractionation,GENOMIC,WGS,46117.0,18628.0,260.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20809/raw_data/PacBio_HiFi/m84081_230728_191731_s1.hifi_reads.bc2022.bam,PACBIO_SMRT,Revio P1,17161.0,18388.0,19904.0,N/A,NA20809,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,10.97,10969903547.0,588891.0,N/A,NA20809,SAMN41021671,,TSI,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17040.0,18491.0,20674.0,SRR29396838,N/A,N/A,N/A,N/A,N/A,SAMN41021670,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230727_200855_s3.hifi_reads.bc2028.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA20818_lib1_m84081_230727_200855_s3_m84081_230727_200855_s3,single,size fractionation,GENOMIC,WGS,64756.0,18870.0,102.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20818/raw_data/PacBio_HiFi/m84081_230727_200855_s3.hifi_reads.bc2028.bam,PACBIO_SMRT,Revio P1,16809.0,18127.0,20004.0,N/A,NA20818,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,114.66,114656228354.0,6076049.0,N/A,NA20818,SAMN41021670,,TSI,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16986.0,18401.0,20499.0,SRR29396837,N/A,N/A,N/A,N/A,N/A,SAMN41021670,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230727_204001_s4.hifi_reads.bc2028.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA20818_lib1_m84081_230727_204001_s4_m84081_230727_204001_s4,single,size fractionation,GENOMIC,WGS,61009.0,18756.0,142.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20818/raw_data/PacBio_HiFi/m84081_230727_204001_s4.hifi_reads.bc2028.bam,PACBIO_SMRT,Revio P1,16763.0,18053.0,19875.0,N/A,NA20818,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,109.29,109290854662.0,5826771.0,N/A,NA20818,SAMN41021670,,TSI,EUR,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17189.0,19137.0,21757.0,SRR29396835,N/A,N/A,N/A,N/A,N/A,SAMN37797095,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230508_193526_s1.hifi_reads.bc2002.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA20858_lib1_m84081_230508_193526_s1_m84081_230508_193526_s1,single,size fractionation,GENOMIC,WGS,64082.0,19195.0,78.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20858/raw_data/PacBio_HiFi/m84081_230508_193526_s1.hifi_reads.bc2002.bam,PACBIO_SMRT,Revio P1,16558.0,18539.0,20779.0,N/A,NA20858,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,103.68,103680551157.0,5401183.0,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17530.0,19535.0,22627.0,SRR29396834,N/A,N/A,N/A,N/A,N/A,SAMN37797095,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230511_180835_s3.hifi_reads.bc2002.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA20858_lib1_m84081_230511_180835_s3_m84081_230511_180835_s3,single,size fractionation,GENOMIC,WGS,63295.0,19757.0,161.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20858/raw_data/PacBio_HiFi/m84081_230511_180835_s3.hifi_reads.bc2002.bam,PACBIO_SMRT,Revio P1,16967.0,18868.0,21313.0,N/A,NA20858,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,84.88,84879874354.0,4296083.0,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16045.0,18323.0,21128.0,SRR29396833,N/A,N/A,N/A,N/A,N/A,SAMN41021672,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230715_213648_s3.hifi_reads.bc2023.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA21102_lib1_m84081_230715_213648_s3_m84081_230715_213648_s3,single,size fractionation,GENOMIC,WGS,56564.0,18240.0,101.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21102/raw_data/PacBio_HiFi/m84081_230715_213648_s3.hifi_reads.bc2023.bam,PACBIO_SMRT,Revio P1,15620.0,17597.0,20316.0,N/A,NA21102,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,88.57,88572942257.0,4855740.0,N/A,NA21102,SAMN41021672,,GIH,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16117.0,18440.0,21256.0,SRR29396832,N/A,N/A,N/A,N/A,N/A,SAMN41021672,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230715_220754_s4.hifi_reads.bc2023.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA21102_lib1_m84081_230715_220754_s4_m84081_230715_220754_s4,single,size fractionation,GENOMIC,WGS,59189.0,18335.0,64.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21102/raw_data/PacBio_HiFi/m84081_230715_220754_s4.hifi_reads.bc2023.bam,PACBIO_SMRT,Revio P1,15677.0,17696.0,20435.0,N/A,NA21102,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,90.09,90093303392.0,4913513.0,N/A,NA21102,SAMN41021672,,GIH,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18436.0,20256.0,22462.0,SRR29396831,N/A,N/A,N/A,N/A,N/A,SAMN41021672,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230728_191731_s1.hifi_reads.bc2023.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA21102_lib1_m84081_230728_191731_s1_m84081_230728_191731_s1,single,size fractionation,GENOMIC,WGS,55992.0,20178.0,134.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21102/raw_data/PacBio_HiFi/m84081_230728_191731_s1.hifi_reads.bc2023.bam,PACBIO_SMRT,Revio P1,18071.0,19828.0,21900.0,N/A,NA21102,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,14.41,14411372514.0,714199.0,N/A,NA21102,SAMN41021672,,GIH,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17113.0,18560.0,20532.0,SRR29396830,N/A,N/A,N/A,N/A,N/A,SAMN41021649,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230629_184915_s1.hifi_reads.bc2018.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA21144_lib1_m84081_230629_184915_s1_m84081_230629_184915_s1,single,size fractionation,GENOMIC,WGS,61642.0,18834.0,145.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21144/raw_data/PacBio_HiFi/m84081_230629_184915_s1.hifi_reads.bc2018.bam,PACBIO_SMRT,Revio P1,16863.0,18213.0,19981.0,N/A,NA21144,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,111.84,111840959974.0,5937951.0,N/A,NA21144,SAMN41021649,,GIH,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17173.0,18658.0,20720.0,SRR29396878,N/A,N/A,N/A,N/A,N/A,SAMN41021649,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230629_192021_s2.hifi_reads.bc2018.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA21144_lib1_m84081_230629_192021_s2_m84081_230629_192021_s2,single,size fractionation,GENOMIC,WGS,71081.0,18977.0,83.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21144/raw_data/PacBio_HiFi/m84081_230629_192021_s2.hifi_reads.bc2018.bam,PACBIO_SMRT,Revio P1,16915.0,18291.0,20114.0,N/A,NA21144,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,128.16,128161101481.0,6753492.0,N/A,NA21144,SAMN41021649,,GIH,SAS,YR4 +N/A,N/A,N/A,N/A,N/A,N/A,,True,13634.0,16478.0,19969.0,SRR30151653,N/A,N/A,N/A,N/A,N/A,SAMN37706905,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210731_145204.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00706_PB1_m64055e_210731_145204,single,size fractionation,GENOMIC,WGS,63996.0,15917.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210731_145204.5mc.hifi_reads.bam,PACBIO_SMRT,c2,12677.0,15246.0,18454.0,N/A,HG00706,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,27.58,27575841441.0,1732468.0,N/A,HG00706,SAMN37706905,SH090,CHS,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14329.0,16983.0,20349.0,SRR30151652,N/A,N/A,N/A,N/A,N/A,SAMN37706905,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210812_050522.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00706_PB1_m64055e_210812_050522,single,size fractionation,GENOMIC,WGS,56270.0,16525.0,49.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210812_050522.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13486.0,15904.0,18972.0,N/A,HG00706,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,24.19,24186668138.0,1463583.0,N/A,HG00706,SAMN37706905,SH090,CHS,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14373.0,17069.0,20494.0,SRR30151641,N/A,N/A,N/A,N/A,N/A,SAMN37706905,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210813_141904.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00706_PB1_m64055e_210813_141904,single,size fractionation,GENOMIC,WGS,69934.0,16601.0,54.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210813_141904.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13513.0,15967.0,19082.0,N/A,HG00706,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,29.46,29455811991.0,1774263.0,N/A,HG00706,SAMN37706905,SH090,CHS,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14563.0,17300.0,20758.0,SRR30151636,N/A,N/A,N/A,N/A,N/A,SAMN37706905,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210814_234047.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00706_PB1_m64055e_210814_234047,single,size fractionation,GENOMIC,WGS,59621.0,16824.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210814_234047.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13694.0,16182.0,19336.0,N/A,HG00706,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,29.56,29562459419.0,1757155.0,N/A,HG00706,SAMN37706905,SH090,CHS,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15138.0,18066.0,21647.0,SRR30151635,N/A,N/A,N/A,N/A,N/A,SAMN37706906,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210801_045414.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02668_PB1_m54306Ue_210801_045414,single,size fractionation,GENOMIC,WGS,57148.0,17510.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m54306Ue_210801_045414.5mc.hifi_reads.bam,PACBIO_SMRT,c2,14207.0,16874.0,20215.0,N/A,HG02668,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.57,26571933038.0,1517517.0,N/A,HG02668,SAMN37706906,GB40,GWD,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14047.0,16832.0,20429.0,SRR30151634,N/A,N/A,N/A,N/A,N/A,SAMN37706906,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210802_164702.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02668_PB1_m54306Ue_210802_164702,single,size fractionation,GENOMIC,WGS,61042.0,16391.0,64.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m54306Ue_210802_164702.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13178.0,15654.0,18901.0,N/A,HG02668,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,27.02,27022607363.0,1648600.0,N/A,HG02668,SAMN37706906,GB40,GWD,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14180.0,16991.0,20616.0,SRR30151633,N/A,N/A,N/A,N/A,N/A,SAMN37706906,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210804_021745.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02668_PB1_m54306Ue_210804_021745,single,size fractionation,GENOMIC,WGS,61259.0,16535.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m54306Ue_210804_021745.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13297.0,15799.0,19074.0,N/A,HG02668,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,19.18,19183912203.0,1160173.0,N/A,HG02668,SAMN37706906,GB40,GWD,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14002.0,16689.0,20198.0,SRR30151632,N/A,N/A,N/A,N/A,N/A,SAMN37706906,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210810_194150.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02668_PB1_m64055e_210810_194150,single,size fractionation,GENOMIC,WGS,60518.0,16307.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m64055e_210810_194150.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13193.0,15570.0,18723.0,N/A,HG02668,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,31.51,31511359527.0,1932274.0,N/A,HG02668,SAMN37706906,GB40,GWD,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14779.0,17694.0,21423.0,SRR30151631,N/A,N/A,N/A,N/A,N/A,SAMN37706907,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210716_134443.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03804_PB1_m54306Ue_210716_134443,single,size fractionation,GENOMIC,WGS,52699.0,17277.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m54306Ue_210716_134443.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13889.0,16482.0,19841.0,N/A,HG03804,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,21.52,21523857623.0,1245794.0,N/A,HG03804,SAMN37706907,BD18,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14871.0,17950.0,21842.0,SRR30151630,N/A,N/A,N/A,N/A,N/A,SAMN37706907,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210709_184151.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03804_PB1_m64055e_210709_184151,single,size fractionation,GENOMIC,WGS,56669.0,17416.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m64055e_210709_184151.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13867.0,16626.0,20146.0,N/A,HG03804,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,33.21,33213912092.0,1906994.0,N/A,HG03804,SAMN37706907,BD18,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14721.0,17741.0,21559.0,SRR30151651,N/A,N/A,N/A,N/A,N/A,SAMN37706907,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210712_200125.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03804_PB1_m64055e_210712_200125,single,size fractionation,GENOMIC,WGS,63476.0,17229.0,51.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m64055e_210712_200125.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13744.0,16447.0,19903.0,N/A,HG03804,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,28.79,28792837074.0,1671138.0,N/A,HG03804,SAMN37706907,BD18,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14820.0,17802.0,21563.0,SRR30151650,N/A,N/A,N/A,N/A,N/A,SAMN37706907,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210714_052746.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03804_PB1_m64055e_210714_052746,single,size fractionation,GENOMIC,WGS,56031.0,17305.0,49.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m64055e_210714_052746.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13857.0,16546.0,19948.0,N/A,HG03804,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,28.21,28207159246.0,1629954.0,N/A,HG03804,SAMN37706907,BD18,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,13886.0,16911.0,20654.0,SRR30151649,N/A,N/A,N/A,N/A,N/A,SAMN37706908,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210723_183738.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03816_PB3_m54306Ue_210723_183738,single,size fractionation,GENOMIC,WGS,54660.0,16321.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m54306Ue_210723_183738.5mc.hifi_reads.bam,PACBIO_SMRT,c2,12872.0,15561.0,18986.0,N/A,HG03816,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,24.45,24450898193.0,1498091.0,N/A,HG03816,SAMN37706908,BD22,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14079.0,17160.0,20956.0,SRR30151648,N/A,N/A,N/A,N/A,N/A,SAMN37706908,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210726_155147.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03816_PB3_m64055e_210726_155147,single,size fractionation,GENOMIC,WGS,55188.0,16543.0,49.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m64055e_210726_155147.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13043.0,15783.0,19263.0,N/A,HG03816,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.33,26328421546.0,1591506.0,N/A,HG03816,SAMN37706908,BD22,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14718.0,17827.0,21629.0,SRR30151647,N/A,N/A,N/A,N/A,N/A,SAMN37706908,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210728_024601.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03816_PB3_m64055e_210728_024601,single,size fractionation,GENOMIC,WGS,52349.0,17178.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m64055e_210728_024601.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13645.0,16473.0,19986.0,N/A,HG03816,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,28.04,28037716098.0,1632098.0,N/A,HG03816,SAMN37706908,BD22,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14322.0,17420.0,21236.0,SRR30151646,N/A,N/A,N/A,N/A,N/A,SAMN37706908,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210729_122949.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03816_PB3_m64055e_210729_122949,single,size fractionation,GENOMIC,WGS,57010.0,16787.0,52.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m64055e_210729_122949.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13264.0,16051.0,19547.0,N/A,HG03816,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.61,26609986781.0,1585079.0,N/A,HG03816,SAMN37706908,BD22,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14238.0,17292.0,21051.0,SRR30151645,N/A,N/A,N/A,N/A,N/A,SAMN37706909,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210725_040349.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04157_PB3_m54306Ue_210725_040349,single,size fractionation,GENOMIC,WGS,54115.0,16688.0,75.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210725_040349.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13219.0,15942.0,19398.0,N/A,HG04157,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,27.15,27148740947.0,1626778.0,N/A,HG04157,SAMN37706909,BD52,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14290.0,17339.0,21092.0,SRR30151644,N/A,N/A,N/A,N/A,N/A,SAMN37706909,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210727_144948.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04157_PB3_m54306Ue_210727_144948,single,size fractionation,GENOMIC,WGS,62026.0,16741.0,55.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210727_144948.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13280.0,15994.0,19456.0,N/A,HG04157,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,27.66,27655706749.0,1651932.0,N/A,HG04157,SAMN37706909,BD52,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14137.0,17191.0,20961.0,SRR30151643,N/A,N/A,N/A,N/A,N/A,SAMN37706909,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210729_003128.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04157_PB3_m54306Ue_210729_003128,single,size fractionation,GENOMIC,WGS,53734.0,16595.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210729_003128.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13121.0,15831.0,19295.0,N/A,HG04157,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,25.99,25986857190.0,1565878.0,N/A,HG04157,SAMN37706909,BD52,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,13675.0,16708.0,20522.0,SRR30151642,N/A,N/A,N/A,N/A,N/A,SAMN37706909,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210730_180007.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04157_PB3_m54306Ue_210730_180007,single,size fractionation,GENOMIC,WGS,55237.0,16134.0,50.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210730_180007.5mc.hifi_reads.bam,PACBIO_SMRT,c2,12673.0,15325.0,18788.0,N/A,HG04157,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.91,26908338226.0,1667725.0,N/A,HG04157,SAMN37706909,BD52,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14021.0,16378.0,19452.0,SRR30151640,N/A,N/A,N/A,N/A,N/A,SAMN37706910,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210713_140744.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04160_PB1_m54306Ue_210713_140744,single,size fractionation,GENOMIC,WGS,53687.0,16108.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m54306Ue_210713_140744.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13392.0,15498.0,18313.0,N/A,HG04160,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.72,26720127719.0,1658709.0,N/A,HG04160,SAMN37706910,BD53,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,13549.0,15822.0,18840.0,SRR30151639,N/A,N/A,N/A,N/A,N/A,SAMN37706910,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210715_000620.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04160_PB1_m54306Ue_210715_000620,single,size fractionation,GENOMIC,WGS,48768.0,15596.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m54306Ue_210715_000620.5mc.hifi_reads.bam,PACBIO_SMRT,c2,12940.0,14970.0,17686.0,N/A,HG04160,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,22.93,22925478214.0,1469884.0,N/A,HG04160,SAMN37706910,BD53,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,13674.0,16006.0,19133.0,SRR30151638,N/A,N/A,N/A,N/A,N/A,SAMN37706910,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210711_053617.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04160_PB1_m64055e_210711_053617,single,size fractionation,GENOMIC,WGS,51475.0,15770.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m64055e_210711_053617.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13047.0,15116.0,17931.0,N/A,HG04160,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.42,26423796459.0,1675553.0,N/A,HG04160,SAMN37706910,BD53,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,11697.0,14386.0,17653.0,SRR30151637,N/A,N/A,N/A,N/A,N/A,SAMN37706910,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210715_181933.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04160_PB1_m64055e_210715_181933,single,size fractionation,GENOMIC,WGS,57540.0,13806.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m64055e_210715_181933.5mc.hifi_reads.bam,PACBIO_SMRT,c2,10733.0,13163.0,16156.0,N/A,HG04160,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,21.54,21543489843.0,1560360.0,N/A,HG04160,SAMN37706910,BD53,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19061.0,24162.0,30456.0,SRR30152007,N/A,N/A,N/A,N/A,N/A,SAMN37797091,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220722_175158.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19338_PB1_m54306Ue_220722_175158_m54306Ue_220722_175158,single,size fractionation,GENOMIC,WGS,51516.0,22936.0,171.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/primrose/m54306Ue_220722_175158.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17156.0,21545.0,27252.0,N/A,NA19338,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,40.5,40497124857.0,1765604.0,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,20016.0,25364.0,31771.0,SRR30152006,N/A,N/A,N/A,N/A,N/A,SAMN37797091,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220729_170145.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19338_PB1_m64055e_220729_170145_m64055e_220729_170145,single,size fractionation,GENOMIC,WGS,51207.0,23947.0,95.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/primrose/m64055e_220729_170145.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17944.0,22646.0,28584.0,N/A,NA19338,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,35.09,35086441089.0,1465150.0,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19950.0,25286.0,31645.0,SRR30151951,N/A,N/A,N/A,N/A,N/A,SAMN37797091,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220731_124800.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19338_PB1_m64055e_220731_124800_m64055e_220731_124800,single,size fractionation,GENOMIC,WGS,51719.0,23871.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/primrose/m64055e_220731_124800.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17881.0,22577.0,28487.0,N/A,NA19338,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,39.14,39136064597.0,1639435.0,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,21080.0,25992.0,32361.0,SRR30151940,N/A,N/A,N/A,N/A,N/A,SAMN37797093,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220817_094430.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19468_PB1_m64055e_220817_094430_m64055e_220817_094430,single,size fractionation,GENOMIC,WGS,51454.0,25173.0,133.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/primrose/m64055e_220817_094430.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19572.0,23685.0,29407.0,N/A,NA19468,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,34.92,34921826370.0,1387230.0,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,21765.0,26889.0,33307.0,SRR30151986,N/A,N/A,N/A,N/A,N/A,SAMN37797093,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220819_064153.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19468_PB1_m64055e_220819_064153_m64055e_220819_064153,single,size fractionation,GENOMIC,WGS,51141.0,25904.0,159.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/primrose/m64055e_220819_064153.5mc.hifi_reads.bam,PACBIO_SMRT,P2,20122.0,24501.0,30376.0,N/A,NA19468,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,36.81,36811399723.0,1421052.0,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,20631.0,25357.0,31718.0,SRR30151997,N/A,N/A,N/A,N/A,N/A,SAMN37797093,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220801_170711.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19468_PB1_m64330e_220801_170711_m64330e_220801_170711,single,size fractionation,GENOMIC,WGS,51468.0,24696.0,227.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/primrose/m64330e_220801_170711.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19225.0,23134.0,28711.0,N/A,NA19468,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,36.08,36078102199.0,1460854.0,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,20784.0,25526.0,31682.0,SRR30151934,N/A,N/A,N/A,N/A,N/A,SAMN37797093,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220927_182256.demultiplex.bc1008--bc1008.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19468_PB1_m54306Ue_220927_182256_m54306Ue_220927_182256,single,size fractionation,GENOMIC,WGS,51751.0,24769.0,127.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/primrose/m54306Ue_220927_182256.demultiplex.bc1008--bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19326.0,23325.0,28833.0,N/A,NA19468,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,16.69,16691743838.0,673872.0,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18156.0,22267.0,27731.0,SRR30151923,N/A,N/A,N/A,N/A,N/A,SAMN37797092,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220815_144205.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19391_PB1_m54306Ue_220815_144205_m54306Ue_220815_144205,single,size fractionation,GENOMIC,WGS,51001.0,21768.0,201.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19391/raw_data/PacBio_HiFi/primrose/m54306Ue_220815_144205.5mc.hifi_reads.bam,PACBIO_SMRT,P2,16933.0,20359.0,25126.0,N/A,NA19391,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,39.42,39421303285.0,1810918.0,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18006.0,22062.0,27437.0,SRR30151980,N/A,N/A,N/A,N/A,N/A,SAMN37797092,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220819_173115.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19391_PB1_m64330e_220819_173115_m64330e_220819_173115,single,size fractionation,GENOMIC,WGS,51241.0,21572.0,120.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19391/raw_data/PacBio_HiFi/primrose/m64330e_220819_173115.5mc.hifi_reads.bam,PACBIO_SMRT,P2,16812.0,20182.0,24910.0,N/A,NA19391,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,39.22,39223153519.0,1818202.0,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18754.0,22985.0,28384.0,SRR30151969,N/A,N/A,N/A,N/A,N/A,SAMN37797092,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220819_174259.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19391_PB1_m64334e_220819_174259_m64334e_220819_174259,single,size fractionation,GENOMIC,WGS,51485.0,22350.0,117.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19391/raw_data/PacBio_HiFi/primrose/m64334e_220819_174259.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17435.0,21060.0,25897.0,N/A,NA19391,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,37.44,37436208846.0,1674963.0,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,21674.0,26831.0,33148.0,SRR30152005,N/A,N/A,N/A,N/A,N/A,SAMN37797110,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220817_100412.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03470_PB1_m54306Ue_220817_100412_m54306Ue_220817_100412,single,size fractionation,GENOMIC,WGS,51522.0,25686.0,96.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03470/raw_data/PacBio_HiFi/primrose/m54306Ue_220817_100412.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19883.0,24417.0,30230.0,N/A,HG03470,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,38.14,38139494892.0,1484828.0,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,21598.0,26821.0,33247.0,SRR30151960,N/A,N/A,N/A,N/A,N/A,SAMN37797110,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220819_070258.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03470_PB1_m54306Ue_220819_070258_m54306Ue_220819_070258,single,size fractionation,GENOMIC,WGS,51534.0,25644.0,104.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03470/raw_data/PacBio_HiFi/primrose/m54306Ue_220819_070258.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19763.0,24349.0,30243.0,N/A,HG03470,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,45.15,45154689797.0,1760828.0,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,21306.0,26421.0,32901.0,SRR30151959,N/A,N/A,N/A,N/A,N/A,SAMN37797110,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220803_140136.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03470_PB1_m64330e_220803_140136_m64330e_220803_140136,single,size fractionation,GENOMIC,WGS,51631.0,25375.0,101.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03470/raw_data/PacBio_HiFi/primrose/m64330e_220803_140136.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19567.0,23991.0,29824.0,N/A,HG03470,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,43.07,43068072066.0,1697249.0,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,20032.0,24079.0,29330.0,SRR30151958,N/A,N/A,N/A,N/A,N/A,SAMN37797100,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220920_175231.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01784_PB1_m64055e_220920_175231_m64055e_220920_175231,single,size fractionation,GENOMIC,WGS,51040.0,23614.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01784/raw_data/PacBio_HiFi/primrose/m64055e_220920_175231.5mc.hifi_reads.bam,PACBIO_SMRT,P2,18899.0,22354.0,27082.0,N/A,HG01784,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,38.31,38314696847.0,1622540.0,N/A,HG01784,SAMN37797100,,IBS,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,20642.0,24889.0,30216.0,SRR30151957,N/A,N/A,N/A,N/A,N/A,SAMN37797100,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220922_130045.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01784_PB1_m64055e_220922_130045_m64055e_220922_130045,single,size fractionation,GENOMIC,WGS,50998.0,24281.0,133.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01784/raw_data/PacBio_HiFi/primrose/m64055e_220922_130045.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19395.0,23096.0,27956.0,N/A,HG01784,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,41.39,41388556948.0,1704532.0,N/A,HG01784,SAMN37797100,,IBS,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,20091.0,24148.0,29428.0,SRR30151956,N/A,N/A,N/A,N/A,N/A,SAMN37797100,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220917_122517.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01784_PB1_m64330e_220917_122517_m64330e_220917_122517,single,size fractionation,GENOMIC,WGS,51590.0,23692.0,124.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01784/raw_data/PacBio_HiFi/primrose/m64330e_220917_122517.5mc.hifi_reads.bam,PACBIO_SMRT,P2,18958.0,22422.0,27156.0,N/A,HG01784,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,40.68,40678518461.0,1716965.0,N/A,HG01784,SAMN37797100,,IBS,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19953.0,23857.0,29002.0,SRR30151955,N/A,N/A,N/A,N/A,N/A,SAMN37797089,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220907_175549.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19159_PB1_m54306Ue_220907_175549_m54306Ue_220907_175549,single,size fractionation,GENOMIC,WGS,51147.0,23508.0,149.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19159/raw_data/PacBio_HiFi/primrose/m54306Ue_220907_175549.5mc.hifi_reads.bam,PACBIO_SMRT,P2,18929.0,22239.0,26862.0,N/A,NA19159,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,46.23,46232897055.0,1966632.0,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19192.0,22692.0,27606.0,SRR30151954,N/A,N/A,N/A,N/A,N/A,SAMN37797089,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220902_175209.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19159_PB1_m64330e_220902_175209_m64330e_220902_175209,single,size fractionation,GENOMIC,WGS,50954.0,22576.0,280.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19159/raw_data/PacBio_HiFi/primrose/m64330e_220902_175209.5mc.hifi_reads.bam,PACBIO_SMRT,P2,18342.0,21256.0,25536.0,N/A,NA19159,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,46.1,46101493223.0,2042024.0,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,20178.0,24160.0,29330.0,SRR30151953,N/A,N/A,N/A,N/A,N/A,SAMN37797089,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220907_175418.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19159_PB1_m64334e_220907_175418_m64334e_220907_175418,single,size fractionation,GENOMIC,WGS,51316.0,23768.0,250.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19159/raw_data/PacBio_HiFi/primrose/m64334e_220907_175418.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19119.0,22514.0,27187.0,N/A,NA19159,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,46.8,46798237500.0,1968924.0,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17699.0,20108.0,23537.0,SRR30151952,N/A,N/A,N/A,N/A,N/A,SAMN37797111,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220917_121508.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03742_PB1_m64055e_220917_121508_m64055e_220917_121508,single,size fractionation,GENOMIC,WGS,50482.0,20213.0,115.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03742/raw_data/PacBio_HiFi/primrose/m64055e_220917_121508.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17216.0,19303.0,22351.0,N/A,HG03742,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,45.06,45064274340.0,2229418.0,N/A,HG03742,SAMN37797111,,ITU,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17708.0,20105.0,23518.0,SRR30151950,N/A,N/A,N/A,N/A,N/A,SAMN37797111,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220924_080740.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03742_PB1_m64055e_220924_080740_m64055e_220924_080740,single,size fractionation,GENOMIC,WGS,50753.0,20204.0,149.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03742/raw_data/PacBio_HiFi/primrose/m64055e_220924_080740.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17228.0,19313.0,22345.0,N/A,HG03742,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,41.7,41703134220.0,2064034.0,N/A,HG03742,SAMN37797111,,ITU,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19374.0,23540.0,28841.0,SRR30151949,N/A,N/A,N/A,N/A,N/A,SAMN37797094,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220920_181216.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA20799_PB1_m54306Ue_220920_181216_m54306Ue_220920_181216,single,size fractionation,GENOMIC,WGS,50956.0,22964.0,158.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/primrose/m54306Ue_220920_181216.5mc.hifi_reads.bam,PACBIO_SMRT,P2,18152.0,21713.0,26511.0,N/A,NA20799,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,35.58,35581760637.0,1549427.0,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19341.0,23513.0,28801.0,SRR30151948,N/A,N/A,N/A,N/A,N/A,SAMN37797094,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220922_132103.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA20799_PB1_m54306Ue_220922_132103_m54306Ue_220922_132103,single,size fractionation,GENOMIC,WGS,50995.0,22921.0,360.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/primrose/m54306Ue_220922_132103.5mc.hifi_reads.bam,PACBIO_SMRT,P2,18114.0,21678.0,26484.0,N/A,NA20799,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,33.58,33578377768.0,1464951.0,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18704.0,22598.0,27683.0,SRR30151947,N/A,N/A,N/A,N/A,N/A,SAMN37797094,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220927_182256.demultiplex.bc1018--bc1018.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA20799_PB1_m54306Ue_220927_182256_m54306Ue_220927_182256,single,size fractionation,GENOMIC,WGS,51136.0,22156.0,774.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/primrose/m54306Ue_220927_182256.demultiplex.bc1018--bc1018.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17614.0,20895.0,25431.0,N/A,NA20799,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,17.95,17947625220.0,810053.0,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16326.0,18388.0,21348.0,SRR30151945,N/A,N/A,N/A,N/A,N/A,SAMN37797099,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220915_170505.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01530_PB1_m64055e_220915_170505_m64055e_220915_170505,single,size fractionation,GENOMIC,WGS,50604.0,18528.0,282.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/primrose/m64055e_220915_170505.5mc.hifi_reads.bam,PACBIO_SMRT,P2,15897.0,17719.0,20321.0,N/A,HG01530,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,47.23,47227190614.0,2548955.0,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16427.0,18530.0,21529.0,SRR30151944,N/A,N/A,N/A,N/A,N/A,SAMN37797099,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220920_180418.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01530_PB1_m64334e_220920_180418_m64334e_220920_180418,single,size fractionation,GENOMIC,WGS,50671.0,18655.0,183.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/primrose/m64334e_220920_180418.5mc.hifi_reads.bam,PACBIO_SMRT,P2,15989.0,17845.0,20490.0,N/A,HG01530,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,43.81,43813649115.0,2348559.0,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16626.0,18864.0,22028.0,SRR30151943,N/A,N/A,N/A,N/A,N/A,SAMN37797099,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220922_131140.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01530_PB1_m64334e_220922_131140_m64334e_220922_131140,single,size fractionation,GENOMIC,WGS,50739.0,18965.0,155.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/primrose/m64334e_220922_131140.5mc.hifi_reads.bam,PACBIO_SMRT,P2,16152.0,18115.0,20910.0,N/A,HG01530,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,45.96,45963012660.0,2423499.0,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17571.0,20578.0,25009.0,SRR30151942,N/A,N/A,N/A,N/A,N/A,SAMN37797087,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220902_172744.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19087_PB1_m54306Ue_220902_172744_m54306Ue_220902_172744,single,size fractionation,GENOMIC,WGS,51672.0,20569.0,194.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19087/raw_data/PacBio_HiFi/primrose/m54306Ue_220902_172744.5mc.hifi_reads.bam,PACBIO_SMRT,P2,16836.0,19341.0,23111.0,N/A,NA19087,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,46.22,46222507016.0,2247170.0,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17946.0,21148.0,25684.0,SRR30151941,N/A,N/A,N/A,N/A,N/A,SAMN37797087,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220911_090142.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19087_PB1_m64055e_220911_090142_m64055e_220911_090142,single,size fractionation,GENOMIC,WGS,51572.0,21059.0,108.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19087/raw_data/PacBio_HiFi/primrose/m64055e_220911_090142.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17157.0,19831.0,23769.0,N/A,NA19087,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,38.87,38868364644.0,1845688.0,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17863.0,21032.0,25559.0,SRR30151939,N/A,N/A,N/A,N/A,N/A,SAMN37797087,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220913_060032.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19087_PB1_m64055e_220913_060032_m64055e_220913_060032,single,size fractionation,GENOMIC,WGS,50665.0,20959.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19087/raw_data/PacBio_HiFi/primrose/m64055e_220913_060032.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17081.0,19722.0,23638.0,N/A,NA19087,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,43.58,43576607076.0,2079114.0,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18221.0,22357.0,27569.0,SRR30151938,N/A,N/A,N/A,N/A,N/A,SAMN37797086,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220821_125227.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA18570_PB1_m64330e_220821_125227_m64330e_220821_125227,single,size fractionation,GENOMIC,WGS,51264.0,21640.0,172.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18570/raw_data/PacBio_HiFi/primrose/m64330e_220821_125227.5mc.hifi_reads.bam,PACBIO_SMRT,P2,16869.0,20469.0,25180.0,N/A,NA18570,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,46.05,46050591401.0,2127986.0,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17826.0,21773.0,26898.0,SRR30152003,N/A,N/A,N/A,N/A,N/A,SAMN37797086,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220815_142753.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA18570_PB1_m64334e_220815_142753_m64334e_220815_142753,single,size fractionation,GENOMIC,WGS,50893.0,21204.0,112.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18570/raw_data/PacBio_HiFi/primrose/m64334e_220815_142753.5mc.hifi_reads.bam,PACBIO_SMRT,P2,16585.0,19988.0,24514.0,N/A,NA18570,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,42.43,42430166886.0,2001019.0,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,21259.0,26063.0,31632.0,SRR30152004,N/A,N/A,N/A,N/A,N/A,SAMN37797086,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220821_130100.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA18570_PB1_m64334e_220821_130100_m64334e_220821_130100,single,size fractionation,GENOMIC,WGS,51332.0,24787.0,102.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18570/raw_data/PacBio_HiFi/primrose/m64334e_220821_130100.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19456.0,23910.0,29238.0,N/A,NA18570,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,43.94,43938908016.0,1772623.0,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,20143.0,24968.0,30987.0,SRR30151937,N/A,N/A,N/A,N/A,N/A,SAMN37797104,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220821_023435.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02391_PB1_m54306Ue_220821_023435_m54306Ue_220821_023435,single,size fractionation,GENOMIC,WGS,51847.0,24015.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02391/raw_data/PacBio_HiFi/primrose/m54306Ue_220821_023435.5mc.hifi_reads.bam,PACBIO_SMRT,P2,18550.0,22683.0,28174.0,N/A,HG02391,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,45.86,45855625550.0,1909393.0,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19902.0,24632.0,30676.0,SRR30151981,N/A,N/A,N/A,N/A,N/A,SAMN37797104,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220821_033925.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02391_PB1_m64055e_220821_033925_m64055e_220821_033925,single,size fractionation,GENOMIC,WGS,51343.0,23767.0,136.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02391/raw_data/PacBio_HiFi/primrose/m64055e_220821_033925.5mc.hifi_reads.bam,PACBIO_SMRT,P2,18349.0,22387.0,27807.0,N/A,HG02391,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,45.99,45992454620.0,1935113.0,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,22058.0,27323.0,33685.0,SRR30151982,N/A,N/A,N/A,N/A,N/A,SAMN37797104,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220805_094849.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02391_PB1_m64330e_220805_094849_m64330e_220805_094849,single,size fractionation,GENOMIC,WGS,51754.0,26048.0,133.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02391/raw_data/PacBio_HiFi/primrose/m64330e_220805_094849.5mc.hifi_reads.bam,PACBIO_SMRT,P2,20160.0,24855.0,30793.0,N/A,HG02391,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,41.88,41882544788.0,1607865.0,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17926.0,21181.0,25680.0,SRR30151983,N/A,N/A,N/A,N/A,N/A,SAMN37797090,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220902_174345.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19185_PB1_m64055e_220902_174345_m64055e_220902_174345,single,size fractionation,GENOMIC,WGS,50610.0,20991.0,183.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19185/raw_data/PacBio_HiFi/primrose/m64055e_220902_174345.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17086.0,19845.0,23785.0,N/A,NA19185,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,46.99,46990376639.0,2238569.0,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18316.0,21760.0,26387.0,SRR30151984,N/A,N/A,N/A,N/A,N/A,SAMN37797090,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220907_174608.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19185_PB1_m64055e_220907_174608_m64055e_220907_174608,single,size fractionation,GENOMIC,WGS,50723.0,21473.0,109.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19185/raw_data/PacBio_HiFi/primrose/m64055e_220907_174608.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17400.0,20338.0,24443.0,N/A,NA19185,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,45.76,45757724576.0,2130932.0,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18242.0,21711.0,26372.0,SRR30151985,N/A,N/A,N/A,N/A,N/A,SAMN37797090,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220909_131447.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19185_PB1_m64055e_220909_131447_m64055e_220909_131447,single,size fractionation,GENOMIC,WGS,50759.0,21415.0,126.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19185/raw_data/PacBio_HiFi/primrose/m64055e_220909_131447.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17323.0,20261.0,24406.0,N/A,NA19185,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,50.32,50319900835.0,2349733.0,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18095.0,21772.0,26657.0,SRR30151987,N/A,N/A,N/A,N/A,N/A,SAMN37797109,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220815_142254.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03458_PB1_m64055e_220815_142254_m64055e_220815_142254,single,size fractionation,GENOMIC,WGS,50474.0,21425.0,137.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03458/raw_data/PacBio_HiFi/primrose/m64055e_220815_142254.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17077.0,20196.0,24502.0,N/A,HG03458,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,46.17,46167929306.0,2154798.0,N/A,HG03458,SAMN37797109,,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18525.0,22413.0,27409.0,SRR30151988,N/A,N/A,N/A,N/A,N/A,SAMN37797109,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220823_081200.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03458_PB1_m64330e_220823_081200_m64330e_220823_081200,single,size fractionation,GENOMIC,WGS,50617.0,21919.0,120.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03458/raw_data/PacBio_HiFi/primrose/m64330e_220823_081200.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17398.0,20738.0,25237.0,N/A,HG03458,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,44.45,44445899486.0,2027705.0,N/A,HG03458,SAMN37797109,,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,20975.0,25664.0,31158.0,SRR30151989,N/A,N/A,N/A,N/A,N/A,SAMN37797109,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220823_095812.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03458_PB1_m64334e_220823_095812_m64334e_220823_095812,single,size fractionation,GENOMIC,WGS,50787.0,24571.0,135.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03458/raw_data/PacBio_HiFi/primrose/m64334e_220823_095812.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19355.0,23610.0,28841.0,N/A,HG03458,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,31.61,31613679548.0,1286621.0,N/A,HG03458,SAMN37797109,,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18810.0,21897.0,26236.0,SRR30151990,N/A,N/A,N/A,N/A,N/A,SAMN37797098,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220228_165421.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01252_PB1_m54306Ue_220228_165421_m54306Ue_220228_165421,single,size fractionation,GENOMIC,WGS,59699.0,21896.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/primrose/m54306Ue_220228_165421.5mc.hifi_reads.bam,PACBIO_SMRT,P2,18118.0,20727.0,24554.0,N/A,HG01252,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,22.28,22283872315.0,1017689.0,N/A,HG01252,SAMN37797098,CLM14,CLM,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16124.0,19792.0,24328.0,SRR30151991,N/A,N/A,N/A,N/A,N/A,SAMN37797098,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220419_182803.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01252_PB1_m54306Ue_220419_182803_m54306Ue_220419_182803,single,size fractionation,GENOMIC,WGS,62179.0,19034.0,174.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/primrose/m54306Ue_220419_182803.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14832.0,18086.0,22223.0,N/A,HG01252,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,25.06,25064791757.0,1316796.0,N/A,HG01252,SAMN37797098,CLM14,CLM,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15342.0,19265.0,24261.0,SRR30151992,N/A,N/A,N/A,N/A,N/A,SAMN37797098,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220306_155049.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01252_PB1_m64330e_220306_155049_m64330e_220306_155049,single,size fractionation,GENOMIC,WGS,64212.0,18361.0,145.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/primrose/m64330e_220306_155049.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13922.0,17239.0,21719.0,N/A,HG01252,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,23.23,23231673726.0,1265271.0,N/A,HG01252,SAMN37797098,CLM14,CLM,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16164.0,19802.0,24344.0,SRR30151993,N/A,N/A,N/A,N/A,N/A,SAMN37797098,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220414_054422.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01252_PB1_m64330e_220414_054422_m64330e_220414_054422,single,size fractionation,GENOMIC,WGS,58714.0,19073.0,191.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/primrose/m64330e_220414_054422.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14898.0,18124.0,22227.0,N/A,HG01252,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,23.1,23100441860.0,1211135.0,N/A,HG01252,SAMN37797098,CLM14,CLM,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16137.0,19822.0,24377.0,SRR30151994,N/A,N/A,N/A,N/A,N/A,SAMN37797098,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220419_183840.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01252_PB1_m64334e_220419_183840_m64334e_220419_183840,single,size fractionation,GENOMIC,WGS,58849.0,19056.0,65.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/primrose/m64334e_220419_183840.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14842.0,18100.0,22252.0,N/A,HG01252,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,22.37,22373384029.0,1174065.0,N/A,HG01252,SAMN37797098,CLM14,CLM,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,20005.0,23515.0,28513.0,SRR30151995,N/A,N/A,N/A,N/A,N/A,SAMN37797103,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220227_055825.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01969_PB1_m54306Ue_220227_055825_m54306Ue_220227_055825,single,size fractionation,GENOMIC,WGS,66510.0,23473.0,65.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m54306Ue_220227_055825.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19182.0,22126.0,26462.0,N/A,HG01969,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,18.94,18938830210.0,806826.0,N/A,HG01969,SAMN37797103,PEL023,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19961.0,23516.0,28660.0,SRR30151996,N/A,N/A,N/A,N/A,N/A,SAMN37797103,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220422_144937.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01969_PB1_m54306Ue_220422_144937_m54306Ue_220422_144937,single,size fractionation,GENOMIC,WGS,67665.0,23494.0,81.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m54306Ue_220422_144937.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19132.0,22078.0,26505.0,N/A,HG01969,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,34.02,34020179111.0,1448031.0,N/A,HG01969,SAMN37797103,PEL023,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14458.0,18834.0,24059.0,SRR30151998,N/A,N/A,N/A,N/A,N/A,SAMN37797103,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220506_051029.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01969_PB1_m64055e_220506_051029_m64055e_220506_051029,single,size fractionation,GENOMIC,WGS,59034.0,17632.0,50.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m64055e_220506_051029.5mc.hifi_reads.bam,PACBIO_SMRT,P2,12784.0,16415.0,21199.0,N/A,HG01969,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,22.29,22292378612.0,1264297.0,N/A,HG01969,SAMN37797103,PEL023,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15786.0,20122.0,25672.0,SRR30151999,N/A,N/A,N/A,N/A,N/A,SAMN37797103,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220305_053001.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01969_PB1_m64330e_220305_053001_m64330e_220305_053001,single,size fractionation,GENOMIC,WGS,61742.0,19007.0,67.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m64330e_220305_053001.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14113.0,17751.0,22635.0,N/A,HG01969,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,14.85,14847062963.0,781108.0,N/A,HG01969,SAMN37797103,PEL023,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,13123.0,14675.0,16767.0,SRR30152000,N/A,N/A,N/A,N/A,N/A,SAMN37797103,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220415_144515.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01969_PB1_m64334e_220415_144515_m64334e_220415_144515,single,size fractionation,GENOMIC,WGS,39606.0,14532.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m64334e_220415_144515.5mc.hifi_reads.bam,PACBIO_SMRT,P2,12750.0,14187.0,16103.0,N/A,HG01969,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,9.5,9504330901.0,654022.0,N/A,HG01969,SAMN37797103,PEL023,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14473.0,18855.0,24088.0,SRR30152001,N/A,N/A,N/A,N/A,N/A,SAMN37797103,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220517_182131.demultiplex.bc1002--bc1002.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01969_PB1_m64055e_220517_182131_m64055e_220517_182131,single,size fractionation,GENOMIC,WGS,54635.0,17628.0,58.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m64055e_220517_182131.demultiplex.bc1002--bc1002.5mc.hifi_reads.bam,PACBIO_SMRT,P2,12768.0,16429.0,21229.0,N/A,HG01969,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,9.72,9719026793.0,551333.0,N/A,HG01969,SAMN37797103,PEL023,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15905.0,19420.0,23852.0,SRR30152002,N/A,N/A,N/A,N/A,N/A,SAMN37797097,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220312_183407.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01150_PB1_m64330e_220312_183407_m64330e_220312_183407,single,size fractionation,GENOMIC,WGS,64946.0,18733.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/primrose/m64330e_220312_183407.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14701.0,17803.0,21821.0,N/A,HG01150,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,33.48,33479741334.0,1787204.0,N/A,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15732.0,19188.0,23536.0,SRR30151917,N/A,N/A,N/A,N/A,N/A,SAMN37797097,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220314_040416.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01150_PB1_m64330e_220314_040416_m64330e_220314_040416,single,size fractionation,GENOMIC,WGS,60687.0,18518.0,70.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/primrose/m64330e_220314_040416.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14558.0,17608.0,21543.0,N/A,HG01150,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,30.98,30983320047.0,1673110.0,N/A,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15574.0,18928.0,23149.0,SRR30151916,N/A,N/A,N/A,N/A,N/A,SAMN37797097,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220306_054934.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01150_PB1_m64334e_220306_054934_m64334e_220306_054934,single,size fractionation,GENOMIC,WGS,64797.0,18306.0,79.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/primrose/m64334e_220306_054934.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14448.0,17415.0,21235.0,N/A,HG01150,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,32.27,32272473361.0,1762889.0,N/A,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15385.0,18565.0,22532.0,SRR30151915,N/A,N/A,N/A,N/A,N/A,SAMN37797097,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220402_052301.demultiplex.bc1015--bc1015.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01150_PB1_m54306Ue_220402_052301_m54306Ue_220402_052301,single,size fractionation,GENOMIC,WGS,56471.0,18047.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/primrose/m54306Ue_220402_052301.demultiplex.bc1015--bc1015.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14369.0,17200.0,20806.0,N/A,HG01150,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,7.58,7580552350.0,420036.0,N/A,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15476.0,18801.0,22940.0,SRR30151936,N/A,N/A,N/A,N/A,N/A,SAMN37797097,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220412_183749.demultiplex.bc1015--bc1015.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01150_PB1_m64334e_220412_183749_m64334e_220412_183749,single,size fractionation,GENOMIC,WGS,56437.0,18210.0,785.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/primrose/m64334e_220412_183749.demultiplex.bc1015--bc1015.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14398.0,17328.0,21106.0,N/A,HG01150,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,9.69,9693198556.0,532298.0,N/A,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19556.0,23027.0,27873.0,SRR30151935,N/A,N/A,N/A,N/A,N/A,SAMN37797105,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220225_190349.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02514_PB1_m54306Ue_220225_190349_m54306Ue_220225_190349,single,size fractionation,GENOMIC,WGS,64880.0,22999.0,192.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/primrose/m54306Ue_220225_190349.5mc.hifi_reads.bam,PACBIO_SMRT,P2,18761.0,21654.0,25900.0,N/A,HG02514,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,15.67,15671912691.0,681405.0,N/A,HG02514,SAMN37797105,VN087,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,13866.0,16492.0,19847.0,SRR30151933,N/A,N/A,N/A,N/A,N/A,SAMN37797105,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220421_052313.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02514_PB1_m54306Ue_220421_052313_m54306Ue_220421_052313,single,size fractionation,GENOMIC,WGS,58533.0,16135.0,79.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/primrose/m54306Ue_220421_052313.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13090.0,15426.0,18468.0,N/A,HG02514,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,31.69,31688645215.0,1963936.0,N/A,HG02514,SAMN37797105,VN087,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16222.0,20266.0,25410.0,SRR30151932,N/A,N/A,N/A,N/A,N/A,SAMN37797105,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220303_183543.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02514_PB1_m64330e_220303_183543_m64330e_220303_183543,single,size fractionation,GENOMIC,WGS,58548.0,19417.0,293.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/primrose/m64330e_220303_183543.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14789.0,18234.0,22842.0,N/A,HG02514,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,14.01,14011797437.0,721617.0,N/A,HG02514,SAMN37797105,VN087,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14002.0,16628.0,19975.0,SRR30151931,N/A,N/A,N/A,N/A,N/A,SAMN37797105,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220417_033652.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02514_PB1_m64330e_220417_033652_m64330e_220417_033652,single,size fractionation,GENOMIC,WGS,57274.0,16268.0,79.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/primrose/m64330e_220417_033652.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13228.0,15572.0,18615.0,N/A,HG02514,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,30.94,30936543655.0,1901650.0,N/A,HG02514,SAMN37797105,VN087,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14597.0,17508.0,21137.0,SRR30151930,N/A,N/A,N/A,N/A,N/A,SAMN37797105,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220426_185110.demultiplex.bc1001--bc1001.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02514_PB1_m64334e_220426_185110_m64334e_220426_185110,single,size fractionation,GENOMIC,WGS,58871.0,17012.0,54.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/primrose/m64334e_220426_185110.demultiplex.bc1001--bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13692.0,16299.0,19638.0,N/A,HG02514,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,15.82,15823874531.0,930158.0,N/A,HG02514,SAMN37797105,VN087,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14806.0,18269.0,22720.0,SRR30151929,N/A,N/A,N/A,N/A,N/A,SAMN37797096,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220304_184221.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00658_PB1_m64055e_220304_184221_m64055e_220304_184221,single,size fractionation,GENOMIC,WGS,59283.0,17506.0,176.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64055e_220304_184221.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13570.0,16565.0,20560.0,N/A,HG00658,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,18.92,18919774271.0,1080733.0,N/A,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,13569.0,15866.0,18763.0,SRR30151928,N/A,N/A,N/A,N/A,N/A,SAMN37797096,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220403_045718.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00658_PB1_m64055e_220403_045718_m64055e_220403_045718,single,size fractionation,GENOMIC,WGS,51430.0,15292.0,159.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64055e_220403_045718.5mc.hifi_reads.bam,PACBIO_SMRT,P2,12772.0,14937.0,17615.0,N/A,HG00658,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,15.08,15083805889.0,986362.0,N/A,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14163.0,17908.0,22590.0,SRR30151927,N/A,N/A,N/A,N/A,N/A,SAMN37797096,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220504_181614.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00658_PB1_m64055e_220504_181614_m64055e_220504_181614,single,size fractionation,GENOMIC,WGS,57037.0,17086.0,87.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64055e_220504_181614.5mc.hifi_reads.bam,PACBIO_SMRT,P2,12858.0,15976.0,20204.0,N/A,HG00658,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,18.06,18061539277.0,1057088.0,N/A,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19278.0,21837.0,25662.0,SRR30151926,N/A,N/A,N/A,N/A,N/A,SAMN37797096,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220225_192221.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00658_PB1_m64330e_220225_192221_m64330e_220225_192221,single,size fractionation,GENOMIC,WGS,57048.0,22096.0,193.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64330e_220225_192221.5mc.hifi_reads.bam,PACBIO_SMRT,P2,18818.0,20985.0,24337.0,N/A,HG00658,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,16.11,16114668851.0,729270.0,N/A,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15053.0,18478.0,22690.0,SRR30151925,N/A,N/A,N/A,N/A,N/A,SAMN37797096,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220512_181140.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00658_PB1_m64330e_220512_181140_m64330e_220512_181140,single,size fractionation,GENOMIC,WGS,60879.0,17679.0,144.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64330e_220512_181140.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13762.0,16859.0,20701.0,N/A,HG00658,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,23.51,23514775757.0,1330043.0,N/A,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16006.0,19569.0,23831.0,SRR30151924,N/A,N/A,N/A,N/A,N/A,SAMN37797096,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220429_152228.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00658_PB1_m64334e_220429_152228_m64334e_220429_152228,single,size fractionation,GENOMIC,WGS,55657.0,18616.0,189.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64334e_220429_152228.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14474.0,17995.0,21851.0,N/A,HG00658,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,19.62,19615164107.0,1053649.0,N/A,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15279.0,19180.0,23888.0,SRR30151922,N/A,N/A,N/A,N/A,N/A,SAMN37797101,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220415_164034.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01940_PB1_m64330e_220415_164034_m64330e_220415_164034,single,size fractionation,GENOMIC,WGS,65173.0,18142.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/primrose/m64330e_220415_164034.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13734.0,17201.0,21523.0,N/A,HG01940,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,29.85,29848671416.0,1645196.0,N/A,HG01940,SAMN37797101,PEL015,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14439.0,17758.0,22314.0,SRR30151921,N/A,N/A,N/A,N/A,N/A,SAMN37797101,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220304_185513.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01940_PB1_m64334e_220304_185513_m64334e_220304_185513,single,size fractionation,GENOMIC,WGS,65765.0,17273.0,259.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/primrose/m64334e_220304_185513.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13327.0,16162.0,19984.0,N/A,HG01940,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,13.93,13930028444.0,806419.0,N/A,HG01940,SAMN37797101,PEL015,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15588.0,19553.0,24314.0,SRR30151920,N/A,N/A,N/A,N/A,N/A,SAMN37797101,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220422_151506.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01940_PB1_m64334e_220422_151506_m64334e_220422_151506,single,size fractionation,GENOMIC,WGS,65732.0,18473.0,96.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/primrose/m64334e_220422_151506.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13989.0,17542.0,21933.0,N/A,HG01940,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,30.25,30248862465.0,1637435.0,N/A,HG01940,SAMN37797101,PEL015,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15517.0,19434.0,24124.0,SRR30151919,N/A,N/A,N/A,N/A,N/A,SAMN37797101,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220424_021126.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01940_PB1_m64334e_220424_021126_m64334e_220424_021126,single,size fractionation,GENOMIC,WGS,68924.0,18380.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/primrose/m64334e_220424_021126.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13961.0,17465.0,21800.0,N/A,HG01940,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,28.71,28711690224.0,1562113.0,N/A,HG01940,SAMN37797101,PEL015,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16610.0,20898.0,25978.0,SRR30151918,N/A,N/A,N/A,N/A,N/A,SAMN37797101,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220426_185110.demultiplex.bc1010--bc1010.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01940_PB1_m64334e_220426_185110_m64334e_220426_185110,single,size fractionation,GENOMIC,WGS,64624.0,19757.0,63.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/primrose/m64334e_220426_185110.demultiplex.bc1010--bc1010.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14933.0,18729.0,23463.0,N/A,HG01940,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,8.17,8165347513.0,413272.0,N/A,HG01940,SAMN37797101,PEL015,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17390.0,19466.0,22350.0,SRR30151963,N/A,N/A,N/A,N/A,N/A,SAMN37797108,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220223_194839.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03050_PB1_m64330e_220223_194839_m64330e_220223_194839,single,size fractionation,GENOMIC,WGS,58639.0,19515.0,77.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/primrose/m64330e_220223_194839.5mc.hifi_reads.bam,PACBIO_SMRT,P2,16973.0,18843.0,21459.0,N/A,HG03050,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,35.58,35577169414.0,1823052.0,N/A,HG03050,SAMN37797108,GB113,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16859.0,19058.0,21925.0,SRR30151962,N/A,N/A,N/A,N/A,N/A,SAMN37797108,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220227_061615.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03050_PB1_m64330e_220227_061615_m64330e_220227_061615,single,size fractionation,GENOMIC,WGS,65131.0,19008.0,79.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/primrose/m64330e_220227_061615.5mc.hifi_reads.bam,PACBIO_SMRT,P2,16379.0,18387.0,21021.0,N/A,HG03050,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,31.23,31228629314.0,1642835.0,N/A,HG03050,SAMN37797108,GB113,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16673.0,18756.0,21449.0,SRR30151961,N/A,N/A,N/A,N/A,N/A,SAMN37797108,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220402_052301.demultiplex.bc1012--bc1012.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03050_PB1_m54306Ue_220402_052301_m54306Ue_220402_052301,single,size fractionation,GENOMIC,WGS,55017.0,18725.0,79.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/primrose/m54306Ue_220402_052301.demultiplex.bc1012--bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2,16230.0,18143.0,20624.0,N/A,HG03050,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,9.39,9392895139.0,501610.0,N/A,HG03050,SAMN37797108,GB113,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17264.0,19269.0,22047.0,SRR30151914,N/A,N/A,N/A,N/A,N/A,SAMN37797108,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220218_192631.bc1012--bc1012.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03050_PB1_m64330e_220218_192631_m64330e_220218_192631,single,size fractionation,GENOMIC,WGS,58329.0,19318.0,106.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/primrose/m64330e_220218_192631.bc1012--bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2,16864.0,18682.0,21201.0,N/A,HG03050,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.71,26710285393.0,1382611.0,N/A,HG03050,SAMN37797108,GB113,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16778.0,18950.0,21783.0,SRR30151913,N/A,N/A,N/A,N/A,N/A,SAMN37797108,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220407_180519.demultiplex.bc1012--bc1012.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03050_PB1_m64330e_220407_180519_m64330e_220407_180519,single,size fractionation,GENOMIC,WGS,62057.0,18910.0,123.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/primrose/m64330e_220407_180519.demultiplex.bc1012--bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2,16305.0,18292.0,20892.0,N/A,HG03050,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,10.89,10893343672.0,576036.0,N/A,HG03050,SAMN37797108,GB113,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18256.0,21241.0,25288.0,SRR30151979,N/A,N/A,N/A,N/A,N/A,SAMN37797107,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220223_194148.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02984_PB1_m54306Ue_220223_194148_m54306Ue_220223_194148,single,size fractionation,GENOMIC,WGS,65089.0,21219.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m54306Ue_220223_194148.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17591.0,20150.0,23760.0,N/A,HG02984,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,21.56,21557851977.0,1015947.0,N/A,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,13946.0,16107.0,18985.0,SRR30151978,N/A,N/A,N/A,N/A,N/A,SAMN37797107,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220403_050826.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02984_PB1_m64330e_220403_050826_m64330e_220403_050826,single,size fractionation,GENOMIC,WGS,48901.0,15979.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m64330e_220403_050826.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13408.0,15344.0,17937.0,N/A,HG02984,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,25.92,25922780932.0,1622283.0,N/A,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14336.0,17345.0,21044.0,SRR30151977,N/A,N/A,N/A,N/A,N/A,SAMN37797107,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220421_053305.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02984_PB1_m64334e_220421_053305_m64334e_220421_053305,single,size fractionation,GENOMIC,WGS,58810.0,16660.0,104.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m64334e_220421_053305.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13216.0,15998.0,19386.0,N/A,HG02984,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,22.72,22717109029.0,1363555.0,N/A,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14397.0,16928.0,20223.0,SRR30151976,N/A,N/A,N/A,N/A,N/A,SAMN37797107,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220428_054535.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02984_PB1_m64334e_220428_054535_m64334e_220428_054535,single,size fractionation,GENOMIC,WGS,57608.0,16626.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m64334e_220428_054535.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13681.0,15936.0,18923.0,N/A,HG02984,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,19.89,19889245475.0,1196204.0,N/A,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14292.0,17263.0,20935.0,SRR30151975,N/A,N/A,N/A,N/A,N/A,SAMN37797107,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220517_182131.demultiplex.bc1009--bc1009.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02984_PB1_m64055e_220517_182131_m64055e_220517_182131,single,size fractionation,GENOMIC,WGS,50187.0,16715.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m64055e_220517_182131.demultiplex.bc1009--bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13317.0,15970.0,19343.0,N/A,HG02984,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,2.0,2004239111.0,119906.0,N/A,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18050.0,20898.0,24783.0,SRR30151974,N/A,N/A,N/A,N/A,N/A,SAMN37797107,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220218_191452.bc1011--bc1011.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02984_PB1_m64334e_220218_191452_m64334e_220218_191452,single,size fractionation,GENOMIC,WGS,55371.0,20914.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m64334e_220218_191452.bc1011--bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17437.0,19878.0,23340.0,N/A,HG02984,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,17.42,17423268103.0,833071.0,N/A,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14059.0,16375.0,19439.0,SRR30151973,N/A,N/A,N/A,N/A,N/A,SAMN37797106,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220326_050928.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02841_PB1_m54306Ue_220326_050928_m54306Ue_220326_050928,single,size fractionation,GENOMIC,WGS,52400.0,16223.0,189.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/primrose/m54306Ue_220326_050928.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13479.0,15524.0,18296.0,N/A,HG02841,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,31.24,31236330105.0,1925403.0,N/A,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14095.0,16523.0,19677.0,SRR30151972,N/A,N/A,N/A,N/A,N/A,SAMN37797106,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220327_160600.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02841_PB1_m54306Ue_220327_160600_m54306Ue_220327_160600,single,size fractionation,GENOMIC,WGS,52304.0,16282.0,148.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/primrose/m54306Ue_220327_160600.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13449.0,15606.0,18475.0,N/A,HG02841,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,31.88,31882411301.0,1958075.0,N/A,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14048.0,16357.0,19398.0,SRR30151971,N/A,N/A,N/A,N/A,N/A,SAMN37797106,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220321_180258.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02841_PB1_m64334e_220321_180258_m64334e_220321_180258,single,size fractionation,GENOMIC,WGS,53376.0,16200.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/primrose/m64334e_220321_180258.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13472.0,15513.0,18265.0,N/A,HG02841,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,31.55,31549601858.0,1947398.0,N/A,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14039.0,16463.0,19604.0,SRR30151970,N/A,N/A,N/A,N/A,N/A,SAMN37797106,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220407_180519.demultiplex.bc1021--bc1021.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02841_PB1_m64330e_220407_180519_m64330e_220407_180519,single,size fractionation,GENOMIC,WGS,47984.0,16219.0,65.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/primrose/m64330e_220407_180519.demultiplex.bc1021--bc1021.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13397.0,15543.0,18406.0,N/A,HG02841,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,9.02,9018445903.0,556026.0,N/A,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,13963.0,16317.0,19383.0,SRR30151968,N/A,N/A,N/A,N/A,N/A,SAMN37797106,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220412_183749.demultiplex.bc1021--bc1021.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02841_PB1_m64334e_220412_183749_m64334e_220412_183749,single,size fractionation,GENOMIC,WGS,52702.0,16107.0,272.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/primrose/m64334e_220412_183749.demultiplex.bc1021--bc1021.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13350.0,15440.0,18231.0,N/A,HG02841,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,11.07,11067164812.0,687065.0,N/A,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15305.0,18636.0,22857.0,SRR30151967,N/A,N/A,N/A,N/A,N/A,SAMN37797102,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220409_033640.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01960_PB1_m54306Ue_220409_033640_m54306Ue_220409_033640,single,size fractionation,GENOMIC,WGS,62890.0,18090.0,145.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01960/raw_data/PacBio_HiFi/primrose/m54306Ue_220409_033640.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14273.0,17156.0,20995.0,N/A,HG01960,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,31.24,31237108828.0,1726705.0,N/A,HG01960,SAMN37797102,BB11,ACB,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15378.0,18739.0,22984.0,SRR30151966,N/A,N/A,N/A,N/A,N/A,SAMN37797102,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220410_130603.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01960_PB1_m54306Ue_220410_130603_m54306Ue_220410_130603,single,size fractionation,GENOMIC,WGS,63512.0,18177.0,145.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01960/raw_data/PacBio_HiFi/primrose/m54306Ue_220410_130603.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14334.0,17245.0,21110.0,N/A,HG01960,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.11,26111870066.0,1436508.0,N/A,HG01960,SAMN37797102,BB11,ACB,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15134.0,18373.0,22509.0,SRR30151965,N/A,N/A,N/A,N/A,N/A,SAMN37797102,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220401_181429.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01960_PB1_m64330e_220401_181429_m64330e_220401_181429,single,size fractionation,GENOMIC,WGS,58485.0,17874.0,192.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01960/raw_data/PacBio_HiFi/primrose/m64330e_220401_181429.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14152.0,16939.0,20683.0,N/A,HG01960,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.06,26059199917.0,1457859.0,N/A,HG01960,SAMN37797102,BB11,ACB,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15184.0,18465.0,22625.0,SRR30151964,N/A,N/A,N/A,N/A,N/A,SAMN37797102,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220412_185021.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01960_PB1_m64330e_220412_185021_m64330e_220412_185021,single,size fractionation,GENOMIC,WGS,58095.0,17945.0,79.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01960/raw_data/PacBio_HiFi/primrose/m64330e_220412_185021.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14185.0,17011.0,20793.0,N/A,HG01960,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,30.02,30024295514.0,1673071.0,N/A,HG01960,SAMN37797102,BB11,ACB,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18639.0,22531.0,27786.0,SRR30151946,N/A,N/A,N/A,N/A,N/A,SAMN37797094,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220915_165522.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA20799_PB1_ m64330e_220915_165522_ m64330e_220915_165522,single,size fractionation,GENOMIC,WGS,53388.0,22162.0,200.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/primrose/m64330e_220915_165522.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17565.0,20807.0,25422.0,N/A,NA20799,N/A,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,35.84,35836345492.0,1617007.0,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18804.0,23742.0,29607.0,SRR30336761,N/A,N/A,N/A,N/A,N/A,SAMN37797091,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230705_174256_s2.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19338_PB2_m84091_230705_174256_s2.hifi_reads.bc1002.bam,single,size fractionation,GENOMIC,WGS,70947.0,22498.0,53.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/m84091_230705_174256_s2.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,16955.0,21281.0,26737.0,N/A,NA19338,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,20.15,20149672331.0,895592.0,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19215.0,24378.0,30496.0,SRR30336760,N/A,N/A,N/A,N/A,N/A,SAMN37797091,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230705_184508_s4.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19338_PB2_m84091_230705_184508_s4.hifi_reads.bc1002.bam,single,size fractionation,GENOMIC,WGS,70626.0,23018.0,183.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/m84091_230705_184508_s4.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,17229.0,21762.0,27432.0,N/A,NA19338,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,19.7,19698176409.0,855746.0,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17667.0,20798.0,24872.0,SRR30336749,N/A,N/A,N/A,N/A,N/A,SAMN37797091,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231120_175800_s4.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19338_PB2_m84091_231120_175800_s4.hifi_reads.bc1002.bam,single,size fractionation,GENOMIC,WGS,59726.0,20554.0,118.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/m84091_231120_175800_s4.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,16868.0,19599.0,23288.0,N/A,NA19338,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,24.02,24019833389.0,1168582.0,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17111.0,19968.0,23768.0,SRR30336738,N/A,N/A,N/A,N/A,N/A,SAMN37797093,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231208_194716_s4.hifi_reads.bc1008.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19468_PB2_m84091_231208_194716_s4.hifi_reads.bc1008.bam,single,size fractionation,GENOMIC,WGS,61387.0,19848.0,145.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/m84091_231208_194716_s4.hifi_reads.bc1008.bam,PACBIO_SMRT,Revio P1,16434.0,18914.0,22327.0,N/A,NA19468,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,41.12,41116262569.0,2071540.0,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17152.0,20014.0,23806.0,SRR30336729,N/A,N/A,N/A,N/A,N/A,SAMN37797093,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231211_215746_s3.hifi_reads.bc1008.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19468_PB2_m84091_231211_215746_s3.hifi_reads.bc1008.bam,single,size fractionation,GENOMIC,WGS,54526.0,19887.0,259.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/m84091_231211_215746_s3.hifi_reads.bc1008.bam,PACBIO_SMRT,Revio P1,16468.0,18966.0,22377.0,N/A,NA19468,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,20.11,20112027354.0,1011292.0,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16504.0,18935.0,22196.0,SRR30336728,N/A,N/A,N/A,N/A,N/A,SAMN37797092,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231120_175800_s4.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19391_PB3_m84091_231120_175800_s4.hifi_reads.bc1015.bam,single,size fractionation,GENOMIC,WGS,57886.0,18839.0,130.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19391/raw_data/PacBio_HiFi/m84091_231120_175800_s4.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,15963.0,18107.0,21074.0,N/A,NA19391,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,70.91,70911019454.0,3763902.0,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,20781.0,25534.0,31304.0,SRR30336727,N/A,N/A,N/A,N/A,N/A,SAMN37797110,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230705_174256_s2.hifi_reads.bc1009.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03470_PB1_m84091_230705_174256_s2.hifi_reads.bc1009.bam,single,size fractionation,GENOMIC,WGS,70709.0,24497.0,110.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03470/raw_data/PacBio_HiFi/m84091_230705_174256_s2.hifi_reads.bc1009.bam,PACBIO_SMRT,Revio P1,19169.0,23378.0,28738.0,N/A,HG03470,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,34.3,34295733741.0,1399961.0,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,21189.0,26154.0,32139.0,SRR30336726,N/A,N/A,N/A,N/A,N/A,SAMN37797110,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230705_184508_s4.hifi_reads.bc1009.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03470_PB1_m84091_230705_184508_s4.hifi_reads.bc1009.bam,single,size fractionation,GENOMIC,WGS,68532.0,25009.0,217.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03470/raw_data/PacBio_HiFi/m84091_230705_184508_s4.hifi_reads.bc1009.bam,PACBIO_SMRT,Revio P1,19455.0,23857.0,29458.0,N/A,HG03470,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,34.11,34109597312.0,1363854.0,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15268.0,17021.0,19360.0,SRR30336725,N/A,N/A,N/A,N/A,N/A,SAMN37797100,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231120_182829_s1.hifi_reads.bc1019.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01784_PB2_m84091_231120_182829_s1.hifi_reads.bc1019.bam,single,size fractionation,GENOMIC,WGS,52530.0,17039.0,90.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01784/raw_data/PacBio_HiFi/m84091_231120_182829_s1.hifi_reads.bc1019.bam,PACBIO_SMRT,Revio P1,14937.0,16533.0,18694.0,N/A,HG01784,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,65.22,65222185255.0,3827674.0,N/A,HG01784,SAMN37797100,,IBS,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18976.0,22358.0,27020.0,SRR30336724,N/A,N/A,N/A,N/A,N/A,SAMN37797089,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230817_150246_s3.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19159_PB1_m84091_230817_150246_s3.hifi_reads.bc1015.bam,single,size fractionation,GENOMIC,WGS,63442.0,22237.0,176.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19159/raw_data/PacBio_HiFi/m84091_230817_150246_s3.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,18178.0,20997.0,25135.0,N/A,NA19159,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,23.69,23688286583.0,1065226.0,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15097.0,17203.0,20097.0,SRR30336759,N/A,N/A,N/A,N/A,N/A,SAMN37797111,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231120_193041_s3.hifi_reads.bc1020.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03742_PB2_m84091_231120_193041_s3.hifi_reads.bc1020.bam,single,size fractionation,GENOMIC,WGS,54431.0,17199.0,107.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03742/raw_data/PacBio_HiFi/m84091_231120_193041_s3.hifi_reads.bc1020.bam,PACBIO_SMRT,Revio P1,14656.0,16506.0,19130.0,N/A,HG03742,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,40.82,40822247506.0,2373463.0,N/A,HG03742,SAMN37797111,,ITU,SAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16917.0,19595.0,23188.0,SRR30336758,N/A,N/A,N/A,N/A,N/A,SAMN37797094,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231208_204928_s2.hifi_reads.bc1018.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA20799_PB2_m84091_231208_204928_s2.hifi_reads.bc1018.bam,single,size fractionation,GENOMIC,WGS,52733.0,19458.0,76.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/m84091_231208_204928_s2.hifi_reads.bc1018.bam,PACBIO_SMRT,Revio P1,16289.0,18624.0,21862.0,N/A,NA20799,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,37.47,37473687834.0,1925842.0,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16965.0,19657.0,23271.0,SRR30336757,N/A,N/A,N/A,N/A,N/A,SAMN37797094,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231211_215746_s3.hifi_reads.bc1018.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA20799_PB2_m84091_231211_215746_s3.hifi_reads.bc1018.bam,single,size fractionation,GENOMIC,WGS,51953.0,19533.0,124.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/m84091_231211_215746_s3.hifi_reads.bc1018.bam,PACBIO_SMRT,Revio P1,16340.0,18689.0,21929.0,N/A,NA20799,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,28.34,28344896301.0,1451118.0,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15304.0,17421.0,20764.0,SRR30336756,N/A,N/A,N/A,N/A,N/A,SAMN37797099,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231208_194716_s4.hifi_reads.bc1021.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01530_PB3_m84091_231208_194716_s4.hifi_reads.bc1021.bam,single,size fractionation,GENOMIC,WGS,62111.0,17682.0,152.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/m84091_231208_194716_s4.hifi_reads.bc1021.bam,PACBIO_SMRT,Revio P1,14890.0,16636.0,19456.0,N/A,HG01530,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,14.7,14704255771.0,831560.0,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15225.0,17248.0,20482.0,SRR30336755,N/A,N/A,N/A,N/A,N/A,SAMN37797099,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231208_201822_s1.hifi_reads.bc1021.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01530_PB3_m84091_231208_201822_s1.hifi_reads.bc1021.bam,single,size fractionation,GENOMIC,WGS,62777.0,17520.0,322.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/m84091_231208_201822_s1.hifi_reads.bc1021.bam,PACBIO_SMRT,Revio P1,14829.0,16525.0,19228.0,N/A,HG01530,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,9.67,9669215846.0,551869.0,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15296.0,17395.0,20730.0,SRR30336754,N/A,N/A,N/A,N/A,N/A,SAMN37797099,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231208_204928_s2.hifi_reads.bc1021.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01530_PB3_m84091_231208_204928_s2.hifi_reads.bc1021.bam,single,size fractionation,GENOMIC,WGS,57614.0,17660.0,192.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/m84091_231208_204928_s2.hifi_reads.bc1021.bam,PACBIO_SMRT,Revio P1,14885.0,16622.0,19423.0,N/A,HG01530,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,8.55,8552141762.0,484246.0,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17540.0,21029.0,25338.0,SRR30336753,N/A,N/A,N/A,N/A,N/A,SAMN37797087,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231120_185935_s2.hifi_reads.bc1016.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19087_PB2_m84091_231120_185935_s2.hifi_reads.bc1016.bam,single,size fractionation,GENOMIC,WGS,59674.0,20471.0,147.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19087/raw_data/PacBio_HiFi/m84091_231120_185935_s2.hifi_reads.bc1016.bam,PACBIO_SMRT,Revio P1,16450.0,19599.0,23547.0,N/A,NA19087,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,58.22,58221913081.0,2844047.0,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16308.0,18454.0,21346.0,SRR30336752,N/A,N/A,N/A,N/A,N/A,SAMN37797086,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231120_193041_s3.hifi_reads.bc1012.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA18570_PB4_m84091_231120_193041_s3.hifi_reads.bc1012.bam,single,size fractionation,GENOMIC,WGS,57172.0,18460.0,173.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18570/raw_data/PacBio_HiFi/m84091_231120_193041_s3.hifi_reads.bc1012.bam,PACBIO_SMRT,Revio P1,15874.0,17784.0,20430.0,N/A,NA18570,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,50.25,50245213157.0,2721746.0,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16462.0,18705.0,21784.0,SRR30336751,N/A,N/A,N/A,N/A,N/A,SAMN37797104,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231120_185935_s2.hifi_reads.bc1010.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02391_PB2_m84091_231120_185935_s2.hifi_reads.bc1010.bam,single,size fractionation,GENOMIC,WGS,48026.0,18707.0,200.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02391/raw_data/PacBio_HiFi/m84091_231120_185935_s2.hifi_reads.bc1010.bam,PACBIO_SMRT,Revio P1,15980.0,17971.0,20742.0,N/A,HG02391,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,31.03,31025558943.0,1658490.0,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17105.0,19663.0,23107.0,SRR30336750,N/A,N/A,N/A,N/A,N/A,SAMN37797090,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231120_182829_s1.hifi_reads.bc1017.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19185_PB2_m84091_231120_182829_s1.hifi_reads.bc1017.bam,single,size fractionation,GENOMIC,WGS,64094.0,19616.0,162.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19185/raw_data/PacBio_HiFi/m84091_231120_182829_s1.hifi_reads.bc1017.bam,PACBIO_SMRT,Revio P1,16543.0,18780.0,21892.0,N/A,NA19185,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,27.13,27128033641.0,1382900.0,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18702.0,22357.0,27038.0,SRR30336748,N/A,N/A,N/A,N/A,N/A,SAMN37797109,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231208_201822_s1.hifi_reads.bc1011.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03458_PB2_m84091_231208_201822_s1.hifi_reads.bc1011.bam,single,size fractionation,GENOMIC,WGS,63208.0,21941.0,133.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03458/raw_data/PacBio_HiFi/m84091_231208_201822_s1.hifi_reads.bc1011.bam,PACBIO_SMRT,Revio P1,17683.0,20872.0,25111.0,N/A,HG03458,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,82.19,82185612598.0,3745686.0,N/A,HG03458,SAMN37797109,,MSL,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16982.0,19596.0,23247.0,SRR30336747,N/A,N/A,N/A,N/A,N/A,SAMN37797098,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230905_205913_s4.hifi_reads.bc1020.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01252_PB3_m84091_230905_205913_s4.hifi_reads.bc1020.bam,single,size fractionation,GENOMIC,WGS,61149.0,19611.0,159.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/m84091_230905_205913_s4.hifi_reads.bc1020.bam,PACBIO_SMRT,Revio P1,16414.0,18668.0,21894.0,N/A,HG01252,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,51.78,51778207574.0,2640185.0,N/A,HG01252,SAMN37797098,CLM14,CLM,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17764.0,21387.0,26025.0,SRR30336746,N/A,N/A,N/A,N/A,N/A,SAMN37797103,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240110_201841_s2.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01969_PB5_m84091_240110_201841_s2.hifi_reads.bc1002.bam,single,size fractionation,GENOMIC,WGS,65188.0,20909.0,62.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/m84091_240110_201841_s2.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,16719.0,19839.0,24046.0,N/A,HG01969,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,60.01,60008819440.0,2869967.0,N/A,HG01969,SAMN37797103,PEL023,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17631.0,20623.0,24644.0,SRR30336745,N/A,N/A,N/A,N/A,N/A,SAMN37797097,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230905_192642_s1.hifi_reads.bc1019.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01150_PB3_m84091_230905_192642_s1.hifi_reads.bc1019.bam,single,size fractionation,GENOMIC,WGS,59777.0,20466.0,147.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/m84091_230905_192642_s1.hifi_reads.bc1019.bam,PACBIO_SMRT,Revio P1,16875.0,19502.0,23080.0,N/A,HG01150,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,16.81,16813536710.0,821512.0,N/A,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17434.0,20325.0,24157.0,SRR30336744,N/A,N/A,N/A,N/A,N/A,SAMN37797097,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230905_195701_s2.hifi_reads.bc1019.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01150_PB3_m84091_230905_195701_s2.hifi_reads.bc1019.bam,single,size fractionation,GENOMIC,WGS,56800.0,20190.0,204.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/m84091_230905_195701_s2.hifi_reads.bc1019.bam,PACBIO_SMRT,Revio P1,16730.0,19264.0,22692.0,N/A,HG01150,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,15.71,15710208724.0,778094.0,N/A,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17602.0,20609.0,24647.0,SRR30336743,N/A,N/A,N/A,N/A,N/A,SAMN37797097,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230905_202807_s3.hifi_reads.bc1019.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01150_PB3_m84091_230905_202807_s3.hifi_reads.bc1019.bam,single,size fractionation,GENOMIC,WGS,56054.0,20455.0,175.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/m84091_230905_202807_s3.hifi_reads.bc1019.bam,PACBIO_SMRT,Revio P1,16854.0,19481.0,23065.0,N/A,HG01150,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,16.47,16465388808.0,804940.0,N/A,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17254.0,19985.0,23648.0,SRR30336742,N/A,N/A,N/A,N/A,N/A,SAMN37797097,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231004_192043_s3.hifi_reads.bc1019.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01150_PB3_m84091_231004_192043_s3.hifi_reads.bc1019.bam,single,size fractionation,GENOMIC,WGS,52170.0,19914.0,100.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/m84091_231004_192043_s3.hifi_reads.bc1019.bam,PACBIO_SMRT,Revio P1,16599.0,19019.0,22271.0,N/A,HG01150,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,8.17,8167494589.0,410126.0,N/A,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18014.0,21232.0,25577.0,SRR30336741,N/A,N/A,N/A,N/A,N/A,SAMN37797105,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240110_194735_s1.hifi_reads.bc1001.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02514_PB4_m84091_240110_194735_s1.hifi_reads.bc1001.bam,single,size fractionation,GENOMIC,WGS,58573.0,21003.0,145.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/m84091_240110_194735_s1.hifi_reads.bc1001.bam,PACBIO_SMRT,Revio P1,17201.0,19943.0,23820.0,N/A,HG02514,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,61.2,61203787317.0,2914041.0,N/A,HG02514,SAMN37797105,VN087,KHV,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15762.0,17647.0,20252.0,SRR30336740,N/A,N/A,N/A,N/A,N/A,SAMN37797096,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230905_192642_s1.hifi_reads.bc1018.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00658_PB3_m84091_230905_192642_s1.hifi_reads.bc1018.bam,single,size fractionation,GENOMIC,WGS,54608.0,17726.0,214.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/m84091_230905_192642_s1.hifi_reads.bc1018.bam,PACBIO_SMRT,Revio P1,15404.0,17090.0,19458.0,N/A,HG00658,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,28.95,28947533667.0,1633001.0,N/A,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15689.0,17526.0,20080.0,SRR30336739,N/A,N/A,N/A,N/A,N/A,SAMN37797096,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230905_195701_s2.hifi_reads.bc1018.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00658_PB3_m84091_230905_195701_s2.hifi_reads.bc1018.bam,single,size fractionation,GENOMIC,WGS,50180.0,17611.0,71.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/m84091_230905_195701_s2.hifi_reads.bc1018.bam,PACBIO_SMRT,Revio P1,15344.0,16987.0,19304.0,N/A,HG00658,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,28.07,28067920433.0,1593745.0,N/A,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15740.0,17617.0,20227.0,SRR30336737,N/A,N/A,N/A,N/A,N/A,SAMN37797096,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230905_202807_s3.hifi_reads.bc1018.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00658_PB3_m84091_230905_202807_s3.hifi_reads.bc1018.bam,single,size fractionation,GENOMIC,WGS,56570.0,17700.0,221.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/m84091_230905_202807_s3.hifi_reads.bc1018.bam,PACBIO_SMRT,Revio P1,15383.0,17057.0,19422.0,N/A,HG00658,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,28.36,28356016363.0,1601972.0,N/A,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16742.0,19020.0,22308.0,SRR30336736,N/A,N/A,N/A,N/A,N/A,SAMN37797101,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240110_191713_s4.hifi_reads.bc1010.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01940_PB4_m84091_240110_191713_s4.hifi_reads.bc1010.bam,single,size fractionation,GENOMIC,WGS,55009.0,19030.0,205.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/m84091_240110_191713_s4.hifi_reads.bc1010.bam,PACBIO_SMRT,Revio P1,16232.0,18226.0,21127.0,N/A,HG01940,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,57.21,57205109823.0,3005904.0,N/A,HG01940,SAMN37797101,PEL015,PEL,AMR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16062.0,18284.0,21493.0,SRR30336735,N/A,N/A,N/A,N/A,N/A,SAMN37797108,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230905_205913_s4.hifi_reads.bc1017.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03050_PB3_m84091_230905_205913_s4.hifi_reads.bc1017.bam,single,size fractionation,GENOMIC,WGS,53531.0,18401.0,242.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/m84091_230905_205913_s4.hifi_reads.bc1017.bam,PACBIO_SMRT,Revio P1,15612.0,17537.0,20350.0,N/A,HG03050,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,32.47,32472953202.0,1764709.0,N/A,HG03050,SAMN37797108,GB113,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17003.0,19474.0,22983.0,SRR30336734,N/A,N/A,N/A,N/A,N/A,SAMN37797107,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231004_192043_s3.hifi_reads.bc1016.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02984_PB3_m84091_231004_192043_s3.hifi_reads.bc1016.bam,single,size fractionation,GENOMIC,WGS,59887.0,19543.0,164.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/m84091_231004_192043_s3.hifi_reads.bc1016.bam,PACBIO_SMRT,Revio P1,16490.0,18628.0,21721.0,N/A,HG02984,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,72.66,72663560503.0,3717971.0,N/A,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14616.0,16267.0,18519.0,SRR30336733,N/A,N/A,N/A,N/A,N/A,SAMN37797106,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230905_192642_s1.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02841_PB3_m84091_230905_192642_s1.hifi_reads.bc1015.bam,single,size fractionation,GENOMIC,WGS,70436.0,16387.0,101.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/m84091_230905_192642_s1.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,14330.0,15798.0,17874.0,N/A,HG02841,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,26.41,26410820072.0,1611638.0,N/A,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14558.0,16167.0,18380.0,SRR30336732,N/A,N/A,N/A,N/A,N/A,SAMN37797106,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230905_195701_s2.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02841_PB3_m84091_230905_195701_s2.hifi_reads.bc1015.bam,single,size fractionation,GENOMIC,WGS,65476.0,16286.0,104.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/m84091_230905_195701_s2.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,14284.0,15715.0,17757.0,N/A,HG02841,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,25.98,25976366531.0,1595006.0,N/A,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,14588.0,16230.0,18476.0,SRR30336731,N/A,N/A,N/A,N/A,N/A,SAMN37797106,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230905_202807_s3.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02841_PB3_m84091_230905_202807_s3.hifi_reads.bc1015.bam,single,size fractionation,GENOMIC,WGS,74486.0,16355.0,101.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/m84091_230905_202807_s3.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,14306.0,15762.0,17832.0,N/A,HG02841,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,25.93,25930880331.0,1585432.0,N/A,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16765.0,19261.0,22723.0,SRR30336730,N/A,N/A,N/A,N/A,N/A,SAMN37797102,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230817_150246_s3.hifi_reads.bc1012.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01960_PB3_m84091_230817_150246_s3.hifi_reads.bc1012.bam,single,size fractionation,GENOMIC,WGS,57666.0,19297.0,70.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01960/raw_data/PacBio_HiFi/m84091_230817_150246_s3.hifi_reads.bc1012.bam,PACBIO_SMRT,Revio P1,16237.0,18402.0,21481.0,N/A,HG01960,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,51.52,51521920991.0,2669847.0,N/A,HG01960,SAMN37797102,BB11,ACB,AFR,YR3 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17349.0,20221.0,24055.0,SRR30338074,N/A,N/A,N/A,N/A,N/A,SAMN37706905,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230817_140121_s1.hifi_reads.bc1011.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00706_PB3_m84091_230817_140121_s1.hifi_reads.bc1011.bam,single,size fractionation,GENOMIC,WGS,63607.0,19983.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/m84091_230817_140121_s1.hifi_reads.bc1011.bam,PACBIO_SMRT,Revio P1,16605.0,19134.0,22560.0,N/A,HG00706,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,78.59,78589493715.0,3932816.0,N/A,HG00706,SAMN37706905,SH090,CHS,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16293.0,19041.0,22667.0,SRR30338073,N/A,N/A,N/A,N/A,N/A,SAMN37706911,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230802_173218_s2.hifi_reads.bc1001.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG04187_PB3_m84091_230802_173218_s2.hifi_reads.bc1001.bam,single,size fractionation,GENOMIC,WGS,58559.0,18709.0,51.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04187/raw_data/PacBio_HiFi/m84091_230802_173218_s2.hifi_reads.bc1001.bam,PACBIO_SMRT,Revio P1,15524.0,17982.0,21231.0,N/A,HG04187,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,87.9,87904631234.0,4698462.0,N/A,HG04187,SAMN37706911,BD62,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16091.0,18311.0,21411.0,SRR30338068,N/A,N/A,N/A,N/A,N/A,SAMN37706907,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230804_181137_s4.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03804_PB3_m84091_230804_181137_s4.hifi_reads.bc1002.bam,single,size fractionation,GENOMIC,WGS,67004.0,18381.0,58.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/m84091_230804_181137_s4.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,15669.0,17595.0,20400.0,N/A,HG03804,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,104.08,104078927880.0,5662300.0,N/A,HG03804,SAMN37706907,BD18,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16777.0,19409.0,22975.0,SRR30338069,N/A,N/A,N/A,N/A,N/A,SAMN37706910,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230802_180324_s3.hifi_reads.bc1003.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG04160_PB3_m84091_230802_180324_s3.hifi_reads.bc1003.bam,single,size fractionation,GENOMIC,WGS,54941.0,19368.0,69.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/m84091_230802_180324_s3.hifi_reads.bc1003.bam,PACBIO_SMRT,Revio P1,16177.0,18481.0,21651.0,N/A,HG04160,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,84.01,84007295438.0,4337385.0,N/A,HG04160,SAMN37706910,BD53,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16232.0,18532.0,21722.0,SRR30338070,N/A,N/A,N/A,N/A,N/A,SAMN37706908,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230802_183430_s4.hifi_reads.bc1009.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03816_PB3_m84091_230802_183430_s4.hifi_reads.bc1009.bam,single,size fractionation,GENOMIC,WGS,58067.0,18600.0,53.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/m84091_230802_183430_s4.hifi_reads.bc1009.bam,PACBIO_SMRT,Revio P1,15760.0,17762.0,20609.0,N/A,HG03816,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,80.31,80309889302.0,4317671.0,N/A,HG03816,SAMN37706908,BD22,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16510.0,18719.0,21920.0,SRR30338071,N/A,N/A,N/A,N/A,N/A,SAMN37706906,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230804_170925_s2.hifi_reads.bc1010.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02668_PB3_m84091_230804_170925_s2.hifi_reads.bc1010.bam,single,size fractionation,GENOMIC,WGS,57756.0,18725.0,64.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/m84091_230804_170925_s2.hifi_reads.bc1010.bam,PACBIO_SMRT,Revio P1,16051.0,17971.0,20815.0,N/A,HG02668,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,97.16,97156169119.0,5188311.0,N/A,HG02668,SAMN37706906,GB40,GWD,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16379.0,18837.0,22245.0,SRR30338072,N/A,N/A,N/A,N/A,N/A,SAMN37706909,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230817_143140_s2.hifi_reads.bc1008.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG04157_PB3_m84091_230817_143140_s2.hifi_reads.bc1008.bam,single,size fractionation,GENOMIC,WGS,58048.0,18843.0,92.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/m84091_230817_143140_s2.hifi_reads.bc1008.bam,PACBIO_SMRT,Revio P1,15831.0,17986.0,21000.0,N/A,HG04157,N/A,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,79.14,79143303006.0,4200056.0,N/A,HG04157,SAMN37706909,BD52,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17789.0,19266.0,21600.0,SRR30545954,N/A,N/A,N/A,N/A,N/A,SAMN26237496,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_230727_190726_s1.hifi_reads.default.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG01433_lib1_m84081_230727_190726_s1,single,size fractionation,GENOMIC,WGS,59720.0,19708.0,107.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01433/raw_data/PacBio_HiFi/m84081_230727_190726_s1.hifi_reads.default.bam,PACBIO_SMRT,Revio P1,17552.0,18894.0,20844.0,N/A,HG01433,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,40.77,40767468283.0,2068495.0,N/A,HG01433,SAMN26237496,CLM43,CLM,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17781.0,19264.0,21611.0,SRR30545953,N/A,N/A,N/A,N/A,N/A,SAMN26237496,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_230727_193748_s2.hifi_reads.default.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG01433_lib1_m84081_230727_193748_s2,single,size fractionation,GENOMIC,WGS,68085.0,19711.0,307.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01433/raw_data/PacBio_HiFi/m84081_230727_193748_s2.hifi_reads.default.bam,PACBIO_SMRT,Revio P1,17544.0,18890.0,20844.0,N/A,HG01433,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,42.6,42600749441.0,2161263.0,N/A,HG01433,SAMN26237496,CLM43,CLM,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18901.0,21553.0,25035.0,SRR30545942,N/A,N/A,N/A,N/A,N/A,SAMN26237501,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231119_015049_s1.hifi_reads.bc2085.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG01993_lib1_m84081_231119_015049_s1,single,size fractionation,GENOMIC,WGS,63598.0,21335.0,162.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01993/raw_data/PacBio_HiFi/m84081_231119_015049_s1.hifi_reads.bc2085.bam,PACBIO_SMRT,Revio P1,18236.0,20676.0,23866.0,N/A,HG01993,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,33.21,33206085944.0,1556380.0,N/A,HG01993,SAMN26237501,PEL29,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18887.0,21556.0,25055.0,SRR30545931,N/A,N/A,N/A,N/A,N/A,SAMN26237501,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231119_022155_s2.hifi_reads.bc2085.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG01993_lib1_m84081_231119_022155_s2,single,size fractionation,GENOMIC,WGS,71080.0,21333.0,95.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01993/raw_data/PacBio_HiFi/m84081_231119_022155_s2.hifi_reads.bc2085.bam,PACBIO_SMRT,Revio P1,18218.0,20674.0,23879.0,N/A,HG01993,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,35.86,35862689658.0,1681080.0,N/A,HG01993,SAMN26237501,PEL29,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18909.0,21586.0,25095.0,SRR30545920,N/A,N/A,N/A,N/A,N/A,SAMN26237501,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231119_025301_s3.hifi_reads.bc2085.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG01993_lib1_m84081_231119_025301_s3,single,size fractionation,GENOMIC,WGS,65649.0,21364.0,64.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01993/raw_data/PacBio_HiFi/m84081_231119_025301_s3.hifi_reads.bc2085.bam,PACBIO_SMRT,Revio P1,18240.0,20694.0,23916.0,N/A,HG01993,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,34.05,34049612903.0,1593745.0,N/A,HG01993,SAMN26237501,PEL29,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18250.0,20729.0,23845.0,SRR30545909,N/A,N/A,N/A,N/A,N/A,SAMN26237514,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231119_015049_s1.hifi_reads.bc2084.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG03831_lib1_m84081_231119_015049_s1,single,size fractionation,GENOMIC,WGS,63666.0,20472.0,136.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03831/raw_data/PacBio_HiFi/m84081_231119_015049_s1.hifi_reads.bc2084.bam,PACBIO_SMRT,Revio P1,17662.0,19953.0,22877.0,N/A,HG03831,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,39.84,39835980192.0,1945842.0,N/A,HG03831,SAMN26237514,BD27,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18240.0,20726.0,23866.0,SRR30545903,N/A,N/A,N/A,N/A,N/A,SAMN26237514,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231119_022155_s2.hifi_reads.bc2084.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG03831_lib1_m84081_231119_022155_s2,single,size fractionation,GENOMIC,WGS,64065.0,20471.0,107.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03831/raw_data/PacBio_HiFi/m84081_231119_022155_s2.hifi_reads.bc2084.bam,PACBIO_SMRT,Revio P1,17647.0,19942.0,22894.0,N/A,HG03831,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,42.94,42938362831.0,2097435.0,N/A,HG03831,SAMN26237514,BD27,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18256.0,20748.0,23881.0,SRR30545902,N/A,N/A,N/A,N/A,N/A,SAMN26237514,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231119_025301_s3.hifi_reads.bc2084.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG03831_lib1_m84081_231119_025301_s3,single,size fractionation,GENOMIC,WGS,58345.0,20491.0,100.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03831/raw_data/PacBio_HiFi/m84081_231119_025301_s3.hifi_reads.bc2084.bam,PACBIO_SMRT,Revio P1,17666.0,19965.0,22916.0,N/A,HG03831,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,40.74,40742385738.0,1988225.0,N/A,HG03831,SAMN26237514,BD27,BEB,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17591.0,20018.0,23415.0,SRR30545901,N/A,N/A,N/A,N/A,N/A,SAMN26237493,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231112_034048_s4.hifi_reads.bc2079.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG00738_lib1_m84081_231112_034048_s4,single,size fractionation,GENOMIC,WGS,73440.0,20045.0,133.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00738/raw_data/PacBio_HiFi/m84081_231112_034048_s4.hifi_reads.bc2079.bam,PACBIO_SMRT,Revio P1,17098.0,19207.0,22270.0,N/A,HG00738,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,94.56,94558121818.0,4717277.0,N/A,HG00738,SAMN26237493,PR07,PUR,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,21243.0,24260.0,28183.0,SRR30545900,N/A,N/A,N/A,N/A,N/A,SAMN26237505,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231117_211338_s4.hifi_reads.bc2087.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG02280_lib1_m84081_231117_211338_s4,single,size fractionation,GENOMIC,WGS,71362.0,23925.0,175.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02280/raw_data/PacBio_HiFi/m84081_231117_211338_s4.hifi_reads.bc2087.bam,PACBIO_SMRT,Revio P1,20460.0,23249.0,26864.0,N/A,HG02280,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,54.92,54916346879.0,2295296.0,N/A,HG02280,SAMN26237505,BB23,ACB,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,21160.0,24145.0,28018.0,SRR30545952,N/A,N/A,N/A,N/A,N/A,SAMN26237505,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231119_032407_s4.hifi_reads.bc2087.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG02280_lib1_m84081_231119_032407_s4,single,size fractionation,GENOMIC,WGS,69282.0,23809.0,149.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02280/raw_data/PacBio_HiFi/m84081_231119_032407_s4.hifi_reads.bc2087.bam,PACBIO_SMRT,Revio P1,20385.0,23146.0,26712.0,N/A,HG02280,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,52.02,52021053224.0,2184925.0,N/A,HG02280,SAMN26237505,BB23,ACB,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18133.0,20773.0,24386.0,SRR30545951,N/A,N/A,N/A,N/A,N/A,SAMN26237497,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231112_030942_s3.hifi_reads.bc2080.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG01496_lib1_m84081_231112_030942_s3,single,size fractionation,GENOMIC,WGS,62502.0,20650.0,139.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01496/raw_data/PacBio_HiFi/m84081_231112_030942_s3.hifi_reads.bc2080.bam,PACBIO_SMRT,Revio P1,17539.0,19848.0,23120.0,N/A,HG01496,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,75.52,75524194879.0,3657255.0,N/A,HG01496,SAMN26237497,CLM64,CLM,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16709.0,18828.0,21539.0,SRR30545950,N/A,N/A,N/A,N/A,N/A,SAMN26237492,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231124_014115_s1.hifi_reads.bc2090.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG00609_lib1_m84081_231124_014115_s1,single,size fractionation,GENOMIC,WGS,59948.0,18733.0,72.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00609/raw_data/PacBio_HiFi/m84081_231124_014115_s1.hifi_reads.bc2090.bam,PACBIO_SMRT,Revio P1,16280.0,18205.0,20764.0,N/A,HG00609,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,34.1,34098339820.0,1820209.0,N/A,HG00609,SAMN26237492,SH062,CHS,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16798.0,18968.0,21718.0,SRR30545949,N/A,N/A,N/A,N/A,N/A,SAMN26237492,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231124_021221_s2.hifi_reads.bc2090.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG00609_lib1_m84081_231124_021221_s2,single,size fractionation,GENOMIC,WGS,67625.0,18858.0,372.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00609/raw_data/PacBio_HiFi/m84081_231124_021221_s2.hifi_reads.bc2090.bam,PACBIO_SMRT,Revio P1,16359.0,18327.0,20935.0,N/A,HG00609,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,29.07,29066645095.0,1541278.0,N/A,HG00609,SAMN26237492,SH062,CHS,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16780.0,18941.0,21681.0,SRR30545948,N/A,N/A,N/A,N/A,N/A,SAMN26237492,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231124_024327_s3.hifi_reads.bc2090.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG00609_lib1_m84081_231124_024327_s3,single,size fractionation,GENOMIC,WGS,61605.0,18829.0,161.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00609/raw_data/PacBio_HiFi/m84081_231124_024327_s3.hifi_reads.bc2090.bam,PACBIO_SMRT,Revio P1,16343.0,18304.0,20897.0,N/A,HG00609,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,32.23,32225609248.0,1711422.0,N/A,HG00609,SAMN26237492,SH062,CHS,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18003.0,20501.0,24009.0,SRR30545947,N/A,N/A,N/A,N/A,N/A,SAMN26237500,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231124_014115_s1.hifi_reads.bc2091.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG01981_lib1_m84081_231124_014115_s1,single,size fractionation,GENOMIC,WGS,66246.0,20488.0,180.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01981/raw_data/PacBio_HiFi/m84081_231124_014115_s1.hifi_reads.bc2091.bam,PACBIO_SMRT,Revio P1,17481.0,19672.0,22844.0,N/A,HG01981,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,26.66,26663110951.0,1301338.0,N/A,HG01981,SAMN26237500,PEL27,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18122.0,20703.0,24261.0,SRR30545946,N/A,N/A,N/A,N/A,N/A,SAMN26237500,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231124_021221_s2.hifi_reads.bc2091.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG01981_lib1_m84081_231124_021221_s2,single,size fractionation,GENOMIC,WGS,67373.0,20652.0,271.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01981/raw_data/PacBio_HiFi/m84081_231124_021221_s2.hifi_reads.bc2091.bam,PACBIO_SMRT,Revio P1,17577.0,19837.0,23082.0,N/A,HG01981,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,23.2,23199356437.0,1123309.0,N/A,HG01981,SAMN26237500,PEL27,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18094.0,20656.0,24193.0,SRR30545945,N/A,N/A,N/A,N/A,N/A,SAMN26237500,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231124_024327_s3.hifi_reads.bc2091.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG01981_lib1_m84081_231124_024327_s3,single,size fractionation,GENOMIC,WGS,70539.0,20607.0,189.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01981/raw_data/PacBio_HiFi/m84081_231124_024327_s3.hifi_reads.bc2091.bam,PACBIO_SMRT,Revio P1,17557.0,19804.0,23026.0,N/A,HG01981,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,25.56,25563787489.0,1240482.0,N/A,HG01981,SAMN26237500,PEL27,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16470.0,18634.0,21710.0,SRR30545944,N/A,N/A,N/A,N/A,N/A,SAMN26237502,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231027_205726_s4.hifi_reads.default.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG02004_lib1_m84081_231027_205726_s4,single,size fractionation,GENOMIC,WGS,60013.0,18808.0,207.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02004/raw_data/PacBio_HiFi/m84081_231027_205726_s4.hifi_reads.default.bam,PACBIO_SMRT,Revio P1,16148.0,17863.0,20869.0,N/A,HG02004,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,35.56,35562878236.0,1890808.0,N/A,HG02004,SAMN26237502,PEL33,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16581.0,18939.0,22009.0,SRR30545943,N/A,N/A,N/A,N/A,N/A,SAMN26237502,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231029_030755_s4.hifi_reads.default.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG02004_lib1_m84081_231029_030755_s4,single,size fractionation,GENOMIC,WGS,56461.0,19000.0,462.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02004/raw_data/PacBio_HiFi/m84081_231029_030755_s4.hifi_reads.default.bam,PACBIO_SMRT,Revio P1,16231.0,18069.0,21145.0,N/A,HG02004,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,32.29,32287995273.0,1699283.0,N/A,HG02004,SAMN26237502,PEL33,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18086.0,20462.0,23738.0,SRR30545941,N/A,N/A,N/A,N/A,N/A,SAMN26237494,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231124_014115_s1.hifi_reads.bc2092.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG01099_lib1_m84081_231124_014115_s1,single,size fractionation,GENOMIC,WGS,65560.0,20414.0,136.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01099/raw_data/PacBio_HiFi/m84081_231124_014115_s1.hifi_reads.bc2092.bam,PACBIO_SMRT,Revio P1,17595.0,19705.0,22703.0,N/A,HG01099,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,28.49,28489780521.0,1395535.0,N/A,HG01099,SAMN26237494,PR31,PUR,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18200.0,20646.0,23950.0,SRR30545940,N/A,N/A,N/A,N/A,N/A,SAMN26237494,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231124_021221_s2.hifi_reads.bc2092.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG01099_lib1_m84081_231124_021221_s2,single,size fractionation,GENOMIC,WGS,62796.0,20566.0,116.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01099/raw_data/PacBio_HiFi/m84081_231124_021221_s2.hifi_reads.bc2092.bam,PACBIO_SMRT,Revio P1,17693.0,19863.0,22908.0,N/A,HG01099,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,24.84,24840004278.0,1207816.0,N/A,HG01099,SAMN26237494,PR31,PUR,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18176.0,20600.0,23890.0,SRR30545939,N/A,N/A,N/A,N/A,N/A,SAMN26237494,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231124_024327_s3.hifi_reads.bc2092.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG01099_lib1_m84081_231124_024327_s3,single,size fractionation,GENOMIC,WGS,60779.0,20528.0,102.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01099/raw_data/PacBio_HiFi/m84081_231124_024327_s3.hifi_reads.bc2092.bam,PACBIO_SMRT,Revio P1,17673.0,19827.0,22859.0,N/A,HG01099,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,27.32,27322084177.0,1330914.0,N/A,HG01099,SAMN26237494,PR31,PUR,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,21459.0,24506.0,28365.0,SRR30545938,N/A,N/A,N/A,N/A,N/A,SAMN26237510,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231117_193129_s1.hifi_reads.bc2089.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG02809_lib1_m84081_231117_193129_s1,single,size fractionation,GENOMIC,WGS,67253.0,23725.0,158.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02809/raw_data/PacBio_HiFi/m84081_231117_193129_s1.hifi_reads.bc2089.bam,PACBIO_SMRT,Revio P1,20543.0,23412.0,27051.0,N/A,HG02809,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,30.96,30957915695.0,1304855.0,N/A,HG02809,SAMN26237510,GB63,GWD,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,21483.0,24540.0,28403.0,SRR30545937,N/A,N/A,N/A,N/A,N/A,SAMN26237510,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231117_201125_s2.hifi_reads.bc2089.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG02809_lib1_m84081_231117_201125_s2,single,size fractionation,GENOMIC,WGS,72778.0,23769.0,141.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02809/raw_data/PacBio_HiFi/m84081_231117_201125_s2.hifi_reads.bc2089.bam,PACBIO_SMRT,Revio P1,20569.0,23444.0,27091.0,N/A,HG02809,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,31.12,31123373445.0,1309400.0,N/A,HG02809,SAMN26237510,GB63,GWD,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,21588.0,24689.0,28609.0,SRR30545936,N/A,N/A,N/A,N/A,N/A,SAMN26237510,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231117_204232_s3.hifi_reads.bc2089.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG02809_lib1_m84081_231117_204232_s3,single,size fractionation,GENOMIC,WGS,74661.0,23990.0,180.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02809/raw_data/PacBio_HiFi/m84081_231117_204232_s3.hifi_reads.bc2089.bam,PACBIO_SMRT,Revio P1,20695.0,23594.0,27285.0,N/A,HG02809,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,33.72,33718334951.0,1405473.0,N/A,HG02809,SAMN26237510,GB63,GWD,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17362.0,19570.0,22570.0,SRR30545935,N/A,N/A,N/A,N/A,N/A,SAMN26237499,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231122_210358_s4.hifi_reads.bc2093.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG01943_lib1_m84081_231122_210358_s4,single,size fractionation,GENOMIC,WGS,70540.0,19512.0,67.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01943/raw_data/PacBio_HiFi/m84081_231122_210358_s4.hifi_reads.bc2093.bam,PACBIO_SMRT,Revio P1,16886.0,18887.0,21632.0,N/A,HG01943,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,47.16,47157222479.0,2416778.0,N/A,HG01943,SAMN26237499,PEL016,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17318.0,19508.0,22480.0,SRR30545934,N/A,N/A,N/A,N/A,N/A,SAMN26237499,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231124_031433_s4.hifi_reads.bc2093.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG01943_lib1_m84081_231124_031433_s4,single,size fractionation,GENOMIC,WGS,72635.0,19448.0,91.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01943/raw_data/PacBio_HiFi/m84081_231124_031433_s4.hifi_reads.bc2093.bam,PACBIO_SMRT,Revio P1,16851.0,18834.0,21555.0,N/A,HG01943,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,52.08,52079665150.0,2677782.0,N/A,HG01943,SAMN26237499,PEL016,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,20985.0,23675.0,26666.0,SRR30545933,N/A,N/A,N/A,N/A,N/A,SAMN26237498,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231117_193129_s1.hifi_reads.bc2088.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG01934_lib1_m84081_231117_193129_s1,single,size fractionation,GENOMIC,WGS,63433.0,22817.0,107.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01934/raw_data/PacBio_HiFi/m84081_231117_193129_s1.hifi_reads.bc2088.bam,PACBIO_SMRT,Revio P1,20197.0,22847.0,25829.0,N/A,HG01934,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,41.21,41207695556.0,1805975.0,N/A,HG01934,SAMN26237498,PEL013,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,21010.0,23692.0,26683.0,SRR30545932,N/A,N/A,N/A,N/A,N/A,SAMN26237498,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231117_201125_s2.hifi_reads.bc2088.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG01934_lib1_m84081_231117_201125_s2,single,size fractionation,GENOMIC,WGS,67040.0,22854.0,142.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01934/raw_data/PacBio_HiFi/m84081_231117_201125_s2.hifi_reads.bc2088.bam,PACBIO_SMRT,Revio P1,20225.0,22871.0,25852.0,N/A,HG01934,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,41.36,41361391990.0,1809808.0,N/A,HG01934,SAMN26237498,PEL013,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,21092.0,23797.0,26797.0,SRR30545930,N/A,N/A,N/A,N/A,N/A,SAMN26237498,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231117_204232_s3.hifi_reads.bc2088.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG01934_lib1_m84081_231117_204232_s3,single,size fractionation,GENOMIC,WGS,68010.0,23015.0,193.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01934/raw_data/PacBio_HiFi/m84081_231117_204232_s3.hifi_reads.bc2088.bam,PACBIO_SMRT,Revio P1,20331.0,22985.0,25974.0,N/A,HG01934,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,44.46,44464313716.0,1931912.0,N/A,HG01934,SAMN26237498,PEL013,PEL,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,16344.0,17595.0,19434.0,SRR30545929,N/A,N/A,N/A,N/A,N/A,SAMN26237508,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231105_031800_s4.hifi_reads.default.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG02615_lib1_m84081_231105_031800_s4,single,size fractionation,GENOMIC,WGS,59452.0,17948.0,187.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02615/raw_data/PacBio_HiFi/m84081_231105_031800_s4.hifi_reads.default.bam,PACBIO_SMRT,Revio P1,16173.0,17320.0,18923.0,N/A,HG02615,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,112.52,112515573214.0,6268696.0,N/A,HG02615,SAMN26237508,GB29,GWD,AFR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15909.0,17478.0,19374.0,SRR30545928,N/A,N/A,N/A,N/A,N/A,SAMN26237512,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231124_014115_s1.hifi_reads.default.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG03669_lib1_m84081_231124_014115_s1,single,size fractionation,GENOMIC,WGS,54743.0,17394.0,201.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03669/raw_data/PacBio_HiFi/m84081_231124_014115_s1.hifi_reads.default.bam,PACBIO_SMRT,Revio P1,15622.0,17109.0,18938.0,N/A,HG03669,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,34.06,34056799813.0,1957934.0,N/A,HG03669,SAMN26237512,PK58,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15962.0,17548.0,19465.0,SRR30545927,N/A,N/A,N/A,N/A,N/A,SAMN26237512,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231124_021221_s2.hifi_reads.default.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG03669_lib1_m84081_231124_021221_s2,single,size fractionation,GENOMIC,WGS,59943.0,17469.0,283.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03669/raw_data/PacBio_HiFi/m84081_231124_021221_s2.hifi_reads.default.bam,PACBIO_SMRT,Revio P1,15673.0,17173.0,19020.0,N/A,HG03669,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,28.47,28467031205.0,1629525.0,N/A,HG03669,SAMN26237512,PK58,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15956.0,17537.0,19443.0,SRR30545926,N/A,N/A,N/A,N/A,N/A,SAMN26237512,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231124_024327_s3.hifi_reads.default.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG03669_lib1_m84081_231124_024327_s3,single,size fractionation,GENOMIC,WGS,54709.0,17452.0,185.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03669/raw_data/PacBio_HiFi/m84081_231124_024327_s3.hifi_reads.default.bam,PACBIO_SMRT,Revio P1,15666.0,17164.0,19002.0,N/A,HG03669,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,31.9,31900342554.0,1827869.0,N/A,HG03669,SAMN26237512,PK58,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,20118.0,22063.0,24838.0,SRR30545925,N/A,N/A,N/A,N/A,N/A,SAMN26237495,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231105_024654_s3.hifi_reads.default.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG01255_lib1_m84081_231105_024654_s3,single,size fractionation,GENOMIC,WGS,66767.0,22152.0,135.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01255/raw_data/PacBio_HiFi/m84081_231105_024654_s3.hifi_reads.default.bam,PACBIO_SMRT,Revio P1,19725.0,21541.0,24025.0,N/A,HG01255,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,106.8,106795993727.0,4820912.0,N/A,HG01255,SAMN26237495,CLM15,CLM,AMR,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,20677.0,23972.0,28227.0,SRR30545924,N/A,N/A,N/A,N/A,N/A,SAMN26237491,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231117_211338_s4.hifi_reads.bc2086.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG00544_lib1_m84081_231117_211338_s4,single,size fractionation,GENOMIC,WGS,71001.0,23477.0,212.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m84081_231117_211338_s4.hifi_reads.bc2086.bam,PACBIO_SMRT,Revio P1,19731.0,22752.0,26649.0,N/A,HG00544,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,33.64,33637827992.0,1432745.0,N/A,HG00544,SAMN26237491,SH042,CHS,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,20584.0,23838.0,28051.0,SRR30545923,N/A,N/A,N/A,N/A,N/A,SAMN26237491,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231119_032407_s4.hifi_reads.bc2086.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG00544_lib1_m84081_231119_032407_s4,single,size fractionation,GENOMIC,WGS,68993.0,23348.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m84081_231119_032407_s4.hifi_reads.bc2086.bam,PACBIO_SMRT,Revio P1,19633.0,22640.0,26491.0,N/A,HG00544,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,31.95,31954910533.0,1368621.0,N/A,HG00544,SAMN26237491,SH042,CHS,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17910.0,20379.0,23789.0,SRR30545922,N/A,N/A,N/A,N/A,N/A,SAMN26237490,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231112_030942_s3.hifi_reads.bc2078.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG00423_lib1_m84081_231112_030942_s3,single,size fractionation,GENOMIC,WGS,60898.0,20218.0,165.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00423/raw_data/PacBio_HiFi/m84081_231112_030942_s3.hifi_reads.bc2078.bam,PACBIO_SMRT,Revio P1,17354.0,19521.0,22631.0,N/A,HG00423,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,23.1,23095926280.0,1142340.0,N/A,HG00423,SAMN26237490,SH007,CHS,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17721.0,20122.0,23397.0,SRR30545921,N/A,N/A,N/A,N/A,N/A,SAMN26237503,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231117_211338_s4.hifi_reads.bc2081.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG02027_lib1_m84081_231117_211338_s4,single,size fractionation,GENOMIC,WGS,62955.0,20089.0,146.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02027/raw_data/PacBio_HiFi/m84081_231117_211338_s4.hifi_reads.bc2081.bam,PACBIO_SMRT,Revio P1,17198.0,19345.0,22299.0,N/A,HG02027,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,28.49,28486046392.0,1417952.0,N/A,HG02027,SAMN26237503,VN050,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17652.0,20028.0,23278.0,SRR30545919,N/A,N/A,N/A,N/A,N/A,SAMN26237503,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231119_032407_s4.hifi_reads.bc2081.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG02027_lib1_m84081_231119_032407_s4,single,size fractionation,GENOMIC,WGS,60932.0,20001.0,116.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02027/raw_data/PacBio_HiFi/m84081_231119_032407_s4.hifi_reads.bc2081.bam,PACBIO_SMRT,Revio P1,17137.0,19254.0,22198.0,N/A,HG02027,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,27.72,27723436595.0,1386086.0,N/A,HG02027,SAMN26237503,VN050,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18401.0,21543.0,24525.0,SRR30545918,N/A,N/A,N/A,N/A,N/A,SAMN26237504,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231027_192451_s1.hifi_reads.default.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG02083_lib1_m84081_231027_192451_s1,single,size fractionation,GENOMIC,WGS,54344.0,21142.0,293.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02083/raw_data/PacBio_HiFi/m84081_231027_192451_s1.hifi_reads.default.bam,PACBIO_SMRT,Revio P1,17856.0,20607.0,23626.0,N/A,HG02083,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,27.53,27531042836.0,1302160.0,N/A,HG02083,SAMN26237504,VN069,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,18608.0,21819.0,24812.0,SRR30545917,N/A,N/A,N/A,N/A,N/A,SAMN26237504,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231029_013437_s1.hifi_reads.default.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG02083_lib1_m84081_231029_013437_s1,single,size fractionation,GENOMIC,WGS,68194.0,21380.0,233.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02083/raw_data/PacBio_HiFi/m84081_231029_013437_s1.hifi_reads.default.bam,PACBIO_SMRT,Revio P1,18006.0,20926.0,23896.0,N/A,HG02083,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,26.49,26485559925.0,1238797.0,N/A,HG02083,SAMN26237504,VN069,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,22316.0,24826.0,28520.0,SRR30545916,N/A,N/A,N/A,N/A,N/A,SAMN26237506,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231027_195514_s2.hifi_reads.default.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG02523_lib1_m84081_231027_195514_s2,single,size fractionation,GENOMIC,WGS,61805.0,24987.0,173.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02523/raw_data/PacBio_HiFi/m84081_231027_195514_s2.hifi_reads.default.bam,PACBIO_SMRT,Revio P1,21815.0,24089.0,27367.0,N/A,HG02523,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,25.37,25368887506.0,1015279.0,N/A,HG02523,SAMN26237506,VN090,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,22130.0,24465.0,27807.0,SRR30545915,N/A,N/A,N/A,N/A,N/A,SAMN26237506,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231027_202621_s3.hifi_reads.default.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG02523_lib1_m84081_231027_202621_s3,single,size fractionation,GENOMIC,WGS,59720.0,24621.0,162.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02523/raw_data/PacBio_HiFi/m84081_231027_202621_s3.hifi_reads.default.bam,PACBIO_SMRT,Revio P1,21672.0,23824.0,26796.0,N/A,HG02523,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,22.26,22264325773.0,904264.0,N/A,HG02523,SAMN26237506,VN090,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,22385.0,24919.0,28637.0,SRR30545914,N/A,N/A,N/A,N/A,N/A,SAMN26237506,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231029_020543_s2.hifi_reads.default.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG02523_lib1_m84081_231029_020543_s2,single,size fractionation,GENOMIC,WGS,70651.0,25073.0,201.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02523/raw_data/PacBio_HiFi/m84081_231029_020543_s2.hifi_reads.default.bam,PACBIO_SMRT,Revio P1,21884.0,24171.0,27465.0,N/A,HG02523,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,24.26,24260432953.0,967562.0,N/A,HG02523,SAMN26237506,VN090,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,22476.0,25072.0,28881.0,SRR30545913,N/A,N/A,N/A,N/A,N/A,SAMN26237506,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231029_023649_s3.hifi_reads.default.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG02523_lib1_m84081_231029_023649_s3,single,size fractionation,GENOMIC,WGS,64892.0,25223.0,791.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02523/raw_data/PacBio_HiFi/m84081_231029_023649_s3.hifi_reads.default.bam,PACBIO_SMRT,Revio P1,21964.0,24295.0,27686.0,N/A,HG02523,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,24.08,24084906461.0,954842.0,N/A,HG02523,SAMN26237506,VN090,KHV,EAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,17348.0,19419.0,22930.0,SRR30545912,N/A,N/A,N/A,N/A,N/A,SAMN26237509,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231105_021548_s2.hifi_reads.default.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG02698_lib1_m84081_231105_021548_s2,single,size fractionation,GENOMIC,WGS,61919.0,19750.0,167.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02698/raw_data/PacBio_HiFi/m84081_231105_021548_s2.hifi_reads.default.bam,PACBIO_SMRT,Revio P1,17026.0,18734.0,21962.0,N/A,HG02698,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,115.63,115625120833.0,5854171.0,N/A,HG02698,SAMN26237509,PK21,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,15639.0,16544.0,17685.0,SRR30545911,N/A,N/A,N/A,N/A,N/A,SAMN26237511,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231112_023836_s2.hifi_reads.default.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG03654_lib1_m84081_231112_023836_s2,single,size fractionation,GENOMIC,WGS,57246.0,16806.0,123.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03654/raw_data/PacBio_HiFi/m84081_231112_023836_s2.hifi_reads.default.bam,PACBIO_SMRT,Revio P1,15532.0,16390.0,17457.0,N/A,HG03654,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,76.84,76840555351.0,4572174.0,N/A,HG03654,SAMN26237511,PK53,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19644.0,22516.0,26372.0,SRR30545910,N/A,N/A,N/A,N/A,N/A,SAMN26237507,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231119_015049_s1.hifi_reads.bc2083.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG02602_lib1_m84081_231119_015049_s1,single,size fractionation,GENOMIC,WGS,67377.0,22346.0,193.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02602/raw_data/PacBio_HiFi/m84081_231119_015049_s1.hifi_reads.bc2083.bam,PACBIO_SMRT,Revio P1,18942.0,21531.0,25016.0,N/A,HG02602,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,27.24,27235147908.0,1218758.0,N/A,HG02602,SAMN26237507,PK09,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19647.0,22536.0,26419.0,SRR30545908,N/A,N/A,N/A,N/A,N/A,SAMN26237507,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231119_022155_s2.hifi_reads.bc2083.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG02602_lib1_m84081_231119_022155_s2,single,size fractionation,GENOMIC,WGS,66930.0,22367.0,129.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02602/raw_data/PacBio_HiFi/m84081_231119_022155_s2.hifi_reads.bc2083.bam,PACBIO_SMRT,Revio P1,18937.0,21544.0,25049.0,N/A,HG02602,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,29.4,29397582754.0,1314322.0,N/A,HG02602,SAMN26237507,PK09,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19658.0,22557.0,26449.0,SRR30545907,N/A,N/A,N/A,N/A,N/A,SAMN26237507,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231119_025301_s3.hifi_reads.bc2083.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG02602_lib1_m84081_231119_025301_s3,single,size fractionation,GENOMIC,WGS,69941.0,22380.0,126.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02602/raw_data/PacBio_HiFi/m84081_231119_025301_s3.hifi_reads.bc2083.bam,PACBIO_SMRT,Revio P1,18946.0,21554.0,25078.0,N/A,HG02602,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,27.92,27920059129.0,1247529.0,N/A,HG02602,SAMN26237507,PK09,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19767.0,21621.0,23833.0,SRR30545906,N/A,N/A,N/A,N/A,N/A,SAMN26237513,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231117_193129_s1.hifi_reads.bc2082.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG03710_lib1_m84081_231117_193129_s1,single,size fractionation,GENOMIC,WGS,69535.0,21525.0,144.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03710/raw_data/PacBio_HiFi/m84081_231117_193129_s1.hifi_reads.bc2082.bam,PACBIO_SMRT,Revio P1,19419.0,21200.0,23322.0,N/A,HG03710,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,41.3,41300858534.0,1918695.0,N/A,HG03710,SAMN26237513,PK62,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19769.0,21629.0,23842.0,SRR30545905,N/A,N/A,N/A,N/A,N/A,SAMN26237513,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231117_201125_s2.hifi_reads.bc2082.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG03710_lib1_m84081_231117_201125_s2,single,size fractionation,GENOMIC,WGS,70092.0,21532.0,79.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03710/raw_data/PacBio_HiFi/m84081_231117_201125_s2.hifi_reads.bc2082.bam,PACBIO_SMRT,Revio P1,19418.0,21206.0,23329.0,N/A,HG03710,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,41.38,41375220820.0,1921559.0,N/A,HG03710,SAMN26237513,PK62,PJL,SAS,YR2 +N/A,N/A,N/A,N/A,N/A,N/A,,True,19809.0,21684.0,23919.0,SRR30545904,N/A,N/A,N/A,N/A,N/A,SAMN26237513,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84081_231117_204232_s3.hifi_reads.bc2082.bam,N/A,tgraves@wustl.edu,Washington University,Revio,HG03710_lib1_m84081_231117_204232_s3,single,size fractionation,GENOMIC,WGS,63910.0,21602.0,112.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03710/raw_data/PacBio_HiFi/m84081_231117_204232_s3.hifi_reads.bc2082.bam,PACBIO_SMRT,Revio P1,19460.0,21258.0,23396.0,N/A,HG03710,N/A,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,44.03,44028183566.0,2038064.0,N/A,HG03710,SAMN26237513,PK62,PJL,SAS,YR2 diff --git a/files/unprocessed_files/.gitkeep b/catalog-build/unprocessed_files/.gitkeep similarity index 100% rename from files/unprocessed_files/.gitkeep rename to catalog-build/unprocessed_files/.gitkeep diff --git a/files/out/alignments.json b/catalog/alignments.json similarity index 100% rename from files/out/alignments.json rename to catalog/alignments.json diff --git a/files/out/annotations.json b/catalog/annotations.json similarity index 100% rename from files/out/annotations.json rename to catalog/annotations.json diff --git a/files/out/assemblies.json b/catalog/assemblies.json similarity index 100% rename from files/out/assemblies.json rename to catalog/assemblies.json diff --git a/files/out/raw-sequencing-data.json b/catalog/sequencing-data.json similarity index 68% rename from files/out/raw-sequencing-data.json rename to catalog/sequencing-data.json index f8b5535..1016e35 100644 --- a/files/out/raw-sequencing-data.json +++ b/catalog/sequencing-data.json @@ -8644,721 +8644,6 @@ "twoHundredkbPlus": "N/A", "whales": "N/A" }, - { - "Gb": "N/A", - "accession": "SAMN37706910", - "assembly": "N/A", - "basecaller": "N/A", - "basecallerModel": "N/A", - "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706910", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", - "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD53", - "filename": "m54306Ue_210713_140744.5mc.hifi_reads.bam", - "filetype": "N/A", - "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG04160_PB1_m54306Ue_210713_140744", - "libraryLayout": "single", - "librarySelection": "size fractionation", - "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53687", - "mean": "16108", - "metadataAccession": "SRR30151640", - "min": "86", - "mmTag": false, - "n25": "14021", - "n50": "16378", - "n75": "19452", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", - "oneHundredkbPlus": "N/A", - "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m54306Ue_210713_140744.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13392", - "quartile50": "15498", - "quartile75": "18313", - "readN50": "N/A", - "result": "N/A", - "sampleId": "HG04160", - "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", - "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "26720127719", - "totalGbp": "26.72", - "totalReads": "1658709", - "twoHundredkbPlus": "N/A", - "whales": "N/A" - }, - { - "Gb": "N/A", - "accession": "SAMN37706910", - "assembly": "N/A", - "basecaller": "N/A", - "basecallerModel": "N/A", - "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706910", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", - "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD53", - "filename": "m54306Ue_210715_000620.5mc.hifi_reads.bam", - "filetype": "N/A", - "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG04160_PB1_m54306Ue_210715_000620", - "libraryLayout": "single", - "librarySelection": "size fractionation", - "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "48768", - "mean": "15596", - "metadataAccession": "SRR30151639", - "min": "86", - "mmTag": false, - "n25": "13549", - "n50": "15822", - "n75": "18840", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", - "oneHundredkbPlus": "N/A", - "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m54306Ue_210715_000620.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "12940", - "quartile50": "14970", - "quartile75": "17686", - "readN50": "N/A", - "result": "N/A", - "sampleId": "HG04160", - "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", - "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "22925478214", - "totalGbp": "22.93", - "totalReads": "1469884", - "twoHundredkbPlus": "N/A", - "whales": "N/A" - }, - { - "Gb": "N/A", - "accession": "SAMN37706907", - "assembly": "N/A", - "basecaller": "N/A", - "basecallerModel": "N/A", - "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706907", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", - "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD18", - "filename": "m54306Ue_210716_134443.5mc.hifi_reads.bam", - "filetype": "N/A", - "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03804_PB1_m54306Ue_210716_134443", - "libraryLayout": "single", - "librarySelection": "size fractionation", - "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52699", - "mean": "17277", - "metadataAccession": "SRR30151631", - "min": "86", - "mmTag": false, - "n25": "14779", - "n50": "17694", - "n75": "21423", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", - "oneHundredkbPlus": "N/A", - "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m54306Ue_210716_134443.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13889", - "quartile50": "16482", - "quartile75": "19841", - "readN50": "N/A", - "result": "N/A", - "sampleId": "HG03804", - "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", - "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "21523857623", - "totalGbp": "21.52", - "totalReads": "1245794", - "twoHundredkbPlus": "N/A", - "whales": "N/A" - }, - { - "Gb": "N/A", - "accession": "SAMN37706908", - "assembly": "N/A", - "basecaller": "N/A", - "basecallerModel": "N/A", - "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706908", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", - "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD22", - "filename": "m54306Ue_210723_183738.5mc.hifi_reads.bam", - "filetype": "N/A", - "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03816_PB3_m54306Ue_210723_183738", - "libraryLayout": "single", - "librarySelection": "size fractionation", - "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "54660", - "mean": "16321", - "metadataAccession": "SRR30151649", - "min": "85", - "mmTag": false, - "n25": "13886", - "n50": "16911", - "n75": "20654", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", - "oneHundredkbPlus": "N/A", - "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m54306Ue_210723_183738.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "12872", - "quartile50": "15561", - "quartile75": "18986", - "readN50": "N/A", - "result": "N/A", - "sampleId": "HG03816", - "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", - "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "24450898193", - "totalGbp": "24.45", - "totalReads": "1498091", - "twoHundredkbPlus": "N/A", - "whales": "N/A" - }, - { - "Gb": "N/A", - "accession": "SAMN37706909", - "assembly": "N/A", - "basecaller": "N/A", - "basecallerModel": "N/A", - "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706909", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", - "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD52", - "filename": "m54306Ue_210725_040349.5mc.hifi_reads.bam", - "filetype": "N/A", - "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG04157_PB3_m54306Ue_210725_040349", - "libraryLayout": "single", - "librarySelection": "size fractionation", - "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "54115", - "mean": "16688", - "metadataAccession": "SRR30151645", - "min": "75", - "mmTag": false, - "n25": "14238", - "n50": "17292", - "n75": "21051", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", - "oneHundredkbPlus": "N/A", - "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210725_040349.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13219", - "quartile50": "15942", - "quartile75": "19398", - "readN50": "N/A", - "result": "N/A", - "sampleId": "HG04157", - "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", - "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "27148740947", - "totalGbp": "27.15", - "totalReads": "1626778", - "twoHundredkbPlus": "N/A", - "whales": "N/A" - }, - { - "Gb": "N/A", - "accession": "SAMN37706909", - "assembly": "N/A", - "basecaller": "N/A", - "basecallerModel": "N/A", - "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706909", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", - "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD52", - "filename": "m54306Ue_210727_144948.5mc.hifi_reads.bam", - "filetype": "N/A", - "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG04157_PB3_m54306Ue_210727_144948", - "libraryLayout": "single", - "librarySelection": "size fractionation", - "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "62026", - "mean": "16741", - "metadataAccession": "SRR30151644", - "min": "55", - "mmTag": false, - "n25": "14290", - "n50": "17339", - "n75": "21092", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", - "oneHundredkbPlus": "N/A", - "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210727_144948.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13280", - "quartile50": "15994", - "quartile75": "19456", - "readN50": "N/A", - "result": "N/A", - "sampleId": "HG04157", - "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", - "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "27655706749", - "totalGbp": "27.66", - "totalReads": "1651932", - "twoHundredkbPlus": "N/A", - "whales": "N/A" - }, - { - "Gb": "N/A", - "accession": "SAMN37706909", - "assembly": "N/A", - "basecaller": "N/A", - "basecallerModel": "N/A", - "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706909", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", - "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD52", - "filename": "m54306Ue_210729_003128.5mc.hifi_reads.bam", - "filetype": "N/A", - "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG04157_PB3_m54306Ue_210729_003128", - "libraryLayout": "single", - "librarySelection": "size fractionation", - "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53734", - "mean": "16595", - "metadataAccession": "SRR30151643", - "min": "47", - "mmTag": false, - "n25": "14137", - "n50": "17191", - "n75": "20961", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", - "oneHundredkbPlus": "N/A", - "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210729_003128.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13121", - "quartile50": "15831", - "quartile75": "19295", - "readN50": "N/A", - "result": "N/A", - "sampleId": "HG04157", - "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", - "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "25986857190", - "totalGbp": "25.99", - "totalReads": "1565878", - "twoHundredkbPlus": "N/A", - "whales": "N/A" - }, - { - "Gb": "N/A", - "accession": "SAMN37706909", - "assembly": "N/A", - "basecaller": "N/A", - "basecallerModel": "N/A", - "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706909", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", - "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD52", - "filename": "m54306Ue_210730_180007.5mc.hifi_reads.bam", - "filetype": "N/A", - "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG04157_PB3_m54306Ue_210730_180007", - "libraryLayout": "single", - "librarySelection": "size fractionation", - "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55237", - "mean": "16134", - "metadataAccession": "SRR30151642", - "min": "50", - "mmTag": false, - "n25": "13675", - "n50": "16708", - "n75": "20522", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", - "oneHundredkbPlus": "N/A", - "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210730_180007.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "12673", - "quartile50": "15325", - "quartile75": "18788", - "readN50": "N/A", - "result": "N/A", - "sampleId": "HG04157", - "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", - "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "26908338226", - "totalGbp": "26.91", - "totalReads": "1667725", - "twoHundredkbPlus": "N/A", - "whales": "N/A" - }, - { - "Gb": "N/A", - "accession": "SAMN37706906", - "assembly": "N/A", - "basecaller": "N/A", - "basecallerModel": "N/A", - "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706906", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", - "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB40", - "filename": "m54306Ue_210801_045414.5mc.hifi_reads.bam", - "filetype": "N/A", - "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02668_PB1_m54306Ue_210801_045414", - "libraryLayout": "single", - "librarySelection": "size fractionation", - "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57148", - "mean": "17510", - "metadataAccession": "SRR30151635", - "min": "84", - "mmTag": false, - "n25": "15138", - "n50": "18066", - "n75": "21647", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", - "oneHundredkbPlus": "N/A", - "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m54306Ue_210801_045414.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "14207", - "quartile50": "16874", - "quartile75": "20215", - "readN50": "N/A", - "result": "N/A", - "sampleId": "HG02668", - "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", - "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "26571933038", - "totalGbp": "26.57", - "totalReads": "1517517", - "twoHundredkbPlus": "N/A", - "whales": "N/A" - }, - { - "Gb": "N/A", - "accession": "SAMN37706906", - "assembly": "N/A", - "basecaller": "N/A", - "basecallerModel": "N/A", - "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706906", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", - "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB40", - "filename": "m54306Ue_210802_164702.5mc.hifi_reads.bam", - "filetype": "N/A", - "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02668_PB1_m54306Ue_210802_164702", - "libraryLayout": "single", - "librarySelection": "size fractionation", - "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61042", - "mean": "16391", - "metadataAccession": "SRR30151634", - "min": "64", - "mmTag": false, - "n25": "14047", - "n50": "16832", - "n75": "20429", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", - "oneHundredkbPlus": "N/A", - "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m54306Ue_210802_164702.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13178", - "quartile50": "15654", - "quartile75": "18901", - "readN50": "N/A", - "result": "N/A", - "sampleId": "HG02668", - "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", - "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "27022607363", - "totalGbp": "27.02", - "totalReads": "1648600", - "twoHundredkbPlus": "N/A", - "whales": "N/A" - }, - { - "Gb": "N/A", - "accession": "SAMN37706906", - "assembly": "N/A", - "basecaller": "N/A", - "basecallerModel": "N/A", - "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706906", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", - "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB40", - "filename": "m54306Ue_210804_021745.5mc.hifi_reads.bam", - "filetype": "N/A", - "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02668_PB1_m54306Ue_210804_021745", - "libraryLayout": "single", - "librarySelection": "size fractionation", - "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61259", - "mean": "16535", - "metadataAccession": "SRR30151633", - "min": "86", - "mmTag": false, - "n25": "14180", - "n50": "16991", - "n75": "20616", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", - "oneHundredkbPlus": "N/A", - "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m54306Ue_210804_021745.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13297", - "quartile50": "15799", - "quartile75": "19074", - "readN50": "N/A", - "result": "N/A", - "sampleId": "HG02668", - "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", - "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "19183912203", - "totalGbp": "19.18", - "totalReads": "1160173", - "twoHundredkbPlus": "N/A", - "whales": "N/A" - }, { "Gb": "N/A", "accession": "SAMN17861236", @@ -13586,5451 +12871,5451 @@ }, { "Gb": "N/A", - "accession": "SAMN33758795", + "accession": "SAMN17861666", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758795", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861666", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 26kb fractionated gDNA", - "familyId": "PK60", - "filename": "m54329U_211105_213234-bc1001.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB50", + "filename": "m64043_200403_163826.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03704_SRE.HFSS", + "libraryId": "HG02717_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "61181", - "mean": "20735", - "metadataAccession": "SRR23922655", - "min": "493", + "max": "49781", + "mean": "17048", + "metadataAccession": "SRR13684388", + "min": "48", "mmTag": false, - "n25": "17908", - "n50": "20760", - "n75": "24604", + "n25": "15108", + "n50": "16669", + "n75": "19437", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m54329U_211105_213234-bc1001.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02717/raw_data/PacBio_HiFi/m64043_200403_163826.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17290", - "quartile50": "19755", - "quartile75": "23225", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "14838", + "quartile50": "16196", + "quartile75": "18413", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03704", + "sampleId": "HG02717", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "25139477214", - "totalGbp": "25.14", - "totalReads": "1212386", + "totalBp": "36342520970", + "totalGbp": "36.34", + "totalReads": "2131662", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758787", + "accession": "SAMN17861666", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758787", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861666", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "PK26", - "filename": "m54329U_211109_002533-bc1002.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB50", + "filename": "m64043_200405_180950.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02735_SRE.HFSS", + "libraryId": "HG02717_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "55937", - "mean": "19329", - "metadataAccession": "SRR23922666", - "min": "120", + "max": "49958", + "mean": "17151", + "metadataAccession": "SRR13684388", + "min": "46", "mmTag": false, - "n25": "16796", - "n50": "19279", - "n75": "22705", + "n25": "15188", + "n50": "16776", + "n75": "19595", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m54329U_211109_002533-bc1002.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02717/raw_data/PacBio_HiFi/m64043_200405_180950.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16296", - "quartile50": "18426", - "quartile75": "21500", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "14913", + "quartile50": "16294", + "quartile75": "18565", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02735", + "sampleId": "HG02717", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "11815933021", - "totalGbp": "11.82", - "totalReads": "611305", + "totalBp": "34324816343", + "totalGbp": "34.32", + "totalReads": "2001329", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758782", + "accession": "SAMN17861666", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758782", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861666", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": "PR18", - "filename": "m54329U_211110_112322-bc1008.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB50", + "filename": "m64043_200407_002219.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01074_SRE.HFSS", + "libraryId": "HG02717_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "61655", - "mean": "21008", - "metadataAccession": "SRR23922644", - "min": "139", + "max": "46041", + "mean": "17192", + "metadataAccession": "SRR13684388", + "min": "45", "mmTag": false, - "n25": "18146", - "n50": "21004", - "n75": "24897", + "n25": "15201", + "n50": "16818", + "n75": "19702", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m54329U_211110_112322-bc1008.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02717/raw_data/PacBio_HiFi/m64043_200407_002219.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17537", - "quartile50": "19990", - "quartile75": "23484", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "14920", + "quartile50": "16320", + "quartile75": "18637", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01074", + "sampleId": "HG02717", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "15230826716", - "totalGbp": "15.23", - "totalReads": "724982", + "totalBp": "34814542915", + "totalGbp": "34.81", + "totalReads": "2024928", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758795", + "accession": "SAMN17861666", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758795", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861666", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 26kb fractionated gDNA", - "familyId": "PK60", - "filename": "m54329U_211111_222027-bc1001.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB50", + "filename": "m64043_200408_064651.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03704_SRE.HFSS", + "libraryId": "HG02717_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "67087", - "mean": "20659", - "metadataAccession": "SRR23922655", - "min": "727", + "max": "49936", + "mean": "17129", + "metadataAccession": "SRR13684388", + "min": "47", "mmTag": false, - "n25": "17853", - "n50": "20671", - "n75": "24461", + "n25": "15160", + "n50": "16748", + "n75": "19581", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m54329U_211111_222027-bc1001.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02717/raw_data/PacBio_HiFi/m64043_200408_064651.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17248", - "quartile50": "19681", - "quartile75": "23109", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "14884", + "quartile50": "16265", + "quartile75": "18536", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03704", + "sampleId": "HG02717", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "20852506753", - "totalGbp": "20.85", - "totalReads": "1009358", + "totalBp": "34817299277", + "totalGbp": "34.82", + "totalReads": "2032542", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758787", + "accession": "SAMN17861667", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758787", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861667", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": "PK26", - "filename": "m54329U_211204_121716-bc1002.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB89", + "filename": "m64043_200410_214826.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02735.HFSS2", + "libraryId": "HG02886_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57951", - "mean": "19522", - "metadataAccession": "SRR23922665", - "min": "55", + "max": "50049", + "mean": "17675", + "metadataAccession": "SRR13684387", + "min": "47", "mmTag": false, - "n25": "16940", - "n50": "19656", - "n75": "23239", + "n25": "15933", + "n50": "17391", + "n75": "19669", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m54329U_211204_121716-bc1002.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02886/raw_data/PacBio_HiFi/m64043_200410_214826.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16317", - "quartile50": "18697", - "quartile75": "21974", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "15688", + "quartile50": "17002", + "quartile75": "18953", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02735", + "sampleId": "HG02886", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31721863148", - "totalGbp": "31.72", - "totalReads": "1624922", + "totalBp": "34103394360", + "totalGbp": "34.1", + "totalReads": "1929448", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758782", + "accession": "SAMN17861667", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758782", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861667", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "PR18", - "filename": "m54329U_211208_005551-bc1008.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB89", + "filename": "m64043_200412_040054.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01074.HFSS2", + "libraryId": "HG02886_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "53902", - "mean": "19049", - "metadataAccession": "SRR23922645", - "min": "200", + "max": "48163", + "mean": "17797", + "metadataAccession": "SRR13684387", + "min": "47", "mmTag": false, - "n25": "16436", - "n50": "19215", - "n75": "22858", + "n25": "16010", + "n50": "17504", + "n75": "19854", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m54329U_211208_005551-bc1008.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02886/raw_data/PacBio_HiFi/m64043_200412_040054.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "15785", - "quartile50": "18197", - "quartile75": "21525", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "15758", + "quartile50": "17100", + "quartile75": "19106", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01074", + "sampleId": "HG02886", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34933587178", - "totalGbp": "34.93", - "totalReads": "1833869", + "totalBp": "35972927628", + "totalGbp": "35.97", + "totalReads": "2021284", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758787", + "accession": "SAMN17861667", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758787", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861667", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": "PK26", - "filename": "m54329U_211209_115915-bc1002.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB89", + "filename": "m64043_200413_102554.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02735.HFSS2", + "libraryId": "HG02886_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "62313", - "mean": "19615", - "metadataAccession": "SRR23922665", - "min": "53", + "max": "48532", + "mean": "18277", + "metadataAccession": "SRR13684387", + "min": "46", "mmTag": false, - "n25": "17011", - "n50": "19773", - "n75": "23407", + "n25": "16302", + "n50": "17984", + "n75": "20716", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m54329U_211209_115915-bc1002.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02886/raw_data/PacBio_HiFi/m64043_200413_102554.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16371", - "quartile50": "18792", - "quartile75": "22115", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "16011", + "quartile50": "17500", + "quartile75": "19798", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02735", + "sampleId": "HG02886", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "32462661287", - "totalGbp": "32.46", - "totalReads": "1654923", + "totalBp": "33571543462", + "totalGbp": "33.57", + "totalReads": "1836728", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758782", + "accession": "SAMN17861667", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758782", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861667", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "PR18", - "filename": "m54329U_211211_014820-bc1008.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB89", + "filename": "m64043_200414_165107.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01074.HFSS2", + "libraryId": "HG02886_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "61840", - "mean": "19128", - "metadataAccession": "SRR23922645", - "min": "139", + "max": "50292", + "mean": "17954", + "metadataAccession": "SRR13684387", + "min": "45", "mmTag": false, - "n25": "16493", - "n50": "19304", - "n75": "22988", + "n25": "16104", + "n50": "17657", + "n75": "20126", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m54329U_211211_014820-bc1008.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02886/raw_data/PacBio_HiFi/m64043_200414_165107.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "15826", - "quartile50": "18266", - "quartile75": "21628", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "15840", + "quartile50": "17229", + "quartile75": "19327", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01074", + "sampleId": "HG02886", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "37481785263", - "totalGbp": "37.48", - "totalReads": "1959425", + "totalBp": "33758955124", + "totalGbp": "33.76", + "totalReads": "1880255", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758782", + "accession": "SAMN17861665", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758782", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861665", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "PR18", - "filename": "m54329U_211212_111219-bc1008.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB33", + "filename": "m64043_200501_162248.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01074.HFSS2", + "libraryId": "HG02630_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57471", - "mean": "19180", - "metadataAccession": "SRR23922645", - "min": "112", + "max": "49817", + "mean": "18982", + "metadataAccession": "SRR13684389", + "min": "45", "mmTag": false, - "n25": "16537", - "n50": "19364", - "n75": "23063", + "n25": "17152", + "n50": "18935", + "n75": "21316", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m54329U_211212_111219-bc1008.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02630/raw_data/PacBio_HiFi/m64043_200501_162248.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "15858", - "quartile50": "18322", - "quartile75": "21695", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "16796", + "quartile50": "18472", + "quartile75": "20639", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01074", + "sampleId": "HG02630", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "37561501658", - "totalGbp": "37.56", - "totalReads": "1958351", + "totalBp": "39398066325", + "totalGbp": "39.4", + "totalReads": "2075445", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758790", + "accession": "SAMN17861665", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758790", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861665", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "GB110", - "filename": "m54329U_211214_012740-bc1009.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB33", + "filename": "m64043_200502_223511.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03041.HFSS", + "libraryId": "HG02630_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "54806", - "mean": "19306", - "metadataAccession": "SRR23922661", - "min": "122", + "max": "49229", + "mean": "19481", + "metadataAccession": "SRR13684389", + "min": "46", "mmTag": false, - "n25": "16610", - "n50": "19602", - "n75": "23411", + "n25": "17527", + "n50": "19449", + "n75": "22047", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m54329U_211214_012740-bc1009.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02630/raw_data/PacBio_HiFi/m64043_200502_223511.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "15843", - "quartile50": "18462", - "quartile75": "21965", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "17138", + "quartile50": "18926", + "quartile75": "21293", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03041", + "sampleId": "HG02630", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", "subpopulation": "GWD", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "38046233336", - "totalGbp": "38.05", - "totalReads": "1970604", + "totalBp": "37434888190", + "totalGbp": "37.43", + "totalReads": "1921608", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758790", + "accession": "SAMN17861665", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758790", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861665", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "GB110", - "filename": "m54329U_211215_225017-bc1009.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB33", + "filename": "m64043_200504_050026.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03041.HFSS", + "libraryId": "HG02630_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "56131", - "mean": "19439", - "metadataAccession": "SRR23922661", - "min": "118", + "max": "49274", + "mean": "19300", + "metadataAccession": "SRR13684389", + "min": "46", "mmTag": false, - "n25": "16724", - "n50": "19757", - "n75": "23596", + "n25": "17403", + "n50": "19260", + "n75": "21751", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m54329U_211215_225017-bc1009.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02630/raw_data/PacBio_HiFi/m64043_200504_050026.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "15931", - "quartile50": "18603", - "quartile75": "22146", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "17031", + "quartile50": "18769", + "quartile75": "21036", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03041", + "sampleId": "HG02630", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", "subpopulation": "GWD", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "36724761349", - "totalGbp": "36.72", - "totalReads": "1889210", + "totalBp": "37589214946", + "totalGbp": "37.59", + "totalReads": "1947611", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758790", + "accession": "SAMN17861665", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758790", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861665", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "GB110", - "filename": "m54329U_211217_080751-bc1009.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB33", + "filename": "m64043_200505_112554.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03041.HFSS", + "libraryId": "HG02630_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "58287", - "mean": "19356", - "metadataAccession": "SRR23922661", - "min": "117", + "max": "48960", + "mean": "19212", + "metadataAccession": "SRR13684389", + "min": "45", "mmTag": false, - "n25": "16644", - "n50": "19654", - "n75": "23489", + "n25": "17331", + "n50": "19165", + "n75": "21633", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m54329U_211217_080751-bc1009.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02630/raw_data/PacBio_HiFi/m64043_200505_112554.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "15871", - "quartile50": "18510", - "quartile75": "22035", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "16966", + "quartile50": "18683", + "quartile75": "20926", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03041", + "sampleId": "HG02630", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", "subpopulation": "GWD", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "37659966853", - "totalGbp": "37.66", - "totalReads": "1945591", + "totalBp": "36589957988", + "totalGbp": "36.59", + "totalReads": "1904474", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758781", + "accession": "SAMN17861668", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758781", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861668", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "PR03", - "filename": "m54329U_211222_104516-bc1010.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SL50", + "filename": "m64043_200508_172634.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00639.HFSS", + "libraryId": "HG03453_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "64002", - "mean": "19762", - "metadataAccession": "SRR23922643", - "min": "79", + "max": "49546", + "mean": "20105", + "metadataAccession": "SRR13684386", + "min": "46", "mmTag": false, - "n25": "16931", - "n50": "20504", - "n75": "24966", + "n25": "18055", + "n50": "19851", + "n75": "22597", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/m54329U_211222_104516-bc1010.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03453/raw_data/PacBio_HiFi/m64043_200508_172634.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "15750", - "quartile50": "18909", - "quartile75": "22999", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "17748", + "quartile50": "19359", + "quartile75": "21770", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00639", + "sampleId": "HG03453", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": "MSL", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "30157424611", - "totalGbp": "30.16", - "totalReads": "1525960", + "totalBp": "40647101711", + "totalGbp": "40.65", + "totalReads": "2021670", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758783", + "accession": "SAMN17861668", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758783", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861668", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": "PR21", - "filename": "m54329U_211223_214216-bc1011.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SL50", + "filename": "m64043_200509_233929.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01081.HFSS", + "libraryId": "HG03453_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "58991", - "mean": "19422", - "metadataAccession": "SRR23922647", - "min": "61", + "max": "49421", + "mean": "20117", + "metadataAccession": "SRR13684386", + "min": "46", "mmTag": false, - "n25": "16588", - "n50": "20463", - "n75": "25067", + "n25": "18068", + "n50": "19864", + "n75": "22610", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/m54329U_211223_214216-bc1011.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03453/raw_data/PacBio_HiFi/m64043_200509_233929.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "15137", - "quartile50": "18626", - "quartile75": "22945", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "17757", + "quartile50": "19373", + "quartile75": "21782", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01081", + "sampleId": "HG03453", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": "MSL", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34516634519", - "totalGbp": "34.52", - "totalReads": "1777187", + "totalBp": "41586898493", + "totalGbp": "41.59", + "totalReads": "2067165", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758789", + "accession": "SAMN17861668", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758789", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861668", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": "PK35", - "filename": "m54329U_211225_070909-bc1012.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SL50", + "filename": "m64043_200511_060458.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03017.HFSS", + "libraryId": "HG03453_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "64185", - "mean": "19500", - "metadataAccession": "SRR23922662", - "min": "61", + "max": "48820", + "mean": "20066", + "metadataAccession": "SRR13684386", + "min": "46", "mmTag": false, - "n25": "16617", - "n50": "20225", - "n75": "24689", + "n25": "18033", + "n50": "19810", + "n75": "22523", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m54329U_211225_070909-bc1012.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03453/raw_data/PacBio_HiFi/m64043_200511_060458.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "15437", - "quartile50": "18613", - "quartile75": "22719", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "17726", + "quartile50": "19328", + "quartile75": "21710", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03017", + "sampleId": "HG03453", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "MSL", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34046953548", - "totalGbp": "34.05", - "totalReads": "1745970", + "totalBp": "39526964195", + "totalGbp": "39.53", + "totalReads": "1969769", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758781", + "accession": "SAMN17861668", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758781", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861668", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "PR03", - "filename": "m54329U_211230_014258-bc1010.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SL50", + "filename": "m64043_200512_123035.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00639.HFSS", + "libraryId": "HG03453_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "56516", - "mean": "19943", - "metadataAccession": "SRR23922643", - "min": "61", + "max": "49779", + "mean": "20253", + "metadataAccession": "SRR13684386", + "min": "45", "mmTag": false, - "n25": "17062", - "n50": "20664", - "n75": "25118", + "n25": "18171", + "n50": "20011", + "n75": "22800", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/m54329U_211230_014258-bc1010.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03453/raw_data/PacBio_HiFi/m64043_200512_123035.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "15883", - "quartile50": "19084", - "quartile75": "23193", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "17855", + "quartile50": "19506", + "quartile75": "21962", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00639", + "sampleId": "HG03453", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": "MSL", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "32778391595", - "totalGbp": "32.78", - "totalReads": "1643577", + "totalBp": "38494019627", + "totalGbp": "38.49", + "totalReads": "1900582", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758781", + "accession": "SAMN17861671", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758781", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861671", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "PR03", - "filename": "m54329U_211231_123903-bc1010.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SL72", + "filename": "m64043_200515_165406.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00639.HFSS", + "libraryId": "HG03579_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "61767", - "mean": "20150", - "metadataAccession": "SRR23922643", - "min": "118", + "max": "48582", + "mean": "19543", + "metadataAccession": "SRR13684383", + "min": "46", "mmTag": false, - "n25": "17196", - "n50": "20876", - "n75": "25416", + "n25": "17578", + "n50": "19426", + "n75": "22029", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/m54329U_211231_123903-bc1010.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03579/raw_data/PacBio_HiFi/m64043_200515_165406.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "15989", - "quartile50": "19255", - "quartile75": "23451", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "17216", + "quartile50": "18917", + "quartile75": "21227", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00639", + "sampleId": "HG03579", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": "MSL", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "37535814568", - "totalGbp": "37.54", - "totalReads": "1862777", + "totalBp": "33330044108", + "totalGbp": "33.33", + "totalReads": "1705389", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758783", + "accession": "SAMN17861671", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758783", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861671", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": "PR21", - "filename": "m54329U_220101_220852-bc1011.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SL72", + "filename": "m64043_200516_230634.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01081.HFSS", + "libraryId": "HG03579_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "66384", - "mean": "19615", - "metadataAccession": "SRR23922647", - "min": "72", + "max": "49804", + "mean": "19671", + "metadataAccession": "SRR13684383", + "min": "46", "mmTag": false, - "n25": "16724", - "n50": "20665", - "n75": "25307", + "n25": "17647", + "n50": "19522", + "n75": "22212", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/m54329U_220101_220852-bc1011.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03579/raw_data/PacBio_HiFi/m64043_200516_230634.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "15259", - "quartile50": "18807", - "quartile75": "23180", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "17279", + "quartile50": "18999", + "quartile75": "21365", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01081", + "sampleId": "HG03579", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": "MSL", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "38127675820", - "totalGbp": "38.13", - "totalReads": "1943784", + "totalBp": "39277340010", + "totalGbp": "39.28", + "totalReads": "1996694", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758783", + "accession": "SAMN17861671", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758783", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861671", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": "PR21", - "filename": "m54329U_220103_072943-bc1011.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SL72", + "filename": "m64043_200518_053124.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01081.HFSS", + "libraryId": "HG03579_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "70984", - "mean": "19600", - "metadataAccession": "SRR23922647", - "min": "62", + "max": "49746", + "mean": "19480", + "metadataAccession": "SRR13684383", + "min": "48", "mmTag": false, - "n25": "16723", - "n50": "20642", - "n75": "25280", + "n25": "17501", + "n50": "19337", + "n75": "21963", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/m54329U_220103_072943-bc1011.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03579/raw_data/PacBio_HiFi/m64043_200518_053124.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "15254", - "quartile50": "18803", - "quartile75": "23168", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "17136", + "quartile50": "18826", + "quartile75": "21141", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01081", + "sampleId": "HG03579", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": "MSL", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "35477098664", - "totalGbp": "35.48", - "totalReads": "1809964", + "totalBp": "39165319090", + "totalGbp": "39.17", + "totalReads": "2010535", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758794", + "accession": "SAMN17861671", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758794", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861671", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "PK41", - "filename": "m54329U_220105_011819-bc1015.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SL72", + "filename": "m64043_200519_115622.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03239.HFSS", + "libraryId": "HG03579_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "62749", - "mean": "20108", - "metadataAccession": "SRR23922656", - "min": "136", + "max": "49406", + "mean": "19492", + "metadataAccession": "SRR13684383", + "min": "47", "mmTag": false, - "n25": "17274", - "n50": "20592", - "n75": "24716", + "n25": "17516", + "n50": "19348", + "n75": "21959", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/m54329U_220105_011819-bc1015.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03579/raw_data/PacBio_HiFi/m64043_200519_115622.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16345", - "quartile50": "19264", - "quartile75": "23104", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "17156", + "quartile50": "18841", + "quartile75": "21146", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03239", + "sampleId": "HG03579", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "MSL", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "35760461752", - "totalGbp": "35.76", - "totalReads": "1778411", + "totalBp": "38217075483", + "totalGbp": "38.22", + "totalReads": "1960652", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758780", + "accession": "SAMN17861670", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758780", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861670", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "SH045", - "filename": "m54329U_220107_233847-bc1016.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB125", + "filename": "m64043_200521_171703.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00558.HFSS", + "libraryId": "HG03540_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "60416", - "mean": "21059", - "metadataAccession": "SRR23922640", - "min": "61", + "max": "49707", + "mean": "20711", + "metadataAccession": "SRR13684384", + "min": "46", "mmTag": false, - "n25": "17870", - "n50": "21746", - "n75": "26503", + "n25": "18612", + "n50": "20457", + "n75": "23197", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m54329U_220107_233847-bc1016.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03540/raw_data/PacBio_HiFi/m64043_200521_171703.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16632", - "quartile50": "20068", - "quartile75": "24477", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "18299", + "quartile50": "19960", + "quartile75": "22387", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00558", + "sampleId": "HG03540", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "33821381595", - "totalGbp": "33.82", - "totalReads": "1605959", + "totalBp": "39298150274", + "totalGbp": "39.3", + "totalReads": "1897441", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758789", + "accession": "SAMN17861670", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758789", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861670", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": "PK35", - "filename": "m54329U_220109_103416-bc1012.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB125", + "filename": "m64043_200522_232930.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03017.HFSS", + "libraryId": "HG03540_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "61362", - "mean": "20013", - "metadataAccession": "SRR23922662", - "min": "61", + "max": "49881", + "mean": "20684", + "metadataAccession": "SRR13684384", + "min": "45", "mmTag": false, - "n25": "16992", - "n50": "20799", - "n75": "25417", + "n25": "18596", + "n50": "20429", + "n75": "23160", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m54329U_220109_103416-bc1012.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03540/raw_data/PacBio_HiFi/m64043_200522_232930.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "15745", - "quartile50": "19090", - "quartile75": "23391", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "18291", + "quartile50": "19937", + "quartile75": "22355", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03017", + "sampleId": "HG03540", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31400943238", - "totalGbp": "31.4", - "totalReads": "1569013", + "totalBp": "38058368349", + "totalGbp": "38.06", + "totalReads": "1839904", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758780", + "accession": "SAMN17861670", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758780", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861670", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "SH045", - "filename": "m54329U_220114_143904-bc1016.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB125", + "filename": "m64043_200524_055430.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00558.HFSS", + "libraryId": "HG03540_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "67560", - "mean": "21101", - "metadataAccession": "SRR23922640", - "min": "61", + "max": "49994", + "mean": "20781", + "metadataAccession": "SRR13684384", + "min": "47", "mmTag": false, - "n25": "17911", - "n50": "21795", - "n75": "26553", + "n25": "18658", + "n50": "20527", + "n75": "23305", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m54329U_220114_143904-bc1016.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03540/raw_data/PacBio_HiFi/m64043_200524_055430.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16663", - "quartile50": "20114", - "quartile75": "24516", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "18344", + "quartile50": "20019", + "quartile75": "22480", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00558", + "sampleId": "HG03540", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "35323811810", - "totalGbp": "35.32", - "totalReads": "1673999", + "totalBp": "38599915696", + "totalGbp": "38.6", + "totalReads": "1857442", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758780", + "accession": "SAMN17861670", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758780", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861670", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "SH045", - "filename": "m54329U_220116_013607-bc1016.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB125", + "filename": "m64043_200525_121851.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00558.HFSS", + "libraryId": "HG03540_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "56168", - "mean": "21008", - "metadataAccession": "SRR23922640", - "min": "60", + "max": "50154", + "mean": "20937", + "metadataAccession": "SRR13684384", + "min": "46", "mmTag": false, - "n25": "17832", - "n50": "21688", - "n75": "26407", + "n25": "18772", + "n50": "20701", + "n75": "23544", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m54329U_220116_013607-bc1016.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03540/raw_data/PacBio_HiFi/m64043_200525_121851.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16605", - "quartile50": "20020", - "quartile75": "24384", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "18442", + "quartile50": "20175", + "quartile75": "22698", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00558", + "sampleId": "HG03540", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "33954147643", - "totalGbp": "33.95", - "totalReads": "1616247", + "totalBp": "37451931637", + "totalGbp": "37.45", + "totalReads": "1788752", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758789", + "accession": "SAMN17861664", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758789", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861664", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": "PK35", - "filename": "m54329U_220117_123334-bc1012.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB31", + "filename": "m64043_200530_164723.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03017.HFSS", + "libraryId": "HG02622_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "67494", - "mean": "19961", - "metadataAccession": "SRR23922662", - "min": "52", + "max": "49910", + "mean": "23125", + "metadataAccession": "SRR13684390", + "min": "45", "mmTag": false, - "n25": "16960", - "n50": "20748", - "n75": "25330", + "n25": "20811", + "n50": "22892", + "n75": "25951", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m54329U_220117_123334-bc1012.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02622/raw_data/PacBio_HiFi/m64043_200530_164723.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "15714", - "quartile50": "19049", - "quartile75": "23321", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "20458", + "quartile50": "22331", + "quartile75": "25075", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03017", + "sampleId": "HG02622", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "28780552619", - "totalGbp": "28.78", - "totalReads": "1441796", + "totalBp": "37233379263", + "totalGbp": "37.23", + "totalReads": "1610050", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758795", + "accession": "SAMN17861664", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758795", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861664", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": "PK60", - "filename": "m54329U_220203_054640-bc1001.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB31", + "filename": "m64043_200601_191521.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03704.HFSS3", + "libraryId": "HG02622_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "64236", - "mean": "19805", - "metadataAccession": "SRR23922654", - "min": "77", + "max": "49954", + "mean": "23320", + "metadataAccession": "SRR13684390", + "min": "46", "mmTag": false, - "n25": "16931", - "n50": "20064", - "n75": "24078", + "n25": "20958", + "n50": "23109", + "n75": "26215", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m54329U_220203_054640-bc1001.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02622/raw_data/PacBio_HiFi/m64043_200601_191521.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16127", - "quartile50": "18857", - "quartile75": "22528", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "20594", + "quartile50": "22526", + "quartile75": "25327", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03704", + "sampleId": "HG02622", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "15515677051", - "totalGbp": "15.52", - "totalReads": "783402", + "totalBp": "36900505572", + "totalGbp": "36.9", + "totalReads": "1582321", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758795", + "accession": "SAMN17861664", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758795", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861664", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "PK60", - "filename": "m54329U_220203_054640-bc1018.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB31", + "filename": "m64043_200603_012738.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03704.HFSS4", + "libraryId": "HG02622_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "48616", - "mean": "19289", - "metadataAccession": "SRR23922653", - "min": "61", + "max": "49813", + "mean": "22969", + "metadataAccession": "SRR13684390", + "min": "45", "mmTag": false, - "n25": "16754", - "n50": "19296", - "n75": "22712", + "n25": "20731", + "n50": "22740", + "n75": "25670", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m54329U_220203_054640-bc1018.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02622/raw_data/PacBio_HiFi/m64043_200603_012738.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16218", - "quartile50": "18426", - "quartile75": "21504", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "20396", + "quartile50": "22214", + "quartile75": "24844", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03704", + "sampleId": "HG02622", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "4818202256", - "totalGbp": "4.82", - "totalReads": "249779", + "totalBp": "35155415627", + "totalGbp": "35.16", + "totalReads": "1530497", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758795", + "accession": "SAMN17861664", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758795", - "ccsAlgorithm": "6.2.0", + "biosampleAccession": "SAMN17861664", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": "PK60", - "filename": "m54329U_220207_224702-bc1001.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB31", + "filename": "m64043_200604_075218.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03704.HFSS3", + "libraryId": "HG02622_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "63954", - "mean": "19930", - "metadataAccession": "SRR23922654", - "min": "65", + "max": "50214", + "mean": "23018", + "metadataAccession": "SRR13684390", + "min": "47", "mmTag": false, - "n25": "17016", - "n50": "20217", - "n75": "24294", + "n25": "20764", + "n50": "22784", + "n75": "25744", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m54329U_220207_224702-bc1001.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02622/raw_data/PacBio_HiFi/m64043_200604_075218.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16192", - "quartile50": "18974", - "quartile75": "22705", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "20424", + "quartile50": "22252", + "quartile75": "24909", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03704", + "sampleId": "HG02622", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "27431572003", - "totalGbp": "27.43", - "totalReads": "1376378", + "totalBp": "34702534691", + "totalGbp": "34.7", + "totalReads": "1507617", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758792", + "accession": "SAMN17861669", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758792", - "ccsAlgorithm": "6.3.0", + "biosampleAccession": "SAMN17861669", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": null, - "filename": "m54329U_220519_225150-bc2019.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SL56i", + "filename": "m64043_200606_175618.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03139.HFSS", + "libraryId": "HG03471_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "69263", - "mean": "21306", - "metadataAccession": "SRR23922659", - "min": "81", + "max": "50100", + "mean": "19241", + "metadataAccession": "SRR13684385", + "min": "45", "mmTag": false, - "n25": "18311", - "n50": "21741", - "n75": "25979", + "n25": "17163", + "n50": "19140", + "n75": "22070", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/m54329U_220519_225150-bc2019.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03471/raw_data/PacBio_HiFi/m64043_200606_175618.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17377", - "quartile50": "20423", - "quartile75": "24372", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "16785", + "quartile50": "18546", + "quartile75": "21161", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03139", + "sampleId": "HG03471", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "39824520384", - "totalGbp": "39.82", - "totalReads": "1869144", + "totalBp": "40465702550", + "totalGbp": "40.47", + "totalReads": "2102995", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758792", + "accession": "SAMN17861669", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758792", - "ccsAlgorithm": "6.3.0", + "biosampleAccession": "SAMN17861669", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": null, - "filename": "m54329U_220523_155616-bc2019.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SL56i", + "filename": "m64043_200608_185843.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03139.HFSS", + "libraryId": "HG03471_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "69240", - "mean": "21547", - "metadataAccession": "SRR23922659", - "min": "87", + "max": "49844", + "mean": "19316", + "metadataAccession": "SRR13684385", + "min": "45", "mmTag": false, - "n25": "18531", - "n50": "22043", - "n75": "26312", + "n25": "17230", + "n50": "19223", + "n75": "22153", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/m54329U_220523_155616-bc2019.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03471/raw_data/PacBio_HiFi/m64043_200608_185843.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17554", - "quartile50": "20687", - "quartile75": "24701", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "16854", + "quartile50": "18631", + "quartile75": "21249", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03139", + "sampleId": "HG03471", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "45152468620", - "totalGbp": "45.15", - "totalReads": "2095470", + "totalBp": "39510858680", + "totalGbp": "39.51", + "totalReads": "2045451", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758792", + "accession": "SAMN17861669", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758792", - "ccsAlgorithm": "6.3.0", + "biosampleAccession": "SAMN17861669", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": null, - "filename": "m54329U_220525_111437-bc2019.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SL56i", + "filename": "m64043_200610_011156.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03139.HFSS", + "libraryId": "HG03471_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "66085", - "mean": "21499", - "metadataAccession": "SRR23922659", - "min": "90", + "max": "49263", + "mean": "19357", + "metadataAccession": "SRR13684385", + "min": "46", "mmTag": false, - "n25": "18495", - "n50": "21985", - "n75": "26234", + "n25": "17258", + "n50": "19270", + "n75": "22213", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/m54329U_220525_111437-bc2019.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03471/raw_data/PacBio_HiFi/m64043_200610_011156.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17524", - "quartile50": "20644", - "quartile75": "24640", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "16876", + "quartile50": "18668", + "quartile75": "21304", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03139", + "sampleId": "HG03471", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "43172373160", - "totalGbp": "43.17", - "totalReads": "2008028", + "totalBp": "39846677634", + "totalGbp": "39.85", + "totalReads": "2058511", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", + "accession": "SAMN17861669", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "6.3.0", + "biosampleAccession": "SAMN17861669", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "Y016", - "filename": "m54329U_220604_002013-bc2021.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SL56i", + "filename": "m64043_200611_073649.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "NA18522.HFSS", + "libraryId": "HG03471_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "62801", - "mean": "20434", - "metadataAccession": "SRR23922652", - "min": "89", + "max": "49235", + "mean": "19314", + "metadataAccession": "SRR13684385", + "min": "46", "mmTag": false, - "n25": "17705", - "n50": "20717", - "n75": "24537", + "n25": "17226", + "n50": "19219", + "n75": "22152", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/m54329U_220604_002013-bc2021.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03471/raw_data/PacBio_HiFi/m64043_200611_073649.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "16965", - "quartile50": "19634", - "quartile75": "23192", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "16846", + "quartile50": "18626", + "quartile75": "21244", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "HG03471", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "41706367952", - "totalGbp": "41.71", - "totalReads": "2040973", + "totalBp": "37350112108", + "totalGbp": "37.35", + "totalReads": "1933742", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", + "accession": "SAMN17861660", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "6.3.0", + "biosampleAccession": "SAMN17861660", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "Y016", - "filename": "m54329U_220605_194957-bc2021.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL011", + "filename": "m64043_200612_200936.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "NA18522.HFSS", + "libraryId": "HG01928_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57002", - "mean": "20386", - "metadataAccession": "SRR23922652", - "min": "89", + "max": "50112", + "mean": "23596", + "metadataAccession": "SRR13684376", + "min": "49", "mmTag": false, - "n25": "17666", - "n50": "20663", - "n75": "24465", + "n25": "21333", + "n50": "23667", + "n75": "26624", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/m54329U_220605_194957-bc2021.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01928/raw_data/PacBio_HiFi/m64043_200612_200936.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "16934", - "quartile50": "19589", - "quartile75": "23129", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "20871", + "quartile50": "23063", + "quartile75": "25835", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "HG01928", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "42511152283", - "totalGbp": "42.51", - "totalReads": "2085214", + "totalBp": "28477418837", + "totalGbp": "28.48", + "totalReads": "1206871", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", + "accession": "SAMN17861660", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "6.3.0", + "biosampleAccession": "SAMN17861660", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "Y016", - "filename": "m54329U_220607_194753-bc2021.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL011", + "filename": "m64043_200614_191756.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "NA18522.HFSS", + "libraryId": "HG01928_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "69031", - "mean": "20210", - "metadataAccession": "SRR23922652", - "min": "69", + "max": "50091", + "mean": "23447", + "metadataAccession": "SRR13684376", + "min": "46", "mmTag": false, - "n25": "17488", - "n50": "20454", - "n75": "24255", + "n25": "21236", + "n50": "23521", + "n75": "26383", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/m54329U_220607_194753-bc2021.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01928/raw_data/PacBio_HiFi/m64043_200614_191756.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "16774", - "quartile50": "19386", - "quartile75": "22898", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "20789", + "quartile50": "22941", + "quartile75": "25631", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "HG01928", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "46372792364", - "totalGbp": "46.37", - "totalReads": "2294482", + "totalBp": "27531809459", + "totalGbp": "27.53", + "totalReads": "1174204", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", + "accession": "SAMN17861660", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "6.3.0", + "biosampleAccession": "SAMN17861660", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "NG06", - "filename": "m54329U_220816_182601-bc2045.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL011", + "filename": "m64043_200616_013031.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "PG02922.HFSS", + "libraryId": "HG01928_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "48799", - "mean": "18233", - "metadataAccession": "SRR23922664", - "min": "141", + "max": "50104", + "mean": "23498", + "metadataAccession": "SRR13684376", + "min": "46", "mmTag": false, - "n25": "15986", - "n50": "18264", - "n75": "21324", + "n25": "21262", + "n50": "23565", + "n75": "26503", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m54329U_220816_182601-bc2045.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01928/raw_data/PacBio_HiFi/m64043_200616_013031.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "15504", - "quartile50": "17513", - "quartile75": "20303", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "20804", + "quartile50": "22976", + "quartile75": "25728", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "HG01928", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "19937213389", - "totalGbp": "19.94", - "totalReads": "1093416", + "totalBp": "25229115676", + "totalGbp": "25.23", + "totalReads": "1073649", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", + "accession": "SAMN17861660", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "6.3.0", + "biosampleAccession": "SAMN17861660", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": null, - "filename": "m54329U_220823_191353-bc2011.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL011", + "filename": "m64043_200617_075530.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "PG18747_1.HFSS", + "libraryId": "HG01928_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "62402", - "mean": "20063", - "metadataAccession": "SRR23922651", - "min": "53", + "max": "49952", + "mean": "23616", + "metadataAccession": "SRR13684376", + "min": "48", "mmTag": false, - "n25": "17771", - "n50": "20172", - "n75": "23299", + "n25": "21357", + "n50": "23677", + "n75": "26630", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/m54329U_220823_191353-bc2011.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01928/raw_data/PacBio_HiFi/m64043_200617_075530.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17271", - "quartile50": "19431", - "quartile75": "22353", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "20897", + "quartile50": "23083", + "quartile75": "25852", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "HG01928", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "44479802984", - "totalGbp": "44.48", - "totalReads": "2216924", + "totalBp": "27663641221", + "totalGbp": "27.66", + "totalReads": "1171348", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758778", + "accession": "SAMN17861659", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758778", - "ccsAlgorithm": "6.3.0", + "biosampleAccession": "SAMN17861659", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m54329U_220825_174247-bc2012.5mc.hifi_reads.bam", + "familyId": "PR36", + "filename": "m64043_200618_201934.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "PG00099_1.HFSS", + "libraryId": "HG01175_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "64390", - "mean": "20844", - "metadataAccession": "SRR23922670", - "min": "87", + "max": "49892", + "mean": "21676", + "metadataAccession": "SRR13684377", + "min": "45", "mmTag": false, - "n25": "18329", - "n50": "20991", - "n75": "24424", + "n25": "19575", + "n50": "21558", + "n75": "24328", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/PacBio_HiFi/m54329U_220825_174247-bc2012.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01175/raw_data/PacBio_HiFi/m64043_200618_201934.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17755", - "quartile50": "20124", - "quartile75": "23333", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "19197", + "quartile50": "21038", + "quartile75": "23531", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00099", + "sampleId": "HG01175", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "47677590021", - "totalGbp": "47.68", - "totalReads": "2287312", + "totalBp": "27337960037", + "totalGbp": "27.34", + "totalReads": "1261159", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758778", + "accession": "SAMN17861659", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758778", - "ccsAlgorithm": "6.3.0", + "biosampleAccession": "SAMN17861659", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", - "familyId": null, - "filename": "m54329U_220827_143814-bc2050.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PR36", + "filename": "m64043_200620_173220.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "PG00099_2.HFSS", + "libraryId": "HG01175_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "54052", - "mean": "19996", - "metadataAccession": "SRR23922669", - "min": "52", + "max": "50465", + "mean": "21811", + "metadataAccession": "SRR13684377", + "min": "45", "mmTag": false, - "n25": "17720", - "n50": "20026", - "n75": "23102", + "n25": "19663", + "n50": "21687", + "n75": "24539", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/PacBio_HiFi/m54329U_220827_143814-bc2050.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01175/raw_data/PacBio_HiFi/m64043_200620_173220.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17274", - "quartile50": "19325", - "quartile75": "22189", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "19274", + "quartile50": "21150", + "quartile75": "23708", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00099", + "sampleId": "HG01175", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "45528316868", - "totalGbp": "45.53", - "totalReads": "2276772", + "totalBp": "33311371824", + "totalGbp": "33.31", + "totalReads": "1527212", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758778", + "accession": "SAMN17861659", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758778", - "ccsAlgorithm": "6.3.0", + "biosampleAccession": "SAMN17861659", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", - "familyId": null, - "filename": "m54329U_220829_095708-bc2050.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PR36", + "filename": "m64043_200621_234442.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "PG00099_2.HFSS", + "libraryId": "HG01175_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "59908", - "mean": "20052", - "metadataAccession": "SRR23922669", - "min": "138", + "max": "49779", + "mean": "21663", + "metadataAccession": "SRR13684377", + "min": "46", "mmTag": false, - "n25": "17765", - "n50": "20098", - "n75": "23193", + "n25": "19577", + "n50": "21552", + "n75": "24299", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/PacBio_HiFi/m54329U_220829_095708-bc2050.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01175/raw_data/PacBio_HiFi/m64043_200621_234442.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17309", - "quartile50": "19387", - "quartile75": "22273", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "19196", + "quartile50": "21036", + "quartile75": "23514", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00099", + "sampleId": "HG01175", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "50762698477", - "totalGbp": "50.76", - "totalReads": "2531476", + "totalBp": "25094609545", + "totalGbp": "25.09", + "totalReads": "1158408", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758779", + "accession": "SAMN17861659", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758779", - "ccsAlgorithm": "6.3.0", + "biosampleAccession": "SAMN17861659", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", - "familyId": null, - "filename": "m54329U_220901_221341-bc2051.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PR36", + "filename": "m64043_200623_060946.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "PG00280.HFSS", + "libraryId": "HG01175_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57069", - "mean": "19893", - "metadataAccession": "SRR23922658", - "min": "87", + "max": "48916", + "mean": "21703", + "metadataAccession": "SRR13684377", + "min": "45", "mmTag": false, - "n25": "17461", - "n50": "19906", - "n75": "23180", + "n25": "19603", + "n50": "21590", + "n75": "24349", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/PacBio_HiFi/m54329U_220901_221341-bc2051.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01175/raw_data/PacBio_HiFi/m64043_200623_060946.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "16982", - "quartile50": "19131", - "quartile75": "22147", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "19223", + "quartile50": "21069", + "quartile75": "23556", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00280", + "sampleId": "HG01175", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "47176915770", - "totalGbp": "47.18", - "totalReads": "2371461", + "totalBp": "26195722346", + "totalGbp": "26.2", + "totalReads": "1206997", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", + "accession": "SAMN17861658", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "6.3.0", + "biosampleAccession": "SAMN17861658", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "NG06", - "filename": "m54329U_220903_190900-bc2053.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PR25", + "filename": "m64043_200625_174853.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "PG02922.HFSS2", + "libraryId": "HG01106_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "76923", - "mean": "22047", - "metadataAccession": "SRR23922663", - "min": "110", + "max": "50120", + "mean": "22282", + "metadataAccession": "SRR13684378", + "min": "48", "mmTag": false, - "n25": "18975", - "n50": "22556", - "n75": "26969", + "n25": "20354", + "n50": "22145", + "n75": "24608", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m54329U_220903_190900-bc2053.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01106/raw_data/PacBio_HiFi/m64043_200625_174853.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17970", - "quartile50": "21163", - "quartile75": "25288", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "20072", + "quartile50": "21734", + "quartile75": "24014", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "HG01106", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "43896414378", - "totalGbp": "43.9", - "totalReads": "1990977", + "totalBp": "38034918237", + "totalGbp": "38.03", + "totalReads": "1706917", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", + "accession": "SAMN17861658", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "6.3.0", + "biosampleAccession": "SAMN17861658", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", - "familyId": null, - "filename": "m54329U_220903_190900-bc2055.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PR25", + "filename": "m64043_200627_000137.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "PG18983.HFSS2", + "libraryId": "HG01106_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "33909", - "mean": "15264", - "metadataAccession": "SRR23922649", - "min": "1468", + "max": "48433", + "mean": "22354", + "metadataAccession": "SRR13684378", + "min": "47", "mmTag": false, - "n25": "14632", - "n50": "18402", - "n75": "22221", + "n25": "20403", + "n50": "22211", + "n75": "24706", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m54329U_220903_190900-bc2055.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01106/raw_data/PacBio_HiFi/m64043_200627_000137.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "10464", - "quartile50": "15809", - "quartile75": "19988", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "20117", + "quartile50": "21789", + "quartile75": "24100", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "HG01106", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "72199804", - "totalGbp": "0.07", - "totalReads": "4730", + "totalBp": "34465266970", + "totalGbp": "34.47", + "totalReads": "1541756", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", + "accession": "SAMN17861658", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "6.3.0", + "biosampleAccession": "SAMN17861658", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "NG06", - "filename": "m54329U_220905_144015-bc2053.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PR25", + "filename": "m64043_200628_062711.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "PG02922.HFSS2", + "libraryId": "HG01106_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "68274", - "mean": "22119", - "metadataAccession": "SRR23922663", - "min": "106", + "max": "49297", + "mean": "22276", + "metadataAccession": "SRR13684378", + "min": "46", "mmTag": false, - "n25": "19050", - "n50": "22658", - "n75": "27045", + "n25": "20357", + "n50": "22134", + "n75": "24585", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m54329U_220905_144015-bc2053.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01106/raw_data/PacBio_HiFi/m64043_200628_062711.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "18030", - "quartile50": "21258", - "quartile75": "25382", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "20074", + "quartile50": "21727", + "quartile75": "23990", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "HG01106", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "46375666417", - "totalGbp": "46.38", - "totalReads": "2096626", + "totalBp": "35847146199", + "totalGbp": "35.85", + "totalReads": "1609195", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", + "accession": "SAMN17861658", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "6.3.0", + "biosampleAccession": "SAMN17861658", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", - "familyId": null, - "filename": "m54329U_220905_144015-bc2055.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PR25", + "filename": "m64043_200629_125238.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "PG18983.HFSS2", + "libraryId": "HG01106_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "34905", - "mean": "15906", - "metadataAccession": "SRR23922649", - "min": "1528", + "max": "49438", + "mean": "22308", + "metadataAccession": "SRR13684378", + "min": "46", "mmTag": false, - "n25": "14885", - "n50": "18612", - "n75": "22626", + "n25": "20381", + "n50": "22171", + "n75": "24626", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m54329U_220905_144015-bc2055.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01106/raw_data/PacBio_HiFi/m64043_200629_125238.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "11550", - "quartile50": "16246", - "quartile75": "20407", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "20101", + "quartile50": "21762", + "quartile75": "24030", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "HG01106", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "77255780", - "totalGbp": "0.08", - "totalReads": "4857", + "totalBp": "36771576306", + "totalGbp": "36.77", + "totalReads": "1648307", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", + "accession": "SAMN17861655", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "6.3.0", + "biosampleAccession": "SAMN17861655", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "NG06", - "filename": "m54329U_220907_100858-bc2053.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PR06", + "filename": "m64043_200702_173033.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "PG02922.HFSS2", + "libraryId": "HG00735_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "79328", - "mean": "22118", - "metadataAccession": "SRR23922663", - "min": "62", + "max": "49688", + "mean": "22227", + "metadataAccession": "SRR13684381", + "min": "46", "mmTag": false, - "n25": "19046", - "n50": "22651", - "n75": "27039", + "n25": "20116", + "n50": "22356", + "n75": "25110", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m54329U_220907_100858-bc2053.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00735/raw_data/PacBio_HiFi/m64043_200702_173033.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "18032", - "quartile50": "21258", - "quartile75": "25381", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "19624", + "quartile50": "21774", + "quartile75": "24357", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "HG00735", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "44475348827", - "totalGbp": "44.48", - "totalReads": "2010767", + "totalBp": "36348091955", + "totalGbp": "36.35", + "totalReads": "1635278", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", + "accession": "SAMN17861655", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "6.3.0", + "biosampleAccession": "SAMN17861655", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", - "familyId": null, - "filename": "m54329U_220907_100858-bc2055.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PR06", + "filename": "m64043_200703_234328.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "PG18983.HFSS2", + "libraryId": "HG00735_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "35951", - "mean": "16025", - "metadataAccession": "SRR23922649", - "min": "1389", + "max": "49367", + "mean": "22287", + "metadataAccession": "SRR13684381", + "min": "48", "mmTag": false, - "n25": "14998", - "n50": "18874", - "n75": "22950", + "n25": "20157", + "n50": "22410", + "n75": "25197", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m54329U_220907_100858-bc2055.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00735/raw_data/PacBio_HiFi/m64043_200703_234328.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "11779", - "quartile50": "16362", - "quartile75": "20701", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "19664", + "quartile50": "21820", + "quartile75": "24428", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "HG00735", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "73078048", - "totalGbp": "0.07", - "totalReads": "4560", + "totalBp": "34369588285", + "totalGbp": "34.37", + "totalReads": "1542075", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", + "accession": "SAMN17861655", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "6.3.0", + "biosampleAccession": "SAMN17861655", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": null, - "filename": "m54329U_220916_162216-bc2061.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PR06", + "filename": "m64043_200705_060840.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "PG19043.HFSS", + "libraryId": "HG00735_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "64342", - "mean": "21267", - "metadataAccession": "SRR23922639", - "min": "92", + "max": "49904", + "mean": "22182", + "metadataAccession": "SRR13684381", + "min": "46", "mmTag": false, - "n25": "18546", - "n50": "21557", - "n75": "25367", + "n25": "20073", + "n50": "22309", + "n75": "25061", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/m54329U_220916_162216-bc2061.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00735/raw_data/PacBio_HiFi/m64043_200705_060840.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17811", - "quartile50": "20499", - "quartile75": "24051", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "19581", + "quartile50": "21726", + "quartile75": "24304", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "HG00735", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "43517972648", - "totalGbp": "43.52", - "totalReads": "2046237", + "totalBp": "34777888798", + "totalGbp": "34.78", + "totalReads": "1567779", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", + "accession": "SAMN17861655", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "6.3.0", + "biosampleAccession": "SAMN17861655", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": null, - "filename": "m54329U_220918_114340-bc2061.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PR06", + "filename": "m64043_200706_123423.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "PG19043.HFSS", + "libraryId": "HG00735_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "68642", - "mean": "20980", - "metadataAccession": "SRR23922639", - "min": "91", + "max": "49944", + "mean": "22085", + "metadataAccession": "SRR13684381", + "min": "45", "mmTag": false, - "n25": "18299", - "n50": "21233", - "n75": "24994", + "n25": "20012", + "n50": "22219", + "n75": "24914", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/m54329U_220918_114340-bc2061.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00735/raw_data/PacBio_HiFi/m64043_200706_123423.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17591", - "quartile50": "20198", - "quartile75": "23685", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "19529", + "quartile50": "21653", + "quartile75": "24178", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "HG00735", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "41394833271", - "totalGbp": "41.39", - "totalReads": "1972976", + "totalBp": "27999854128", + "totalGbp": "28", + "totalReads": "1267797", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", + "accession": "SAMN17861652", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "6.3.0", + "biosampleAccession": "SAMN17861652", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": null, - "filename": "m54329U_220920_065703-bc2061.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH012", + "filename": "m64043_200710_174426.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "PG19043.HFSS", + "libraryId": "HG00438_lib1", "libraryLayout": "single", - "librarySelection": "RANDOM", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "73652", - "mean": "21064", - "metadataAccession": "SRR23922639", - "min": "59", + "max": "50423", + "mean": "22958", + "metadataAccession": "SRR13684374", + "min": "46", "mmTag": false, - "n25": "18360", - "n50": "21333", - "n75": "25123", + "n25": "20003", + "n50": "22667", + "n75": "26976", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/m54329U_220920_065703-bc2061.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00438/raw_data/PacBio_HiFi/m64043_200710_174426.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17643", - "quartile50": "20280", - "quartile75": "23804", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "19506", + "quartile50": "21728", + "quartile75": "25414", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "HG00438", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "44045561368", - "totalGbp": "44.05", - "totalReads": "2090945", + "totalBp": "34896456183", + "totalGbp": "34.9", + "totalReads": "1519989", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861666", + "accession": "SAMN17861652", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861666", + "biosampleAccession": "SAMN17861652", "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB50", - "filename": "m64043_200403_163826.ccs.bam", + "familyId": "SH012", + "filename": "m64043_200711_235708.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02717_lib1", + "libraryId": "HG00438_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49781", - "mean": "17048", - "metadataAccession": "SRR13684388", - "min": "48", + "max": "50025", + "mean": "22724", + "metadataAccession": "SRR13684374", + "min": "45", "mmTag": false, - "n25": "15108", - "n50": "16669", - "n75": "19437", + "n25": "19889", + "n50": "22407", + "n75": "26545", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02717/raw_data/PacBio_HiFi/m64043_200403_163826.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00438/raw_data/PacBio_HiFi/m64043_200711_235708.ccs.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "", "productionYear": "YR1", - "quartile25": "14838", - "quartile50": "16196", - "quartile75": "18413", + "quartile25": "19419", + "quartile50": "21541", + "quartile75": "25057", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02717", + "sampleId": "HG00438", "seqKit": "N/A", "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "36342520970", - "totalGbp": "36.34", - "totalReads": "2131662", + "totalBp": "26040412682", + "totalGbp": "26.04", + "totalReads": "1145913", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861666", + "accession": "SAMN17861652", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861666", + "biosampleAccession": "SAMN17861652", "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB50", - "filename": "m64043_200405_180950.ccs.bam", + "familyId": "SH012", + "filename": "m64043_200713_062240.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02717_lib1", + "libraryId": "HG00438_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49958", - "mean": "17151", - "metadataAccession": "SRR13684388", - "min": "46", + "max": "50287", + "mean": "22977", + "metadataAccession": "SRR13684374", + "min": "45", "mmTag": false, - "n25": "15188", - "n50": "16776", - "n75": "19595", + "n25": "20012", + "n50": "22694", + "n75": "27044", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02717/raw_data/PacBio_HiFi/m64043_200405_180950.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00438/raw_data/PacBio_HiFi/m64043_200713_062240.ccs.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "", "productionYear": "YR1", - "quartile25": "14913", - "quartile50": "16294", - "quartile75": "18565", + "quartile25": "19504", + "quartile50": "21748", + "quartile75": "25474", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02717", + "sampleId": "HG00438", "seqKit": "N/A", "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34324816343", - "totalGbp": "34.32", - "totalReads": "2001329", + "totalBp": "32729061997", + "totalGbp": "32.73", + "totalReads": "1424368", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861666", + "accession": "SAMN17861652", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861666", + "biosampleAccession": "SAMN17861652", "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB50", - "filename": "m64043_200407_002219.ccs.bam", + "familyId": "SH012", + "filename": "m64043_200714_124814.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02717_lib1", + "libraryId": "HG00438_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "46041", - "mean": "17192", - "metadataAccession": "SRR13684388", - "min": "45", + "max": "50251", + "mean": "22954", + "metadataAccession": "SRR13684374", + "min": "47", "mmTag": false, - "n25": "15201", - "n50": "16818", - "n75": "19702", + "n25": "20000", + "n50": "22668", + "n75": "26994", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02717/raw_data/PacBio_HiFi/m64043_200407_002219.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00438/raw_data/PacBio_HiFi/m64043_200714_124814.ccs.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "", "productionYear": "YR1", - "quartile25": "14920", - "quartile50": "16320", - "quartile75": "18637", + "quartile25": "19500", + "quartile50": "21725", + "quartile75": "25433", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02717", + "sampleId": "HG00438", "seqKit": "N/A", "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34814542915", - "totalGbp": "34.81", - "totalReads": "2024928", + "totalBp": "33804474378", + "totalGbp": "33.8", + "totalReads": "1472693", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861666", + "accession": "SAMN17861654", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861666", + "biosampleAccession": "SAMN17861654", "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB50", - "filename": "m64043_200408_064651.ccs.bam", + "familyId": "SH079", + "filename": "m64043_200716_182902.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02717_lib1", + "libraryId": "HG00673_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49936", - "mean": "17129", - "metadataAccession": "SRR13684388", + "max": "49665", + "mean": "20725", + "metadataAccession": "SRR13684382", "min": "47", "mmTag": false, - "n25": "15160", - "n50": "16748", - "n75": "19581", + "n25": "18376", + "n50": "20937", + "n75": "23944", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02717/raw_data/PacBio_HiFi/m64043_200408_064651.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00673/raw_data/PacBio_HiFi/m64043_200716_182902.ccs.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "", "productionYear": "YR1", - "quartile25": "14884", - "quartile50": "16265", - "quartile75": "18536", + "quartile25": "17882", + "quartile50": "20173", + "quartile75": "23136", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02717", + "sampleId": "HG00673", "seqKit": "N/A", "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34817299277", - "totalGbp": "34.82", - "totalReads": "2032542", + "totalBp": "28919585361", + "totalGbp": "28.92", + "totalReads": "1395373", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861667", + "accession": "SAMN17861654", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861667", + "biosampleAccession": "SAMN17861654", "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB89", - "filename": "m64043_200410_214826.ccs.bam", + "familyId": "SH079", + "filename": "m64043_200718_004213.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02886_lib1", + "libraryId": "HG00673_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50049", - "mean": "17675", - "metadataAccession": "SRR13684387", + "max": "49661", + "mean": "20828", + "metadataAccession": "SRR13684382", "min": "47", "mmTag": false, - "n25": "15933", - "n50": "17391", - "n75": "19669", + "n25": "18473", + "n50": "21066", + "n75": "24056", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02886/raw_data/PacBio_HiFi/m64043_200410_214826.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00673/raw_data/PacBio_HiFi/m64043_200718_004213.ccs.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "", "productionYear": "YR1", - "quartile25": "15688", - "quartile50": "17002", - "quartile75": "18953", + "quartile25": "17967", + "quartile50": "20301", + "quartile75": "23260", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02886", + "sampleId": "HG00673", "seqKit": "N/A", "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34103394360", - "totalGbp": "34.1", - "totalReads": "1929448", + "totalBp": "31592031668", + "totalGbp": "31.59", + "totalReads": "1516755", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861667", + "accession": "SAMN17861654", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861667", + "biosampleAccession": "SAMN17861654", "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB89", - "filename": "m64043_200412_040054.ccs.bam", + "familyId": "SH079", + "filename": "m64043_200719_070806.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02886_lib1", + "libraryId": "HG00673_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "48163", - "mean": "17797", - "metadataAccession": "SRR13684387", - "min": "47", + "max": "50236", + "mean": "20678", + "metadataAccession": "SRR13684382", + "min": "44", "mmTag": false, - "n25": "16010", - "n50": "17504", - "n75": "19854", + "n25": "18340", + "n50": "20871", + "n75": "23876", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02886/raw_data/PacBio_HiFi/m64043_200412_040054.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00673/raw_data/PacBio_HiFi/m64043_200719_070806.ccs.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "", "productionYear": "YR1", - "quartile25": "15758", - "quartile50": "17100", - "quartile75": "19106", + "quartile25": "17856", + "quartile50": "20119", + "quartile75": "23071", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02886", + "sampleId": "HG00673", "seqKit": "N/A", "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "35972927628", - "totalGbp": "35.97", - "totalReads": "2021284", + "totalBp": "31912051817", + "totalGbp": "31.91", + "totalReads": "1543254", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861667", + "accession": "SAMN17861654", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861667", + "biosampleAccession": "SAMN17861654", "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB89", - "filename": "m64043_200413_102554.ccs.bam", + "familyId": "SH079", + "filename": "m64043_200720_133355.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02886_lib1", + "libraryId": "HG00673_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "48532", - "mean": "18277", - "metadataAccession": "SRR13684387", + "max": "49923", + "mean": "20791", + "metadataAccession": "SRR13684382", "min": "46", "mmTag": false, - "n25": "16302", - "n50": "17984", - "n75": "20716", + "n25": "18430", + "n50": "21022", + "n75": "24023", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02886/raw_data/PacBio_HiFi/m64043_200413_102554.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00673/raw_data/PacBio_HiFi/m64043_200720_133355.ccs.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "", "productionYear": "YR1", - "quartile25": "16011", - "quartile50": "17500", - "quartile75": "19798", + "quartile25": "17929", + "quartile50": "20254", + "quartile75": "23212", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02886", + "sampleId": "HG00673", "seqKit": "N/A", "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "33571543462", - "totalGbp": "33.57", - "totalReads": "1836728", + "totalBp": "30065709075", + "totalGbp": "30.07", + "totalReads": "1446038", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861667", + "accession": "SAMN26237490", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861667", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237490", + "ccsAlgorithm": "9.0.0.92188", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB89", - "filename": "m64043_200414_165107.ccs.bam", + "familyId": "SH007", + "filename": "m64043_210205_190424.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02886_lib1", + "libraryId": "HG00423_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50292", - "mean": "17954", - "metadataAccession": "SRR13684387", - "min": "45", + "max": "49382", + "mean": "18400", + "metadataAccession": "SRR18189665", + "min": "85", "mmTag": false, - "n25": "16104", - "n50": "17657", - "n75": "20126", + "n25": "16755", + "n50": "18592", + "n75": "20554", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02886/raw_data/PacBio_HiFi/m64043_200414_165107.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/PacBio_HiFi/m64043_210205_190424.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "15840", - "quartile50": "17229", - "quartile75": "19327", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "16334", + "quartile50": "18171", + "quartile75": "20074", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02886", + "sampleId": "HG00423", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "33758955124", - "totalGbp": "33.76", - "totalReads": "1880255", + "totalBp": "35517184454", + "totalGbp": "35.52", + "totalReads": "1930215", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861665", + "accession": "SAMN26237490", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861665", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237490", + "ccsAlgorithm": "9.0.0.92188", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB33", - "filename": "m64043_200501_162248.ccs.bam", + "familyId": "SH007", + "filename": "m64043_210207_011920.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02630_lib1", + "libraryId": "HG00423_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49817", - "mean": "18982", - "metadataAccession": "SRR13684389", - "min": "45", + "max": "50543", + "mean": "18410", + "metadataAccession": "SRR18189665", + "min": "64", "mmTag": false, - "n25": "17152", - "n50": "18935", - "n75": "21316", + "n25": "16741", + "n50": "18600", + "n75": "20587", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02630/raw_data/PacBio_HiFi/m64043_200501_162248.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/PacBio_HiFi/m64043_210207_011920.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "16796", - "quartile50": "18472", - "quartile75": "20639", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "16320", + "quartile50": "18170", + "quartile75": "20096", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02630", + "sampleId": "HG00423", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "39398066325", - "totalGbp": "39.4", - "totalReads": "2075445", + "totalBp": "33618239844", + "totalGbp": "33.62", + "totalReads": "1826062", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861665", + "accession": "SAMN26237490", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861665", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237490", + "ccsAlgorithm": "9.0.0.92188", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB33", - "filename": "m64043_200502_223511.ccs.bam", + "familyId": "SH007", + "filename": "m64043_210209_184051.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02630_lib1", + "libraryId": "HG00423_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49229", - "mean": "19481", - "metadataAccession": "SRR13684389", - "min": "46", + "max": "49891", + "mean": "18413", + "metadataAccession": "SRR18189665", + "min": "85", "mmTag": false, - "n25": "17527", - "n50": "19449", - "n75": "22047", + "n25": "16768", + "n50": "18600", + "n75": "20564", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02630/raw_data/PacBio_HiFi/m64043_200502_223511.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/PacBio_HiFi/m64043_210209_184051.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "17138", - "quartile50": "18926", - "quartile75": "21293", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "16352", + "quartile50": "18180", + "quartile75": "20083", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02630", + "sampleId": "HG00423", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "37434888190", - "totalGbp": "37.43", - "totalReads": "1921608", + "totalBp": "38438203547", + "totalGbp": "38.44", + "totalReads": "2087485", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861665", + "accession": "SAMN26237490", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861665", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237490", + "ccsAlgorithm": "9.0.0.92188", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB33", - "filename": "m64043_200504_050026.ccs.bam", + "familyId": "SH007", + "filename": "m64043_210211_005516.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02630_lib1", + "libraryId": "HG00423_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49274", - "mean": "19300", - "metadataAccession": "SRR13684389", - "min": "46", + "max": "71983", + "mean": "18446", + "metadataAccession": "SRR18189665", + "min": "85", "mmTag": false, - "n25": "17403", - "n50": "19260", - "n75": "21751", + "n25": "16807", + "n50": "18630", + "n75": "20592", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02630/raw_data/PacBio_HiFi/m64043_200504_050026.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/PacBio_HiFi/m64043_210211_005516.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "17031", - "quartile50": "18769", - "quartile75": "21036", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "16390", + "quartile50": "18214", + "quartile75": "20112", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02630", + "sampleId": "HG00423", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "37589214946", - "totalGbp": "37.59", - "totalReads": "1947611", + "totalBp": "36879516061", + "totalGbp": "36.88", + "totalReads": "1999237", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861665", + "accession": "SAMN26237506", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861665", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237506", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB33", - "filename": "m64043_200505_112554.ccs.bam", + "familyId": "VN090", + "filename": "m64043_210506_183430.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02630_lib1", + "libraryId": "HG02523_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "48960", - "mean": "19212", - "metadataAccession": "SRR13684389", - "min": "45", + "max": "59606", + "mean": "21060", + "metadataAccession": "SRR18189656", + "min": "694", "mmTag": false, - "n25": "17331", - "n50": "19165", - "n75": "21633", + "n25": "18057", + "n50": "20287", + "n75": "25204", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02630/raw_data/PacBio_HiFi/m64043_200505_112554.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02523/raw_data/PacBio_HiFi/m64043_210506_183430.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "16966", - "quartile50": "18683", - "quartile75": "20926", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17653", + "quartile50": "19411", + "quartile75": "23289", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02630", + "sampleId": "HG02523", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "36589957988", - "totalGbp": "36.59", - "totalReads": "1904474", + "totalBp": "34598182243", + "totalGbp": "34.6", + "totalReads": "1642763", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861668", + "accession": "SAMN26237506", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861668", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237506", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SL50", - "filename": "m64043_200508_172634.ccs.bam", + "familyId": "VN090", + "filename": "m64043_210508_033135.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03453_lib1", + "libraryId": "HG02523_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49546", - "mean": "20105", - "metadataAccession": "SRR13684386", - "min": "46", + "max": "59221", + "mean": "20876", + "metadataAccession": "SRR18189656", + "min": "86", "mmTag": false, - "n25": "18055", - "n50": "19851", - "n75": "22597", + "n25": "17952", + "n50": "20058", + "n75": "24831", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03453/raw_data/PacBio_HiFi/m64043_200508_172634.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02523/raw_data/PacBio_HiFi/m64043_210508_033135.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "17748", - "quartile50": "19359", - "quartile75": "21770", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17572", + "quartile50": "19266", + "quartile75": "22943", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03453", + "sampleId": "HG02523", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "40647101711", - "totalGbp": "40.65", - "totalReads": "2021670", + "totalBp": "32638821684", + "totalGbp": "32.64", + "totalReads": "1563454", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861668", + "accession": "SAMN26237506", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861668", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237506", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SL50", - "filename": "m64043_200509_233929.ccs.bam", + "familyId": "VN090", + "filename": "m64043_210509_110105.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03453_lib1", + "libraryId": "HG02523_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49421", - "mean": "20117", - "metadataAccession": "SRR13684386", - "min": "46", + "max": "57156", + "mean": "20889", + "metadataAccession": "SRR18189656", + "min": "562", "mmTag": false, - "n25": "18068", - "n50": "19864", - "n75": "22610", + "n25": "17964", + "n50": "20086", + "n75": "24849", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03453/raw_data/PacBio_HiFi/m64043_200509_233929.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02523/raw_data/PacBio_HiFi/m64043_210509_110105.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "17757", - "quartile50": "19373", - "quartile75": "21782", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17581", + "quartile50": "19284", + "quartile75": "22978", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03453", + "sampleId": "HG02523", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "41586898493", - "totalGbp": "41.59", - "totalReads": "2067165", + "totalBp": "30658573852", + "totalGbp": "30.66", + "totalReads": "1467650", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861668", + "accession": "SAMN26237513", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861668", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237513", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SL50", - "filename": "m64043_200511_060458.ccs.bam", + "familyId": "PK62", + "filename": "m64043_210514_184131.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03453_lib1", + "libraryId": "HG03710_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "48820", - "mean": "20066", - "metadataAccession": "SRR13684386", - "min": "46", + "max": "59530", + "mean": "20384", + "metadataAccession": "SRR18189648", + "min": "86", "mmTag": false, - "n25": "18033", - "n50": "19810", - "n75": "22523", + "n25": "17585", + "n50": "19797", + "n75": "24006", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03453/raw_data/PacBio_HiFi/m64043_200511_060458.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/PacBio_HiFi/m64043_210514_184131.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "17726", - "quartile50": "19328", - "quartile75": "21710", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17210", + "quartile50": "18949", + "quartile75": "22578", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03453", + "sampleId": "HG03710", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "39526964195", - "totalGbp": "39.53", - "totalReads": "1969769", + "totalBp": "32918659468", + "totalGbp": "32.92", + "totalReads": "1614922", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861668", + "accession": "SAMN26237513", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861668", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237513", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SL50", - "filename": "m64043_200512_123035.ccs.bam", + "familyId": "PK62", + "filename": "m64043_210516_020821.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03453_lib1", + "libraryId": "HG03710_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49779", - "mean": "20253", - "metadataAccession": "SRR13684386", - "min": "45", + "max": "61709", + "mean": "20760", + "metadataAccession": "SRR18189648", + "min": "549", "mmTag": false, - "n25": "18171", - "n50": "20011", - "n75": "22800", + "n25": "17782", + "n50": "20332", + "n75": "24670", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03453/raw_data/PacBio_HiFi/m64043_200512_123035.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/PacBio_HiFi/m64043_210516_020821.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "17855", - "quartile50": "19506", - "quartile75": "21962", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17357", + "quartile50": "19260", + "quartile75": "23148", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03453", + "sampleId": "HG03710", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "38494019627", - "totalGbp": "38.49", - "totalReads": "1900582", + "totalBp": "35214602226", + "totalGbp": "35.21", + "totalReads": "1696236", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861671", + "accession": "SAMN26237513", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861671", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237513", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SL72", - "filename": "m64043_200515_165406.ccs.bam", + "familyId": "PK62", + "filename": "m64043_210517_175123.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03579_lib1", + "libraryId": "HG03710_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "48582", - "mean": "19543", - "metadataAccession": "SRR13684383", - "min": "46", + "max": "61973", + "mean": "20781", + "metadataAccession": "SRR18189648", + "min": "108", "mmTag": false, - "n25": "17578", - "n50": "19426", - "n75": "22029", + "n25": "17796", + "n50": "20381", + "n75": "24696", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03579/raw_data/PacBio_HiFi/m64043_200515_165406.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/PacBio_HiFi/m64043_210517_175123.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "17216", - "quartile50": "18917", - "quartile75": "21227", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17364", + "quartile50": "19286", + "quartile75": "23189", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03579", + "sampleId": "HG03710", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "33330044108", - "totalGbp": "33.33", - "totalReads": "1705389", + "totalBp": "33421412427", + "totalGbp": "33.42", + "totalReads": "1608247", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861671", + "accession": "SAMN26237509", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861671", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237509", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SL72", - "filename": "m64043_200516_230634.ccs.bam", + "familyId": "PK21", + "filename": "m64043_210519_013026.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03579_lib1", + "libraryId": "HG02698_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49804", - "mean": "19671", - "metadataAccession": "SRR13684383", - "min": "46", + "max": "54640", + "mean": "20083", + "metadataAccession": "SRR18189652", + "min": "86", "mmTag": false, - "n25": "17647", - "n50": "19522", - "n75": "22212", + "n25": "17554", + "n50": "19788", + "n75": "23507", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03579/raw_data/PacBio_HiFi/m64043_200516_230634.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/PacBio_HiFi/m64043_210519_013026.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "17279", - "quartile50": "18999", - "quartile75": "21365", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17194", + "quartile50": "18998", + "quartile75": "22461", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03579", + "sampleId": "HG02698", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "39277340010", - "totalGbp": "39.28", - "totalReads": "1996694", + "totalBp": "33178464571", + "totalGbp": "33.18", + "totalReads": "1652007", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861671", + "accession": "SAMN26237495", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861671", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237495", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SL72", - "filename": "m64043_200518_053124.ccs.bam", + "familyId": "CLM15", + "filename": "m64043_210520_180149.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03579_lib1", + "libraryId": "HG01255_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49746", - "mean": "19480", - "metadataAccession": "SRR13684383", - "min": "48", + "max": "59514", + "mean": "20310", + "metadataAccession": "SRR18189643", + "min": "335", "mmTag": false, - "n25": "17501", - "n50": "19337", - "n75": "21963", + "n25": "17454", + "n50": "20258", + "n75": "23821", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03579/raw_data/PacBio_HiFi/m64043_200518_053124.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/PacBio_HiFi/m64043_210520_180149.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "17136", - "quartile50": "18826", - "quartile75": "21141", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17012", + "quartile50": "19180", + "quartile75": "22570", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03579", + "sampleId": "HG01255", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "39165319090", - "totalGbp": "39.17", - "totalReads": "2010535", + "totalBp": "33274752433", + "totalGbp": "33.27", + "totalReads": "1638272", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861671", + "accession": "SAMN26237511", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861671", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237511", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SL72", - "filename": "m64043_200519_115622.ccs.bam", + "familyId": "PK53", + "filename": "m64043_210522_023949.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03579_lib1", + "libraryId": "HG03654_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49406", - "mean": "19492", - "metadataAccession": "SRR13684383", - "min": "47", + "max": "54542", + "mean": "18706", + "metadataAccession": "SRR18189650", + "min": "527", "mmTag": false, - "n25": "17516", - "n50": "19348", - "n75": "21959", + "n25": "16400", + "n50": "18463", + "n75": "21660", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03579/raw_data/PacBio_HiFi/m64043_200519_115622.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03654/raw_data/PacBio_HiFi/m64043_210522_023949.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "17156", - "quartile50": "18841", - "quartile75": "21146", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "16104", + "quartile50": "17719", + "quartile75": "20827", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03579", + "sampleId": "HG03654", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "38217075483", - "totalGbp": "38.22", - "totalReads": "1960652", + "totalBp": "26324187893", + "totalGbp": "26.32", + "totalReads": "1407194", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861670", + "accession": "SAMN26237511", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861670", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237511", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB125", - "filename": "m64043_200521_171703.ccs.bam", + "familyId": "PK53", + "filename": "m64043_210523_101851.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03540_lib1", + "libraryId": "HG03654_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49707", - "mean": "20711", - "metadataAccession": "SRR13684384", - "min": "46", + "max": "60353", + "mean": "18996", + "metadataAccession": "SRR18189650", + "min": "90", "mmTag": false, - "n25": "18612", - "n50": "20457", - "n75": "23197", + "n25": "16568", + "n50": "18939", + "n75": "22101", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03540/raw_data/PacBio_HiFi/m64043_200521_171703.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03654/raw_data/PacBio_HiFi/m64043_210523_101851.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "18299", - "quartile50": "19960", - "quartile75": "22387", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "16229", + "quartile50": "18023", + "quartile75": "21237", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03540", + "sampleId": "HG03654", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "39298150274", - "totalGbp": "39.3", - "totalReads": "1897441", + "totalBp": "34126728073", + "totalGbp": "34.13", + "totalReads": "1796437", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861670", + "accession": "SAMN26237511", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861670", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237511", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB125", - "filename": "m64043_200522_232930.ccs.bam", + "familyId": "PK53", + "filename": "m64043_210524_174752.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03540_lib1", + "libraryId": "HG03654_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49881", - "mean": "20684", - "metadataAccession": "SRR13684384", - "min": "45", + "max": "65226", + "mean": "19002", + "metadataAccession": "SRR18189650", + "min": "531", "mmTag": false, - "n25": "18596", - "n50": "20429", - "n75": "23160", + "n25": "16575", + "n50": "18943", + "n75": "22091", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03540/raw_data/PacBio_HiFi/m64043_200522_232930.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03654/raw_data/PacBio_HiFi/m64043_210524_174752.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "18291", - "quartile50": "19937", - "quartile75": "22355", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "16238", + "quartile50": "18030", + "quartile75": "21236", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03540", + "sampleId": "HG03654", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "38058368349", - "totalGbp": "38.06", - "totalReads": "1839904", + "totalBp": "32313779561", + "totalGbp": "32.31", + "totalReads": "1700544", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861670", + "accession": "SAMN26237511", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861670", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237511", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB125", - "filename": "m64043_200524_055430.ccs.bam", + "familyId": "PK53", + "filename": "m64043_210528_171552.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03540_lib1", + "libraryId": "HG03654_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49994", - "mean": "20781", - "metadataAccession": "SRR13684384", - "min": "47", + "max": "50438", + "mean": "18974", + "metadataAccession": "SRR18189650", + "min": "86", "mmTag": false, - "n25": "18658", - "n50": "20527", - "n75": "23305", + "n25": "16591", + "n50": "18881", + "n75": "22010", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03540/raw_data/PacBio_HiFi/m64043_200524_055430.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03654/raw_data/PacBio_HiFi/m64043_210528_171552.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "18344", - "quartile50": "20019", - "quartile75": "22480", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "16266", + "quartile50": "18022", + "quartile75": "21176", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03540", + "sampleId": "HG03654", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "38599915696", - "totalGbp": "38.6", - "totalReads": "1857442", + "totalBp": "21288110123", + "totalGbp": "21.29", + "totalReads": "1121956", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861670", + "accession": "SAMN26237493", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861670", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237493", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB125", - "filename": "m64043_200525_121851.ccs.bam", + "familyId": "PR07", + "filename": "m64043_210530_003337.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03540_lib1", + "libraryId": "HG00738_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50154", - "mean": "20937", - "metadataAccession": "SRR13684384", - "min": "46", + "max": "59307", + "mean": "21611", + "metadataAccession": "SRR18189645", + "min": "345", "mmTag": false, - "n25": "18772", - "n50": "20701", - "n75": "23544", + "n25": "18878", + "n50": "20880", + "n75": "25135", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03540/raw_data/PacBio_HiFi/m64043_200525_121851.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/PacBio_HiFi/m64043_210530_003337.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "18442", - "quartile50": "20175", - "quartile75": "22698", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "18535", + "quartile50": "20226", + "quartile75": "23527", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03540", + "sampleId": "HG00738", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "37451931637", - "totalGbp": "37.45", - "totalReads": "1788752", + "totalBp": "27082098409", + "totalGbp": "27.08", + "totalReads": "1253128", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861664", + "accession": "SAMN26237493", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861664", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237493", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB31", - "filename": "m64043_200530_164723.ccs.bam", + "familyId": "PR07", + "filename": "m64043_210531_080529.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02622_lib1", + "libraryId": "HG00738_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49910", - "mean": "23125", - "metadataAccession": "SRR13684390", - "min": "45", + "max": "60323", + "mean": "21734", + "metadataAccession": "SRR18189645", + "min": "494", "mmTag": false, - "n25": "20811", - "n50": "22892", - "n75": "25951", + "n25": "18958", + "n50": "21025", + "n75": "25370", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02622/raw_data/PacBio_HiFi/m64043_200530_164723.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/PacBio_HiFi/m64043_210531_080529.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "20458", - "quartile50": "22331", - "quartile75": "25075", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "18598", + "quartile50": "20334", + "quartile75": "23778", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02622", + "sampleId": "HG00738", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "37233379263", - "totalGbp": "37.23", - "totalReads": "1610050", + "totalBp": "28021544846", + "totalGbp": "28.02", + "totalReads": "1289251", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861664", + "accession": "SAMN26237493", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861664", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237493", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB31", - "filename": "m64043_200601_191521.ccs.bam", + "familyId": "PR07", + "filename": "m64043_210601_160048.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02622_lib1", + "libraryId": "HG00738_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49954", - "mean": "23320", - "metadataAccession": "SRR13684390", - "min": "46", + "max": "63840", + "mean": "21999", + "metadataAccession": "SRR18189645", + "min": "266", "mmTag": false, - "n25": "20958", - "n50": "23109", - "n75": "26215", + "n25": "19095", + "n50": "21316", + "n75": "25907", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02622/raw_data/PacBio_HiFi/m64043_200601_191521.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/PacBio_HiFi/m64043_210601_160048.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "20594", - "quartile50": "22526", - "quartile75": "25327", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "18698", + "quartile50": "20532", + "quartile75": "24274", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02622", + "sampleId": "HG00738", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "36900505572", - "totalGbp": "36.9", - "totalReads": "1582321", + "totalBp": "28382481489", + "totalGbp": "28.38", + "totalReads": "1290160", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861664", + "accession": "SAMN26237512", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861664", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237512", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB31", - "filename": "m64043_200603_012738.ccs.bam", + "familyId": "PK58", + "filename": "m64043_210604_175624.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02622_lib1", + "libraryId": "HG03669_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49813", - "mean": "22969", - "metadataAccession": "SRR13684390", - "min": "45", + "max": "56876", + "mean": "19858", + "metadataAccession": "SRR18189649", + "min": "648", "mmTag": false, - "n25": "20731", - "n50": "22740", - "n75": "25670", + "n25": "18247", + "n50": "20290", + "n75": "22400", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02622/raw_data/PacBio_HiFi/m64043_200603_012738.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/PacBio_HiFi/m64043_210604_175624.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "20396", - "quartile50": "22214", - "quartile75": "24844", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17539", + "quartile50": "19825", + "quartile75": "21872", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02622", + "sampleId": "HG03669", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "35155415627", - "totalGbp": "35.16", - "totalReads": "1530497", + "totalBp": "33224375908", + "totalGbp": "33.22", + "totalReads": "1673096", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861664", + "accession": "SAMN26237512", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861664", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237512", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB31", - "filename": "m64043_200604_075218.ccs.bam", + "familyId": "PK58", + "filename": "m64043_210606_013256.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02622_lib1", + "libraryId": "HG03669_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50214", - "mean": "23018", - "metadataAccession": "SRR13684390", - "min": "47", + "max": "53173", + "mean": "20045", + "metadataAccession": "SRR18189649", + "min": "620", "mmTag": false, - "n25": "20764", - "n50": "22784", - "n75": "25744", + "n25": "18480", + "n50": "20459", + "n75": "22587", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02622/raw_data/PacBio_HiFi/m64043_200604_075218.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/PacBio_HiFi/m64043_210606_013256.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "20424", - "quartile50": "22252", - "quartile75": "24909", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17833", + "quartile50": "19999", + "quartile75": "22059", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02622", + "sampleId": "HG03669", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34702534691", - "totalGbp": "34.7", - "totalReads": "1507617", + "totalBp": "32948988442", + "totalGbp": "32.95", + "totalReads": "1643693", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861669", + "accession": "SAMN26237512", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861669", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237512", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SL56i", - "filename": "m64043_200606_175618.ccs.bam", + "familyId": "PK58", + "filename": "m64043_210607_090252.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03471_lib1", + "libraryId": "HG03669_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50100", - "mean": "19241", - "metadataAccession": "SRR13684385", - "min": "45", + "max": "56463", + "mean": "19746", + "metadataAccession": "SRR18189649", + "min": "128", "mmTag": false, - "n25": "17163", - "n50": "19140", - "n75": "22070", + "n25": "18112", + "n50": "20210", + "n75": "22305", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03471/raw_data/PacBio_HiFi/m64043_200606_175618.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/PacBio_HiFi/m64043_210607_090252.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "16785", - "quartile50": "18546", - "quartile75": "21161", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17364", + "quartile50": "19742", + "quartile75": "21779", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03471", + "sampleId": "HG03669", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "40465702550", - "totalGbp": "40.47", - "totalReads": "2102995", + "totalBp": "22267350582", + "totalGbp": "22.27", + "totalReads": "1127654", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861669", + "accession": "SAMN26237512", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861669", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237512", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SL56i", - "filename": "m64043_200608_185843.ccs.bam", + "familyId": "PK58", + "filename": "m64043_210610_203329.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03471_lib1", + "libraryId": "HG03669_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49844", - "mean": "19316", - "metadataAccession": "SRR13684385", - "min": "45", + "max": "54502", + "mean": "19359", + "metadataAccession": "SRR18189649", + "min": "205", "mmTag": false, - "n25": "17230", - "n50": "19223", - "n75": "22153", + "n25": "17495", + "n50": "19855", + "n75": "21956", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03471/raw_data/PacBio_HiFi/m64043_200608_185843.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/PacBio_HiFi/m64043_210610_203329.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "16854", - "quartile50": "18631", - "quartile75": "21249", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "16737", + "quartile50": "19354", + "quartile75": "21419", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03471", + "sampleId": "HG03669", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "39510858680", - "totalGbp": "39.51", - "totalReads": "2045451", + "totalBp": "24900003751", + "totalGbp": "24.9", + "totalReads": "1286203", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861669", + "accession": "SAMN26237507", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861669", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237507", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SL56i", - "filename": "m64043_200610_011156.ccs.bam", + "familyId": "PK09", + "filename": "m64043_210612_053030.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03471_lib1", + "libraryId": "HG02602_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49263", - "mean": "19357", - "metadataAccession": "SRR13684385", - "min": "46", + "max": "64694", + "mean": "20556", + "metadataAccession": "SRR18189655", + "min": "242", "mmTag": false, - "n25": "17258", - "n50": "19270", - "n75": "22213", + "n25": "18012", + "n50": "19709", + "n75": "23853", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03471/raw_data/PacBio_HiFi/m64043_200610_011156.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/PacBio_HiFi/m64043_210612_053030.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "16876", - "quartile50": "18668", - "quartile75": "21304", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17745", + "quartile50": "19156", + "quartile75": "22281", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03471", + "sampleId": "HG02602", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "39846677634", - "totalGbp": "39.85", - "totalReads": "2058511", + "totalBp": "19825720983", + "totalGbp": "19.83", + "totalReads": "964466", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861669", + "accession": "SAMN26237507", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861669", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237507", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SL56i", - "filename": "m64043_200611_073649.ccs.bam", + "familyId": "PK09", + "filename": "m64043_210613_133026.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03471_lib1", + "libraryId": "HG02602_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49235", - "mean": "19314", - "metadataAccession": "SRR13684385", - "min": "46", + "max": "56871", + "mean": "20440", + "metadataAccession": "SRR18189655", + "min": "395", "mmTag": false, - "n25": "17226", - "n50": "19219", - "n75": "22152", + "n25": "17974", + "n50": "19611", + "n75": "23584", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03471/raw_data/PacBio_HiFi/m64043_200611_073649.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/PacBio_HiFi/m64043_210613_133026.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "16846", - "quartile50": "18626", - "quartile75": "21244", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17719", + "quartile50": "19093", + "quartile75": "22051", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03471", + "sampleId": "HG02602", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "37350112108", - "totalGbp": "37.35", - "totalReads": "1933742", + "totalBp": "25138567629", + "totalGbp": "25.14", + "totalReads": "1229861", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861660", + "accession": "SAMN26237507", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861660", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237507", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL011", - "filename": "m64043_200612_200936.ccs.bam", + "familyId": "PK09", + "filename": "m64043_210614_223013.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01928_lib1", + "libraryId": "HG02602_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50112", - "mean": "23596", - "metadataAccession": "SRR13684376", - "min": "49", + "max": "53432", + "mean": "20425", + "metadataAccession": "SRR18189655", + "min": "591", "mmTag": false, - "n25": "21333", - "n50": "23667", - "n75": "26624", + "n25": "17971", + "n50": "19605", + "n75": "23555", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01928/raw_data/PacBio_HiFi/m64043_200612_200936.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/PacBio_HiFi/m64043_210614_223013.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "20871", - "quartile50": "23063", - "quartile75": "25835", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17717", + "quartile50": "19089", + "quartile75": "22040", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01928", + "sampleId": "HG02602", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "28477418837", - "totalGbp": "28.48", - "totalReads": "1206871", + "totalBp": "19749338623", + "totalGbp": "19.75", + "totalReads": "966914", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861660", + "accession": "SAMN26237507", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861660", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237507", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL011", - "filename": "m64043_200614_191756.ccs.bam", + "familyId": "PK09", + "filename": "m64043_210618_184604.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01928_lib1", + "libraryId": "HG02602_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50091", - "mean": "23447", - "metadataAccession": "SRR13684376", - "min": "46", + "max": "63465", + "mean": "20973", + "metadataAccession": "SRR18189655", + "min": "88", "mmTag": false, - "n25": "21236", - "n50": "23521", - "n75": "26383", + "n25": "18202", + "n50": "20158", + "n75": "24673", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01928/raw_data/PacBio_HiFi/m64043_200614_191756.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/PacBio_HiFi/m64043_210618_184604.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "20789", - "quartile50": "22941", - "quartile75": "25631", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17893", + "quartile50": "19453", + "quartile75": "23120", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01928", + "sampleId": "HG02602", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "27531809459", - "totalGbp": "27.53", - "totalReads": "1174204", + "totalBp": "36169981448", + "totalGbp": "36.17", + "totalReads": "1724579", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861660", + "accession": "SAMN26237501", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861660", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237501", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL011", - "filename": "m64043_200616_013031.ccs.bam", + "familyId": "PEL29", + "filename": "m64043_210620_041711.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01928_lib1", + "libraryId": "HG01993_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50104", - "mean": "23498", - "metadataAccession": "SRR13684376", - "min": "46", + "max": "55937", + "mean": "20759", + "metadataAccession": "SRR18189661", + "min": "90", "mmTag": false, - "n25": "21262", - "n50": "23565", - "n75": "26503", + "n25": "18948", + "n50": "20695", + "n75": "22942", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01928/raw_data/PacBio_HiFi/m64043_200616_013031.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/PacBio_HiFi/m64043_210620_041711.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "20804", - "quartile50": "22976", - "quartile75": "25728", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "18655", + "quartile50": "20295", + "quartile75": "22409", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01928", + "sampleId": "HG01993", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", @@ -19038,64 +18323,64 @@ "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "25229115676", - "totalGbp": "25.23", - "totalReads": "1073649", + "totalBp": "35989302267", + "totalGbp": "35.99", + "totalReads": "1733650", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861660", + "accession": "SAMN26237501", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861660", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237501", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL011", - "filename": "m64043_200617_075530.ccs.bam", + "familyId": "PEL29", + "filename": "m64043_210622_163331.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01928_lib1", + "libraryId": "HG01993_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49952", - "mean": "23616", - "metadataAccession": "SRR13684376", - "min": "48", + "max": "55085", + "mean": "20587", + "metadataAccession": "SRR18189661", + "min": "177", "mmTag": false, - "n25": "21357", - "n50": "23677", - "n75": "26630", + "n25": "18813", + "n50": "20513", + "n75": "22711", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01928/raw_data/PacBio_HiFi/m64043_200617_075530.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/PacBio_HiFi/m64043_210622_163331.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "20897", - "quartile50": "23083", - "quartile75": "25852", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "18534", + "quartile50": "20131", + "quartile75": "22196", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01928", + "sampleId": "HG01993", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", @@ -19103,389 +18388,389 @@ "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "27663641221", - "totalGbp": "27.66", - "totalReads": "1171348", + "totalBp": "39177895246", + "totalGbp": "39.18", + "totalReads": "1903015", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861659", + "accession": "SAMN26237501", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861659", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237501", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR36", - "filename": "m64043_200618_201934.ccs.bam", + "familyId": "PEL29", + "filename": "m64043_210624_032817.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01175_lib1", + "libraryId": "HG01993_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49892", - "mean": "21676", - "metadataAccession": "SRR13684377", - "min": "45", + "max": "57065", + "mean": "20740", + "metadataAccession": "SRR18189661", + "min": "86", "mmTag": false, - "n25": "19575", - "n50": "21558", - "n75": "24328", + "n25": "18938", + "n50": "20675", + "n75": "22909", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01175/raw_data/PacBio_HiFi/m64043_200618_201934.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/PacBio_HiFi/m64043_210624_032817.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "19197", - "quartile50": "21038", - "quartile75": "23531", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "18649", + "quartile50": "20282", + "quartile75": "22381", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01175", + "sampleId": "HG01993", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PUR", + "subpopulation": "PEL", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "27337960037", - "totalGbp": "27.34", - "totalReads": "1261159", + "totalBp": "30485595101", + "totalGbp": "30.49", + "totalReads": "1469845", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861659", + "accession": "SAMN26237497", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861659", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237497", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR36", - "filename": "m64043_200620_173220.ccs.bam", + "familyId": "CLM64", + "filename": "m64043_210625_184443.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01175_lib1", + "libraryId": "HG01496_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50465", - "mean": "21811", - "metadataAccession": "SRR13684377", - "min": "45", + "max": "61342", + "mean": "21964", + "metadataAccession": "SRR18189641", + "min": "86", "mmTag": false, - "n25": "19663", - "n50": "21687", - "n75": "24539", + "n25": "18529", + "n50": "22182", + "n75": "26634", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01175/raw_data/PacBio_HiFi/m64043_200620_173220.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/PacBio_HiFi/m64043_210625_184443.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "19274", - "quartile50": "21150", - "quartile75": "23708", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17892", + "quartile50": "20566", + "quartile75": "24954", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01175", + "sampleId": "HG01496", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PUR", + "subpopulation": "CLM", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "33311371824", - "totalGbp": "33.31", - "totalReads": "1527212", + "totalBp": "37026751079", + "totalGbp": "37.03", + "totalReads": "1685752", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861659", + "accession": "SAMN26237497", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861659", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237497", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR36", - "filename": "m64043_200621_234442.ccs.bam", + "familyId": "CLM64", + "filename": "m64043_210627_054642.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01175_lib1", + "libraryId": "HG01496_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49779", - "mean": "21663", - "metadataAccession": "SRR13684377", - "min": "46", + "max": "62635", + "mean": "22304", + "metadataAccession": "SRR18189641", + "min": "90", "mmTag": false, - "n25": "19577", - "n50": "21552", - "n75": "24299", + "n25": "18805", + "n50": "22663", + "n75": "27075", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01175/raw_data/PacBio_HiFi/m64043_200621_234442.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/PacBio_HiFi/m64043_210627_054642.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "19196", - "quartile50": "21036", - "quartile75": "23514", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "18096", + "quartile50": "21059", + "quartile75": "25411", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01175", + "sampleId": "HG01496", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PUR", + "subpopulation": "CLM", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "25094609545", - "totalGbp": "25.09", - "totalReads": "1158408", + "totalBp": "31563425462", + "totalGbp": "31.56", + "totalReads": "1415116", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861659", + "accession": "SAMN26237497", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861659", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237497", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR36", - "filename": "m64043_200623_060946.ccs.bam", + "familyId": "CLM64", + "filename": "m64043_210628_151651.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01175_lib1", + "libraryId": "HG01496_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "48916", - "mean": "21703", - "metadataAccession": "SRR13684377", - "min": "45", + "max": "64392", + "mean": "22230", + "metadataAccession": "SRR18189641", + "min": "86", "mmTag": false, - "n25": "19603", - "n50": "21590", - "n75": "24349", + "n25": "18754", + "n50": "22563", + "n75": "26973", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01175/raw_data/PacBio_HiFi/m64043_200623_060946.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/PacBio_HiFi/m64043_210628_151651.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "19223", - "quartile50": "21069", - "quartile75": "23556", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "18058", + "quartile50": "20958", + "quartile75": "25307", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01175", + "sampleId": "HG01496", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PUR", + "subpopulation": "CLM", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26195722346", - "totalGbp": "26.2", - "totalReads": "1206997", + "totalBp": "34860559463", + "totalGbp": "34.86", + "totalReads": "1568136", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861658", + "accession": "SAMN26237491", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861658", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237491", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR25", - "filename": "m64043_200625_174853.ccs.bam", + "familyId": "SH042", + "filename": "m64043_210702_183246.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01106_lib1", + "libraryId": "HG00544_lib2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50120", - "mean": "22282", - "metadataAccession": "SRR13684378", - "min": "48", + "max": "44297", + "mean": "18853", + "metadataAccession": "SRR18189664", + "min": "89", "mmTag": false, - "n25": "20354", - "n50": "22145", - "n75": "24608", + "n25": "17486", + "n50": "18717", + "n75": "20276", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01106/raw_data/PacBio_HiFi/m64043_200625_174853.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m64043_210702_183246.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "20072", - "quartile50": "21734", - "quartile75": "24014", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17346", + "quartile50": "18502", + "quartile75": "19998", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01106", + "sampleId": "HG00544", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "38034918237", - "totalGbp": "38.03", - "totalReads": "1706917", + "totalBp": "37881441933", + "totalGbp": "37.88", + "totalReads": "2009252", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861658", + "accession": "SAMN26237494", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861658", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237494", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR25", - "filename": "m64043_200627_000137.ccs.bam", + "familyId": "PR31", + "filename": "m64043_210704_052805.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01106_lib1", + "libraryId": "HG01099_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "48433", - "mean": "22354", - "metadataAccession": "SRR13684378", - "min": "47", + "max": "56485", + "mean": "19094", + "metadataAccession": "SRR18189644", + "min": "834", "mmTag": false, - "n25": "20403", - "n50": "22211", - "n75": "24706", + "n25": "16716", + "n50": "19458", + "n75": "21867", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01106/raw_data/PacBio_HiFi/m64043_200627_000137.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/PacBio_HiFi/m64043_210704_052805.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "20117", - "quartile50": "21789", - "quartile75": "24100", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "16230", + "quartile50": "18796", + "quartile75": "21186", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01106", + "sampleId": "HG01099", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", @@ -19493,64 +18778,64 @@ "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34465266970", - "totalGbp": "34.47", - "totalReads": "1541756", + "totalBp": "37446420746", + "totalGbp": "37.45", + "totalReads": "1961160", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861658", + "accession": "SAMN26237494", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861658", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237494", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR25", - "filename": "m64043_200628_062711.ccs.bam", + "familyId": "PR31", + "filename": "m64043_210705_162656.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01106_lib1", + "libraryId": "HG01099_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49297", - "mean": "22276", - "metadataAccession": "SRR13684378", - "min": "46", + "max": "55386", + "mean": "19081", + "metadataAccession": "SRR18189644", + "min": "347", "mmTag": false, - "n25": "20357", - "n50": "22134", - "n75": "24585", + "n25": "16706", + "n50": "19451", + "n75": "21851", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01106/raw_data/PacBio_HiFi/m64043_200628_062711.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/PacBio_HiFi/m64043_210705_162656.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "20074", - "quartile50": "21727", - "quartile75": "23990", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "16223", + "quartile50": "18786", + "quartile75": "21170", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01106", + "sampleId": "HG01099", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", @@ -19558,64 +18843,64 @@ "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "35847146199", - "totalGbp": "35.85", - "totalReads": "1609195", + "totalBp": "38087524710", + "totalGbp": "38.09", + "totalReads": "1996032", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861658", + "accession": "SAMN26237494", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861658", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237494", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR25", - "filename": "m64043_200629_125238.ccs.bam", + "familyId": "PR31", + "filename": "m64043_210707_032602.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01106_lib1", + "libraryId": "HG01099_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49438", - "mean": "22308", - "metadataAccession": "SRR13684378", - "min": "46", + "max": "49845", + "mean": "18787", + "metadataAccession": "SRR18189644", + "min": "718", "mmTag": false, - "n25": "20381", - "n50": "22171", - "n75": "24626", + "n25": "16456", + "n50": "19125", + "n75": "21503", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01106/raw_data/PacBio_HiFi/m64043_200629_125238.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/PacBio_HiFi/m64043_210707_032602.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "20101", - "quartile50": "21762", - "quartile75": "24030", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "16037", + "quartile50": "18407", + "quartile75": "20851", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01106", + "sampleId": "HG01099", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", @@ -19623,5004 +18908,5004 @@ "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "36771576306", - "totalGbp": "36.77", - "totalReads": "1648307", + "totalBp": "25855870472", + "totalGbp": "25.86", + "totalReads": "1376237", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861655", + "accession": "SAMN26237502", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861655", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237502", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR06", - "filename": "m64043_200702_173033.ccs.bam", + "familyId": "PEL33", + "filename": "m64043_210709_205614.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00735_lib1", + "libraryId": "HG02004_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49688", - "mean": "22227", - "metadataAccession": "SRR13684381", - "min": "46", + "max": "57164", + "mean": "19427", + "metadataAccession": "SRR18189660", + "min": "86", "mmTag": false, - "n25": "20116", - "n50": "22356", - "n75": "25110", + "n25": "16903", + "n50": "19508", + "n75": "22598", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00735/raw_data/PacBio_HiFi/m64043_200702_173033.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/PacBio_HiFi/m64043_210709_205614.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "19624", - "quartile50": "21774", - "quartile75": "24357", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "16509", + "quartile50": "18542", + "quartile75": "21688", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00735", + "sampleId": "HG02004", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PUR", + "subpopulation": "PEL", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "36348091955", - "totalGbp": "36.35", - "totalReads": "1635278", + "totalBp": "31359670199", + "totalGbp": "31.36", + "totalReads": "1614164", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861655", + "accession": "SAMN26237499", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861655", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237499", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR06", - "filename": "m64043_200703_234328.ccs.bam", + "familyId": "PEL016", + "filename": "m64043_210716_230222.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00735_lib1", + "libraryId": "HG01943_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49367", - "mean": "22287", - "metadataAccession": "SRR13684381", - "min": "48", + "max": "55403", + "mean": "18817", + "metadataAccession": "SRR18189663", + "min": "86", "mmTag": false, - "n25": "20157", - "n50": "22410", - "n75": "25197", + "n25": "17495", + "n50": "18754", + "n75": "20298", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00735/raw_data/PacBio_HiFi/m64043_200703_234328.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/PacBio_HiFi/m64043_210716_230222.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "19664", - "quartile50": "21820", - "quartile75": "24428", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17322", + "quartile50": "18526", + "quartile75": "20011", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00735", + "sampleId": "HG01943", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PUR", + "subpopulation": "PEL", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34369588285", - "totalGbp": "34.37", - "totalReads": "1542075", + "totalBp": "34264397581", + "totalGbp": "34.26", + "totalReads": "1820921", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861655", + "accession": "SAMN26237499", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861655", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237499", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR06", - "filename": "m64043_200705_060840.ccs.bam", + "familyId": "PEL016", + "filename": "m64043_210718_100009.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00735_lib1", + "libraryId": "HG01943_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49904", - "mean": "22182", - "metadataAccession": "SRR13684381", - "min": "46", + "max": "58783", + "mean": "18855", + "metadataAccession": "SRR18189663", + "min": "88", "mmTag": false, - "n25": "20073", - "n50": "22309", - "n75": "25061", + "n25": "17516", + "n50": "18789", + "n75": "20344", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00735/raw_data/PacBio_HiFi/m64043_200705_060840.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/PacBio_HiFi/m64043_210718_100009.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "19581", - "quartile50": "21726", - "quartile75": "24304", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17340", + "quartile50": "18558", + "quartile75": "20050", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00735", + "sampleId": "HG01943", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PUR", + "subpopulation": "PEL", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34777888798", - "totalGbp": "34.78", - "totalReads": "1567779", + "totalBp": "30875828356", + "totalGbp": "30.88", + "totalReads": "1637478", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861655", + "accession": "SAMN26237499", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861655", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237499", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR06", - "filename": "m64043_200706_123423.ccs.bam", + "familyId": "PEL016", + "filename": "m64043_210719_210019.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00735_lib1", + "libraryId": "HG01943_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49944", - "mean": "22085", - "metadataAccession": "SRR13684381", - "min": "45", + "max": "47136", + "mean": "18860", + "metadataAccession": "SRR18189663", + "min": "68", "mmTag": false, - "n25": "20012", - "n50": "22219", - "n75": "24914", + "n25": "17522", + "n50": "18792", + "n75": "20349", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00735/raw_data/PacBio_HiFi/m64043_200706_123423.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/PacBio_HiFi/m64043_210719_210019.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "19529", - "quartile50": "21653", - "quartile75": "24178", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17347", + "quartile50": "18560", + "quartile75": "20056", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00735", + "sampleId": "HG01943", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PUR", + "subpopulation": "PEL", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "27999854128", - "totalGbp": "28", - "totalReads": "1267797", + "totalBp": "33311278939", + "totalGbp": "33.31", + "totalReads": "1766146", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861652", + "accession": "SAMN26237510", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861652", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237510", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH012", - "filename": "m64043_200710_174426.ccs.bam", + "familyId": "GB63", + "filename": "m64043_210723_184340.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00438_lib1", + "libraryId": "HG02809_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50423", - "mean": "22958", - "metadataAccession": "SRR13684374", - "min": "46", + "max": "63434", + "mean": "20456", + "metadataAccession": "SRR18189651", + "min": "111", "mmTag": false, - "n25": "20003", - "n50": "22667", - "n75": "26976", - "notes": "", + "n25": "17476", + "n50": "20753", + "n75": "24073", + "notes": "bc1019 barcoded adapter", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00438/raw_data/PacBio_HiFi/m64043_200710_174426.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/PacBio_HiFi/m64043_210723_184340.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "19506", - "quartile50": "21728", - "quartile75": "25414", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17008", + "quartile50": "19683", + "quartile75": "22941", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00438", + "sampleId": "HG02809", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34896456183", - "totalGbp": "34.9", - "totalReads": "1519989", + "totalBp": "29214139102", + "totalGbp": "29.21", + "totalReads": "1428112", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861652", + "accession": "SAMN26237510", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861652", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237510", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH012", - "filename": "m64043_200711_235708.ccs.bam", + "familyId": "GB63", + "filename": "m64043_210725_053930.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00438_lib1", + "libraryId": "HG02809_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50025", - "mean": "22724", - "metadataAccession": "SRR13684374", - "min": "45", + "max": "64323", + "mean": "21494", + "metadataAccession": "SRR18189651", + "min": "187", "mmTag": false, - "n25": "19889", - "n50": "22407", - "n75": "26545", - "notes": "", + "n25": "18342", + "n50": "21941", + "n75": "25421", + "notes": "bc1019 barcoded adapter", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00438/raw_data/PacBio_HiFi/m64043_200711_235708.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/PacBio_HiFi/m64043_210725_053930.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "19419", - "quartile50": "21541", - "quartile75": "25057", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17612", + "quartile50": "20949", + "quartile75": "24207", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00438", + "sampleId": "HG02809", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26040412682", - "totalGbp": "26.04", - "totalReads": "1145913", + "totalBp": "28581238388", + "totalGbp": "28.58", + "totalReads": "1329702", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861652", + "accession": "SAMN26237510", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861652", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237510", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH012", - "filename": "m64043_200713_062240.ccs.bam", + "familyId": "GB63", + "filename": "m64043_210726_163819.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00438_lib1", + "libraryId": "HG02809_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50287", - "mean": "22977", - "metadataAccession": "SRR13684374", - "min": "45", + "max": "63495", + "mean": "21488", + "metadataAccession": "SRR18189651", + "min": "111", "mmTag": false, - "n25": "20012", - "n50": "22694", - "n75": "27044", - "notes": "", + "n25": "18360", + "n50": "21931", + "n75": "25380", + "notes": "bc1019 barcoded adapter", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00438/raw_data/PacBio_HiFi/m64043_200713_062240.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/PacBio_HiFi/m64043_210726_163819.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "19504", - "quartile50": "21748", - "quartile75": "25474", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17624", + "quartile50": "20956", + "quartile75": "24189", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00438", + "sampleId": "HG02809", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "32729061997", - "totalGbp": "32.73", - "totalReads": "1424368", + "totalBp": "24556655893", + "totalGbp": "24.56", + "totalReads": "1142800", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861652", + "accession": "SAMN26237510", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861652", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN26237510", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH012", - "filename": "m64043_200714_124814.ccs.bam", + "familyId": "GB63", + "filename": "m64043_210728_163353.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00438_lib1", + "libraryId": "HG02809_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50251", - "mean": "22954", - "metadataAccession": "SRR13684374", - "min": "47", + "max": "60391", + "mean": "21178", + "metadataAccession": "SRR18189651", + "min": "111", "mmTag": false, - "n25": "20000", - "n50": "22668", - "n75": "26994", - "notes": "", + "n25": "18029", + "n50": "21588", + "n75": "25022", + "notes": "bc1019 barcoded adapter", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00438/raw_data/PacBio_HiFi/m64043_200714_124814.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/PacBio_HiFi/m64043_210728_163353.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "19500", - "quartile50": "21725", - "quartile75": "25433", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17406", + "quartile50": "20602", + "quartile75": "23832", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00438", + "sampleId": "HG02809", "seqKit": "N/A", - "seqPlateChemistryVersion": "", + "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "33804474378", - "totalGbp": "33.8", - "totalReads": "1472693", + "totalBp": "31703994871", + "totalGbp": "31.7", + "totalReads": "1496989", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861654", + "accession": "SAMN17861237", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861654", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN17861237", + "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH079", - "filename": "m64043_200716_182902.ccs.bam", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "BB21", + "filename": "m64076_200125_231256.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00673_lib1", + "libraryId": "HG02257.HiFiEx_f2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49665", - "mean": "20725", - "metadataAccession": "SRR13684382", - "min": "47", + "max": "49634", + "mean": "19086", + "metadataAccession": "SRR13684279", + "min": "48", "mmTag": false, - "n25": "18376", - "n50": "20937", - "n75": "23944", + "n25": "17578", + "n50": "19101", + "n75": "20919", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00673/raw_data/PacBio_HiFi/m64043_200716_182902.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02257/raw_data/PacBio_HiFi/m64076_200125_231256.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", + "polymeraseVersion": "P2.0", "productionYear": "YR1", - "quartile25": "17882", - "quartile50": "20173", - "quartile75": "23136", + "quartile25": "17321", + "quartile50": "18791", + "quartile75": "20528", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00673", + "sampleId": "HG02257", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", + "seqPlateChemistryVersion": "C2.0", + "shearMethod": "g-TUBE", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "ACB", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "28919585361", - "totalGbp": "28.92", - "totalReads": "1395373", + "totalBp": "19712196692", + "totalGbp": "19.71", + "totalReads": "1032799", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861654", + "accession": "SAMN17861237", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861654", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN17861237", + "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH079", - "filename": "m64043_200718_004213.ccs.bam", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "BB21", + "filename": "m64076_200127_180545.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00673_lib1", + "libraryId": "HG02257.HiFiEx_f2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49661", - "mean": "20828", - "metadataAccession": "SRR13684382", - "min": "47", + "max": "50471", + "mean": "19202", + "metadataAccession": "SRR13684279", + "min": "46", "mmTag": false, - "n25": "18473", - "n50": "21066", - "n75": "24056", + "n25": "17658", + "n50": "19206", + "n75": "21077", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00673/raw_data/PacBio_HiFi/m64043_200718_004213.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02257/raw_data/PacBio_HiFi/m64076_200127_180545.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", + "polymeraseVersion": "P2.0", "productionYear": "YR1", - "quartile25": "17967", - "quartile50": "20301", - "quartile75": "23260", + "quartile25": "17393", + "quartile50": "18884", + "quartile75": "20665", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00673", + "sampleId": "HG02257", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", + "seqPlateChemistryVersion": "C2.0", + "shearMethod": "g-TUBE", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "ACB", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31592031668", - "totalGbp": "31.59", - "totalReads": "1516755", + "totalBp": "31789384503", + "totalGbp": "31.79", + "totalReads": "1655490", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861654", + "accession": "SAMN17861237", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861654", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN17861237", + "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH079", - "filename": "m64043_200719_070806.ccs.bam", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "BB21", + "filename": "m64076_200129_001835.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00673_lib1", + "libraryId": "HG02257.HiFiEx_f2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50236", - "mean": "20678", - "metadataAccession": "SRR13684382", - "min": "44", + "max": "48893", + "mean": "19352", + "metadataAccession": "SRR13684279", + "min": "48", "mmTag": false, - "n25": "18340", - "n50": "20871", - "n75": "23876", + "n25": "17785", + "n50": "19348", + "n75": "21236", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00673/raw_data/PacBio_HiFi/m64043_200719_070806.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02257/raw_data/PacBio_HiFi/m64076_200129_001835.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", + "polymeraseVersion": "P2.0", "productionYear": "YR1", - "quartile25": "17856", - "quartile50": "20119", - "quartile75": "23071", + "quartile25": "17518", + "quartile50": "19022", + "quartile75": "20817", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00673", + "sampleId": "HG02257", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", + "seqPlateChemistryVersion": "C2.0", + "shearMethod": "g-TUBE", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "ACB", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31912051817", - "totalGbp": "31.91", - "totalReads": "1543254", + "totalBp": "30466253940", + "totalGbp": "30.47", + "totalReads": "1574258", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861654", + "accession": "SAMN17861237", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861654", - "ccsAlgorithm": "8.0.0.80529", + "biosampleAccession": "SAMN17861237", + "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH079", - "filename": "m64043_200720_133355.ccs.bam", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "BB21", + "filename": "m64076_200130_064345.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00673_lib1", + "libraryId": "HG02257.HiFiEx_f2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49923", - "mean": "20791", - "metadataAccession": "SRR13684382", - "min": "46", + "max": "49612", + "mean": "19284", + "metadataAccession": "SRR13684279", + "min": "47", "mmTag": false, - "n25": "18430", - "n50": "21022", - "n75": "24023", + "n25": "17733", + "n50": "19284", + "n75": "21154", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00673/raw_data/PacBio_HiFi/m64043_200720_133355.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02257/raw_data/PacBio_HiFi/m64076_200130_064345.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "", + "polymeraseVersion": "P2.0", "productionYear": "YR1", - "quartile25": "17929", - "quartile50": "20254", - "quartile75": "23212", + "quartile25": "17469", + "quartile50": "18965", + "quartile75": "20743", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00673", + "sampleId": "HG02257", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", + "seqPlateChemistryVersion": "C2.0", + "shearMethod": "g-TUBE", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "ACB", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "30065709075", - "totalGbp": "30.07", - "totalReads": "1446038", + "totalBp": "28667205005", + "totalGbp": "28.67", + "totalReads": "1486566", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237490", + "accession": "SAMN17861234", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237490", - "ccsAlgorithm": "9.0.0.92188", + "biosampleAccession": "SAMN17861234", + "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH007", - "filename": "m64043_210205_190424.hifi_reads.bam", + "designDescription": "HiFi sequencing of 18kb fractionated gDNA", + "familyId": "CLM31", + "filename": "m64076_200201_051547.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00423_lib1", + "libraryId": "HG01358_HiFiEx_f1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49382", - "mean": "18400", - "metadataAccession": "SRR18189665", - "min": "85", + "max": "50034", + "mean": "18670", + "metadataAccession": "SRR13684283", + "min": "47", "mmTag": false, - "n25": "16755", - "n50": "18592", - "n75": "20554", + "n25": "17038", + "n50": "18766", + "n75": "20859", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/PacBio_HiFi/m64043_210205_190424.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m64076_200201_051547.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "16334", - "quartile50": "18171", - "quartile75": "20074", + "polymeraseVersion": "P2.0", + "productionYear": "YR1", + "quartile25": "16676", + "quartile50": "18344", + "quartile75": "20318", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00423", + "sampleId": "HG01358", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", + "seqPlateChemistryVersion": "C2.0", + "shearMethod": "g-TUBE", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "35517184454", - "totalGbp": "35.52", - "totalReads": "1930215", + "totalBp": "30068543676", + "totalGbp": "30.07", + "totalReads": "1610516", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237490", + "accession": "SAMN17861234", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237490", - "ccsAlgorithm": "9.0.0.92188", + "biosampleAccession": "SAMN17861234", + "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH007", - "filename": "m64043_210207_011920.hifi_reads.bam", + "designDescription": "HiFi sequencing of 18kb fractionated gDNA", + "familyId": "CLM31", + "filename": "m64076_200203_181219.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00423_lib1", + "libraryId": "HG01358_HiFiEx_f1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50543", - "mean": "18410", - "metadataAccession": "SRR18189665", - "min": "64", + "max": "49139", + "mean": "18338", + "metadataAccession": "SRR13684283", + "min": "44", "mmTag": false, - "n25": "16741", - "n50": "18600", - "n75": "20587", + "n25": "16771", + "n50": "18467", + "n75": "20512", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/PacBio_HiFi/m64043_210207_011920.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m64076_200203_181219.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "16320", - "quartile50": "18170", - "quartile75": "20096", + "polymeraseVersion": "P2.0", + "productionYear": "YR1", + "quartile25": "16407", + "quartile50": "18053", + "quartile75": "19983", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00423", + "sampleId": "HG01358", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", + "seqPlateChemistryVersion": "C2.0", + "shearMethod": "g-TUBE", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "33618239844", - "totalGbp": "33.62", - "totalReads": "1826062", + "totalBp": "32630636515", + "totalGbp": "32.63", + "totalReads": "1779397", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237490", + "accession": "SAMN17861234", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237490", - "ccsAlgorithm": "9.0.0.92188", + "biosampleAccession": "SAMN17861234", + "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH007", - "filename": "m64043_210209_184051.hifi_reads.bam", + "designDescription": "HiFi sequencing of 18kb fractionated gDNA", + "familyId": "CLM31", + "filename": "m64076_200206_215943.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00423_lib1", + "libraryId": "HG01358_HiFiEx_f1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49891", - "mean": "18413", - "metadataAccession": "SRR18189665", - "min": "85", + "max": "49875", + "mean": "18215", + "metadataAccession": "SRR13684283", + "min": "47", "mmTag": false, - "n25": "16768", - "n50": "18600", - "n75": "20564", + "n25": "16675", + "n50": "18363", + "n75": "20389", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/PacBio_HiFi/m64043_210209_184051.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m64076_200206_215943.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "16352", - "quartile50": "18180", - "quartile75": "20083", + "polymeraseVersion": "P2.0", + "productionYear": "YR1", + "quartile25": "16308", + "quartile50": "17946", + "quartile75": "19862", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00423", + "sampleId": "HG01358", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", + "seqPlateChemistryVersion": "C2.0", + "shearMethod": "g-TUBE", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "38438203547", - "totalGbp": "38.44", - "totalReads": "2087485", + "totalBp": "28270120144", + "totalGbp": "28.27", + "totalReads": "1551959", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237490", + "accession": "SAMN17861234", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237490", - "ccsAlgorithm": "9.0.0.92188", + "biosampleAccession": "SAMN17861234", + "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH007", - "filename": "m64043_210211_005516.hifi_reads.bam", + "designDescription": "HiFi sequencing of 18kb fractionated gDNA", + "familyId": "CLM31", + "filename": "m64076_200208_041234.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00423_lib1", + "libraryId": "HG01358_HiFiEx_f1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "71983", - "mean": "18446", - "metadataAccession": "SRR18189665", - "min": "85", + "max": "45703", + "mean": "18304", + "metadataAccession": "SRR13684283", + "min": "47", "mmTag": false, - "n25": "16807", - "n50": "18630", - "n75": "20592", + "n25": "16749", + "n50": "18432", + "n75": "20451", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/PacBio_HiFi/m64043_210211_005516.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m64076_200208_041234.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "16390", - "quartile50": "18214", - "quartile75": "20112", + "polymeraseVersion": "P2.0", + "productionYear": "YR1", + "quartile25": "16388", + "quartile50": "18026", + "quartile75": "19934", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00423", + "sampleId": "HG01358", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", + "seqPlateChemistryVersion": "C2.0", + "shearMethod": "g-TUBE", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "36879516061", - "totalGbp": "36.88", - "totalReads": "1999237", + "totalBp": "26036028477", + "totalGbp": "26.04", + "totalReads": "1422399", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237506", + "accession": "SAMN17861238", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237506", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN17861238", + "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN090", - "filename": "m64043_210506_183430.hifi_reads.bam", + "designDescription": "HiFi sequencing of 19kb fractionated gDNA", + "familyId": "BB55", + "filename": "m64076_200211_192227.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02523_lib1", + "libraryId": "HG02486.HiFiEx_b6", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "59606", - "mean": "21060", - "metadataAccession": "SRR18189656", - "min": "694", + "max": "30053", + "mean": "20506", + "metadataAccession": "SRR13684276", + "min": "45", "mmTag": false, - "n25": "18057", - "n50": "20287", - "n75": "25204", + "n25": "20111", + "n50": "20780", + "n75": "21460", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02523/raw_data/PacBio_HiFi/m64043_210506_183430.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02486/raw_data/PacBio_HiFi/m64076_200211_192227.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17653", - "quartile50": "19411", - "quartile75": "23289", + "polymeraseVersion": "P2.0", + "productionYear": "YR1", + "quartile25": "20033", + "quartile50": "20719", + "quartile75": "21404", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02523", + "sampleId": "HG02486", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", + "seqPlateChemistryVersion": "C2.0", + "shearMethod": "g-TUBE", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": "ACB", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34598182243", - "totalGbp": "34.6", - "totalReads": "1642763", + "totalBp": "1028856517", + "totalGbp": "1.03", + "totalReads": "50172", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237506", + "accession": "SAMN17861239", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237506", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN17861239", + "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN090", - "filename": "m64043_210508_033135.hifi_reads.bam", + "familyId": "BB68", + "filename": "m64076_200215_021919.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02523_lib1", + "libraryId": "HG02559.HiFiEx_f2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "59221", - "mean": "20876", - "metadataAccession": "SRR18189656", - "min": "86", + "max": "49430", + "mean": "20252", + "metadataAccession": "SRR13684287", + "min": "46", "mmTag": false, - "n25": "17952", - "n50": "20058", - "n75": "24831", + "n25": "18610", + "n50": "20214", + "n75": "22178", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02523/raw_data/PacBio_HiFi/m64043_210508_033135.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02559/raw_data/PacBio_HiFi/m64076_200215_021919.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17572", - "quartile50": "19266", - "quartile75": "22943", + "polymeraseVersion": "P2.0", + "productionYear": "YR1", + "quartile25": "18340", + "quartile50": "19877", + "quartile75": "21734", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02523", + "sampleId": "HG02559", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", + "seqPlateChemistryVersion": "C2.0", + "shearMethod": "g-TUBE", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": "ACB", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "32638821684", - "totalGbp": "32.64", - "totalReads": "1563454", + "totalBp": "26582700348", + "totalGbp": "26.58", + "totalReads": "1312567", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237506", + "accession": "SAMN17861239", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237506", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN17861239", + "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN090", - "filename": "m64043_210509_110105.hifi_reads.bam", + "familyId": "BB68", + "filename": "m64076_200217_055339.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02523_lib1", + "libraryId": "HG02559.HiFiEx_f2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57156", - "mean": "20889", - "metadataAccession": "SRR18189656", - "min": "562", + "max": "50659", + "mean": "20381", + "metadataAccession": "SRR13684287", + "min": "47", "mmTag": false, - "n25": "17964", - "n50": "20086", - "n75": "24849", + "n25": "18706", + "n50": "20331", + "n75": "22336", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02523/raw_data/PacBio_HiFi/m64043_210509_110105.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02559/raw_data/PacBio_HiFi/m64076_200217_055339.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17581", - "quartile50": "19284", - "quartile75": "22978", + "polymeraseVersion": "P2.0", + "productionYear": "YR1", + "quartile25": "18431", + "quartile50": "19985", + "quartile75": "21877", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02523", + "sampleId": "HG02559", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", + "seqPlateChemistryVersion": "C2.0", + "shearMethod": "g-TUBE", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": "ACB", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "30658573852", - "totalGbp": "30.66", - "totalReads": "1467650", + "totalBp": "31581599812", + "totalGbp": "31.58", + "totalReads": "1549488", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237513", + "accession": "SAMN17861235", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237513", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN17861235", + "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PK62", - "filename": "m64043_210514_184131.hifi_reads.bam", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "CLM32", + "filename": "m64076_200221_234426.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03710_lib1", + "libraryId": "HG01361.HiFiEx_f6", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "59530", - "mean": "20384", - "metadataAccession": "SRR18189648", - "min": "86", + "max": "42847", + "mean": "19178", + "metadataAccession": "SRR13684281", + "min": "45", "mmTag": false, - "n25": "17585", - "n50": "19797", - "n75": "24006", + "n25": "18952", + "n50": "19881", + "n75": "20718", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/PacBio_HiFi/m64043_210514_184131.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01361/raw_data/PacBio_HiFi_Swap_Fixed/m64076_200221_234426.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17210", - "quartile50": "18949", - "quartile75": "22578", + "polymeraseVersion": "P2.0", + "productionYear": "YR1", + "quartile25": "18750", + "quartile50": "19745", + "quartile75": "20615", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03710", + "sampleId": "HG01361", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", + "seqPlateChemistryVersion": "C2.0", + "shearMethod": "g-TUBE", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "32918659468", - "totalGbp": "32.92", - "totalReads": "1614922", + "totalBp": "6760635369", + "totalGbp": "6.76", + "totalReads": "352516", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237513", + "accession": "SAMN17861233", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237513", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN17861233", + "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PK62", - "filename": "m64043_210516_020821.hifi_reads.bam", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "CLM16", + "filename": "m64076_200306_185917.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03710_lib1", + "libraryId": "HG01258.HiFiEx_f1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "61709", - "mean": "20760", - "metadataAccession": "SRR18189648", - "min": "549", + "max": "49803", + "mean": "19234", + "metadataAccession": "SRR13684289", + "min": "44", "mmTag": false, - "n25": "17782", - "n50": "20332", - "n75": "24670", + "n25": "17398", + "n50": "19748", + "n75": "22588", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/PacBio_HiFi/m64043_210516_020821.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01258/raw_data/PacBio_HiFi_Swap_Fixed/m64076_200306_185917.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17357", - "quartile50": "19260", - "quartile75": "23148", + "polymeraseVersion": "P2.0", + "productionYear": "YR1", + "quartile25": "16739", + "quartile50": "18969", + "quartile75": "21696", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03710", + "sampleId": "HG01258", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", + "seqPlateChemistryVersion": "C2.0", + "shearMethod": "g-TUBE", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "35214602226", - "totalGbp": "35.21", - "totalReads": "1696236", + "totalBp": "26041896578", + "totalGbp": "26.04", + "totalReads": "1353905", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237513", + "accession": "SAMN17861233", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237513", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN17861233", + "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PK62", - "filename": "m64043_210517_175123.hifi_reads.bam", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "CLM16", + "filename": "m64076_200308_194406.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03710_lib1", + "libraryId": "HG01258.HiFiEx_f1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "61973", - "mean": "20781", - "metadataAccession": "SRR18189648", - "min": "108", + "max": "49891", + "mean": "20258", + "metadataAccession": "SRR13684289", + "min": "46", "mmTag": false, - "n25": "17796", - "n50": "20381", - "n75": "24696", + "n25": "18172", + "n50": "20670", + "n75": "23557", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/PacBio_HiFi/m64043_210517_175123.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01258/raw_data/PacBio_HiFi_Swap_Fixed/m64076_200308_194406.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17364", - "quartile50": "19286", - "quartile75": "23189", + "polymeraseVersion": "P2.0", + "productionYear": "YR1", + "quartile25": "17537", + "quartile50": "19892", + "quartile75": "22696", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03710", + "sampleId": "HG01258", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", + "seqPlateChemistryVersion": "C2.0", + "shearMethod": "g-TUBE", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "33421412427", - "totalGbp": "33.42", - "totalReads": "1608247", + "totalBp": "29310691456", + "totalGbp": "29.31", + "totalReads": "1446864", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237509", + "accession": "SAMN17861233", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237509", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN17861233", + "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PK21", - "filename": "m64043_210519_013026.hifi_reads.bam", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "CLM16", + "filename": "m64076_200310_015720.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02698_lib1", + "libraryId": "HG01258.HiFiEx_f1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "54640", - "mean": "20083", - "metadataAccession": "SRR18189652", - "min": "86", + "max": "50256", + "mean": "20164", + "metadataAccession": "SRR13684289", + "min": "46", "mmTag": false, - "n25": "17554", - "n50": "19788", - "n75": "23507", + "n25": "18072", + "n50": "20520", + "n75": "23388", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/PacBio_HiFi/m64043_210519_013026.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01258/raw_data/PacBio_HiFi_Swap_Fixed/m64076_200310_015720.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17194", - "quartile50": "18998", - "quartile75": "22461", + "polymeraseVersion": "P2.0", + "productionYear": "YR1", + "quartile25": "17467", + "quartile50": "19772", + "quartile75": "22536", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02698", + "sampleId": "HG01258", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", + "seqPlateChemistryVersion": "C2.0", + "shearMethod": "g-TUBE", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "33178464571", - "totalGbp": "33.18", - "totalReads": "1652007", + "totalBp": "26506907662", + "totalGbp": "26.51", + "totalReads": "1314550", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237495", + "accession": "SAMN17861233", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237495", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN17861233", + "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM15", - "filename": "m64043_210520_180149.hifi_reads.bam", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "CLM16", + "filename": "m64076_200311_082315.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01255_lib1", + "libraryId": "HG01258.HiFiEx_f1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "59514", - "mean": "20310", - "metadataAccession": "SRR18189643", - "min": "335", + "max": "50257", + "mean": "20032", + "metadataAccession": "SRR13684289", + "min": "45", "mmTag": false, - "n25": "17454", - "n50": "20258", - "n75": "23821", + "n25": "17945", + "n50": "20385", + "n75": "23250", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/PacBio_HiFi/m64043_210520_180149.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01258/raw_data/PacBio_HiFi_Swap_Fixed/m64076_200311_082315.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17012", - "quartile50": "19180", - "quartile75": "22570", + "polymeraseVersion": "P2.0", + "productionYear": "YR1", + "quartile25": "17344", + "quartile50": "19636", + "quartile75": "22397", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01255", + "sampleId": "HG01258", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", + "seqPlateChemistryVersion": "C2.0", + "shearMethod": "g-TUBE", "sizeSelection": "SageELF", "study": "SRP305758", "subpopulation": "CLM", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "33274752433", - "totalGbp": "33.27", - "totalReads": "1638272", + "totalBp": "29289007356", + "totalGbp": "29.29", + "totalReads": "1462110", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237511", + "accession": "SAMN17861240", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237511", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN17861240", + "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PK53", - "filename": "m64043_210522_023949.hifi_reads.bam", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "GB21", + "filename": "m64076_200313_161705.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03654_lib1", + "libraryId": "HG02572.HiFiEx_f2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "54542", - "mean": "18706", - "metadataAccession": "SRR18189650", - "min": "527", + "max": "50071", + "mean": "19789", + "metadataAccession": "SRR13684286", + "min": "47", "mmTag": false, - "n25": "16400", - "n50": "18463", - "n75": "21660", + "n25": "18097", + "n50": "19841", + "n75": "22009", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03654/raw_data/PacBio_HiFi/m64043_210522_023949.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02572/raw_data/PacBio_HiFi/m64076_200313_161705.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "16104", - "quartile50": "17719", - "quartile75": "20827", + "polymeraseVersion": "P2.0", + "productionYear": "YR1", + "quartile25": "17766", + "quartile50": "19421", + "quartile75": "21472", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03654", + "sampleId": "HG02572", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", + "seqPlateChemistryVersion": "C2.0", + "shearMethod": "g-TUBE", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26324187893", - "totalGbp": "26.32", - "totalReads": "1407194", + "totalBp": "26950290432", + "totalGbp": "26.95", + "totalReads": "1361865", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237511", + "accession": "SAMN17861240", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237511", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN17861240", + "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PK53", - "filename": "m64043_210523_101851.hifi_reads.bam", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "GB21", + "filename": "m64076_200317_041201.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03654_lib1", + "libraryId": "HG02572.HiFiEx_f2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "60353", - "mean": "18996", - "metadataAccession": "SRR18189650", - "min": "90", + "max": "49941", + "mean": "19929", + "metadataAccession": "SRR13684286", + "min": "46", "mmTag": false, - "n25": "16568", - "n50": "18939", - "n75": "22101", + "n25": "18177", + "n50": "19971", + "n75": "22212", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03654/raw_data/PacBio_HiFi/m64043_210523_101851.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02572/raw_data/PacBio_HiFi/m64076_200317_041201.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "16229", - "quartile50": "18023", - "quartile75": "21237", + "polymeraseVersion": "P2.0", + "productionYear": "YR1", + "quartile25": "17833", + "quartile50": "19531", + "quartile75": "21639", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03654", + "sampleId": "HG02572", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", + "seqPlateChemistryVersion": "C2.0", + "shearMethod": "g-TUBE", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34126728073", - "totalGbp": "34.13", - "totalReads": "1796437", + "totalBp": "21411661479", + "totalGbp": "21.41", + "totalReads": "1074359", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237511", + "accession": "SAMN17861240", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237511", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN17861240", + "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PK53", - "filename": "m64043_210524_174752.hifi_reads.bam", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "GB21", + "filename": "m64076_200318_103811.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03654_lib1", + "libraryId": "HG02572.HiFiEx_f2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "65226", - "mean": "19002", - "metadataAccession": "SRR18189650", - "min": "531", + "max": "49965", + "mean": "19965", + "metadataAccession": "SRR13684286", + "min": "45", "mmTag": false, - "n25": "16575", - "n50": "18943", - "n75": "22091", + "n25": "18223", + "n50": "20011", + "n75": "22232", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03654/raw_data/PacBio_HiFi/m64043_210524_174752.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02572/raw_data/PacBio_HiFi/m64076_200318_103811.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "16238", - "quartile50": "18030", - "quartile75": "21236", + "polymeraseVersion": "P2.0", + "productionYear": "YR1", + "quartile25": "17882", + "quartile50": "19577", + "quartile75": "21677", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03654", + "sampleId": "HG02572", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", + "seqPlateChemistryVersion": "C2.0", + "shearMethod": "g-TUBE", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "32313779561", - "totalGbp": "32.31", - "totalReads": "1700544", + "totalBp": "21934534323", + "totalGbp": "21.93", + "totalReads": "1098595", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237511", + "accession": null, "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237511", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN17861242", + "ccsAlgorithm": "ccs 4.2.0 (commit v4.2.0-1-g450908e4)", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PK53", - "filename": "m64043_210528_171552.hifi_reads.bam", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": null, + "filename": "m64076_201013_225902.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03654_lib1", + "libraryId": "NA24385_HG002.f4.f3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50438", - "mean": "18974", - "metadataAccession": "SRR18189650", - "min": "86", + "max": "57023", + "mean": "20390", + "metadataAccession": "SRR13684284", + "min": "46", "mmTag": false, - "n25": "16591", - "n50": "18881", - "n75": "22010", + "n25": "18875", + "n50": "20054", + "n75": "21609", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03654/raw_data/PacBio_HiFi/m64043_210528_171552.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC_PLUS/HG002/raw_data/PacBio_HiFi/UW_supplement/m64076_201013_225902.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "16266", - "quartile50": "18022", - "quartile75": "21176", + "polymeraseVersion": "P2.0", + "productionYear": null, + "quartile25": "18712", + "quartile50": "19835", + "quartile75": "21255", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03654", + "sampleId": "HG002", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", + "seqPlateChemistryVersion": "C2.0", + "shearMethod": "g-TUBE", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "21288110123", - "totalGbp": "21.29", - "totalReads": "1121956", + "totalBp": "17328670239", + "totalGbp": "17.33", + "totalReads": "849857", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237493", + "accession": null, "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237493", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN17861242", + "ccsAlgorithm": "ccs 4.2.0 (commit v4.2.0-1-g450908e4)", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR07", - "filename": "m64043_210530_003337.hifi_reads.bam", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": null, + "filename": "m64076_201016_191536.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00738_lib1", + "libraryId": "NA24385_HG002.f4.f3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "59307", - "mean": "21611", - "metadataAccession": "SRR18189645", - "min": "345", + "max": "59678", + "mean": "21020", + "metadataAccession": "SRR13684284", + "min": "46", "mmTag": false, - "n25": "18878", - "n50": "20880", - "n75": "25135", + "n25": "19081", + "n50": "20444", + "n75": "22636", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/PacBio_HiFi/m64043_210530_003337.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC_PLUS/HG002/raw_data/PacBio_HiFi/UW_supplement/m64076_201016_191536.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "18535", - "quartile50": "20226", - "quartile75": "23527", + "polymeraseVersion": "P2.0", + "productionYear": null, + "quartile25": "18875", + "quartile50": "20128", + "quartile75": "21934", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00738", + "sampleId": "HG002", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", + "seqPlateChemistryVersion": "C2.0", + "shearMethod": "g-TUBE", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "27082098409", - "totalGbp": "27.08", - "totalReads": "1253128", + "totalBp": "19201161177", + "totalGbp": "19.2", + "totalReads": "913451", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237493", + "accession": "SAMN26267386", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237493", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267386", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR07", - "filename": "m64043_210531_080529.hifi_reads.bam", + "designDescription": "HiFi sequencing of 17kb fractionated gDNA", + "familyId": "BD37", + "filename": "m64076_210514_222349.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00738_lib1", + "libraryId": "HG03927a.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "60323", - "mean": "21734", - "metadataAccession": "SRR18189645", - "min": "494", + "max": "47540", + "mean": "15552", + "metadataAccession": "SRR18158598", + "min": "86", "mmTag": false, - "n25": "18958", - "n50": "21025", - "n75": "25370", + "n25": "13538", + "n50": "15842", + "n75": "18770", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/PacBio_HiFi/m64043_210531_080529.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/PacBio_HiFi/m64076_210514_222349.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "18598", - "quartile50": "20334", - "quartile75": "23778", + "quartile25": "12914", + "quartile50": "14994", + "quartile75": "17697", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00738", + "sampleId": "HG03927", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "28021544846", - "totalGbp": "28.02", - "totalReads": "1289251", + "totalBp": "25979557175", + "totalGbp": "25.98", + "totalReads": "1670468", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237493", + "accession": "SAMN26267378", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237493", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267378", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR07", - "filename": "m64043_210601_160048.hifi_reads.bam", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "PR04", + "filename": "m64076_210516_091844.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00738_lib1", + "libraryId": "HG00642.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "63840", - "mean": "21999", - "metadataAccession": "SRR18189645", - "min": "266", + "max": "49254", + "mean": "19195", + "metadataAccession": "SRR18158610", + "min": "86", "mmTag": false, - "n25": "19095", - "n50": "21316", - "n75": "25907", + "n25": "16660", + "n50": "19398", + "n75": "22815", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/PacBio_HiFi/m64043_210601_160048.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/PacBio_HiFi/m64076_210516_091844.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "18698", - "quartile50": "20532", - "quartile75": "24274", + "quartile25": "16014", + "quartile50": "18446", + "quartile75": "21636", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00738", + "sampleId": "HG00642", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", "subpopulation": "PUR", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "28382481489", - "totalGbp": "28.38", - "totalReads": "1290160", + "totalBp": "27532337755", + "totalGbp": "27.53", + "totalReads": "1434335", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237512", + "accession": "SAMN26267386", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237512", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267386", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PK58", - "filename": "m64043_210604_175624.hifi_reads.bam", + "designDescription": "HiFi sequencing of 17kb fractionated gDNA", + "familyId": "BD37", + "filename": "m64076_210517_210115.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03669_lib1", + "libraryId": "HG03927a.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "56876", - "mean": "19858", - "metadataAccession": "SRR18189649", - "min": "648", + "max": "50275", + "mean": "15524", + "metadataAccession": "SRR18158598", + "min": "85", "mmTag": false, - "n25": "18247", - "n50": "20290", - "n75": "22400", + "n25": "13486", + "n50": "15821", + "n75": "18797", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/PacBio_HiFi/m64043_210604_175624.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/PacBio_HiFi/m64076_210517_210115.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "17539", - "quartile50": "19825", - "quartile75": "21872", + "quartile25": "12851", + "quartile50": "14951", + "quartile75": "17697", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03669", + "sampleId": "HG03927", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PJL", + "subpopulation": "BEB", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "33224375908", - "totalGbp": "33.22", - "totalReads": "1673096", + "totalBp": "31012862864", + "totalGbp": "31.01", + "totalReads": "1997659", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237512", + "accession": "SAMN26267386", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237512", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267386", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PK58", - "filename": "m64043_210606_013256.hifi_reads.bam", + "designDescription": "HiFi sequencing of 17kb fractionated gDNA", + "familyId": "BD37", + "filename": "m64076_210519_075634.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03669_lib1", + "libraryId": "HG03927a.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "53173", - "mean": "20045", - "metadataAccession": "SRR18189649", - "min": "620", + "max": "47341", + "mean": "15444", + "metadataAccession": "SRR18158598", + "min": "85", "mmTag": false, - "n25": "18480", - "n50": "20459", - "n75": "22587", + "n25": "13463", + "n50": "15721", + "n75": "18586", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/PacBio_HiFi/m64043_210606_013256.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/PacBio_HiFi/m64076_210519_075634.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "17833", - "quartile50": "19999", - "quartile75": "22059", + "quartile25": "12855", + "quartile50": "14899", + "quartile75": "17543", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03669", + "sampleId": "HG03927", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PJL", + "subpopulation": "BEB", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "32948988442", - "totalGbp": "32.95", - "totalReads": "1643693", + "totalBp": "26139712779", + "totalGbp": "26.14", + "totalReads": "1692462", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237512", + "accession": "SAMN26267378", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237512", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267378", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PK58", - "filename": "m64043_210607_090252.hifi_reads.bam", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "PR04", + "filename": "m64076_210520_213355.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03669_lib1", + "libraryId": "HG00642.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "56463", - "mean": "19746", - "metadataAccession": "SRR18189649", - "min": "128", + "max": "55280", + "mean": "19929", + "metadataAccession": "SRR18158610", + "min": "73", "mmTag": false, - "n25": "18112", - "n50": "20210", - "n75": "22305", + "n25": "17342", + "n50": "20270", + "n75": "23768", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/PacBio_HiFi/m64043_210607_090252.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/PacBio_HiFi/m64076_210520_213355.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "17364", - "quartile50": "19742", - "quartile75": "21779", + "quartile25": "16590", + "quartile50": "19252", + "quartile75": "22571", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03669", + "sampleId": "HG00642", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "22267350582", - "totalGbp": "22.27", - "totalReads": "1127654", + "totalBp": "31582049533", + "totalGbp": "31.58", + "totalReads": "1584710", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237512", + "accession": "SAMN26267378", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237512", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267378", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PK58", - "filename": "m64043_210610_203329.hifi_reads.bam", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "PR04", + "filename": "m64076_210522_082905.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03669_lib1", + "libraryId": "HG00642.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "54502", - "mean": "19359", - "metadataAccession": "SRR18189649", - "min": "205", + "max": "51866", + "mean": "19954", + "metadataAccession": "SRR18158610", + "min": "86", "mmTag": false, - "n25": "17495", - "n50": "19855", - "n75": "21956", + "n25": "17338", + "n50": "20311", + "n75": "23867", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/PacBio_HiFi/m64043_210610_203329.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/PacBio_HiFi/m64076_210522_082905.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "16737", - "quartile50": "19354", - "quartile75": "21419", + "quartile25": "16572", + "quartile50": "19271", + "quartile75": "22642", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03669", + "sampleId": "HG00642", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "24900003751", - "totalGbp": "24.9", - "totalReads": "1286203", + "totalBp": "31397468252", + "totalGbp": "31.4", + "totalReads": "1573487", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237507", + "accession": "SAMN26267382", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237507", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267382", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PK09", - "filename": "m64043_210612_053030.hifi_reads.bam", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "VN080", + "filename": "m64076_210525_000003.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02602_lib1", + "libraryId": "HG02132_f345", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "64694", - "mean": "20556", - "metadataAccession": "SRR18189655", - "min": "242", + "max": "54229", + "mean": "18891", + "metadataAccession": "SRR18158596", + "min": "85", "mmTag": false, - "n25": "18012", - "n50": "19709", - "n75": "23853", + "n25": "16577", + "n50": "19409", + "n75": "21507", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/PacBio_HiFi/m64043_210612_053030.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/PacBio_HiFi/m64076_210525_000003.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "17745", - "quartile50": "19156", - "quartile75": "22281", + "quartile25": "16238", + "quartile50": "18343", + "quartile75": "21069", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02602", + "sampleId": "HG02132", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", + "shearMethod": "Megaruptor 3", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "19825720983", - "totalGbp": "19.83", - "totalReads": "964466", + "totalBp": "18987492433", + "totalGbp": "18.99", + "totalReads": "1005090", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237507", + "accession": "SAMN26267379", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237507", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267379", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PK09", - "filename": "m64043_210613_133026.hifi_reads.bam", + "designDescription": "HiFi sequencing of 19kb fractionated gDNA", + "familyId": "CLM27", + "filename": "m64076_210526_105450.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02602_lib1", + "libraryId": "HG01346_f345", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "56871", - "mean": "20440", - "metadataAccession": "SRR18189655", - "min": "395", + "max": "40848", + "mean": "18242", + "metadataAccession": "SRR18158604", + "min": "85", "mmTag": false, - "n25": "17974", - "n50": "19611", - "n75": "23584", + "n25": "16260", + "n50": "18707", + "n75": "20196", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/PacBio_HiFi/m64043_210613_133026.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/PacBio_HiFi/m64076_210526_105450.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "17719", - "quartile50": "19093", - "quartile75": "22051", + "quartile25": "15827", + "quartile50": "18353", + "quartile75": "19870", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02602", + "sampleId": "HG01346", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", + "shearMethod": "Megaruptor 3", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "25138567629", - "totalGbp": "25.14", - "totalReads": "1229861", + "totalBp": "19327631225", + "totalGbp": "19.33", + "totalReads": "1059488", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237507", + "accession": "SAMN26267383", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237507", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267383", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PK09", - "filename": "m64043_210614_223013.hifi_reads.bam", + "designDescription": "HiFi sequencing of 19kb fractionated gDNA", + "familyId": "GB38", + "filename": "m64076_210527_231639.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02602_lib1", + "libraryId": "HG02647.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "53432", - "mean": "20425", - "metadataAccession": "SRR18189655", - "min": "591", + "max": "49665", + "mean": "16673", + "metadataAccession": "SRR18158597", + "min": "625", "mmTag": false, - "n25": "17971", - "n50": "19605", - "n75": "23555", + "n25": "14482", + "n50": "17259", + "n75": "20560", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/PacBio_HiFi/m64043_210614_223013.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/PacBio_HiFi/m64076_210527_231639.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "17717", - "quartile50": "19089", - "quartile75": "22040", + "quartile25": "13572", + "quartile50": "16159", + "quartile75": "19281", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02602", + "sampleId": "HG02647", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "19749338623", - "totalGbp": "19.75", - "totalReads": "966914", + "totalBp": "25947810331", + "totalGbp": "25.95", + "totalReads": "1556245", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237507", + "accession": "SAMN26267392", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237507", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267392", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PK09", - "filename": "m64043_210618_184604.hifi_reads.bam", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "VN081", + "filename": "m64076_210529_081414.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02602_lib1", + "libraryId": "HG02135.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "63465", - "mean": "20973", - "metadataAccession": "SRR18189655", - "min": "88", + "max": "52020", + "mean": "17020", + "metadataAccession": "SRR18158606", + "min": "488", "mmTag": false, - "n25": "18202", - "n50": "20158", - "n75": "24673", + "n25": "14802", + "n50": "17468", + "n75": "20662", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/PacBio_HiFi/m64043_210618_184604.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m64076_210529_081414.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "17893", - "quartile50": "19453", - "quartile75": "23120", + "quartile25": "14014", + "quartile50": "16473", + "quartile75": "19483", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02602", + "sampleId": "HG02135", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "36169981448", - "totalGbp": "36.17", - "totalReads": "1724579", + "totalBp": "13469495739", + "totalGbp": "13.47", + "totalReads": "791363", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237501", + "accession": "SAMN26267383", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237501", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267383", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL29", - "filename": "m64043_210620_041711.hifi_reads.bam", + "designDescription": "HiFi sequencing of 19kb fractionated gDNA", + "familyId": "GB38", + "filename": "m64076_210530_192034.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01993_lib1", + "libraryId": "HG02647.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "55937", - "mean": "20759", - "metadataAccession": "SRR18189661", - "min": "90", + "max": "51342", + "mean": "16998", + "metadataAccession": "SRR18158597", + "min": "86", "mmTag": false, - "n25": "18948", - "n50": "20695", - "n75": "22942", + "n25": "14805", + "n50": "17612", + "n75": "20903", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/PacBio_HiFi/m64043_210620_041711.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/PacBio_HiFi/m64076_210530_192034.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "18655", - "quartile50": "20295", - "quartile75": "22409", + "quartile25": "13887", + "quartile50": "16523", + "quartile75": "19663", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01993", + "sampleId": "HG02647", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "35989302267", - "totalGbp": "35.99", - "totalReads": "1733650", + "totalBp": "31818795589", + "totalGbp": "31.82", + "totalReads": "1871860", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237501", + "accession": "SAMN26267383", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237501", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267383", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL29", - "filename": "m64043_210622_163331.hifi_reads.bam", + "designDescription": "HiFi sequencing of 19kb fractionated gDNA", + "familyId": "GB38", + "filename": "m64076_210601_061523.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01993_lib1", + "libraryId": "HG02647.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "55085", - "mean": "20587", - "metadataAccession": "SRR18189661", - "min": "177", + "max": "55771", + "mean": "17141", + "metadataAccession": "SRR18158597", + "min": "75", "mmTag": false, - "n25": "18813", - "n50": "20513", - "n75": "22711", + "n25": "14932", + "n50": "17777", + "n75": "21104", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/PacBio_HiFi/m64043_210622_163331.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/PacBio_HiFi/m64076_210601_061523.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "18534", - "quartile50": "20131", - "quartile75": "22196", + "quartile25": "14001", + "quartile50": "16668", + "quartile75": "19853", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01993", + "sampleId": "HG02647", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "39177895246", - "totalGbp": "39.18", - "totalReads": "1903015", + "totalBp": "32563750856", + "totalGbp": "32.56", + "totalReads": "1899728", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237501", + "accession": "SAMN26267392", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237501", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267392", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL29", - "filename": "m64043_210624_032817.hifi_reads.bam", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "VN081", + "filename": "m64076_210602_215048.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01993_lib1", + "libraryId": "HG02135.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57065", - "mean": "20740", - "metadataAccession": "SRR18189661", - "min": "86", + "max": "49107", + "mean": "17440", + "metadataAccession": "SRR18158606", + "min": "90", "mmTag": false, - "n25": "18938", - "n50": "20675", - "n75": "22909", + "n25": "15234", + "n50": "17968", + "n75": "21144", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/PacBio_HiFi/m64043_210624_032817.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m64076_210602_215048.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "18649", - "quartile50": "20282", - "quartile75": "22381", + "quartile25": "14407", + "quartile50": "16959", + "quartile75": "20003", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01993", + "sampleId": "HG02135", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "30485595101", - "totalGbp": "30.49", - "totalReads": "1469845", + "totalBp": "16375648923", + "totalGbp": "16.38", + "totalReads": "938959", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237497", + "accession": "SAMN26267380", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237497", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267380", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM64", - "filename": "m64043_210625_184443.hifi_reads.bam", + "designDescription": "HiFi sequencing of 19kb fractionated gDNA", + "familyId": "VN065", + "filename": "m64076_210604_225751.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01496_lib1", + "libraryId": "HG02071.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "61342", - "mean": "21964", - "metadataAccession": "SRR18189641", - "min": "86", + "max": "54155", + "mean": "18948", + "metadataAccession": "SRR18158592", + "min": "85", "mmTag": false, - "n25": "18529", - "n50": "22182", - "n75": "26634", + "n25": "16603", + "n50": "19088", + "n75": "22195", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/PacBio_HiFi/m64043_210625_184443.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/PacBio_HiFi/m64076_210604_225751.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "17892", - "quartile50": "20566", - "quartile75": "24954", + "quartile25": "16068", + "quartile50": "18290", + "quartile75": "21215", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01496", + "sampleId": "HG02071", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "37026751079", - "totalGbp": "37.03", - "totalReads": "1685752", + "totalBp": "33629205391", + "totalGbp": "33.63", + "totalReads": "1774809", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237497", + "accession": "SAMN26267387", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237497", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267387", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM64", - "filename": "m64043_210627_054642.hifi_reads.bam", + "designDescription": "HiFi sequencing of 18kb fractionated gDNA", + "familyId": "BD42", + "filename": "m64076_210606_095247.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01496_lib1", + "libraryId": "HG03942.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "62635", - "mean": "22304", - "metadataAccession": "SRR18189641", - "min": "90", + "max": "53969", + "mean": "18726", + "metadataAccession": "SRR18158601", + "min": "85", "mmTag": false, - "n25": "18805", - "n50": "22663", - "n75": "27075", + "n25": "16508", + "n50": "18868", + "n75": "21799", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/PacBio_HiFi/m64043_210627_054642.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/PacBio_HiFi/m64076_210606_095247.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "18096", - "quartile50": "21059", - "quartile75": "25411", + "quartile25": "16013", + "quartile50": "18138", + "quartile75": "20920", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01496", + "sampleId": "HG03942", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31563425462", - "totalGbp": "31.56", - "totalReads": "1415116", + "totalBp": "30909041518", + "totalGbp": "30.91", + "totalReads": "1650567", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237497", + "accession": "SAMN26267380", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237497", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267380", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM64", - "filename": "m64043_210628_151651.hifi_reads.bam", + "designDescription": "HiFi sequencing of 19kb fractionated gDNA", + "familyId": "VN065", + "filename": "m64076_210607_215041.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01496_lib1", + "libraryId": "HG02071.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "64392", - "mean": "22230", - "metadataAccession": "SRR18189641", - "min": "86", + "max": "52883", + "mean": "18716", + "metadataAccession": "SRR18158592", + "min": "85", "mmTag": false, - "n25": "18754", - "n50": "22563", - "n75": "26973", + "n25": "16403", + "n50": "18798", + "n75": "21865", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/PacBio_HiFi/m64043_210628_151651.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/PacBio_HiFi/m64076_210607_215041.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "18058", - "quartile50": "20958", - "quartile75": "25307", + "quartile25": "15902", + "quartile50": "18032", + "quartile75": "20896", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01496", + "sampleId": "HG02071", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34860559463", - "totalGbp": "34.86", - "totalReads": "1568136", + "totalBp": "33308306970", + "totalGbp": "33.31", + "totalReads": "1779605", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237491", + "accession": "SAMN26267380", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237491", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267380", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH042", - "filename": "m64043_210702_183246.hifi_reads.bam", + "designDescription": "HiFi sequencing of 19kb fractionated gDNA", + "familyId": "VN065", + "filename": "m64076_210609_084637.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00544_lib2", + "libraryId": "HG02071.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "44297", - "mean": "18853", - "metadataAccession": "SRR18189664", - "min": "89", + "max": "57671", + "mean": "19220", + "metadataAccession": "SRR18158592", + "min": "86", "mmTag": false, - "n25": "17486", - "n50": "18717", - "n75": "20276", + "n25": "16831", + "n50": "19429", + "n75": "22604", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m64043_210702_183246.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/PacBio_HiFi/m64076_210609_084637.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "17346", - "quartile50": "18502", - "quartile75": "19998", + "quartile25": "16248", + "quartile50": "18590", + "quartile75": "21605", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00544", + "sampleId": "HG02071", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "CHS", + "subpopulation": "KHV", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "37881441933", - "totalGbp": "37.88", - "totalReads": "2009252", + "totalBp": "30150326606", + "totalGbp": "30.15", + "totalReads": "1568624", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237494", + "accession": "SAMN26267385", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237494", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267385", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR31", - "filename": "m64043_210704_052805.hifi_reads.bam", + "designDescription": "HiFi sequencing of 18kb fractionated gDNA", + "familyId": "ST016", + "filename": "m64076_210610_224207.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01099_lib1", + "libraryId": "HG03688.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "56485", - "mean": "19094", - "metadataAccession": "SRR18189644", - "min": "834", + "max": "49522", + "mean": "17945", + "metadataAccession": "SRR18158607", + "min": "85", "mmTag": false, - "n25": "16716", - "n50": "19458", - "n75": "21867", + "n25": "15910", + "n50": "18004", + "n75": "20653", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/PacBio_HiFi/m64043_210704_052805.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03688/raw_data/PacBio_HiFi/m64076_210610_224207.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "16230", - "quartile50": "18796", - "quartile75": "21186", + "quartile25": "15513", + "quartile50": "17393", + "quartile75": "19908", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01099", + "sampleId": "HG03688", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": "STU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "37446420746", - "totalGbp": "37.45", - "totalReads": "1961160", + "totalBp": "34597694779", + "totalGbp": "34.6", + "totalReads": "1927878", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237494", + "accession": "SAMN26267387", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237494", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267387", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR31", - "filename": "m64043_210705_162656.hifi_reads.bam", + "designDescription": "HiFi sequencing of 18kb fractionated gDNA", + "familyId": "BD42", + "filename": "m64076_210612_093800.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01099_lib1", + "libraryId": "HG03942.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "55386", - "mean": "19081", - "metadataAccession": "SRR18189644", - "min": "347", + "max": "57492", + "mean": "19228", + "metadataAccession": "SRR18158601", + "min": "85", "mmTag": false, - "n25": "16706", - "n50": "19451", - "n75": "21851", + "n25": "16954", + "n50": "19497", + "n75": "22506", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/PacBio_HiFi/m64043_210705_162656.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/PacBio_HiFi/m64076_210612_093800.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "16223", - "quartile50": "18786", - "quartile75": "21170", + "quartile25": "16382", + "quartile50": "18701", + "quartile75": "21606", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01099", + "sampleId": "HG03942", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "38087524710", - "totalGbp": "38.09", - "totalReads": "1996032", + "totalBp": "26760152025", + "totalGbp": "26.76", + "totalReads": "1391705", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237494", + "accession": "SAMN26267389", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237494", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267389", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR31", - "filename": "m64043_210707_032602.hifi_reads.bam", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": "ST203", + "filename": "m64076_210613_183806.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01099_lib1", + "libraryId": "HG04199.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49845", - "mean": "18787", - "metadataAccession": "SRR18189644", - "min": "718", + "max": "60720", + "mean": "20095", + "metadataAccession": "SRR18158602", + "min": "86", "mmTag": false, - "n25": "16456", - "n50": "19125", - "n75": "21503", + "n25": "17491", + "n50": "20902", + "n75": "24822", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/PacBio_HiFi/m64043_210707_032602.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/PacBio_HiFi/m64076_210613_183806.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "16037", - "quartile50": "18407", - "quartile75": "20851", + "quartile25": "16326", + "quartile50": "19542", + "quartile75": "23310", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01099", + "sampleId": "HG04199", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": "STU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "25855870472", - "totalGbp": "25.86", - "totalReads": "1376237", + "totalBp": "31564451397", + "totalGbp": "31.56", + "totalReads": "1570687", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237502", + "accession": "SAMN26267387", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237502", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267387", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL33", - "filename": "m64043_210709_205614.hifi_reads.bam", + "designDescription": "HiFi sequencing of 18kb fractionated gDNA", + "familyId": "BD42", + "filename": "m64076_210615_181342.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02004_lib1", + "libraryId": "HG03942.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57164", - "mean": "19427", - "metadataAccession": "SRR18189660", - "min": "86", + "max": "52388", + "mean": "18795", + "metadataAccession": "SRR18158601", + "min": "85", "mmTag": false, - "n25": "16903", - "n50": "19508", - "n75": "22598", + "n25": "16589", + "n50": "18952", + "n75": "21872", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/PacBio_HiFi/m64043_210709_205614.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/PacBio_HiFi/m64076_210615_181342.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "16509", - "quartile50": "18542", - "quartile75": "21688", + "quartile25": "16086", + "quartile50": "18223", + "quartile75": "21004", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02004", + "sampleId": "HG03942", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31359670199", - "totalGbp": "31.36", - "totalReads": "1614164", + "totalBp": "26769890045", + "totalGbp": "26.77", + "totalReads": "1424240", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237499", + "accession": "SAMN26267391", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237499", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267391", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL016", - "filename": "m64043_210716_230222.hifi_reads.bam", + "designDescription": "HiFi sequencing of 19kb fractionated gDNA", + "familyId": "ST232", + "filename": "m64076_210617_050849.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01943_lib1", + "libraryId": "HG04228.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "55403", - "mean": "18817", - "metadataAccession": "SRR18189663", - "min": "86", + "max": "55387", + "mean": "19223", + "metadataAccession": "SRR18158590", + "min": "85", "mmTag": false, - "n25": "17495", - "n50": "18754", - "n75": "20298", + "n25": "16794", + "n50": "19404", + "n75": "22637", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/PacBio_HiFi/m64043_210716_230222.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/PacBio_HiFi/m64076_210617_050849.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "17322", - "quartile50": "18526", - "quartile75": "20011", + "quartile25": "16203", + "quartile50": "18541", + "quartile75": "21582", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01943", + "sampleId": "HG04228", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": "STU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34264397581", - "totalGbp": "34.26", - "totalReads": "1820921", + "totalBp": "32095148856", + "totalGbp": "32.1", + "totalReads": "1669607", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237499", + "accession": "SAMN26267391", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237499", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267391", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL016", - "filename": "m64043_210718_100009.hifi_reads.bam", + "designDescription": "HiFi sequencing of 19kb fractionated gDNA", + "familyId": "ST232", + "filename": "m64076_210618_160639.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01943_lib1", + "libraryId": "HG04228.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "58783", - "mean": "18855", - "metadataAccession": "SRR18189663", - "min": "88", + "max": "54593", + "mean": "19192", + "metadataAccession": "SRR18158590", + "min": "86", "mmTag": false, - "n25": "17516", - "n50": "18789", - "n75": "20344", + "n25": "16786", + "n50": "19365", + "n75": "22577", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/PacBio_HiFi/m64043_210718_100009.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/PacBio_HiFi/m64076_210618_160639.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "17340", - "quartile50": "18558", - "quartile75": "20050", + "quartile25": "16208", + "quartile50": "18517", + "quartile75": "21532", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01943", + "sampleId": "HG04228", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": "STU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "30875828356", - "totalGbp": "30.88", - "totalReads": "1637478", + "totalBp": "26359885180", + "totalGbp": "26.36", + "totalReads": "1373442", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237499", + "accession": "SAMN26267391", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237499", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267391", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL016", - "filename": "m64043_210719_210019.hifi_reads.bam", + "designDescription": "HiFi sequencing of 19kb fractionated gDNA", + "familyId": "ST232", + "filename": "m64076_210620_030428.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01943_lib1", + "libraryId": "HG04228.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "47136", - "mean": "18860", - "metadataAccession": "SRR18189663", - "min": "68", + "max": "57038", + "mean": "19812", + "metadataAccession": "SRR18158590", + "min": "86", "mmTag": false, - "n25": "17522", - "n50": "18792", - "n75": "20349", + "n25": "17339", + "n50": "20120", + "n75": "23410", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/PacBio_HiFi/m64043_210719_210019.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/PacBio_HiFi/m64076_210620_030428.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "17347", - "quartile50": "18560", - "quartile75": "20056", + "quartile25": "16665", + "quartile50": "19203", + "quartile75": "22353", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01943", + "sampleId": "HG04228", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": "STU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "33311278939", - "totalGbp": "33.31", - "totalReads": "1766146", + "totalBp": "30579890559", + "totalGbp": "30.58", + "totalReads": "1543446", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237510", + "accession": "SAMN26267379", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237510", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267379", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB63", - "filename": "m64043_210723_184340.hifi_reads.bam", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "CLM27", + "filename": "m64076_210621_234241.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02809_lib1", + "libraryId": "HG01346.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "63434", - "mean": "20456", - "metadataAccession": "SRR18189651", - "min": "111", + "max": "54400", + "mean": "19491", + "metadataAccession": "SRR18158609", + "min": "85", "mmTag": false, - "n25": "17476", - "n50": "20753", - "n75": "24073", - "notes": "bc1019 barcoded adapter", + "n25": "17106", + "n50": "19771", + "n75": "22965", + "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/PacBio_HiFi/m64043_210723_184340.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/PacBio_HiFi/m64076_210621_234241.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "17008", - "quartile50": "19683", - "quartile75": "22941", + "quartile25": "16500", + "quartile50": "18914", + "quartile75": "21989", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02809", + "sampleId": "HG01346", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "29214139102", - "totalGbp": "29.21", - "totalReads": "1428112", + "totalBp": "35233616251", + "totalGbp": "35.23", + "totalReads": "1807614", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237510", + "accession": "SAMN26267388", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237510", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267388", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB63", - "filename": "m64043_210725_053930.hifi_reads.bam", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "ST111", + "filename": "m64076_210623_104349.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02809_lib1", + "libraryId": "HG04115.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "64323", - "mean": "21494", - "metadataAccession": "SRR18189651", - "min": "187", + "max": "56102", + "mean": "20047", + "metadataAccession": "SRR18158600", + "min": "739", "mmTag": false, - "n25": "18342", - "n50": "21941", - "n75": "25421", - "notes": "bc1019 barcoded adapter", + "n25": "17337", + "n50": "20717", + "n75": "24742", + "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/PacBio_HiFi/m64043_210725_053930.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/PacBio_HiFi/m64076_210623_104349.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "17612", - "quartile50": "20949", - "quartile75": "24207", + "quartile25": "16228", + "quartile50": "19366", + "quartile75": "23149", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02809", + "sampleId": "HG04115", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "STU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "28581238388", - "totalGbp": "28.58", - "totalReads": "1329702", + "totalBp": "32878572833", + "totalGbp": "32.88", + "totalReads": "1640056", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237510", + "accession": "SAMN26267388", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237510", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267388", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB63", - "filename": "m64043_210726_163819.hifi_reads.bam", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "ST111", + "filename": "m64076_210625_220013.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02809_lib1", + "libraryId": "HG04115.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "63495", - "mean": "21488", - "metadataAccession": "SRR18189651", - "min": "111", + "max": "58397", + "mean": "21493", + "metadataAccession": "SRR18158600", + "min": "86", "mmTag": false, - "n25": "18360", - "n50": "21931", - "n75": "25380", - "notes": "bc1019 barcoded adapter", + "n25": "18743", + "n50": "22340", + "n75": "26476", + "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/PacBio_HiFi/m64043_210726_163819.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/PacBio_HiFi/m64076_210625_220013.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "17624", - "quartile50": "20956", - "quartile75": "24189", + "quartile25": "17533", + "quartile50": "20925", + "quartile75": "24919", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02809", + "sampleId": "HG04115", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "STU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "24556655893", - "totalGbp": "24.56", - "totalReads": "1142800", + "totalBp": "30350204611", + "totalGbp": "30.35", + "totalReads": "1412094", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237510", + "accession": "SAMN26267388", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237510", - "ccsAlgorithm": "10.1.0.115913", + "biosampleAccession": "SAMN26267388", + "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB63", - "filename": "m64043_210728_163353.hifi_reads.bam", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "ST111", + "filename": "m64076_210627_085544.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02809_lib1", + "libraryId": "HG04115.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "60391", - "mean": "21178", - "metadataAccession": "SRR18189651", - "min": "111", + "max": "61232", + "mean": "21316", + "metadataAccession": "SRR18158600", + "min": "108", "mmTag": false, - "n25": "18029", - "n50": "21588", - "n75": "25022", - "notes": "bc1019 barcoded adapter", + "n25": "18543", + "n50": "22203", + "n75": "26421", + "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/PacBio_HiFi/m64043_210728_163353.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/PacBio_HiFi/m64076_210627_085544.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "P2.2", "productionYear": "YR2", - "quartile25": "17406", - "quartile50": "20602", - "quartile75": "23832", + "quartile25": "17276", + "quartile50": "20735", + "quartile75": "24789", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02809", + "sampleId": "HG04115", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "STU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31703994871", - "totalGbp": "31.7", - "totalReads": "1496989", + "totalBp": "31539555547", + "totalGbp": "31.54", + "totalReads": "1479605", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621948", + "accession": "SAMN26267381", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621948", + "biosampleAccession": "SAMN26267381", "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN046", - "filename": "m64043_210901_164337-bc1022.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "VN066", + "filename": "m64076_210630_101034.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02015_lib1", + "libraryId": "HG02074.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "373990", - "mean": "18903", - "metadataAccession": "SRR23732276", - "min": "51", + "max": "48587", + "mean": "19886", + "metadataAccession": "SRR18158594", + "min": "84", "mmTag": false, - "n25": "16510", - "n50": "18970", - "n75": "22812", + "n25": "17601", + "n50": "19883", + "n75": "22893", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02015/raw_data/PacBio_HiFi/m64043_210901_164337-bc1022.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/PacBio_HiFi/m64076_210630_101034.hifi_reads.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "15928", - "quartile50": "17686", - "quartile75": "21174", + "productionYear": "YR2", + "quartile25": "17187", + "quartile50": "19213", + "quartile75": "22032", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02015", + "sampleId": "HG02074", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", "subpopulation": "KHV", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "58139125879", - "totalGbp": "58.14", - "totalReads": "3075646", + "totalBp": "30996747067", + "totalGbp": "31", + "totalReads": "1558716", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621948", + "accession": "SAMN26267397", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621948", + "biosampleAccession": "SAMN26267397", "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN046", - "filename": "m64043_210903_163032-bc1022.5mc.hifi_reads.bam", + "familyId": "BD61", + "filename": "m64076_210701_234028.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02015_lib1", + "libraryId": "HG04184.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "388970", - "mean": "19410", - "metadataAccession": "SRR23732276", - "min": "51", + "max": "53036", + "mean": "19821", + "metadataAccession": "SRR18158589", + "min": "87", "mmTag": false, - "n25": "16688", - "n50": "19402", - "n75": "23437", + "n25": "17407", + "n50": "20137", + "n75": "23399", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02015/raw_data/PacBio_HiFi/m64043_210903_163032-bc1022.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m64076_210701_234028.hifi_reads.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16061", - "quartile50": "17931", - "quartile75": "21538", + "productionYear": "YR2", + "quartile25": "16754", + "quartile50": "19248", + "quartile75": "22379", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02015", + "sampleId": "HG04184", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "75027463744", - "totalGbp": "75.03", - "totalReads": "3865204", + "totalBp": "23721206724", + "totalGbp": "23.72", + "totalReads": "1196723", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621948", + "accession": "SAMN26267384", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621948", + "biosampleAccession": "SAMN26267384", "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN046", - "filename": "m64043_210905_032603-bc1022.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "PK16", + "filename": "m64076_210703_103644.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02015_lib1", + "libraryId": "HG02683.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "48424", - "mean": "18655", - "metadataAccession": "SRR23732276", - "min": "76", + "max": "56433", + "mean": "18648", + "metadataAccession": "SRR18158608", + "min": "85", "mmTag": false, - "n25": "16432", - "n50": "18225", - "n75": "21552", + "n25": "16285", + "n50": "18752", + "n75": "22039", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02015/raw_data/PacBio_HiFi/m64043_210905_032603-bc1022.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/PacBio_HiFi/m64076_210703_103644.hifi_reads.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16173", - "quartile50": "17620", - "quartile75": "20670", + "productionYear": "YR2", + "quartile25": "15744", + "quartile50": "17909", + "quartile75": "20918", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02015", + "sampleId": "HG02683", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "37828131839", - "totalGbp": "37.83", - "totalReads": "2027744", + "totalBp": "34531266097", + "totalGbp": "34.53", + "totalReads": "1851700", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621947", + "accession": "SAMN26267396", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621947", + "biosampleAccession": "SAMN26267396", "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL25", - "filename": "m64043_211113_003158-bc1003.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": "PK27", + "filename": "m64076_210706_214544.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01975_lib1", + "libraryId": "HG02738.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "58778", - "mean": "19715", - "metadataAccession": "SRR23732277", - "min": "230", + "max": "56090", + "mean": "18869", + "metadataAccession": "SRR18158588", + "min": "159", "mmTag": false, - "n25": "17823", - "n50": "19259", - "n75": "21526", + "n25": "16413", + "n50": "18995", + "n75": "22389", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/m64043_211113_003158-bc1003.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m64076_210706_214544.hifi_reads.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17636", - "quartile50": "18916", - "quartile75": "20851", + "productionYear": "YR2", + "quartile25": "15831", + "quartile50": "18094", + "quartile75": "21198", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01975", + "sampleId": "HG02738", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "37414972875", - "totalGbp": "37.41", - "totalReads": "1897742", + "totalBp": "22457209908", + "totalGbp": "22.46", + "totalReads": "1190157", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621947", + "accession": "SAMN26267397", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621947", + "biosampleAccession": "SAMN26267397", "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL25", - "filename": "m64043_211114_112934-bc1003.5mc.hifi_reads.bam", + "familyId": "BD61", + "filename": "m64076_210708_084125.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01975_lib1", + "libraryId": "HG04184.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "61049", - "mean": "19701", - "metadataAccession": "SRR23732277", - "min": "142", + "max": "49905", + "mean": "18509", + "metadataAccession": "SRR18158589", + "min": "486", "mmTag": false, - "n25": "17814", - "n50": "19250", - "n75": "21498", + "n25": "16173", + "n50": "18541", + "n75": "21710", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/m64043_211114_112934-bc1003.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m64076_210708_084125.hifi_reads.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17627", - "quartile50": "18908", - "quartile75": "20835", + "productionYear": "YR2", + "quartile25": "15682", + "quartile50": "17759", + "quartile75": "20652", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01975", + "sampleId": "HG04184", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "36273475358", - "totalGbp": "36.27", - "totalReads": "1841180", + "totalBp": "27875629860", + "totalGbp": "27.88", + "totalReads": "1505987", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621947", + "accession": "SAMN26267397", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621947", + "biosampleAccession": "SAMN26267397", "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL25", - "filename": "m64043_211115_222749-bc1003.5mc.hifi_reads.bam", + "familyId": "BD61", + "filename": "m64076_210709_232529.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01975_lib1", + "libraryId": "HG04184.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "60746", - "mean": "19733", - "metadataAccession": "SRR23732277", - "min": "818", + "max": "51996", + "mean": "18490", + "metadataAccession": "SRR18158589", + "min": "202", "mmTag": false, - "n25": "17828", - "n50": "19276", - "n75": "21558", + "n25": "16162", + "n50": "18521", + "n75": "21691", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/m64043_211115_222749-bc1003.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m64076_210709_232529.hifi_reads.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17640", - "quartile50": "18930", - "quartile75": "20876", + "productionYear": "YR2", + "quartile25": "15669", + "quartile50": "17739", + "quartile75": "20632", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01975", + "sampleId": "HG04184", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "29243979674", - "totalGbp": "29.24", - "totalReads": "1481915", + "totalBp": "26834639179", + "totalGbp": "26.83", + "totalReads": "1451248", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": null, + "accession": "SAMN26267396", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621959", + "biosampleAccession": "SAMN26267396", "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m64043_211118_185250-bc1008.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": "PK27", + "filename": "m64076_210711_102225.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "MGISTL_PAN027_HG06807_lib1", + "libraryId": "HG02738.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "54058", - "mean": "19464", - "metadataAccession": "SRR23732285", - "min": "53", + "max": "52901", + "mean": "18849", + "metadataAccession": "SRR18158588", + "min": "135", "mmTag": false, - "n25": "17558", - "n50": "19607", - "n75": "22015", + "n25": "16403", + "n50": "18981", + "n75": "22357", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC_PLUS/HG06807/raw_data/PacBio_HiFi/m64043_211118_185250-bc1008.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m64076_210711_102225.hifi_reads.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "P2.2", - "productionYear": null, - "quartile25": "17014", - "quartile50": "19094", - "quartile75": "21311", + "productionYear": "YR2", + "quartile25": "15824", + "quartile50": "18082", + "quartile75": "21176", "readN50": "N/A", "result": "N/A", - "sampleId": "MGISTL_PAN027_HG06807", + "sampleId": "HG02738", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": null, - "superpopulation": null, + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "35381492742", - "totalGbp": "35.38", - "totalReads": "1817775", + "totalBp": "24958517767", + "totalGbp": "24.96", + "totalReads": "1324061", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": null, + "accession": "SAMN26267397", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621959", + "biosampleAccession": "SAMN26267397", "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m64043_211120_054831-bc1008.5mc.hifi_reads.bam", + "familyId": "BD61", + "filename": "m64076_210712_194121.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "MGISTL_PAN027_HG06807_lib1", + "libraryId": "HG04184.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "61992", - "mean": "19472", - "metadataAccession": "SRR23732285", - "min": "777", + "max": "55878", + "mean": "18636", + "metadataAccession": "SRR18158589", + "min": "224", "mmTag": false, - "n25": "17552", - "n50": "19611", - "n75": "22035", + "n25": "16270", + "n50": "18693", + "n75": "21906", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC_PLUS/HG06807/raw_data/PacBio_HiFi/m64043_211120_054831-bc1008.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m64076_210712_194121.hifi_reads.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "P2.2", - "productionYear": null, - "quartile25": "17006", - "quartile50": "19086", - "quartile75": "21325", + "productionYear": "YR2", + "quartile25": "15762", + "quartile50": "17888", + "quartile75": "20832", "readN50": "N/A", "result": "N/A", - "sampleId": "MGISTL_PAN027_HG06807", + "sampleId": "HG04184", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": null, - "superpopulation": null, + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "35737691389", - "totalGbp": "35.74", - "totalReads": "1835294", + "totalBp": "29878843321", + "totalGbp": "29.88", + "totalReads": "1603266", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": null, + "accession": "SAMN26267396", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621959", + "biosampleAccession": "SAMN26267396", "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m64043_211121_164646-bc1008.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": "PK27", + "filename": "m64076_210714_200553.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "MGISTL_PAN027_HG06807_lib1", + "libraryId": "HG02738.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "54067", - "mean": "19403", - "metadataAccession": "SRR23732285", - "min": "611", + "max": "62028", + "mean": "18960", + "metadataAccession": "SRR18158588", + "min": "256", "mmTag": false, - "n25": "17498", - "n50": "19545", - "n75": "21937", + "n25": "16478", + "n50": "19100", + "n75": "22533", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC_PLUS/HG06807/raw_data/PacBio_HiFi/m64043_211121_164646-bc1008.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m64076_210714_200553.hifi_reads.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "P2.2", - "productionYear": null, - "quartile25": "16950", - "quartile50": "19031", - "quartile75": "21242", + "productionYear": "YR2", + "quartile25": "15879", + "quartile50": "18180", + "quartile75": "21325", "readN50": "N/A", "result": "N/A", - "sampleId": "MGISTL_PAN027_HG06807", + "sampleId": "HG02738", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": null, - "superpopulation": null, + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34242835423", - "totalGbp": "34.24", - "totalReads": "1764732", + "totalBp": "24174029510", + "totalGbp": "24.17", + "totalReads": "1274956", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621945", + "accession": "SAMN26267394", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621945", + "biosampleAccession": "SAMN26267394", "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR40", - "filename": "m64043_211124_192057.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "PEL51", + "filename": "m64076_210716_220011.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01192_lib1", + "libraryId": "HG02293.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "52946", - "mean": "20562", - "metadataAccession": "SRR23732279", - "min": "203", + "max": "59628", + "mean": "19168", + "metadataAccession": "SRR18158587", + "min": "88", "mmTag": false, - "n25": "18441", - "n50": "20419", - "n75": "23268", + "n25": "16720", + "n50": "19171", + "n75": "22463", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01192/raw_data/PacBio_HiFi/m64043_211124_192057.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/PacBio_HiFi/m64076_210716_220011.hifi_reads.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18064", - "quartile50": "19864", - "quartile75": "22408", + "productionYear": "YR2", + "quartile25": "16225", + "quartile50": "18357", + "quartile75": "21365", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01192", + "sampleId": "HG02293", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PUR", + "subpopulation": "PEL", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "36240709779", - "totalGbp": "36.24", - "totalReads": "1762460", + "totalBp": "32725980265", + "totalGbp": "32.73", + "totalReads": "1707292", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621945", + "accession": "SAMN26267396", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621945", + "biosampleAccession": "SAMN26267396", "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR40", - "filename": "m64043_211126_061537.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": "PK27", + "filename": "m64076_210718_085619.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01192_lib1", + "libraryId": "HG02738.HFSS", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "53478", - "mean": "20583", - "metadataAccession": "SRR23732279", - "min": "153", + "max": "51144", + "mean": "18666", + "metadataAccession": "SRR18158588", + "min": "696", "mmTag": false, - "n25": "18452", - "n50": "20438", - "n75": "23304", + "n25": "16283", + "n50": "18766", + "n75": "22057", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01192/raw_data/PacBio_HiFi/m64043_211126_061537.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m64076_210718_085619.hifi_reads.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18074", - "quartile50": "19879", - "quartile75": "22435", + "productionYear": "YR2", + "quartile25": "15727", + "quartile50": "17909", + "quartile75": "20907", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01192", + "sampleId": "HG02738", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "37677927562", - "totalGbp": "37.68", - "totalReads": "1830528", + "totalBp": "23081037343", + "totalGbp": "23.08", + "totalReads": "1236481", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621945", + "accession": "SAMN26267392", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621945", + "biosampleAccession": "SAMN26267392", "ccsAlgorithm": "6.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR40", - "filename": "m64043_211127_171224.5mc.hifi_reads.bam", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "VN081", + "filename": "m64076_210719_222908.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01192_lib1", + "libraryId": "HG02135.HFSS3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "52726", - "mean": "20560", - "metadataAccession": "SRR23732279", - "min": "82", + "max": "53626", + "mean": "17878", + "metadataAccession": "SRR18158585", + "min": "86", "mmTag": false, - "n25": "18438", - "n50": "20412", - "n75": "23274", + "n25": "15708", + "n50": "17809", + "n75": "20702", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01192/raw_data/PacBio_HiFi/m64043_211127_171224.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m64076_210719_222908.hifi_reads.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18058", - "quartile50": "19858", - "quartile75": "22404", + "productionYear": "YR2", + "quartile25": "15316", + "quartile50": "17143", + "quartile75": "19779", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01192", + "sampleId": "HG02135", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "35850177288", - "totalGbp": "35.85", - "totalReads": "1743655", + "totalBp": "26147000508", + "totalGbp": "26.15", + "totalReads": "1462475", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621944", + "accession": "SAMN17861662", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621944", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861662", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH058", - "filename": "m64043_211210_180342-bc1021.5mc.hifi_reads.bam", + "familyId": "PEL26", + "filename": "m64136_200530_164818.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00597_lib1", + "libraryId": "HG01978_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "56238", - "mean": "21055", - "metadataAccession": "SRR23732280", - "min": "406", + "max": "50175", + "mean": "25990", + "metadataAccession": "SRR13684372", + "min": "45", "mmTag": false, - "n25": "19270", - "n50": "20815", - "n75": "22972", + "n25": "23294", + "n50": "26026", + "n75": "29681", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/m64043_211210_180342-bc1021.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01978/raw_data/PacBio_HiFi/m64136_200530_164818.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "19061", - "quartile50": "20477", - "quartile75": "22470", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "22726", + "quartile50": "25247", + "quartile75": "28603", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00597", + "sampleId": "HG01978", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34138087985", - "totalGbp": "34.14", - "totalReads": "1621355", + "totalBp": "27708518732", + "totalGbp": "27.71", + "totalReads": "1066105", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621944", + "accession": "SAMN17861662", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621944", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861662", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH058", - "filename": "m64043_211212_045901-bc1021.5mc.hifi_reads.bam", + "familyId": "PEL26", + "filename": "m64136_200602_153012.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00597_lib1", + "libraryId": "HG01978_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "54098", - "mean": "21027", - "metadataAccession": "SRR23732280", - "min": "62", + "max": "50181", + "mean": "26299", + "metadataAccession": "SRR13684372", + "min": "46", "mmTag": false, - "n25": "19260", - "n50": "20789", - "n75": "22926", + "n25": "23557", + "n50": "26366", + "n75": "30083", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/m64043_211212_045901-bc1021.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01978/raw_data/PacBio_HiFi/m64136_200602_153012.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "19052", - "quartile50": "20458", - "quartile75": "22436", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "22977", + "quartile50": "25560", + "quartile75": "29003", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00597", + "sampleId": "HG01978", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "33361982455", - "totalGbp": "33.36", - "totalReads": "1586624", + "totalBp": "28572278581", + "totalGbp": "28.57", + "totalReads": "1086428", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621944", + "accession": "SAMN17861662", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621944", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861662", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH058", - "filename": "m64043_211213_155654-bc1021.5mc.hifi_reads.bam", + "familyId": "PEL26", + "filename": "m64136_200603_214308.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00597_lib1", + "libraryId": "HG01978_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "54955", - "mean": "21006", - "metadataAccession": "SRR23732280", - "min": "61", + "max": "50353", + "mean": "26165", + "metadataAccession": "SRR13684372", + "min": "46", "mmTag": false, - "n25": "19247", - "n50": "20774", - "n75": "22899", + "n25": "23425", + "n50": "26214", + "n75": "29904", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/m64043_211213_155654-bc1021.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01978/raw_data/PacBio_HiFi/m64136_200603_214308.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "19041", - "quartile50": "20445", - "quartile75": "22411", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "22850", + "quartile50": "25418", + "quartile75": "28828", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00597", + "sampleId": "HG01978", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "32720246548", - "totalGbp": "32.72", - "totalReads": "1557646", + "totalBp": "31151393453", + "totalGbp": "31.15", + "totalReads": "1190563", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621952", + "accession": "SAMN17861662", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621952", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861662", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BB22", - "filename": "m64043_211217_180919-bc1011.5mc.hifi_reads.bam", + "familyId": "PEL26", + "filename": "m64136_200605_040848.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02258_lib1", + "libraryId": "HG01978_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "53399", - "mean": "20643", - "metadataAccession": "SRR23732292", - "min": "61", + "max": "50262", + "mean": "26159", + "metadataAccession": "SRR13684372", + "min": "45", "mmTag": false, - "n25": "18946", - "n50": "20502", - "n75": "22571", + "n25": "23423", + "n50": "26200", + "n75": "29895", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/m64043_211217_180919-bc1011.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01978/raw_data/PacBio_HiFi/m64136_200605_040848.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18701", - "quartile50": "20169", - "quartile75": "22088", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "22851", + "quartile50": "25408", + "quartile75": "28812", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02258", + "sampleId": "HG01978", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "30383642106", - "totalGbp": "30.38", - "totalReads": "1471798", + "totalBp": "30137326069", + "totalGbp": "30.14", + "totalReads": "1152070", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621952", + "accession": "SAMN17861661", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621952", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861661", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BB22", - "filename": "m64043_211219_050421-bc1011.5mc.hifi_reads.bam", + "familyId": "PEL019", + "filename": "m64136_200612_201033.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02258_lib1", + "libraryId": "HG01952_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "53658", - "mean": "20619", - "metadataAccession": "SRR23732292", - "min": "203", + "max": "49213", + "mean": "21335", + "metadataAccession": "SRR13684375", + "min": "46", "mmTag": false, - "n25": "18916", - "n50": "20475", - "n75": "22548", + "n25": "18884", + "n50": "21101", + "n75": "24511", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/m64043_211219_050421-bc1011.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01952/raw_data/PacBio_HiFi/m64136_200612_201033.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18671", - "quartile50": "20138", - "quartile75": "22062", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "18527", + "quartile50": "20423", + "quartile75": "23484", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02258", + "sampleId": "HG01952", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "36007958539", - "totalGbp": "36.01", - "totalReads": "1746272", + "totalBp": "31770292477", + "totalGbp": "31.77", + "totalReads": "1489115", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621952", + "accession": "SAMN17861661", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621952", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861661", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BB22", - "filename": "m64043_211220_160211-bc1011.5mc.hifi_reads.bam", + "familyId": "PEL019", + "filename": "m64136_200614_192134.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02258_lib1", + "libraryId": "HG01952_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50640", - "mean": "20578", - "metadataAccession": "SRR23732292", - "min": "100", + "max": "50198", + "mean": "21306", + "metadataAccession": "SRR13684375", + "min": "46", "mmTag": false, - "n25": "18894", - "n50": "20440", - "n75": "22488", + "n25": "18871", + "n50": "21071", + "n75": "24461", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/m64043_211220_160211-bc1011.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01952/raw_data/PacBio_HiFi/m64136_200614_192134.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18651", - "quartile50": "20107", - "quartile75": "22012", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "18517", + "quartile50": "20403", + "quartile75": "23450", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02258", + "sampleId": "HG01952", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "40089424862", - "totalGbp": "40.09", - "totalReads": "1948134", + "totalBp": "32648526346", + "totalGbp": "32.65", + "totalReads": "1532352", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621946", + "accession": "SAMN17861661", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621946", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861661", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM17", - "filename": "m64043_211222_184851-bc1001.5mc.hifi_reads.bam", + "familyId": "PEL019", + "filename": "m64136_200616_013426.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01261_lib1", + "libraryId": "HG01952_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "67189", - "mean": "20999", - "metadataAccession": "SRR23732278", - "min": "718", + "max": "50070", + "mean": "21342", + "metadataAccession": "SRR13684375", + "min": "46", "mmTag": false, - "n25": "18369", - "n50": "20229", - "n75": "24356", + "n25": "18887", + "n50": "21106", + "n75": "24549", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/m64043_211222_184851-bc1001.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01952/raw_data/PacBio_HiFi/m64136_200616_013426.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18072", - "quartile50": "19630", - "quartile75": "22593", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "18527", + "quartile50": "20425", + "quartile75": "23508", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01261", + "sampleId": "HG01952", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CLM", + "subpopulation": "PEL", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "13944839852", - "totalGbp": "13.94", - "totalReads": "664050", + "totalBp": "32546332886", + "totalGbp": "32.55", + "totalReads": "1524936", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621947", + "accession": "SAMN17861661", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621947", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861661", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL25", - "filename": "m64043_211222_184851-bc1003.5mc.hifi_reads.bam", + "familyId": "PEL019", + "filename": "m64136_200617_080019.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01975_lib1", + "libraryId": "HG01952_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "67517", - "mean": "19696", - "metadataAccession": "SRR23732277", - "min": "811", + "max": "49913", + "mean": "21379", + "metadataAccession": "SRR13684375", + "min": "48", "mmTag": false, - "n25": "17814", - "n50": "19237", - "n75": "21478", + "n25": "18907", + "n50": "21158", + "n75": "24613", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/m64043_211222_184851-bc1003.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01952/raw_data/PacBio_HiFi/m64136_200617_080019.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17631", - "quartile50": "18899", - "quartile75": "20818", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "18542", + "quartile50": "20462", + "quartile75": "23575", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01975", + "sampleId": "HG01952", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", @@ -24628,69527 +23913,128677 @@ "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "5813671901", - "totalGbp": "5.81", - "totalReads": "295158", + "totalBp": "30885763106", + "totalGbp": "30.89", + "totalReads": "1444654", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": null, + "accession": "SAMN17861663", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621959", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861663", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m64043_211222_184851-bc1008.5mc.hifi_reads.bam", + "familyId": "PEL39", + "filename": "m64136_200618_202033.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "MGISTL_PAN027_HG06807_lib1", + "libraryId": "HG02148_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49585", - "mean": "20200", - "metadataAccession": "SRR23732285", - "min": "473", + "max": "49035", + "mean": "17632", + "metadataAccession": "SRR13684391", + "min": "46", "mmTag": false, - "n25": "18577", - "n50": "20065", - "n75": "22049", + "n25": "15487", + "n50": "17027", + "n75": "20549", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC_PLUS/HG06807/raw_data/PacBio_HiFi/m64043_211222_184851-bc1008.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02148/raw_data/PacBio_HiFi/m64136_200618_202033.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": null, - "quartile25": "18352", - "quartile50": "19757", - "quartile75": "21611", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "15274", + "quartile50": "16505", + "quartile75": "19399", "readN50": "N/A", "result": "N/A", - "sampleId": "MGISTL_PAN027_HG06807", + "sampleId": "HG02148", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": null, - "superpopulation": null, + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "4703143471", - "totalGbp": "4.7", - "totalReads": "232821", + "totalBp": "38806001935", + "totalGbp": "38.81", + "totalReads": "2200848", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621944", + "accession": "SAMN17861663", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621944", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861663", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH058", - "filename": "m64043_211222_184851-bc1021.5mc.hifi_reads.bam", + "familyId": "PEL39", + "filename": "m64136_200620_173618.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00597_lib1", + "libraryId": "HG02148_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "38317", - "mean": "15831", - "metadataAccession": "SRR23732280", - "min": "124", + "max": "49685", + "mean": "17587", + "metadataAccession": "SRR13684391", + "min": "47", "mmTag": false, - "n25": "15074", - "n50": "15865", - "n75": "16687", + "n25": "15475", + "n50": "16977", + "n75": "20453", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/m64043_211222_184851-bc1021.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02148/raw_data/PacBio_HiFi/m64136_200620_173618.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "15003", - "quartile50": "15777", - "quartile75": "16605", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "15265", + "quartile50": "16476", + "quartile75": "19301", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00597", + "sampleId": "HG02148", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "13455521650", - "totalGbp": "13.46", - "totalReads": "849916", + "totalBp": "29586622176", + "totalGbp": "29.59", + "totalReads": "1682208", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621958", + "accession": "SAMN17861663", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621958", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861663", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD28", - "filename": "m64043_220107_191226-bc1012.5mc.hifi_reads.bam", + "familyId": "PEL39", + "filename": "m64136_200621_234916.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03834_lib1", + "libraryId": "HG02148_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "62493", - "mean": "20891", - "metadataAccession": "SRR23732286", - "min": "123", + "max": "48355", + "mean": "17407", + "metadataAccession": "SRR13684391", + "min": "45", "mmTag": false, - "n25": "19092", - "n50": "20668", - "n75": "22878", + "n25": "15402", + "n50": "16790", + "n75": "20061", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03834/raw_data/PacBio_HiFi/m64043_220107_191226-bc1012.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02148/raw_data/PacBio_HiFi/m64136_200621_234916.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18853", - "quartile50": "20313", - "quartile75": "22331", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "15211", + "quartile50": "16353", + "quartile75": "18901", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03834", + "sampleId": "HG02148", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "38210943876", - "totalGbp": "38.21", - "totalReads": "1829039", + "totalBp": "24801869543", + "totalGbp": "24.8", + "totalReads": "1424789", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621958", + "accession": "SAMN17861663", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621958", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861663", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD28", - "filename": "m64043_220109_060731-bc1012.5mc.hifi_reads.bam", + "familyId": "PEL39", + "filename": "m64136_200623_061529.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03834_lib1", + "libraryId": "HG02148_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "58988", - "mean": "20886", - "metadataAccession": "SRR23732286", - "min": "365", + "max": "45232", + "mean": "17549", + "metadataAccession": "SRR13684391", + "min": "46", "mmTag": false, - "n25": "19083", - "n50": "20657", - "n75": "22877", + "n25": "15454", + "n50": "16933", + "n75": "20383", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03834/raw_data/PacBio_HiFi/m64043_220109_060731-bc1012.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02148/raw_data/PacBio_HiFi/m64136_200623_061529.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18844", - "quartile50": "20303", - "quartile75": "22326", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "15249", + "quartile50": "16441", + "quartile75": "19221", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03834", + "sampleId": "HG02148", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "40253924320", - "totalGbp": "40.25", - "totalReads": "1927254", + "totalBp": "30048975399", + "totalGbp": "30.05", + "totalReads": "1712199", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621958", + "accession": "SAMN17861656", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621958", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861656", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD28", - "filename": "m64043_220110_170603-bc1012.5mc.hifi_reads.bam", + "familyId": "PR09", + "filename": "m64136_200625_174949.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03834_lib1", + "libraryId": "HG00741_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "62573", - "mean": "20862", - "metadataAccession": "SRR23732286", - "min": "124", + "max": "50089", + "mean": "24685", + "metadataAccession": "SRR13684380", + "min": "45", "mmTag": false, - "n25": "19071", - "n50": "20638", - "n75": "22829", + "n25": "22246", + "n50": "24876", + "n75": "28087", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03834/raw_data/PacBio_HiFi/m64043_220110_170603-bc1012.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00741/raw_data/PacBio_HiFi/m64136_200625_174949.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18833", - "quartile50": "20288", - "quartile75": "22289", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "21678", + "quartile50": "24172", + "quartile75": "27208", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03834", + "sampleId": "HG00741", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "38424503061", - "totalGbp": "38.42", - "totalReads": "1841790", + "totalBp": "31305642912", + "totalGbp": "31.31", + "totalReads": "1268202", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621949", + "accession": "SAMN17861656", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621949", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861656", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN060", - "filename": "m64043_220114_181052-bc1009.5mc.hifi_reads.bam", + "familyId": "PR09", + "filename": "m64136_200627_000247.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02056_lib1", + "libraryId": "HG00741_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "62255", - "mean": "20647", - "metadataAccession": "SRR23732275", - "min": "276", + "max": "49815", + "mean": "24612", + "metadataAccession": "SRR13684380", + "min": "48", "mmTag": false, - "n25": "18454", - "n50": "20670", - "n75": "24438", + "n25": "22183", + "n50": "24794", + "n75": "27976", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/m64043_220114_181052-bc1009.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00741/raw_data/PacBio_HiFi/m64136_200627_000247.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17986", - "quartile50": "19880", - "quartile75": "23140", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "21626", + "quartile50": "24097", + "quartile75": "27109", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02056", + "sampleId": "HG00741", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "29056368441", - "totalGbp": "29.06", - "totalReads": "1407236", + "totalBp": "27112467388", + "totalGbp": "27.11", + "totalReads": "1101565", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621952", + "accession": "SAMN17861656", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621952", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861656", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BB22", - "filename": "m64043_220114_181052-bc1011.5mc.hifi_reads.bam", + "familyId": "PR09", + "filename": "m64136_200628_062837.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02258_lib1", + "libraryId": "HG00741_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "47039", - "mean": "20639", - "metadataAccession": "SRR23732292", - "min": "217", + "max": "49813", + "mean": "24694", + "metadataAccession": "SRR13684380", + "min": "47", "mmTag": false, - "n25": "18935", - "n50": "20497", - "n75": "22571", + "n25": "22254", + "n50": "24878", + "n75": "28094", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/m64043_220114_181052-bc1011.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00741/raw_data/PacBio_HiFi/m64136_200628_062837.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18686", - "quartile50": "20163", - "quartile75": "22078", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "21691", + "quartile50": "24170", + "quartile75": "27217", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02258", + "sampleId": "HG00741", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "6878212374", - "totalGbp": "6.88", - "totalReads": "333250", + "totalBp": "31244401269", + "totalGbp": "31.24", + "totalReads": "1265235", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", + "accession": "SAMN17861656", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621953", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861656", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL46", - "filename": "m64043_220429_171542-bc1002.5mc.hifi_reads.bam", + "familyId": "PR09", + "filename": "m64136_200629_125431.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02273_lib1", + "libraryId": "HG00741_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "58982", - "mean": "20567", - "metadataAccession": "SRR23732291", - "min": "139", + "max": "50008", + "mean": "24630", + "metadataAccession": "SRR13684380", + "min": "48", "mmTag": false, - "n25": "17731", - "n50": "20899", - "n75": "23890", + "n25": "22201", + "n50": "24812", + "n75": "28003", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/PacBio_HiFi/m64043_220429_171542-bc1002.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00741/raw_data/PacBio_HiFi/m64136_200629_125431.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17280", - "quartile50": "20013", - "quartile75": "22954", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "21639", + "quartile50": "24115", + "quartile75": "27138", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "HG00741", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PEL", + "subpopulation": "PUR", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "38026194906", - "totalGbp": "38.03", - "totalReads": "1848889", + "totalBp": "29569718896", + "totalGbp": "29.57", + "totalReads": "1200554", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", + "accession": "SAMN17861657", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621953", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861657", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL46", - "filename": "m64043_220501_041051-bc1002.5mc.hifi_reads.bam", + "familyId": "PR17", + "filename": "m64136_200702_173125.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02273_lib1", + "libraryId": "HG01071_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "60518", - "mean": "20590", - "metadataAccession": "SRR23732291", - "min": "139", + "max": "50496", + "mean": "26662", + "metadataAccession": "SRR13684379", + "min": "45", "mmTag": false, - "n25": "17739", - "n50": "20923", - "n75": "23937", + "n25": "24027", + "n50": "26958", + "n75": "30418", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/PacBio_HiFi/m64043_220501_041051-bc1002.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01071/raw_data/PacBio_HiFi/m64136_200702_173125.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17281", - "quartile50": "20032", - "quartile75": "22984", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "23373", + "quartile50": "26164", + "quartile75": "29483", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "HG01071", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PEL", + "subpopulation": "PUR", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "39207885275", - "totalGbp": "39.21", - "totalReads": "1904184", + "totalBp": "29385994806", + "totalGbp": "29.39", + "totalReads": "1102142", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", + "accession": "SAMN17861657", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621953", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861657", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL46", - "filename": "m64043_220503_153752-bc1002.5mc.hifi_reads.bam", + "familyId": "PR17", + "filename": "m64136_200703_234438.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02273_lib1", + "libraryId": "HG01071_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "67692", - "mean": "20629", - "metadataAccession": "SRR23732291", - "min": "327", + "max": "50514", + "mean": "26588", + "metadataAccession": "SRR13684379", + "min": "45", "mmTag": false, - "n25": "17766", - "n50": "20967", - "n75": "23999", + "n25": "23955", + "n50": "26878", + "n75": "30336", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/PacBio_HiFi/m64043_220503_153752-bc1002.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01071/raw_data/PacBio_HiFi/m64136_200703_234438.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17297", - "quartile50": "20076", - "quartile75": "23036", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "23300", + "quartile50": "26092", + "quartile75": "29403", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "HG01071", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PEL", + "subpopulation": "PUR", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "44366503595", - "totalGbp": "44.37", - "totalReads": "2150606", + "totalBp": "25131192610", + "totalGbp": "25.13", + "totalReads": "945196", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621957", + "accession": "SAMN17861657", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621957", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861657", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m64043_220516_150157-bc1008.5mc.hifi_reads.bam", + "familyId": "PR17", + "filename": "m64136_200705_061033.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03225_lib1", + "libraryId": "HG01071_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "56783", - "mean": "21296", - "metadataAccession": "SRR23732287", - "min": "83", + "max": "50254", + "mean": "26602", + "metadataAccession": "SRR13684379", + "min": "47", "mmTag": false, - "n25": "19029", - "n50": "21243", - "n75": "24403", + "n25": "23976", + "n50": "26903", + "n75": "30359", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/PacBio_HiFi/m64043_220516_150157-bc1008.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01071/raw_data/PacBio_HiFi/m64136_200705_061033.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18584", - "quartile50": "20581", - "quartile75": "23437", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "23316", + "quartile50": "26114", + "quartile75": "29430", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03225", + "sampleId": "HG01071", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "28643913675", - "totalGbp": "28.64", - "totalReads": "1344981", + "totalBp": "26986559262", + "totalGbp": "26.99", + "totalReads": "1014421", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621957", + "accession": "SAMN17861657", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621957", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861657", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m64043_220518_120044-bc1008.5mc.hifi_reads.bam", + "familyId": "PR17", + "filename": "m64136_200706_123635.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03225_lib1", + "libraryId": "HG01071_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "64236", - "mean": "21357", - "metadataAccession": "SRR23732287", - "min": "188", + "max": "50199", + "mean": "26652", + "metadataAccession": "SRR13684379", + "min": "45", "mmTag": false, - "n25": "19060", - "n50": "21306", - "n75": "24500", + "n25": "24033", + "n50": "26957", + "n75": "30389", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/PacBio_HiFi/m64043_220518_120044-bc1008.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01071/raw_data/PacBio_HiFi/m64136_200706_123635.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18611", - "quartile50": "20634", - "quartile75": "23516", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "23382", + "quartile50": "26172", + "quartile75": "29468", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03225", + "sampleId": "HG01071", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "32725639816", - "totalGbp": "32.73", - "totalReads": "1532258", + "totalBp": "27428056082", + "totalGbp": "27.43", + "totalReads": "1029096", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", + "accession": "SAMN17861653", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861653", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "NG24", - "filename": "m64043_220617_195135-bc1009.5mc.hifi_reads.bam", + "familyId": "SH066", + "filename": "m64136_200710_174522.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02976_lib1", + "libraryId": "HG00621_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "53116", - "mean": "20017", - "metadataAccession": "SRR23732289", - "min": "396", + "max": "50331", + "mean": "21942", + "metadataAccession": "SRR13684373", + "min": "44", "mmTag": false, - "n25": "18347", - "n50": "19941", - "n75": "21988", + "n25": "19006", + "n50": "21436", + "n75": "25863", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/m64043_220617_195135-bc1009.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00621/raw_data/PacBio_HiFi/m64136_200710_174522.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18072", - "quartile50": "19589", - "quartile75": "21498", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "18576", + "quartile50": "20551", + "quartile75": "24261", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG00621", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "35330491836", - "totalGbp": "35.33", - "totalReads": "1765009", + "totalBp": "32312653240", + "totalGbp": "32.31", + "totalReads": "1472593", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", + "accession": "SAMN17861653", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861653", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "NG24", - "filename": "m64043_220619_164635-bc1009.5mc.hifi_reads.bam", + "familyId": "SH066", + "filename": "m64136_200711_235843.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02976_lib1", + "libraryId": "HG00621_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "69085", - "mean": "19961", - "metadataAccession": "SRR23732289", - "min": "633", + "max": "50165", + "mean": "22080", + "metadataAccession": "SRR13684373", + "min": "47", "mmTag": false, - "n25": "18314", - "n50": "19893", - "n75": "21915", + "n25": "19103", + "n50": "21606", + "n75": "26089", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/m64043_220619_164635-bc1009.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00621/raw_data/PacBio_HiFi/m64136_200711_235843.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18043", - "quartile50": "19546", - "quartile75": "21434", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "18659", + "quartile50": "20687", + "quartile75": "24482", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG00621", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "37286464203", - "totalGbp": "37.29", - "totalReads": "1867914", + "totalBp": "29885213340", + "totalGbp": "29.89", + "totalReads": "1353445", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", + "accession": "SAMN17861653", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861653", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "NG24", - "filename": "m64043_220621_134351-bc1009.5mc.hifi_reads.bam", + "familyId": "SH066", + "filename": "m64136_200713_062514.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02976_lib1", + "libraryId": "HG00621_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "54707", - "mean": "19958", - "metadataAccession": "SRR23732289", - "min": "214", + "max": "50388", + "mean": "21882", + "metadataAccession": "SRR13684373", + "min": "46", "mmTag": false, - "n25": "18311", - "n50": "19886", - "n75": "21906", + "n25": "18989", + "n50": "21377", + "n75": "25738", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/m64043_220621_134351-bc1009.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00621/raw_data/PacBio_HiFi/m64136_200713_062514.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18038", - "quartile50": "19542", - "quartile75": "21427", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "18570", + "quartile50": "20524", + "quartile75": "24172", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG00621", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "25120924503", - "totalGbp": "25.12", - "totalReads": "1258651", + "totalBp": "29099465697", + "totalGbp": "29.1", + "totalReads": "1329779", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", + "accession": "SAMN17861653", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN17861653", + "ccsAlgorithm": "8.0.0.80529", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m64043_220701_181144-bc1011.5mc.hifi_reads.bam", + "familyId": "SH066", + "filename": "m64136_200714_125149.ccs.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "NA18971_lib1", + "libraryId": "HG00621_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "62433", - "mean": "20716", - "metadataAccession": "SRR23732282", - "min": "61", + "max": "50286", + "mean": "22050", + "metadataAccession": "SRR13684373", + "min": "47", "mmTag": false, - "n25": "18582", - "n50": "20932", - "n75": "23785", + "n25": "19075", + "n50": "21579", + "n75": "26052", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/m64043_220701_181144-bc1011.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00621/raw_data/PacBio_HiFi/m64136_200714_125149.ccs.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18018", - "quartile50": "20255", - "quartile75": "22941", + "polymeraseVersion": "", + "productionYear": "YR1", + "quartile25": "18632", + "quartile50": "20658", + "quartile75": "24449", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "HG00621", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "JPT", + "subpopulation": "CHS", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34029092180", - "totalGbp": "34.03", - "totalReads": "1642606", + "totalBp": "31198267999", + "totalGbp": "31.2", + "totalReads": "1414858", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", + "accession": "SAMN26237503", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237503", + "ccsAlgorithm": "9.0.0.92188", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m64043_220703_150718-bc1011.5mc.hifi_reads.bam", + "familyId": "VN050", + "filename": "m64136_210205_190622.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "NA18971_lib1", + "libraryId": "HG02027_lib", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "65993", - "mean": "20667", - "metadataAccession": "SRR23732282", - "min": "62", + "max": "59462", + "mean": "19181", + "metadataAccession": "SRR18189659", + "min": "50", "mmTag": false, - "n25": "18541", - "n50": "20882", - "n75": "23733", + "n25": "17361", + "n50": "18842", + "n75": "21069", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/m64043_220703_150718-bc1011.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02027/raw_data/PacBio_HiFi/m64136_210205_190622.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17974", - "quartile50": "20210", - "quartile75": "22885", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17116", + "quartile50": "18474", + "quartile75": "20391", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "HG02027", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "JPT", + "subpopulation": "KHV", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31815106412", - "totalGbp": "31.82", - "totalReads": "1539349", + "totalBp": "34463464135", + "totalGbp": "34.46", + "totalReads": "1796742", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", + "accession": "SAMN26237503", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237503", + "ccsAlgorithm": "9.0.0.92188", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m64043_220705_120954-bc1011.5mc.hifi_reads.bam", + "familyId": "VN050", + "filename": "m64136_210207_012053.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "NA18971_lib1", + "libraryId": "HG02027_lib", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "65996", - "mean": "20793", - "metadataAccession": "SRR23732282", - "min": "249", + "max": "55858", + "mean": "19231", + "metadataAccession": "SRR18189659", + "min": "61", "mmTag": false, - "n25": "18634", - "n50": "21002", - "n75": "23888", + "n25": "17386", + "n50": "18891", + "n75": "21167", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/m64043_220705_120954-bc1011.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02027/raw_data/PacBio_HiFi/m64136_210207_012053.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18069", - "quartile50": "20318", - "quartile75": "23028", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17137", + "quartile50": "18510", + "quartile75": "20467", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "HG02027", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "JPT", + "subpopulation": "KHV", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34591963353", - "totalGbp": "34.59", - "totalReads": "1663617", + "totalBp": "31820631982", + "totalGbp": "31.82", + "totalReads": "1654569", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621960", + "accession": "SAMN26237503", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621960", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237503", + "ccsAlgorithm": "9.0.0.92188", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m64043_220708_205637-bc1015.5mc.hifi_reads.bam", + "familyId": "VN050", + "filename": "m64136_210209_184241.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "NA18612_lib1", + "libraryId": "HG02027_lib", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "70458", - "mean": "19211", - "metadataAccession": "SRR23732284", - "min": "61", + "max": "53960", + "mean": "19159", + "metadataAccession": "SRR18189659", + "min": "45", "mmTag": false, - "n25": "17131", - "n50": "18974", - "n75": "21901", + "n25": "17344", + "n50": "18825", + "n75": "21046", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/m64043_220708_205637-bc1015.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02027/raw_data/PacBio_HiFi/m64136_210209_184241.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16783", - "quartile50": "18429", - "quartile75": "20931", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17101", + "quartile50": "18456", + "quartile75": "20372", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18612", + "sampleId": "HG02027", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHB", + "subpopulation": "KHV", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "35568838553", - "totalGbp": "35.57", - "totalReads": "1851400", + "totalBp": "33394650011", + "totalGbp": "33.39", + "totalReads": "1742953", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621960", + "accession": "SAMN26237503", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621960", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237503", + "ccsAlgorithm": "9.0.0.92188", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m64043_220710_175250-bc1015.5mc.hifi_reads.bam", + "familyId": "VN050", + "filename": "m64136_210211_010151.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "NA18612_lib1", + "libraryId": "HG02027_lib", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "56913", - "mean": "19256", - "metadataAccession": "SRR23732284", - "min": "62", + "max": "47891", + "mean": "19529", + "metadataAccession": "SRR18189659", + "min": "48", "mmTag": false, - "n25": "17163", - "n50": "19020", - "n75": "21964", + "n25": "17577", + "n50": "19163", + "n75": "21640", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/m64043_220710_175250-bc1015.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02027/raw_data/PacBio_HiFi/m64136_210211_010151.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16812", - "quartile50": "18470", - "quartile75": "20993", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17310", + "quartile50": "18748", + "quartile75": "20835", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18612", + "sampleId": "HG02027", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHB", + "subpopulation": "KHV", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "39242478493", - "totalGbp": "39.24", - "totalReads": "2037867", + "totalBp": "32977753701", + "totalGbp": "32.98", + "totalReads": "1688620", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621960", + "accession": "SAMN26237504", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621960", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237504", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m64043_220712_145025-bc1015.5mc.hifi_reads.bam", + "familyId": "VN069", + "filename": "m64136_210317_200525.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "NA18612_lib1", + "libraryId": "HG02083_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "55884", - "mean": "19109", - "metadataAccession": "SRR23732284", - "min": "61", + "max": "59173", + "mean": "19950", + "metadataAccession": "SRR18189658", + "min": "86", "mmTag": false, - "n25": "17070", - "n50": "18873", - "n75": "21719", + "n25": "17500", + "n50": "19287", + "n75": "23123", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/m64043_220712_145025-bc1015.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02083/raw_data/PacBio_HiFi/m64136_210317_200525.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16729", - "quartile50": "18347", - "quartile75": "20782", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17206", + "quartile50": "18711", + "quartile75": "21907", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18612", + "sampleId": "HG02083", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHB", + "subpopulation": "KHV", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "37307640683", - "totalGbp": "37.31", - "totalReads": "1952320", + "totalBp": "34788230322", + "totalGbp": "34.79", + "totalReads": "1743712", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621954", + "accession": "SAMN26237504", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621954", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237504", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "NG20", - "filename": "m64043_220715_182700-bc1017.5mc.hifi_reads.bam", + "familyId": "VN069", + "filename": "m64136_210319_191015.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02965_lib1", + "libraryId": "HG02083_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "73722", - "mean": "20989", - "metadataAccession": "SRR23732290", - "min": "61", + "max": "60206", + "mean": "19965", + "metadataAccession": "SRR18189658", + "min": "86", "mmTag": false, - "n25": "18203", - "n50": "20521", - "n75": "24916", + "n25": "17508", + "n50": "19300", + "n75": "23147", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/PacBio_HiFi/m64043_220715_182700-bc1017.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02083/raw_data/PacBio_HiFi/m64136_210319_191015.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17769", - "quartile50": "19678", - "quartile75": "23131", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17216", + "quartile50": "18722", + "quartile75": "21930", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02965", + "sampleId": "HG02083", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "35646111219", - "totalGbp": "35.65", - "totalReads": "1698253", + "totalBp": "35152401716", + "totalGbp": "35.15", + "totalReads": "1760691", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621954", + "accession": "SAMN26237504", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621954", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237504", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "NG20", - "filename": "m64043_220717_152237-bc1017.5mc.hifi_reads.bam", + "familyId": "VN069", + "filename": "m64136_210321_022417.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02965_lib1", + "libraryId": "HG02083_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "67060", - "mean": "20743", - "metadataAccession": "SRR23732290", - "min": "61", + "max": "62376", + "mean": "19914", + "metadataAccession": "SRR18189658", + "min": "89", "mmTag": false, - "n25": "18087", - "n50": "20257", - "n75": "24333", + "n25": "17499", + "n50": "19260", + "n75": "23033", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/PacBio_HiFi/m64043_220717_152237-bc1017.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02083/raw_data/PacBio_HiFi/m64136_210321_022417.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17692", - "quartile50": "19502", - "quartile75": "22679", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17213", + "quartile50": "18705", + "quartile75": "21841", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02965", + "sampleId": "HG02083", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "40119820394", - "totalGbp": "40.12", - "totalReads": "1934110", + "totalBp": "31271435801", + "totalGbp": "31.27", + "totalReads": "1570273", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621954", + "accession": "SAMN26237504", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621954", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237504", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "NG20", - "filename": "m64043_220719_122051-bc1017.5mc.hifi_reads.bam", + "familyId": "VN069", + "filename": "m64136_210323_162524.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02965_lib1", + "libraryId": "HG02083_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "66417", - "mean": "20820", - "metadataAccession": "SRR23732290", - "min": "61", + "max": "61695", + "mean": "20039", + "metadataAccession": "SRR18189658", + "min": "90", "mmTag": false, - "n25": "18128", - "n50": "20329", - "n75": "24489", + "n25": "17556", + "n50": "19392", + "n75": "23264", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/PacBio_HiFi/m64043_220719_122051-bc1017.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02083/raw_data/PacBio_HiFi/m64136_210323_162524.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17723", - "quartile50": "19557", - "quartile75": "22800", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17255", + "quartile50": "18792", + "quartile75": "22064", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02965", + "sampleId": "HG02083", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "41992148990", - "totalGbp": "41.99", - "totalReads": "2016822", + "totalBp": "33996593694", + "totalGbp": "34", + "totalReads": "1696465", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621957", + "accession": "SAMN26237509", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621957", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237509", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m64043_220726_203720-bc1008.5mc.hifi_reads.bam", + "familyId": "PK21", + "filename": "m64136_210514_184433.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03225_lib1", + "libraryId": "HG02698_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "59173", - "mean": "20095", - "metadataAccession": "SRR23732287", - "min": "521", + "max": "57438", + "mean": "19944", + "metadataAccession": "SRR18189652", + "min": "84", "mmTag": false, - "n25": "18363", - "n50": "20023", - "n75": "22169", + "n25": "17461", + "n50": "19577", + "n75": "23289", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/PacBio_HiFi/m64043_220726_203720-bc1008.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/PacBio_HiFi/m64136_210514_184433.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18057", - "quartile50": "19643", - "quartile75": "21619", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17123", + "quartile50": "18853", + "quartile75": "22227", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03225", + "sampleId": "HG02698", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "23862784465", - "totalGbp": "23.86", - "totalReads": "1187476", + "totalBp": "31502958375", + "totalGbp": "31.5", + "totalReads": "1579519", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", + "accession": "SAMN26237495", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237495", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "NG24", - "filename": "m64043_220726_203720-bc1009.5mc.hifi_reads.bam", + "familyId": "CLM15", + "filename": "m64136_210516_022225.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02976_lib1", + "libraryId": "HG01255_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57617", - "mean": "19914", - "metadataAccession": "SRR23732289", - "min": "205", + "max": "60589", + "mean": "20849", + "metadataAccession": "SRR18189643", + "min": "681", "mmTag": false, - "n25": "18278", - "n50": "19846", - "n75": "21842", + "n25": "17882", + "n50": "20969", + "n75": "24579", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/m64043_220726_203720-bc1009.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/PacBio_HiFi/m64136_210516_022225.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18011", - "quartile50": "19503", - "quartile75": "21372", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17338", + "quartile50": "19917", + "quartile75": "23286", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG01255", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "15045982932", - "totalGbp": "15.05", - "totalReads": "755542", + "totalBp": "35010470276", + "totalGbp": "35.01", + "totalReads": "1679236", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", + "accession": "SAMN26237509", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237509", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "NG58", - "filename": "m64043_220726_203720-bc1010.5mc.hifi_reads.bam", + "familyId": "PK21", + "filename": "m64136_210517_184202.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03195_lib1", + "libraryId": "HG02698_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57429", - "mean": "23841", - "metadataAccession": "SRR23732288", - "min": "894", + "max": "56902", + "mean": "19940", + "metadataAccession": "SRR18189652", + "min": "633", "mmTag": false, - "n25": "21539", - "n50": "23799", - "n75": "26818", + "n25": "17462", + "n50": "19578", + "n75": "23288", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/m64043_220726_203720-bc1010.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/PacBio_HiFi/m64136_210517_184202.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "21102", - "quartile50": "23205", - "quartile75": "25986", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17123", + "quartile50": "18854", + "quartile75": "22222", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "HG02698", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "2810055296", - "totalGbp": "2.81", - "totalReads": "117862", + "totalBp": "32782437878", + "totalGbp": "32.78", + "totalReads": "1644028", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", + "accession": "SAMN26237495", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237495", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m64043_220728_173215-bc1011.5mc.hifi_reads.bam", + "familyId": "CLM15", + "filename": "m64136_210519_033858.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "NA18971_lib1", + "libraryId": "HG01255_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "41182", - "mean": "16065", - "metadataAccession": "SRR23732282", - "min": "123", + "max": "56837", + "mean": "20716", + "metadataAccession": "SRR18189643", + "min": "110", "mmTag": false, - "n25": "14925", - "n50": "16155", - "n75": "17514", + "n25": "17775", + "n50": "20797", + "n75": "24380", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/m64043_220728_173215-bc1011.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/PacBio_HiFi/m64136_210519_033858.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "14712", - "quartile50": "15923", - "quartile75": "17251", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17261", + "quartile50": "19739", + "quartile75": "23108", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "HG01255", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "12335160946", - "totalGbp": "12.34", - "totalReads": "767828", + "totalBp": "32516315973", + "totalGbp": "32.52", + "totalReads": "1569564", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621951", + "accession": "SAMN26237491", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621951", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237491", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m64043_220728_173215-bc1012.5mc.hifi_reads.bam", + "familyId": "SH042", + "filename": "m64136_210520_180433.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02155_lib1", + "libraryId": "HG00544_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "55945", - "mean": "20033", - "metadataAccession": "SRR23732293", - "min": "61", + "max": "57625", + "mean": "19583", + "metadataAccession": "SRR18189653", + "min": "86", "mmTag": false, - "n25": "17476", - "n50": "19953", - "n75": "23518", + "n25": "17129", + "n50": "19121", + "n75": "22825", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/m64043_220728_173215-bc1012.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m64136_210520_180433.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17036", - "quartile50": "19069", - "quartile75": "22395", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "16825", + "quartile50": "18445", + "quartile75": "21784", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02155", + "sampleId": "HG00544", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CDX", + "subpopulation": "CHS", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "12121610916", - "totalGbp": "12.12", - "totalReads": "605059", + "totalBp": "29354505966", + "totalGbp": "29.35", + "totalReads": "1498910", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621942", + "accession": "SAMN26237491", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621942", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237491", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m64043_220728_173215-bc1016.5mc.hifi_reads.bam", + "familyId": "SH042", + "filename": "m64136_210522_014758.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00323_lib1", + "libraryId": "HG00544_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51718", - "mean": "21318", - "metadataAccession": "SRR23732294", - "min": "62", + "max": "60270", + "mean": "19796", + "metadataAccession": "SRR18189653", + "min": "86", "mmTag": false, - "n25": "19395", - "n50": "21416", - "n75": "23864", + "n25": "17306", + "n50": "19452", + "n75": "23104", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/m64043_220728_173215-bc1016.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m64136_210522_014758.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18987", - "quartile50": "20930", - "quartile75": "23238", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "16970", + "quartile50": "18701", + "quartile75": "22117", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00323", + "sampleId": "HG00544", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "6741622889", - "totalGbp": "6.74", - "totalReads": "316229", + "totalBp": "18538580517", + "totalGbp": "18.54", + "totalReads": "936445", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621941", + "accession": "SAMN26237491", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621941", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237491", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m64043_220728_173215-bc1018.5mc.hifi_reads.bam", + "familyId": "SH042", + "filename": "m64136_210523_100337.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "tgraves@wustl.edu", "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00140_lib1", + "libraryId": "HG00544_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "53341", - "mean": "19783", - "metadataAccession": "SRR23732295", - "min": "51", + "max": "55501", + "mean": "19776", + "metadataAccession": "SRR18189653", + "min": "161", "mmTag": false, - "n25": "18131", - "n50": "19724", - "n75": "21738", + "n25": "17283", + "n50": "19416", + "n75": "23091", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/m64043_220728_173215-bc1018.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m64136_210523_100337.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17853", - "quartile50": "19373", - "quartile75": "21259", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "16949", + "quartile50": "18670", + "quartile75": "22090", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00140", + "sampleId": "HG00544", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "10233445025", - "totalGbp": "10.23", - "totalReads": "517275", + "totalBp": "17391182429", + "totalGbp": "17.39", + "totalReads": "879373", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706907", + "accession": "SAMN26237491", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706907", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237491", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD18", - "filename": "m64055e_210709_184151.5mc.hifi_reads.bam", + "familyId": "SH042", + "filename": "m64136_210525_165246.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03804_PB1_m64055e_210709_184151", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00544_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "56669", - "mean": "17416", - "metadataAccession": "SRR30151630", - "min": "85", + "max": "58523", + "mean": "19262", + "metadataAccession": "SRR18189653", + "min": "86", "mmTag": false, - "n25": "14871", - "n50": "17950", - "n75": "21842", + "n25": "16986", + "n50": "18747", + "n75": "22249", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m64055e_210709_184151.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m64136_210525_165246.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", + "polymeraseVersion": "P2", "productionYear": "YR2", - "quartile25": "13867", - "quartile50": "16626", - "quartile75": "20146", + "quartile25": "16723", + "quartile50": "18199", + "quartile75": "21194", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03804", + "sampleId": "HG00544", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "33213912092", - "totalGbp": "33.21", - "totalReads": "1906994", + "totalBp": "19945672662", + "totalGbp": "19.95", + "totalReads": "1035453", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706910", + "accession": "SAMN26237508", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706910", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237508", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD53", - "filename": "m64055e_210711_053617.5mc.hifi_reads.bam", + "familyId": "GB29", + "filename": "m64136_210528_171842.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG04160_PB1_m64055e_210711_053617", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02615_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51475", - "mean": "15770", - "metadataAccession": "SRR30151638", - "min": "84", + "max": "57329", + "mean": "19166", + "metadataAccession": "SRR18189654", + "min": "653", "mmTag": false, - "n25": "13674", - "n50": "16006", - "n75": "19133", + "n25": "16935", + "n50": "18925", + "n75": "22065", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m64055e_210711_053617.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/PacBio_HiFi/m64136_210528_171842.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", + "polymeraseVersion": "P2", "productionYear": "YR2", - "quartile25": "13047", - "quartile50": "15116", - "quartile75": "17931", + "quartile25": "16621", + "quartile50": "18304", + "quartile75": "21230", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04160", + "sampleId": "HG02615", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26423796459", - "totalGbp": "26.42", - "totalReads": "1675553", + "totalBp": "33766412584", + "totalGbp": "33.77", + "totalReads": "1761768", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706907", + "accession": "SAMN26237508", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706907", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237508", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD18", - "filename": "m64055e_210712_200125.5mc.hifi_reads.bam", + "familyId": "GB29", + "filename": "m64136_210530_004827.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03804_PB1_m64055e_210712_200125", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02615_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "63476", - "mean": "17229", - "metadataAccession": "SRR30151651", - "min": "51", + "max": "54925", + "mean": "19501", + "metadataAccession": "SRR18189654", + "min": "86", "mmTag": false, - "n25": "14721", - "n50": "17741", - "n75": "21559", + "n25": "17182", + "n50": "19404", + "n75": "22518", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m64055e_210712_200125.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/PacBio_HiFi/m64136_210530_004827.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", + "polymeraseVersion": "P2", "productionYear": "YR2", - "quartile25": "13744", - "quartile50": "16447", - "quartile75": "19903", + "quartile25": "16824", + "quartile50": "18684", + "quartile75": "21714", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03804", + "sampleId": "HG02615", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "28792837074", - "totalGbp": "28.79", - "totalReads": "1671138", + "totalBp": "32739078900", + "totalGbp": "32.74", + "totalReads": "1678784", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706907", + "accession": "SAMN26237508", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706907", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237508", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD18", - "filename": "m64055e_210714_052746.5mc.hifi_reads.bam", + "familyId": "GB29", + "filename": "m64136_210531_083342.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03804_PB1_m64055e_210714_052746", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02615_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "56031", - "mean": "17305", - "metadataAccession": "SRR30151650", - "min": "49", + "max": "54872", + "mean": "19492", + "metadataAccession": "SRR18189654", + "min": "418", "mmTag": false, - "n25": "14820", - "n50": "17802", - "n75": "21563", + "n25": "17180", + "n50": "19380", + "n75": "22494", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m64055e_210714_052746.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/PacBio_HiFi/m64136_210531_083342.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", + "polymeraseVersion": "P2", "productionYear": "YR2", - "quartile25": "13857", - "quartile50": "16546", - "quartile75": "19948", + "quartile25": "16825", + "quartile50": "18669", + "quartile75": "21697", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03804", + "sampleId": "HG02615", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "28207159246", - "totalGbp": "28.21", - "totalReads": "1629954", + "totalBp": "32475308904", + "totalGbp": "32.48", + "totalReads": "1666072", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706910", + "accession": "SAMN26237493", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706910", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237493", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD53", - "filename": "m64055e_210715_181933.5mc.hifi_reads.bam", + "familyId": "PR07", + "filename": "m64136_210602_151340.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG04160_PB1_m64055e_210715_181933", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00738_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57540", - "mean": "13806", - "metadataAccession": "SRR30151637", - "min": "84", + "max": "61975", + "mean": "21750", + "metadataAccession": "SRR18189645", + "min": "90", "mmTag": false, - "n25": "11697", - "n50": "14386", - "n75": "17653", + "n25": "18952", + "n50": "21035", + "n75": "25464", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m64055e_210715_181933.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/PacBio_HiFi/m64136_210602_151340.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", + "polymeraseVersion": "P2", "productionYear": "YR2", - "quartile25": "10733", - "quartile50": "13163", - "quartile75": "16156", + "quartile25": "18587", + "quartile50": "20331", + "quartile75": "23822", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04160", + "sampleId": "HG00738", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "21543489843", - "totalGbp": "21.54", - "totalReads": "1560360", + "totalBp": "22112433547", + "totalGbp": "22.11", + "totalReads": "1016642", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706908", + "accession": "SAMN26237496", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706908", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237496", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD22", - "filename": "m64055e_210726_155147.5mc.hifi_reads.bam", + "familyId": "CLM43", + "filename": "m64136_210604_175856.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03816_PB3_m64055e_210726_155147", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG01433_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "55188", - "mean": "16543", - "metadataAccession": "SRR30151648", - "min": "49", + "max": "62574", + "mean": "21918", + "metadataAccession": "SRR18189642", + "min": "551", "mmTag": false, - "n25": "14079", - "n50": "17160", - "n75": "20956", + "n25": "19050", + "n50": "21927", + "n75": "25849", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m64055e_210726_155147.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01433/raw_data/PacBio_HiFi/m64136_210604_175856.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", + "polymeraseVersion": "P2", "productionYear": "YR2", - "quartile25": "13043", - "quartile50": "15783", - "quartile75": "19263", + "quartile25": "18516", + "quartile50": "20897", + "quartile75": "24604", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03816", + "sampleId": "HG01433", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26328421546", - "totalGbp": "26.33", - "totalReads": "1591506", + "totalBp": "33371252434", + "totalGbp": "33.37", + "totalReads": "1522531", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706908", + "accession": "SAMN26237496", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706908", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237496", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD22", - "filename": "m64055e_210728_024601.5mc.hifi_reads.bam", + "familyId": "CLM43", + "filename": "m64136_210606_025622.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03816_PB3_m64055e_210728_024601", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG01433_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "52349", - "mean": "17178", - "metadataAccession": "SRR30151647", - "min": "85", + "max": "57595", + "mean": "22335", + "metadataAccession": "SRR18189642", + "min": "86", "mmTag": false, - "n25": "14718", - "n50": "17827", - "n75": "21629", + "n25": "19394", + "n50": "22509", + "n75": "26396", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m64055e_210728_024601.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01433/raw_data/PacBio_HiFi/m64136_210606_025622.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", + "polymeraseVersion": "P2", "productionYear": "YR2", - "quartile25": "13645", - "quartile50": "16473", - "quartile75": "19986", + "quartile25": "18792", + "quartile50": "21399", + "quartile75": "25166", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03816", + "sampleId": "HG01433", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "28037716098", - "totalGbp": "28.04", - "totalReads": "1632098", + "totalBp": "24912537616", + "totalGbp": "24.91", + "totalReads": "1115383", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706908", + "accession": "SAMN26237496", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706908", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237496", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD22", - "filename": "m64055e_210729_122949.5mc.hifi_reads.bam", + "familyId": "CLM43", + "filename": "m64136_210607_115559.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03816_PB3_m64055e_210729_122949", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG01433_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57010", - "mean": "16787", - "metadataAccession": "SRR30151646", - "min": "52", + "max": "58871", + "mean": "22122", + "metadataAccession": "SRR18189642", + "min": "495", "mmTag": false, - "n25": "14322", - "n50": "17420", - "n75": "21236", + "n25": "19214", + "n50": "22200", + "n75": "26119", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m64055e_210729_122949.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01433/raw_data/PacBio_HiFi/m64136_210607_115559.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", + "polymeraseVersion": "P2", "productionYear": "YR2", - "quartile25": "13264", - "quartile50": "16051", - "quartile75": "19547", + "quartile25": "18654", + "quartile50": "21131", + "quartile75": "24872", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03816", + "sampleId": "HG01433", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26609986781", - "totalGbp": "26.61", - "totalReads": "1585079", + "totalBp": "31122861165", + "totalGbp": "31.12", + "totalReads": "1406824", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706905", + "accession": "SAMN26237496", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706905", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237496", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH090", - "filename": "m64055e_210731_145204.5mc.hifi_reads.bam", + "familyId": "CLM43", + "filename": "m64136_210610_203618.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG00706_PB1_m64055e_210731_145204", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG01433_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "63996", - "mean": "15917", - "metadataAccession": "SRR30151653", - "min": "47", + "max": "59803", + "mean": "21255", + "metadataAccession": "SRR18189642", + "min": "509", "mmTag": false, - "n25": "13634", - "n50": "16478", - "n75": "19969", + "n25": "18562", + "n50": "21038", + "n75": "24891", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210731_145204.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01433/raw_data/PacBio_HiFi/m64136_210610_203618.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", + "polymeraseVersion": "P2", "productionYear": "YR2", - "quartile25": "12677", - "quartile50": "15246", - "quartile75": "18454", + "quartile25": "18128", + "quartile50": "20177", + "quartile75": "23639", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00706", + "sampleId": "HG01433", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "27575841441", - "totalGbp": "27.58", - "totalReads": "1732468", + "totalBp": "23199350663", + "totalGbp": "23.2", + "totalReads": "1091451", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706906", + "accession": "SAMN26237514", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706906", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237514", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB40", - "filename": "m64055e_210810_194150.5mc.hifi_reads.bam", + "familyId": "BD27", + "filename": "m64136_210612_053350.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02668_PB1_m64055e_210810_194150", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03831_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "60518", - "mean": "16307", - "metadataAccession": "SRR30151632", - "min": "85", + "max": "55969", + "mean": "21743", + "metadataAccession": "SRR18189647", + "min": "641", "mmTag": false, - "n25": "14002", - "n50": "16689", - "n75": "20198", + "n25": "19766", + "n50": "21495", + "n75": "23983", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m64055e_210810_194150.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/PacBio_HiFi/m64136_210612_053350.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", + "polymeraseVersion": "P2", "productionYear": "YR2", - "quartile25": "13193", - "quartile50": "15570", - "quartile75": "18723", + "quartile25": "19481", + "quartile50": "21077", + "quartile75": "23313", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02668", + "sampleId": "HG03831", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31511359527", - "totalGbp": "31.51", - "totalReads": "1932274", + "totalBp": "19144027234", + "totalGbp": "19.14", + "totalReads": "880429", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706905", + "accession": "SAMN26237514", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706905", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237514", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH090", - "filename": "m64055e_210812_050522.5mc.hifi_reads.bam", + "familyId": "BD27", + "filename": "m64136_210613_130744.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG00706_PB1_m64055e_210812_050522", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03831_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "56270", - "mean": "16525", - "metadataAccession": "SRR30151652", - "min": "49", + "max": "56331", + "mean": "21716", + "metadataAccession": "SRR18189647", + "min": "385", "mmTag": false, - "n25": "14329", - "n50": "16983", - "n75": "20349", + "n25": "19746", + "n50": "21472", + "n75": "23951", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210812_050522.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/PacBio_HiFi/m64136_210613_130744.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", + "polymeraseVersion": "P2", "productionYear": "YR2", - "quartile25": "13486", - "quartile50": "15904", - "quartile75": "18972", + "quartile25": "19461", + "quartile50": "21056", + "quartile75": "23284", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00706", + "sampleId": "HG03831", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "24186668138", - "totalGbp": "24.19", - "totalReads": "1463583", + "totalBp": "19374660094", + "totalGbp": "19.37", + "totalReads": "892173", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706905", + "accession": "SAMN26237514", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706905", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237514", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH090", - "filename": "m64055e_210813_141904.5mc.hifi_reads.bam", + "familyId": "BD27", + "filename": "m64136_210614_204240.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG00706_PB1_m64055e_210813_141904", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03831_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "69934", - "mean": "16601", - "metadataAccession": "SRR30151641", - "min": "54", + "max": "54835", + "mean": "21688", + "metadataAccession": "SRR18189647", + "min": "402", "mmTag": false, - "n25": "14373", - "n50": "17069", - "n75": "20494", + "n25": "19731", + "n50": "21450", + "n75": "23911", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210813_141904.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/PacBio_HiFi/m64136_210614_204240.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", + "polymeraseVersion": "P2", "productionYear": "YR2", - "quartile25": "13513", - "quartile50": "15967", - "quartile75": "19082", + "quartile25": "19447", + "quartile50": "21037", + "quartile75": "23248", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00706", + "sampleId": "HG03831", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "29455811991", - "totalGbp": "29.46", - "totalReads": "1774263", + "totalBp": "18666458074", + "totalGbp": "18.67", + "totalReads": "860681", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706905", + "accession": "SAMN26237514", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706905", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237514", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH090", - "filename": "m64055e_210814_234047.5mc.hifi_reads.bam", + "familyId": "BD27", + "filename": "m64136_210618_184849.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG00706_PB1_m64055e_210814_234047", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03831_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "59621", - "mean": "16824", - "metadataAccession": "SRR30151636", - "min": "48", + "max": "61821", + "mean": "21813", + "metadataAccession": "SRR18189647", + "min": "90", "mmTag": false, - "n25": "14563", - "n50": "17300", - "n75": "20758", + "n25": "19790", + "n50": "21555", + "n75": "24089", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210814_234047.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/PacBio_HiFi/m64136_210618_184849.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", + "polymeraseVersion": "P2", "productionYear": "YR2", - "quartile25": "13694", - "quartile50": "16182", - "quartile75": "19336", + "quartile25": "19499", + "quartile50": "21123", + "quartile75": "23395", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00706", + "sampleId": "HG03831", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "29562459419", - "totalGbp": "29.56", - "totalReads": "1757155", + "totalBp": "38500629563", + "totalGbp": "38.5", + "totalReads": "1764977", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861237", + "accession": "SAMN26237492", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861237", - "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", + "biosampleAccession": "SAMN26237492", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "BB21", - "filename": "m64076_200125_231256.ccs.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH062", + "filename": "m64136_210620_054327.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02257.HiFiEx_f2", + "libraryId": "HG00609_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49634", - "mean": "19086", - "metadataAccession": "SRR13684279", - "min": "48", + "max": "59168", + "mean": "20480", + "metadataAccession": "SRR18189646", + "min": "80", "mmTag": false, - "n25": "17578", - "n50": "19101", - "n75": "20919", + "n25": "17837", + "n50": "20016", + "n75": "24004", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02257/raw_data/PacBio_HiFi/m64076_200125_231256.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/PacBio_HiFi/m64136_210620_054327.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.0", - "productionYear": "YR1", - "quartile25": "17321", - "quartile50": "18791", - "quartile75": "20528", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17480", + "quartile50": "19248", + "quartile75": "22718", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02257", + "sampleId": "HG00609", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2.0", - "shearMethod": "g-TUBE", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "19712196692", - "totalGbp": "19.71", - "totalReads": "1032799", + "totalBp": "36542655261", + "totalGbp": "36.54", + "totalReads": "1784291", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861237", + "accession": "SAMN26237492", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861237", - "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", + "biosampleAccession": "SAMN26237492", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "BB21", - "filename": "m64076_200127_180545.ccs.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH062", + "filename": "m64136_210622_163607.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02257.HiFiEx_f2", + "libraryId": "HG00609_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50471", - "mean": "19202", - "metadataAccession": "SRR13684279", - "min": "46", + "max": "60330", + "mean": "20295", + "metadataAccession": "SRR18189646", + "min": "294", "mmTag": false, - "n25": "17658", - "n50": "19206", - "n75": "21077", + "n25": "17754", + "n50": "19801", + "n75": "23634", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02257/raw_data/PacBio_HiFi/m64076_200127_180545.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/PacBio_HiFi/m64136_210622_163607.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.0", - "productionYear": "YR1", - "quartile25": "17393", - "quartile50": "18884", - "quartile75": "20665", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17422", + "quartile50": "19106", + "quartile75": "22384", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02257", + "sampleId": "HG00609", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2.0", - "shearMethod": "g-TUBE", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31789384503", - "totalGbp": "31.79", - "totalReads": "1655490", + "totalBp": "34196548457", + "totalGbp": "34.2", + "totalReads": "1684931", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861237", + "accession": "SAMN26237492", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861237", - "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", + "biosampleAccession": "SAMN26237492", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "BB21", - "filename": "m64076_200129_001835.ccs.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH062", + "filename": "m64136_210624_033152.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02257.HiFiEx_f2", + "libraryId": "HG00609_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "48893", - "mean": "19352", - "metadataAccession": "SRR13684279", - "min": "48", + "max": "62855", + "mean": "20450", + "metadataAccession": "SRR18189646", + "min": "520", "mmTag": false, - "n25": "17785", - "n50": "19348", - "n75": "21236", + "n25": "17820", + "n50": "19987", + "n75": "23940", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02257/raw_data/PacBio_HiFi/m64076_200129_001835.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/PacBio_HiFi/m64136_210624_033152.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.0", - "productionYear": "YR1", - "quartile25": "17518", - "quartile50": "19022", - "quartile75": "20817", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17467", + "quartile50": "19227", + "quartile75": "22670", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02257", + "sampleId": "HG00609", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2.0", - "shearMethod": "g-TUBE", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "30466253940", - "totalGbp": "30.47", - "totalReads": "1574258", + "totalBp": "36078913516", + "totalGbp": "36.08", + "totalReads": "1764223", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861237", + "accession": "SAMN26237500", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861237", - "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", + "biosampleAccession": "SAMN26237500", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "BB21", - "filename": "m64076_200130_064345.ccs.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL27", + "filename": "m64136_210625_184731.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02257.HiFiEx_f2", + "libraryId": "HG01981_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49612", - "mean": "19284", - "metadataAccession": "SRR13684279", - "min": "47", + "max": "58677", + "mean": "22409", + "metadataAccession": "SRR18189662", + "min": "86", "mmTag": false, - "n25": "17733", - "n50": "19284", - "n75": "21154", + "n25": "20324", + "n50": "22093", + "n75": "24616", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02257/raw_data/PacBio_HiFi/m64076_200130_064345.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/PacBio_HiFi/m64136_210625_184731.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.0", - "productionYear": "YR1", - "quartile25": "17469", - "quartile50": "18965", - "quartile75": "20743", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "20057", + "quartile50": "21671", + "quartile75": "23942", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02257", + "sampleId": "HG01981", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2.0", - "shearMethod": "g-TUBE", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "28667205005", - "totalGbp": "28.67", - "totalReads": "1486566", + "totalBp": "32558602266", + "totalGbp": "32.56", + "totalReads": "1452915", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861234", + "accession": "SAMN26237500", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861234", - "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", + "biosampleAccession": "SAMN26237500", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 18kb fractionated gDNA", - "familyId": "CLM31", - "filename": "m64076_200201_051547.ccs.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL27", + "filename": "m64136_210627_054246.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01358_HiFiEx_f1", + "libraryId": "HG01981_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50034", - "mean": "18670", - "metadataAccession": "SRR13684283", - "min": "47", + "max": "58483", + "mean": "22404", + "metadataAccession": "SRR18189662", + "min": "109", "mmTag": false, - "n25": "17038", - "n50": "18766", - "n75": "20859", + "n25": "20321", + "n50": "22091", + "n75": "24616", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m64076_200201_051547.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/PacBio_HiFi/m64136_210627_054246.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.0", - "productionYear": "YR1", - "quartile25": "16676", - "quartile50": "18344", - "quartile75": "20318", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "20054", + "quartile50": "21668", + "quartile75": "23950", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01358", + "sampleId": "HG01981", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2.0", - "shearMethod": "g-TUBE", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CLM", + "subpopulation": "PEL", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "30068543676", - "totalGbp": "30.07", - "totalReads": "1610516", + "totalBp": "38295698114", + "totalGbp": "38.3", + "totalReads": "1709317", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861234", + "accession": "SAMN26237500", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861234", - "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", + "biosampleAccession": "SAMN26237500", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 18kb fractionated gDNA", - "familyId": "CLM31", - "filename": "m64076_200203_181219.ccs.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL27", + "filename": "m64136_210628_163953.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01358_HiFiEx_f1", + "libraryId": "HG01981_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49139", - "mean": "18338", - "metadataAccession": "SRR13684283", - "min": "44", + "max": "67049", + "mean": "22492", + "metadataAccession": "SRR18189662", + "min": "461", "mmTag": false, - "n25": "16771", - "n50": "18467", - "n75": "20512", + "n25": "20370", + "n50": "22177", + "n75": "24752", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m64076_200203_181219.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/PacBio_HiFi/m64136_210628_163953.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.0", - "productionYear": "YR1", - "quartile25": "16407", - "quartile50": "18053", - "quartile75": "19983", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "20094", + "quartile50": "21740", + "quartile75": "24060", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01358", + "sampleId": "HG01981", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2.0", - "shearMethod": "g-TUBE", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CLM", + "subpopulation": "PEL", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "32630636515", - "totalGbp": "32.63", - "totalReads": "1779397", + "totalBp": "34527307027", + "totalGbp": "34.53", + "totalReads": "1535065", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861234", + "accession": "SAMN26237502", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861234", - "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", + "biosampleAccession": "SAMN26237502", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 18kb fractionated gDNA", - "familyId": "CLM31", - "filename": "m64076_200206_215943.ccs.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL33", + "filename": "m64136_210702_183526.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01358_HiFiEx_f1", + "libraryId": "HG02004_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49875", - "mean": "18215", - "metadataAccession": "SRR13684283", - "min": "47", + "max": "58589", + "mean": "19156", + "metadataAccession": "SRR18189660", + "min": "330", "mmTag": false, - "n25": "16675", - "n50": "18363", - "n75": "20389", + "n25": "16680", + "n50": "19065", + "n75": "22279", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m64076_200206_215943.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/PacBio_HiFi/m64136_210702_183526.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.0", - "productionYear": "YR1", - "quartile25": "16308", - "quartile50": "17946", - "quartile75": "19862", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "16324", + "quartile50": "18153", + "quartile75": "21349", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01358", + "sampleId": "HG02004", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2.0", - "shearMethod": "g-TUBE", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CLM", + "subpopulation": "PEL", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "28270120144", - "totalGbp": "28.27", - "totalReads": "1551959", + "totalBp": "33142881457", + "totalGbp": "33.14", + "totalReads": "1730130", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861234", + "accession": "SAMN26237502", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861234", - "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", + "biosampleAccession": "SAMN26237502", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 18kb fractionated gDNA", - "familyId": "CLM31", - "filename": "m64076_200208_041234.ccs.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL33", + "filename": "m64136_210704_053041.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01358_HiFiEx_f1", + "libraryId": "HG02004_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "45703", - "mean": "18304", - "metadataAccession": "SRR13684283", - "min": "47", + "max": "55125", + "mean": "19374", + "metadataAccession": "SRR18189660", + "min": "271", "mmTag": false, - "n25": "16749", - "n50": "18432", - "n75": "20451", + "n25": "16832", + "n50": "19431", + "n75": "22579", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m64076_200208_041234.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/PacBio_HiFi/m64136_210704_053041.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.0", - "productionYear": "YR1", - "quartile25": "16388", - "quartile50": "18026", - "quartile75": "19934", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "16441", + "quartile50": "18442", + "quartile75": "21645", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01358", + "sampleId": "HG02004", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2.0", - "shearMethod": "g-TUBE", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CLM", + "subpopulation": "PEL", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26036028477", - "totalGbp": "26.04", - "totalReads": "1422399", + "totalBp": "22886582472", + "totalGbp": "22.89", + "totalReads": "1181301", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861238", + "accession": "SAMN26237502", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861238", - "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", + "biosampleAccession": "SAMN26237502", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 19kb fractionated gDNA", - "familyId": "BB55", - "filename": "m64076_200211_192227.ccs.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL33", + "filename": "m64136_210705_162724.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02486.HiFiEx_b6", + "libraryId": "HG02004_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "30053", - "mean": "20506", - "metadataAccession": "SRR13684276", - "min": "45", + "max": "53948", + "mean": "19668", + "metadataAccession": "SRR18189660", + "min": "86", "mmTag": false, - "n25": "20111", - "n50": "20780", - "n75": "21460", + "n25": "17087", + "n50": "19873", + "n75": "22910", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02486/raw_data/PacBio_HiFi/m64076_200211_192227.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/PacBio_HiFi/m64136_210705_162724.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.0", - "productionYear": "YR1", - "quartile25": "20033", - "quartile50": "20719", - "quartile75": "21404", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "16651", + "quartile50": "18898", + "quartile75": "22002", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02486", + "sampleId": "HG02004", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2.0", - "shearMethod": "g-TUBE", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "1028856517", - "totalGbp": "1.03", - "totalReads": "50172", + "totalBp": "28890588164", + "totalGbp": "28.89", + "totalReads": "1468846", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861239", + "accession": "SAMN26237505", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861239", - "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", + "biosampleAccession": "SAMN26237505", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BB68", - "filename": "m64076_200215_021919.ccs.bam", + "familyId": "BB23", + "filename": "m64136_210716_230343.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02559.HiFiEx_f2", + "libraryId": "HG02280_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49430", - "mean": "20252", - "metadataAccession": "SRR13684287", - "min": "46", + "max": "55627", + "mean": "18909", + "metadataAccession": "SRR18189657", + "min": "77", "mmTag": false, - "n25": "18610", - "n50": "20214", - "n75": "22178", + "n25": "16598", + "n50": "19206", + "n75": "21600", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02559/raw_data/PacBio_HiFi/m64076_200215_021919.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/PacBio_HiFi/m64136_210716_230343.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.0", - "productionYear": "YR1", - "quartile25": "18340", - "quartile50": "19877", - "quartile75": "21734", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "16156", + "quartile50": "18541", + "quartile75": "20932", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02559", + "sampleId": "HG02280", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2.0", - "shearMethod": "g-TUBE", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", "subpopulation": "ACB", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26582700348", - "totalGbp": "26.58", - "totalReads": "1312567", + "totalBp": "32263383149", + "totalGbp": "32.26", + "totalReads": "1706223", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861239", + "accession": "SAMN26237505", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861239", - "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", + "biosampleAccession": "SAMN26237505", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BB68", - "filename": "m64076_200217_055339.ccs.bam", + "familyId": "BB23", + "filename": "m64136_210718_091611.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02559.HiFiEx_f2", + "libraryId": "HG02280_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50659", - "mean": "20381", - "metadataAccession": "SRR13684287", - "min": "47", + "max": "55386", + "mean": "18944", + "metadataAccession": "SRR18189657", + "min": "747", "mmTag": false, - "n25": "18706", - "n50": "20331", - "n75": "22336", + "n25": "16622", + "n50": "19243", + "n75": "21644", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02559/raw_data/PacBio_HiFi/m64076_200217_055339.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/PacBio_HiFi/m64136_210718_091611.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.0", - "productionYear": "YR1", - "quartile25": "18431", - "quartile50": "19985", - "quartile75": "21877", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "16173", + "quartile50": "18582", + "quartile75": "20967", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02559", + "sampleId": "HG02280", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2.0", - "shearMethod": "g-TUBE", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", "subpopulation": "ACB", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31581599812", - "totalGbp": "31.58", - "totalReads": "1549488", + "totalBp": "35481365570", + "totalGbp": "35.48", + "totalReads": "1872882", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861235", + "accession": "SAMN26237505", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861235", - "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", + "biosampleAccession": "SAMN26237505", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "CLM32", - "filename": "m64076_200221_234426.ccs.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BB23", + "filename": "m64136_210719_201505.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01361.HiFiEx_f6", + "libraryId": "HG02280_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "42847", - "mean": "19178", - "metadataAccession": "SRR13684281", - "min": "45", + "max": "58301", + "mean": "18928", + "metadataAccession": "SRR18189657", + "min": "95", "mmTag": false, - "n25": "18952", - "n50": "19881", - "n75": "20718", + "n25": "16617", + "n50": "19228", + "n75": "21618", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01361/raw_data/PacBio_HiFi_Swap_Fixed/m64076_200221_234426.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/PacBio_HiFi/m64136_210719_201505.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.0", - "productionYear": "YR1", - "quartile25": "18750", - "quartile50": "19745", - "quartile75": "20615", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "16172", + "quartile50": "18564", + "quartile75": "20950", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01361", + "sampleId": "HG02280", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2.0", - "shearMethod": "g-TUBE", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": "ACB", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "6760635369", - "totalGbp": "6.76", - "totalReads": "352516", + "totalBp": "32722313918", + "totalGbp": "32.72", + "totalReads": "1728776", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861233", + "accession": "SAMN26237498", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861233", - "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", + "biosampleAccession": "SAMN26237498", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "CLM16", - "filename": "m64076_200306_185917.ccs.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL013", + "filename": "m64136_210723_184622.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01258.HiFiEx_f1", + "libraryId": "HG01934_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49803", - "mean": "19234", - "metadataAccession": "SRR13684289", - "min": "44", + "max": "55658", + "mean": "20392", + "metadataAccession": "SRR18189640", + "min": "87", "mmTag": false, - "n25": "17398", - "n50": "19748", - "n75": "22588", - "notes": "", + "n25": "17643", + "n50": "19834", + "n75": "24088", + "notes": "bc1020 barcoded adapter", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01258/raw_data/PacBio_HiFi_Swap_Fixed/m64076_200306_185917.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01934/raw_data/PacBio_HiFi/m64136_210723_184622.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.0", - "productionYear": "YR1", - "quartile25": "16739", - "quartile50": "18969", - "quartile75": "21696", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17294", + "quartile50": "18988", + "quartile75": "22829", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01258", + "sampleId": "HG01934", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2.0", - "shearMethod": "g-TUBE", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CLM", + "subpopulation": "PEL", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26041896578", - "totalGbp": "26.04", - "totalReads": "1353905", + "totalBp": "23540899362", + "totalGbp": "23.54", + "totalReads": "1154412", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861233", + "accession": "SAMN26237498", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861233", - "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", + "biosampleAccession": "SAMN26237498", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "CLM16", - "filename": "m64076_200308_194406.ccs.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL013", + "filename": "m64136_210725_054129.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01258.HiFiEx_f1", + "libraryId": "HG01934_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49891", - "mean": "20258", - "metadataAccession": "SRR13684289", - "min": "46", + "max": "56329", + "mean": "20608", + "metadataAccession": "SRR18189640", + "min": "113", "mmTag": false, - "n25": "18172", - "n50": "20670", - "n75": "23557", - "notes": "", + "n25": "17745", + "n50": "20203", + "n75": "24446", + "notes": "bc1020 barcoded adapter", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01258/raw_data/PacBio_HiFi_Swap_Fixed/m64076_200308_194406.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01934/raw_data/PacBio_HiFi/m64136_210725_054129.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.0", - "productionYear": "YR1", - "quartile25": "17537", - "quartile50": "19892", - "quartile75": "22696", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17361", + "quartile50": "19176", + "quartile75": "23178", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01258", + "sampleId": "HG01934", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2.0", - "shearMethod": "g-TUBE", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CLM", + "subpopulation": "PEL", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "29310691456", - "totalGbp": "29.31", - "totalReads": "1446864", + "totalBp": "26910655595", + "totalGbp": "26.91", + "totalReads": "1305820", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861233", + "accession": "SAMN26237498", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861233", - "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", + "biosampleAccession": "SAMN26237498", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "CLM16", - "filename": "m64076_200310_015720.ccs.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL013", + "filename": "m64136_210726_163800.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01258.HiFiEx_f1", + "libraryId": "HG01934_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50256", - "mean": "20164", - "metadataAccession": "SRR13684289", - "min": "46", + "max": "56046", + "mean": "20623", + "metadataAccession": "SRR18189640", + "min": "182", "mmTag": false, - "n25": "18072", - "n50": "20520", - "n75": "23388", - "notes": "", + "n25": "17759", + "n50": "20243", + "n75": "24461", + "notes": "bc1020 barcoded adapter", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01258/raw_data/PacBio_HiFi_Swap_Fixed/m64076_200310_015720.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01934/raw_data/PacBio_HiFi/m64136_210726_163800.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.0", - "productionYear": "YR1", - "quartile25": "17467", - "quartile50": "19772", - "quartile75": "22536", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17375", + "quartile50": "19204", + "quartile75": "23200", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01258", + "sampleId": "HG01934", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2.0", - "shearMethod": "g-TUBE", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CLM", + "subpopulation": "PEL", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26506907662", - "totalGbp": "26.51", - "totalReads": "1314550", + "totalBp": "21882737224", + "totalGbp": "21.88", + "totalReads": "1061051", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861233", + "accession": "SAMN26237498", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861233", - "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", + "biosampleAccession": "SAMN26237498", + "ccsAlgorithm": "10.1.0.115913", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "CLM16", - "filename": "m64076_200311_082315.ccs.bam", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL013", + "filename": "m64136_210728_163638.hifi_reads.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01258.HiFiEx_f1", + "libraryId": "HG01934_lib1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50257", - "mean": "20032", - "metadataAccession": "SRR13684289", - "min": "45", + "max": "56522", + "mean": "20574", + "metadataAccession": "SRR18189640", + "min": "98", "mmTag": false, - "n25": "17945", - "n50": "20385", - "n75": "23250", - "notes": "", + "n25": "17728", + "n50": "20148", + "n75": "24392", + "notes": "bc1020 barcoded adapter", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01258/raw_data/PacBio_HiFi_Swap_Fixed/m64076_200311_082315.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01934/raw_data/PacBio_HiFi/m64136_210728_163638.hifi_reads.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.0", - "productionYear": "YR1", - "quartile25": "17344", - "quartile50": "19636", - "quartile75": "22397", + "polymeraseVersion": "P2", + "productionYear": "YR2", + "quartile25": "17350", + "quartile50": "19145", + "quartile75": "23129", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01258", + "sampleId": "HG01934", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2.0", - "shearMethod": "g-TUBE", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CLM", + "subpopulation": "PEL", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "29289007356", - "totalGbp": "29.29", - "totalReads": "1462110", + "totalBp": "27145864716", + "totalGbp": "27.15", + "totalReads": "1319382", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861240", + "accession": "SAMN33758796", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861240", - "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", + "biosampleAccession": "SAMN33758796", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "GB21", - "filename": "m64076_200313_161705.ccs.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": "Y016", + "filename": "NA18522.m54329U_220604_002013.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02572.HiFiEx_f2", + "libraryId": "NA18522.HFSS_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50071", - "mean": "19789", - "metadataAccession": "SRR13684286", - "min": "47", + "max": "62626", + "mean": "20463", + "metadataAccession": "SRR26545316", + "min": "171", "mmTag": false, - "n25": "18097", - "n50": "19841", - "n75": "22009", + "n25": "17726", + "n50": "20761", + "n75": "24609", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02572/raw_data/PacBio_HiFi/m64076_200313_161705.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18522.m54329U_220604_002013.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.0", - "productionYear": "YR1", - "quartile25": "17766", - "quartile50": "19421", - "quartile75": "21472", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "16975", + "quartile50": "19663", + "quartile75": "23257", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02572", + "sampleId": "NA18522", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2.0", - "shearMethod": "g-TUBE", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", + "subpopulation": "YRI", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26950290432", - "totalGbp": "26.95", - "totalReads": "1361865", + "totalBp": "47365852194", + "totalGbp": "47.37", + "totalReads": "2314654", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861240", + "accession": "SAMN33758796", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861240", - "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", + "biosampleAccession": "SAMN33758796", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "GB21", - "filename": "m64076_200317_041201.ccs.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": "Y016", + "filename": "NA18522.m54329U_220605_194957.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02572.HiFiEx_f2", + "libraryId": "NA18522.HFSS_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49941", - "mean": "19929", - "metadataAccession": "SRR13684286", - "min": "46", + "max": "63653", + "mean": "20418", + "metadataAccession": "SRR26545316", + "min": "258", "mmTag": false, - "n25": "18177", - "n50": "19971", - "n75": "22212", + "n25": "17687", + "n50": "20710", + "n75": "24542", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02572/raw_data/PacBio_HiFi/m64076_200317_041201.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18522.m54329U_220605_194957.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.0", - "productionYear": "YR1", - "quartile25": "17833", - "quartile50": "19531", - "quartile75": "21639", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "16944", + "quartile50": "19621", + "quartile75": "23198", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02572", + "sampleId": "NA18522", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2.0", - "shearMethod": "g-TUBE", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", + "subpopulation": "YRI", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "21411661479", - "totalGbp": "21.41", - "totalReads": "1074359", + "totalBp": "48379025716", + "totalGbp": "48.38", + "totalReads": "2369316", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861240", + "accession": "SAMN33758796", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861240", - "ccsAlgorithm": "ccs 4.0.0 (commit SL-release-8.0.0)", + "biosampleAccession": "SAMN33758796", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "GB21", - "filename": "m64076_200318_103811.ccs.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": "Y016", + "filename": "NA18522.m54329U_220607_194753.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02572.HiFiEx_f2", + "libraryId": "NA18522.HFSS_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49965", - "mean": "19965", - "metadataAccession": "SRR13684286", - "min": "45", + "max": "68821", + "mean": "20245", + "metadataAccession": "SRR26545316", + "min": "151", "mmTag": false, - "n25": "18223", - "n50": "20011", - "n75": "22232", + "n25": "17515", + "n50": "20503", + "n75": "24336", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02572/raw_data/PacBio_HiFi/m64076_200318_103811.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18522.m54329U_220607_194753.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.0", - "productionYear": "YR1", - "quartile25": "17882", - "quartile50": "19577", - "quartile75": "21677", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "16787", + "quartile50": "19423", + "quartile75": "22963", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02572", + "sampleId": "NA18522", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2.0", - "shearMethod": "g-TUBE", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", + "subpopulation": "YRI", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "21934534323", - "totalGbp": "21.93", - "totalReads": "1098595", + "totalBp": "52778863034", + "totalGbp": "52.78", + "totalReads": "2606914", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": null, + "accession": "SAMN33621960", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861242", - "ccsAlgorithm": "ccs 4.2.0 (commit v4.2.0-1-g450908e4)", + "biosampleAccession": "SAMN33621960", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", "familyId": null, - "filename": "m64076_201013_225902.ccs.bam", + "filename": "NA18612.m64043_220708_205637.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "NA24385_HG002.f4.f3", + "libraryId": "NA18612_lib1_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57023", - "mean": "20390", - "metadataAccession": "SRR13684284", - "min": "46", + "max": "69844", + "mean": "19241", + "metadataAccession": "SRR26545315", + "min": "216", "mmTag": false, - "n25": "18875", - "n50": "20054", - "n75": "21609", + "n25": "17142", + "n50": "19004", + "n75": "21971", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC_PLUS/HG002/raw_data/PacBio_HiFi/UW_supplement/m64076_201013_225902.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18612.m64043_220708_205637.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.0", - "productionYear": null, - "quartile25": "18712", - "quartile50": "19835", - "quartile75": "21255", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "16790", + "quartile50": "18449", + "quartile75": "20987", "readN50": "N/A", "result": "N/A", - "sampleId": "HG002", + "sampleId": "NA18612", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2.0", - "shearMethod": "g-TUBE", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": null, - "superpopulation": null, + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "17328670239", - "totalGbp": "17.33", - "totalReads": "849857", + "totalBp": "40178243656", + "totalGbp": "40.18", + "totalReads": "2088141", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": null, + "accession": "SAMN33621960", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861242", - "ccsAlgorithm": "ccs 4.2.0 (commit v4.2.0-1-g450908e4)", + "biosampleAccession": "SAMN33621960", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", "familyId": null, - "filename": "m64076_201016_191536.ccs.bam", + "filename": "NA18612.m64043_220710_175250.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "NA24385_HG002.f4.f3", + "libraryId": "NA18612_lib1_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "59678", - "mean": "21020", - "metadataAccession": "SRR13684284", - "min": "46", + "max": "62025", + "mean": "19289", + "metadataAccession": "SRR26545315", + "min": "94", "mmTag": false, - "n25": "19081", - "n50": "20444", - "n75": "22636", + "n25": "17177", + "n50": "19055", + "n75": "22042", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC_PLUS/HG002/raw_data/PacBio_HiFi/UW_supplement/m64076_201016_191536.ccs.bam", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18612.m64043_220710_175250.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.0", - "productionYear": null, - "quartile25": "18875", - "quartile50": "20128", - "quartile75": "21934", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "16821", + "quartile50": "18492", + "quartile75": "21053", "readN50": "N/A", "result": "N/A", - "sampleId": "HG002", + "sampleId": "NA18612", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2.0", - "shearMethod": "g-TUBE", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": null, - "superpopulation": null, + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "19201161177", - "totalGbp": "19.2", - "totalReads": "913451", + "totalBp": "43921276073", + "totalGbp": "43.92", + "totalReads": "2276997", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267386", + "accession": "SAMN33621960", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267386", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33621960", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 17kb fractionated gDNA", - "familyId": "BD37", - "filename": "m64076_210514_222349.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA18612.m64043_220712_145025.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03927a.HFSS", + "libraryId": "NA18612_lib1_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "47540", - "mean": "15552", - "metadataAccession": "SRR18158598", - "min": "86", + "max": "55792", + "mean": "19144", + "metadataAccession": "SRR26545315", + "min": "61", "mmTag": false, - "n25": "13538", - "n50": "15842", - "n75": "18770", + "n25": "17086", + "n50": "18910", + "n75": "21802", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/PacBio_HiFi/m64076_210514_222349.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18612.m64043_220712_145025.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "12914", - "quartile50": "14994", - "quartile75": "17697", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "16740", + "quartile50": "18371", + "quartile75": "20844", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03927", + "sampleId": "NA18612", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "25979557175", - "totalGbp": "25.98", - "totalReads": "1670468", + "totalBp": "42026657293", + "totalGbp": "42.03", + "totalReads": "2195233", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267378", + "accession": "SAMN33758797", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267378", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33758797", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "PR04", - "filename": "m64076_210516_091844.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA18747.m54329U_220823_191353.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00642.HFSS", + "libraryId": "PG18747_1.HFSS_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49254", - "mean": "19195", - "metadataAccession": "SRR18158610", - "min": "86", + "max": "79549", + "mean": "20088", + "metadataAccession": "SRR26545314", + "min": "33", "mmTag": false, - "n25": "16660", - "n50": "19398", - "n75": "22815", + "n25": "17784", + "n50": "20210", + "n75": "23363", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/PacBio_HiFi/m64076_210516_091844.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18747.m54329U_220823_191353.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "16014", - "quartile50": "18446", - "quartile75": "21636", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "17275", + "quartile50": "19456", + "quartile75": "22407", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00642", + "sampleId": "NA18747", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "27532337755", - "totalGbp": "27.53", - "totalReads": "1434335", + "totalBp": "52249233160", + "totalGbp": "52.25", + "totalReads": "2600981", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267386", + "accession": "SAMN33758797", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267386", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33758797", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 17kb fractionated gDNA", - "familyId": "BD37", - "filename": "m64076_210517_210115.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA18747.m64076_220826_143529.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03927a.HFSS", + "libraryId": "PG18747_2.HFSS_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50275", - "mean": "15524", - "metadataAccession": "SRR18158598", - "min": "85", + "max": "94866", + "mean": "21184", + "metadataAccession": "SRR26545314", + "min": "79", "mmTag": false, - "n25": "13486", - "n50": "15821", - "n75": "18797", + "n25": "18579", + "n50": "21490", + "n75": "24994", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/PacBio_HiFi/m64076_210517_210115.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18747.m64076_220826_143529.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "12851", - "quartile50": "14951", - "quartile75": "17697", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "17908", + "quartile50": "20530", + "quartile75": "23895", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03927", + "sampleId": "NA18747", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31012862864", - "totalGbp": "31.01", - "totalReads": "1997659", + "totalBp": "36384789825", + "totalGbp": "36.38", + "totalReads": "1717517", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267386", + "accession": "SAMN33758797", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267386", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33758797", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 17kb fractionated gDNA", - "familyId": "BD37", - "filename": "m64076_210519_075634.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA18747.m64076_220828_113336.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03927a.HFSS", + "libraryId": "PG18747_2.HFSS_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "47341", - "mean": "15444", - "metadataAccession": "SRR18158598", - "min": "85", + "max": "100381", + "mean": "20895", + "metadataAccession": "SRR26545314", + "min": "310", "mmTag": false, - "n25": "13463", - "n50": "15721", - "n75": "18586", + "n25": "18304", + "n50": "21151", + "n75": "24660", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/PacBio_HiFi/m64076_210519_075634.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18747.m64076_220828_113336.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "12855", - "quartile50": "14899", - "quartile75": "17543", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "17663", + "quartile50": "20204", + "quartile75": "23537", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03927", + "sampleId": "NA18747", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26139712779", - "totalGbp": "26.14", - "totalReads": "1692462", + "totalBp": "38267150734", + "totalGbp": "38.27", + "totalReads": "1831328", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267378", + "accession": "SAMN33758797", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267378", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33758797", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "PR04", - "filename": "m64076_210520_213355.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA18747.m64076_221001_041132.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00642.HFSS", + "libraryId": "PG18747_1.HFSS_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "55280", - "mean": "19929", - "metadataAccession": "SRR18158610", - "min": "73", + "max": "56150", + "mean": "20608", + "metadataAccession": "SRR26545314", + "min": "261", "mmTag": false, - "n25": "17342", - "n50": "20270", - "n75": "23768", + "n25": "18240", + "n50": "20845", + "n75": "24034", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/PacBio_HiFi/m64076_210520_213355.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18747.m64076_221001_041132.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "16590", - "quartile50": "19252", - "quartile75": "22571", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "17679", + "quartile50": "20046", + "quartile75": "23100", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00642", + "sampleId": "NA18747", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31582049533", - "totalGbp": "31.58", - "totalReads": "1584710", + "totalBp": "11045353698", + "totalGbp": "11.05", + "totalReads": "535967", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267378", + "accession": "SAMN33621961", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267378", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33621961", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "PR04", - "filename": "m64076_210522_082905.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA18971.m64043_220701_181144.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00642.HFSS", + "libraryId": "NA18971_lib1_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51866", - "mean": "19954", - "metadataAccession": "SRR18158610", - "min": "86", + "max": "67714", + "mean": "20775", + "metadataAccession": "SRR26545312", + "min": "71", "mmTag": false, - "n25": "17338", - "n50": "20311", - "n75": "23867", + "n25": "18626", + "n50": "20996", + "n75": "23871", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/PacBio_HiFi/m64076_210522_082905.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18971.m64043_220701_181144.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "16572", - "quartile50": "19271", - "quartile75": "22642", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "18056", + "quartile50": "20311", + "quartile75": "23018", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00642", + "sampleId": "NA18971", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31397468252", - "totalGbp": "31.4", - "totalReads": "1573487", + "totalBp": "39097735609", + "totalGbp": "39.1", + "totalReads": "1881896", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267382", + "accession": "SAMN33621961", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267382", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33621961", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "VN080", - "filename": "m64076_210525_000003.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA18971.m64043_220703_150718.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02132_f345", + "libraryId": "NA18971_lib1_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "54229", - "mean": "18891", - "metadataAccession": "SRR18158596", - "min": "85", + "max": "66060", + "mean": "20730", + "metadataAccession": "SRR26545312", + "min": "268", "mmTag": false, - "n25": "16577", - "n50": "19409", - "n75": "21507", + "n25": "18584", + "n50": "20950", + "n75": "23829", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/PacBio_HiFi/m64076_210525_000003.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18971.m64043_220703_150718.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "16238", - "quartile50": "18343", - "quartile75": "21069", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "18009", + "quartile50": "20266", + "quartile75": "22971", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02132", + "sampleId": "NA18971", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", + "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "KHV", + "subpopulation": "JPT", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "18987492433", - "totalGbp": "18.99", - "totalReads": "1005090", + "totalBp": "37513233912", + "totalGbp": "37.51", + "totalReads": "1809594", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267379", + "accession": "SAMN33621961", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267379", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33621961", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 19kb fractionated gDNA", - "familyId": "CLM27", - "filename": "m64076_210526_105450.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA18971.m64043_220705_120954.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01346_f345", + "libraryId": "NA18971_lib1_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "40848", - "mean": "18242", - "metadataAccession": "SRR18158604", - "min": "85", + "max": "68021", + "mean": "20840", + "metadataAccession": "SRR26545312", + "min": "249", "mmTag": false, - "n25": "16260", - "n50": "18707", - "n75": "20196", + "n25": "18670", + "n50": "21059", + "n75": "23954", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/PacBio_HiFi/m64076_210526_105450.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18971.m64043_220705_120954.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "15827", - "quartile50": "18353", - "quartile75": "19870", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "18099", + "quartile50": "20367", + "quartile75": "23095", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01346", + "sampleId": "NA18971", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", + "shearMethod": "Megaruptor 1", "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "19327631225", - "totalGbp": "19.33", - "totalReads": "1059488", + "totalBp": "38145066508", + "totalGbp": "38.15", + "totalReads": "1830361", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267383", + "accession": "SAMN33621961", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267383", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33621961", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 19kb fractionated gDNA", - "familyId": "GB38", - "filename": "m64076_210527_231639.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA18971.m64043_220728_173215.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02647.HFSS", + "libraryId": "NA18971_lib1_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49665", - "mean": "16673", - "metadataAccession": "SRR18158597", - "min": "625", + "max": "41507", + "mean": "16074", + "metadataAccession": "SRR26545312", + "min": "852", "mmTag": false, - "n25": "14482", - "n50": "17259", - "n75": "20560", + "n25": "14930", + "n50": "16162", + "n75": "17526", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/PacBio_HiFi/m64076_210527_231639.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18971.m64043_220728_173215.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "13572", - "quartile50": "16159", - "quartile75": "19281", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "14717", + "quartile50": "15930", + "quartile75": "17261", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02647", + "sampleId": "NA18971", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "25947810331", - "totalGbp": "25.95", - "totalReads": "1556245", + "totalBp": "13417983575", + "totalGbp": "13.42", + "totalReads": "834762", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267392", + "accession": "SAMN33758798", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267392", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33758798", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "VN081", - "filename": "m64076_210529_081414.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA18983.m64457e_220902_165459.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02135.HFSS", + "libraryId": "PG18983.HFSS2_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "52020", - "mean": "17020", - "metadataAccession": "SRR18158606", - "min": "488", + "max": "76258", + "mean": "21146", + "metadataAccession": "SRR26545311", + "min": "34", "mmTag": false, - "n25": "14802", - "n50": "17468", - "n75": "20662", + "n25": "18627", + "n50": "21417", + "n75": "24804", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m64076_210529_081414.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18983.m64457e_220902_165459.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "14014", - "quartile50": "16473", - "quartile75": "19483", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "18005", + "quartile50": "20525", + "quartile75": "23772", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02135", + "sampleId": "NA18983", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "KHV", + "subpopulation": "JPT", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "13469495739", - "totalGbp": "13.47", - "totalReads": "791363", + "totalBp": "51186272600", + "totalGbp": "51.19", + "totalReads": "2420594", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267383", + "accession": "SAMN33758798", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267383", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33758798", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 19kb fractionated gDNA", - "familyId": "GB38", - "filename": "m64076_210530_192034.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA18983.m64457e_220904_135104.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02647.HFSS", + "libraryId": "PG18983.HFSS2_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51342", - "mean": "16998", - "metadataAccession": "SRR18158597", - "min": "86", + "max": "81056", + "mean": "21361", + "metadataAccession": "SRR26545311", + "min": "306", "mmTag": false, - "n25": "14805", - "n50": "17612", - "n75": "20903", + "n25": "18810", + "n50": "21684", + "n75": "25111", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/PacBio_HiFi/m64076_210530_192034.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18983.m64457e_220904_135104.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "13887", - "quartile50": "16523", - "quartile75": "19663", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "18152", + "quartile50": "20764", + "quartile75": "24069", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02647", + "sampleId": "NA18983", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31818795589", - "totalGbp": "31.82", - "totalReads": "1871860", + "totalBp": "49331386607", + "totalGbp": "49.33", + "totalReads": "2309378", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267383", + "accession": "SAMN33758798", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267383", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33758798", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 19kb fractionated gDNA", - "familyId": "GB38", - "filename": "m64076_210601_061523.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA18983.m64457e_220906_104717.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02647.HFSS", + "libraryId": "PG18983.HFSS2_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "55771", - "mean": "17141", - "metadataAccession": "SRR18158597", - "min": "75", + "max": "67640", + "mean": "20919", + "metadataAccession": "SRR26545311", + "min": "93", "mmTag": false, - "n25": "14932", - "n50": "17777", - "n75": "21104", + "n25": "18402", + "n50": "21142", + "n75": "24541", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/PacBio_HiFi/m64076_210601_061523.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18983.m64457e_220906_104717.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "14001", - "quartile50": "16668", - "quartile75": "19853", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "17801", + "quartile50": "20258", + "quartile75": "23491", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02647", + "sampleId": "NA18983", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "32563750856", - "totalGbp": "32.56", - "totalReads": "1899728", + "totalBp": "50447860405", + "totalGbp": "50.45", + "totalReads": "2411520", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267392", + "accession": "SAMN33758799", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267392", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33758799", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "VN081", - "filename": "m64076_210602_215048.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA19043.m54329U_220916_162216.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02135.HFSS", + "libraryId": "PG19043.HFSS_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49107", - "mean": "17440", - "metadataAccession": "SRR18158606", - "min": "90", + "max": "69336", + "mean": "21310", + "metadataAccession": "SRR26545310", + "min": "87", "mmTag": false, - "n25": "15234", - "n50": "17968", - "n75": "21144", + "n25": "18574", + "n50": "21618", + "n75": "25465", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m64076_210602_215048.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA19043.m54329U_220916_162216.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "14407", - "quartile50": "16959", - "quartile75": "20003", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "17826", + "quartile50": "20542", + "quartile75": "24138", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02135", + "sampleId": "NA19043", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": "LWK", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "16375648923", - "totalGbp": "16.38", - "totalReads": "938959", + "totalBp": "50925680464", + "totalGbp": "50.93", + "totalReads": "2389655", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267380", + "accession": "SAMN33758799", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267380", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33758799", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 19kb fractionated gDNA", - "familyId": "VN065", - "filename": "m64076_210604_225751.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA19043.m54329U_220918_114340.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02071.HFSS", + "libraryId": "PG19043.HFSS_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "54155", - "mean": "18948", - "metadataAccession": "SRR18158592", - "min": "85", + "max": "69418", + "mean": "21029", + "metadataAccession": "SRR26545310", + "min": "91", "mmTag": false, - "n25": "16603", - "n50": "19088", - "n75": "22195", + "n25": "18330", + "n50": "21301", + "n75": "25103", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/PacBio_HiFi/m64076_210604_225751.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA19043.m54329U_220918_114340.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "16068", - "quartile50": "18290", - "quartile75": "21215", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "17607", + "quartile50": "20246", + "quartile75": "23775", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02071", + "sampleId": "NA19043", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": "LWK", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "33629205391", - "totalGbp": "33.63", - "totalReads": "1774809", + "totalBp": "48707102911", + "totalGbp": "48.71", + "totalReads": "2316125", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267387", + "accession": "SAMN33758799", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267387", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33758799", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 18kb fractionated gDNA", - "familyId": "BD42", - "filename": "m64076_210606_095247.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA19043.m54329U_220920_065703.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03942.HFSS", + "libraryId": "PG19043.HFSS_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "53969", - "mean": "18726", - "metadataAccession": "SRR18158601", - "min": "85", + "max": "87309", + "mean": "21115", + "metadataAccession": "SRR26545310", + "min": "210", "mmTag": false, - "n25": "16508", - "n50": "18868", - "n75": "21799", + "n25": "18394", + "n50": "21404", + "n75": "25224", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/PacBio_HiFi/m64076_210606_095247.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA19043.m54329U_220920_065703.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "16013", - "quartile50": "18138", - "quartile75": "20920", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "17664", + "quartile50": "20329", + "quartile75": "23894", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03942", + "sampleId": "NA19043", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "LWK", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "30909041518", - "totalGbp": "30.91", - "totalReads": "1650567", + "totalBp": "50490598694", + "totalGbp": "50.49", + "totalReads": "2391163", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267380", + "accession": "SAMN33758800", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267380", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33758800", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 19kb fractionated gDNA", - "familyId": "VN065", - "filename": "m64076_210607_215041.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA20752.m64457e_220827_152226.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02071.HFSS", + "libraryId": "PG20752.HFSS_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "52883", - "mean": "18716", - "metadataAccession": "SRR18158592", - "min": "85", + "max": "69060", + "mean": "21285", + "metadataAccession": "SRR26545309", + "min": "118", "mmTag": false, - "n25": "16403", - "n50": "18798", - "n75": "21865", + "n25": "18658", + "n50": "21535", + "n75": "25099", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/PacBio_HiFi/m64076_210607_215041.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20752.m64457e_220827_152226.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "15902", - "quartile50": "18032", - "quartile75": "20896", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "18014", + "quartile50": "20585", + "quartile75": "23973", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02071", + "sampleId": "NA20752", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": "TSI", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "33308306970", - "totalGbp": "33.31", - "totalReads": "1779605", + "totalBp": "56497537713", + "totalGbp": "56.5", + "totalReads": "2654227", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267380", + "accession": "SAMN33758800", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267380", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33758800", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 19kb fractionated gDNA", - "familyId": "VN065", - "filename": "m64076_210609_084637.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA20752.m64457e_220829_104034.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02071.HFSS", + "libraryId": "PG20752.HFSS_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57671", - "mean": "19220", - "metadataAccession": "SRR18158592", - "min": "86", + "max": "65854", + "mean": "21088", + "metadataAccession": "SRR26545309", + "min": "217", "mmTag": false, - "n25": "16831", - "n50": "19429", - "n75": "22604", + "n25": "18481", + "n50": "21288", + "n75": "24835", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/PacBio_HiFi/m64076_210609_084637.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20752.m64457e_220829_104034.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "16248", - "quartile50": "18590", - "quartile75": "21605", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "17863", + "quartile50": "20364", + "quartile75": "23707", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02071", + "sampleId": "NA20752", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": "TSI", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "30150326606", - "totalGbp": "30.15", - "totalReads": "1568624", + "totalBp": "55420791871", + "totalGbp": "55.42", + "totalReads": "2628030", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267385", + "accession": "SAMN33758800", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267385", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33758800", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 18kb fractionated gDNA", - "familyId": "ST016", - "filename": "m64076_210610_224207.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA20752.m64457e_220831_195843.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03688.HFSS", + "libraryId": "PG20752.HFSS_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "49522", - "mean": "17945", - "metadataAccession": "SRR18158607", - "min": "85", + "max": "62925", + "mean": "20984", + "metadataAccession": "SRR26545309", + "min": "93", "mmTag": false, - "n25": "15910", - "n50": "18004", - "n75": "20653", + "n25": "18425", + "n50": "21166", + "n75": "24637", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03688/raw_data/PacBio_HiFi/m64076_210610_224207.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20752.m64457e_220831_195843.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "15513", - "quartile50": "17393", - "quartile75": "19908", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "17824", + "quartile50": "20273", + "quartile75": "23534", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03688", + "sampleId": "NA20752", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "STU", - "superpopulation": "SAS", + "subpopulation": "TSI", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34597694779", - "totalGbp": "34.6", - "totalReads": "1927878", + "totalBp": "50576730141", + "totalGbp": "50.58", + "totalReads": "2410165", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267387", + "accession": "SAMN33621962", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267387", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33621962", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 18kb fractionated gDNA", - "familyId": "BD42", - "filename": "m64076_210612_093800.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA20805.m64136_220726_203708.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03942.HFSS", + "libraryId": "NA20805_lib1_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57492", - "mean": "19228", - "metadataAccession": "SRR18158601", - "min": "85", + "max": "66651", + "mean": "20668", + "metadataAccession": "SRR26545308", + "min": "203", "mmTag": false, - "n25": "16954", - "n50": "19497", - "n75": "22506", + "n25": "19193", + "n50": "20760", + "n75": "22574", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/PacBio_HiFi/m64076_210612_093800.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20805.m64136_220726_203708.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "16382", - "quartile50": "18701", - "quartile75": "21606", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "18927", + "quartile50": "20459", + "quartile75": "22216", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03942", + "sampleId": "NA20805", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "TSI", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26760152025", - "totalGbp": "26.76", - "totalReads": "1391705", + "totalBp": "43466891933", + "totalGbp": "43.47", + "totalReads": "2103074", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267389", + "accession": "SAMN33621962", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267389", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33621962", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", - "familyId": "ST203", - "filename": "m64076_210613_183806.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA20805.m64136_220728_160902.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG04199.HFSS", + "libraryId": "NA20805_lib1_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "60720", - "mean": "20095", - "metadataAccession": "SRR18158602", - "min": "86", + "max": "69125", + "mean": "20696", + "metadataAccession": "SRR26545308", + "min": "41", "mmTag": false, - "n25": "17491", - "n50": "20902", - "n75": "24822", + "n25": "19217", + "n50": "20787", + "n75": "22600", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/PacBio_HiFi/m64076_210613_183806.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20805.m64136_220728_160902.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "16326", - "quartile50": "19542", - "quartile75": "23310", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "18948", + "quartile50": "20486", + "quartile75": "22243", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04199", + "sampleId": "NA20805", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "STU", - "superpopulation": "SAS", + "subpopulation": "TSI", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31564451397", - "totalGbp": "31.56", - "totalReads": "1570687", + "totalBp": "45913998332", + "totalGbp": "45.91", + "totalReads": "2218413", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267387", + "accession": "SAMN33621962", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267387", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33621962", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 18kb fractionated gDNA", - "familyId": "BD42", - "filename": "m64076_210615_181342.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA20805.m64136_220730_113921.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03942.HFSS", + "libraryId": "NA20805_lib1_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "52388", - "mean": "18795", - "metadataAccession": "SRR18158601", - "min": "85", + "max": "73183", + "mean": "20694", + "metadataAccession": "SRR26545308", + "min": "61", "mmTag": false, - "n25": "16589", - "n50": "18952", - "n75": "21872", + "n25": "19214", + "n50": "20782", + "n75": "22595", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/PacBio_HiFi/m64076_210615_181342.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20805.m64136_220730_113921.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "16086", - "quartile50": "18223", - "quartile75": "21004", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "18948", + "quartile50": "20482", + "quartile75": "22238", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03942", + "sampleId": "NA20805", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "TSI", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26769890045", - "totalGbp": "26.77", - "totalReads": "1424240", + "totalBp": "45800547928", + "totalGbp": "45.8", + "totalReads": "2213142", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267391", + "accession": "SAMN33758801", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267391", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33758801", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 19kb fractionated gDNA", - "familyId": "ST232", - "filename": "m64076_210617_050849.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA20905.m64076_220914_214248.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG04228.HFSS", + "libraryId": "PG20905.HFSS_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "55387", - "mean": "19223", - "metadataAccession": "SRR18158590", - "min": "85", + "max": "70280", + "mean": "20480", + "metadataAccession": "SRR26545307", + "min": "103", "mmTag": false, - "n25": "16794", - "n50": "19404", - "n75": "22637", + "n25": "17882", + "n50": "20905", + "n75": "24496", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/PacBio_HiFi/m64076_210617_050849.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20905.m64076_220914_214248.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "16203", - "quartile50": "18541", - "quartile75": "21582", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "17106", + "quartile50": "19854", + "quartile75": "23313", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04228", + "sampleId": "NA20905", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "STU", + "subpopulation": "GIH", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "32095148856", - "totalGbp": "32.1", - "totalReads": "1669607", + "totalBp": "51048888164", + "totalGbp": "51.05", + "totalReads": "2492570", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267391", + "accession": "SAMN33758801", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267391", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33758801", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 19kb fractionated gDNA", - "familyId": "ST232", - "filename": "m64076_210618_160639.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA20905.m64076_220916_183810.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG04228.HFSS", + "libraryId": "PG20905.HFSS_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "54593", - "mean": "19192", - "metadataAccession": "SRR18158590", - "min": "86", + "max": "65430", + "mean": "19788", + "metadataAccession": "SRR26545307", + "min": "31", "mmTag": false, - "n25": "16786", - "n50": "19365", - "n75": "22577", + "n25": "17218", + "n50": "20086", + "n75": "23663", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/PacBio_HiFi/m64076_210618_160639.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20905.m64076_220916_183810.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "16208", - "quartile50": "18517", - "quartile75": "21532", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "16519", + "quartile50": "19074", + "quartile75": "22434", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04228", + "sampleId": "NA20905", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "STU", + "subpopulation": "GIH", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26359885180", - "totalGbp": "26.36", - "totalReads": "1373442", + "totalBp": "50138285736", + "totalGbp": "50.14", + "totalReads": "2533646", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267391", + "accession": "SAMN33758801", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267391", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN33758801", + "ccsAlgorithm": "", "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 19kb fractionated gDNA", - "familyId": "ST232", - "filename": "m64076_210620_030428.hifi_reads.bam", + "deepConsensusVersion": "1.2", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "familyId": null, + "filename": "NA20905.m64076_220918_143117.dc.q20.fastq.gz", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", "instrumentModel": "PacBio Sequel II", - "libraryId": "HG04228.HFSS", + "libraryId": "PG20905.HFSS_dc", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57038", - "mean": "19812", - "metadataAccession": "SRR18158590", - "min": "86", + "max": "69147", + "mean": "19826", + "metadataAccession": "SRR26545307", + "min": "76", "mmTag": false, - "n25": "17339", - "n50": "20120", - "n75": "23410", + "n25": "17251", + "n50": "20134", + "n75": "23719", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/PacBio_HiFi/m64076_210620_030428.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20905.m64076_220918_143117.dc.q20.fastq.gz", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "16665", - "quartile50": "19203", - "quartile75": "22353", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "16544", + "quartile50": "19114", + "quartile75": "22486", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04228", + "sampleId": "NA20905", "seqKit": "N/A", "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "STU", + "subpopulation": "GIH", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "30579890559", - "totalGbp": "30.58", - "totalReads": "1543446", + "totalBp": "50753646069", + "totalGbp": "50.75", + "totalReads": "2559946", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267379", + "accession": "SAMN33758780", "assembly": "N/A", - "basecaller": "N/A", - "basecallerModel": "N/A", - "basecallerVersion": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267379", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", - "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "CLM27", - "filename": "m64076_210621_234241.hifi_reads.bam", - "filetype": "N/A", - "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01346.HFSS", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "19.44", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH045", + "filename": "02_08_22_R941_HG00558_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.07", + "fourHundredkbPlus": "0.18", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "02_08_22_R941_HG00558_1", "libraryLayout": "single", - "librarySelection": "size fractionation", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "54400", - "mean": "19491", - "metadataAccession": "SRR18158609", - "min": "85", - "mmTag": false, - "n25": "17106", - "n50": "19771", - "n75": "22965", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "100937", + "n75": "N/A", "notes": "", "ntsmResult": "N/A", - "ntsmScore": "N/A", - "oneHundredkbPlus": "N/A", - "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/PacBio_HiFi/m64076_210621_234241.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "16500", - "quartile50": "18914", - "quartile75": "21989", + "ntsmScore": "0.312169", + "oneHundredkbPlus": "9.82", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/nanopore/guppy_6/02_08_22_R941_HG00558_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", - "result": "N/A", - "sampleId": "HG01346", - "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", - "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", - "threeHundredkbPlus": "N/A", + "result": "Similar", + "sampleId": "HG00558", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.63", "title": "N/A", - "totalBp": "35233616251", - "totalGbp": "35.23", - "totalReads": "1807614", - "twoHundredkbPlus": "N/A", - "whales": "N/A" + "totalBp": "N/A", + "totalGbp": "64.14", + "totalReads": "N/A", + "twoHundredkbPlus": "2.77", + "whales": "10" }, { "Gb": "N/A", - "accession": "SAMN26267388", + "accession": "SAMN33758780", "assembly": "N/A", - "basecaller": "N/A", - "basecallerModel": "N/A", - "basecallerVersion": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267388", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", - "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "ST111", - "filename": "m64076_210623_104349.hifi_reads.bam", - "filetype": "N/A", - "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG04115.HFSS", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "15.29", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH045", + "filename": "02_08_22_R941_HG00558_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.12", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "02_08_22_R941_HG00558_2", "libraryLayout": "single", - "librarySelection": "size fractionation", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "56102", - "mean": "20047", - "metadataAccession": "SRR18158600", - "min": "739", - "mmTag": false, - "n25": "17337", - "n50": "20717", - "n75": "24742", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "95821", + "n75": "N/A", "notes": "", "ntsmResult": "N/A", - "ntsmScore": "N/A", - "oneHundredkbPlus": "N/A", - "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/PacBio_HiFi/m64076_210623_104349.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "16228", - "quartile50": "19366", - "quartile75": "23149", + "ntsmScore": "0.352575", + "oneHundredkbPlus": "7.29", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/nanopore/guppy_6/02_08_22_R941_HG00558_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", - "result": "N/A", - "sampleId": "HG04115", - "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", - "study": "SRP305758", - "subpopulation": "STU", - "superpopulation": "SAS", - "threeHundredkbPlus": "N/A", + "result": "Similar", + "sampleId": "HG00558", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.43", "title": "N/A", - "totalBp": "32878572833", - "totalGbp": "32.88", - "totalReads": "1640056", - "twoHundredkbPlus": "N/A", - "whales": "N/A" + "totalBp": "N/A", + "totalGbp": "50.46", + "totalReads": "N/A", + "twoHundredkbPlus": "1.98", + "whales": "12" }, { "Gb": "N/A", - "accession": "SAMN26267388", + "accession": "SAMN33758780", "assembly": "N/A", - "basecaller": "N/A", - "basecallerModel": "N/A", - "basecallerVersion": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267388", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", - "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "ST111", - "filename": "m64076_210625_220013.hifi_reads.bam", - "filetype": "N/A", - "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG04115.HFSS", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "19.7", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH045", + "filename": "02_08_22_R941_HG00558_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.06", + "fourHundredkbPlus": "0.15", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "02_08_22_R941_HG00558_3", "libraryLayout": "single", - "librarySelection": "size fractionation", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "58397", - "mean": "21493", - "metadataAccession": "SRR18158600", - "min": "86", - "mmTag": false, - "n25": "18743", - "n50": "22340", - "n75": "26476", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "97461", + "n75": "N/A", "notes": "", "ntsmResult": "N/A", - "ntsmScore": "N/A", - "oneHundredkbPlus": "N/A", - "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/PacBio_HiFi/m64076_210625_220013.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "17533", - "quartile50": "20925", - "quartile75": "24919", + "ntsmScore": "0.374149", + "oneHundredkbPlus": "9.58", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/nanopore/guppy_6/02_08_22_R941_HG00558_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", - "result": "N/A", - "sampleId": "HG04115", - "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", - "study": "SRP305758", - "subpopulation": "STU", - "superpopulation": "SAS", - "threeHundredkbPlus": "N/A", + "result": "Similar", + "sampleId": "HG00558", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.54", "title": "N/A", - "totalBp": "30350204611", - "totalGbp": "30.35", - "totalReads": "1412094", - "twoHundredkbPlus": "N/A", - "whales": "N/A" + "totalBp": "N/A", + "totalGbp": "65", + "totalReads": "N/A", + "twoHundredkbPlus": "2.55", + "whales": "13" }, { "Gb": "N/A", - "accession": "SAMN26267388", + "accession": "SAMN37797098", "assembly": "N/A", - "basecaller": "N/A", - "basecallerModel": "N/A", - "basecallerVersion": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267388", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", - "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "ST111", - "filename": "m64076_210627_085544.hifi_reads.bam", - "filetype": "N/A", - "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG04115.HFSS", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "14.1", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "CLM14", + "filename": "02_08_22_R941_HG01252_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "02_08_22_R941_HG01252_1", "libraryLayout": "single", - "librarySelection": "size fractionation", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "61232", - "mean": "21316", - "metadataAccession": "SRR18158600", - "min": "108", - "mmTag": false, - "n25": "18543", - "n50": "22203", - "n75": "26421", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "80723", + "n75": "N/A", "notes": "", "ntsmResult": "N/A", - "ntsmScore": "N/A", - "oneHundredkbPlus": "N/A", - "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/PacBio_HiFi/m64076_210627_085544.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "17276", - "quartile50": "20735", - "quartile75": "24789", + "ntsmScore": "0.331159", + "oneHundredkbPlus": "5.27", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01252/raw_data/nanopore/guppy_6/02_08_22_R941_HG01252_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", - "result": "N/A", - "sampleId": "HG04115", - "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", - "study": "SRP305758", - "subpopulation": "STU", - "superpopulation": "SAS", - "threeHundredkbPlus": "N/A", + "result": "Similar", + "sampleId": "HG01252", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CLM", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.19", "title": "N/A", - "totalBp": "31539555547", - "totalGbp": "31.54", - "totalReads": "1479605", - "twoHundredkbPlus": "N/A", - "whales": "N/A" + "totalBp": "N/A", + "totalGbp": "46.52", + "totalReads": "N/A", + "twoHundredkbPlus": "0.89", + "whales": "0" }, { "Gb": "N/A", - "accession": "SAMN26267381", + "accession": "SAMN37797098", "assembly": "N/A", - "basecaller": "N/A", - "basecallerModel": "N/A", - "basecallerVersion": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267381", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", - "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "VN066", - "filename": "m64076_210630_101034.hifi_reads.bam", - "filetype": "N/A", - "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02074.HFSS", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "15.07", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "CLM14", + "filename": "02_08_22_R941_HG01252_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "02_08_22_R941_HG01252_2", "libraryLayout": "single", - "librarySelection": "size fractionation", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "48587", - "mean": "19886", - "metadataAccession": "SRR18158594", - "min": "84", - "mmTag": false, - "n25": "17601", - "n50": "19883", - "n75": "22893", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "80454", + "n75": "N/A", "notes": "", "ntsmResult": "N/A", - "ntsmScore": "N/A", - "oneHundredkbPlus": "N/A", - "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/PacBio_HiFi/m64076_210630_101034.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "17187", - "quartile50": "19213", - "quartile75": "22032", + "ntsmScore": "0.339225", + "oneHundredkbPlus": "5.63", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01252/raw_data/nanopore/guppy_6/02_08_22_R941_HG01252_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", - "result": "N/A", - "sampleId": "HG02074", - "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", - "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "N/A", + "result": "Similar", + "sampleId": "HG01252", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CLM", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.23", "title": "N/A", - "totalBp": "30996747067", - "totalGbp": "31", - "totalReads": "1558716", - "twoHundredkbPlus": "N/A", - "whales": "N/A" + "totalBp": "N/A", + "totalGbp": "49.73", + "totalReads": "N/A", + "twoHundredkbPlus": "1.02", + "whales": "4" }, { "Gb": "N/A", - "accession": "SAMN26267397", + "accession": "SAMN37797098", "assembly": "N/A", - "basecaller": "N/A", - "basecallerModel": "N/A", - "basecallerVersion": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267397", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", - "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD61", - "filename": "m64076_210701_234028.hifi_reads.bam", - "filetype": "N/A", - "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG04184.HFSS", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "18.36", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "CLM14", + "filename": "02_08_22_R941_HG01252_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "02_08_22_R941_HG01252_3", "libraryLayout": "single", - "librarySelection": "size fractionation", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "53036", - "mean": "19821", - "metadataAccession": "SRR18158589", - "min": "87", - "mmTag": false, - "n25": "17407", - "n50": "20137", - "n75": "23399", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "77916", + "n75": "N/A", "notes": "", "ntsmResult": "N/A", - "ntsmScore": "N/A", - "oneHundredkbPlus": "N/A", - "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m64076_210701_234028.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "16754", - "quartile50": "19248", - "quartile75": "22379", + "ntsmScore": "0.310941", + "oneHundredkbPlus": "6.55", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01252/raw_data/nanopore/guppy_6/02_08_22_R941_HG01252_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", - "result": "N/A", - "sampleId": "HG04184", - "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", - "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "N/A", + "result": "Similar", + "sampleId": "HG01252", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CLM", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.24", "title": "N/A", - "totalBp": "23721206724", - "totalGbp": "23.72", - "totalReads": "1196723", - "twoHundredkbPlus": "N/A", - "whales": "N/A" + "totalBp": "N/A", + "totalGbp": "60.58", + "totalReads": "N/A", + "twoHundredkbPlus": "1.11", + "whales": "3" }, { "Gb": "N/A", - "accession": "SAMN26267384", + "accession": "SAMN33621952", "assembly": "N/A", - "basecaller": "N/A", - "basecallerModel": "N/A", - "basecallerVersion": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267384", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", - "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "PK16", - "filename": "m64076_210703_103644.hifi_reads.bam", - "filetype": "N/A", - "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02683.HFSS", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.45", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BB22", + "filename": "02_08_22_R941_HG02258_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.12", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "02_08_22_R941_HG02258_1", "libraryLayout": "single", - "librarySelection": "size fractionation", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "56433", - "mean": "18648", - "metadataAccession": "SRR18158608", - "min": "85", - "mmTag": false, - "n25": "16285", - "n50": "18752", - "n75": "22039", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "103269", + "n75": "N/A", "notes": "", "ntsmResult": "N/A", - "ntsmScore": "N/A", + "ntsmScore": "0.348374", + "oneHundredkbPlus": "11.1", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02258/raw_data/nanopore/guppy_6/02_08_22_R941_HG02258_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02258", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ACB", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.59", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "70.78", + "totalReads": "N/A", + "twoHundredkbPlus": "3.03", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN33621952", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "14.49", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BB22", + "filename": "02_08_22_R941_HG02258_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "02_08_22_R941_HG02258_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "101187", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.359481", + "oneHundredkbPlus": "7.34", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02258/raw_data/nanopore/guppy_6/02_08_22_R941_HG02258_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02258", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ACB", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.36", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "47.83", + "totalReads": "N/A", + "twoHundredkbPlus": "1.92", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN33621952", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "7.85", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BB22", + "filename": "02_08_22_R941_HG02258_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "02_08_22_R941_HG02258_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "98290", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.442759", + "oneHundredkbPlus": "3.86", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02258/raw_data/nanopore/guppy_6/02_08_22_R941_HG02258_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02258", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ACB", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.21", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "25.92", + "totalReads": "N/A", + "twoHundredkbPlus": "1.08", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN33621952", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "5.94", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BB22", + "filename": "02_08_22_R941_HG02258_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "02_08_22_R941_HG02258_4", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "92608", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.429346", + "oneHundredkbPlus": "2.71", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02258/raw_data/nanopore/guppy_6/02_08_22_R941_HG02258_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02258", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ACB", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.1", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "19.61", + "totalReads": "N/A", + "twoHundredkbPlus": "0.59", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33621958", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "16.37", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "BD28", + "filename": "02_08_22_R941_HG03834_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.21", + "fourHundredkbPlus": "0.47", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "02_08_22_R941_HG03834_1", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "113319", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.358252", + "oneHundredkbPlus": "9.29", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG03834/raw_data/nanopore/guppy_6/02_08_22_R941_HG03834_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03834", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "1.17", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "54.02", + "totalReads": "N/A", + "twoHundredkbPlus": "3.25", + "whales": "28" + }, + { + "Gb": "N/A", + "accession": "SAMN33621958", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "16.7", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "BD28", + "filename": "02_08_22_R941_HG03834_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.23", + "fourHundredkbPlus": "0.47", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "02_08_22_R941_HG03834_2", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "106614", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.366502", + "oneHundredkbPlus": "8.93", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG03834/raw_data/nanopore/guppy_6/02_08_22_R941_HG03834_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03834", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "1.09", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "55.11", + "totalReads": "N/A", + "twoHundredkbPlus": "3.02", + "whales": "39" + }, + { + "Gb": "N/A", + "accession": "SAMN33621958", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "15.73", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "BD28", + "filename": "02_08_22_R941_HG03834_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.2", + "fourHundredkbPlus": "0.41", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "02_08_22_R941_HG03834_3", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "103009", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.353039", + "oneHundredkbPlus": "8.11", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG03834/raw_data/nanopore/guppy_6/02_08_22_R941_HG03834_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03834", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.97", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "51.91", + "totalReads": "N/A", + "twoHundredkbPlus": "2.7", + "whales": "32" + }, + { + "Gb": "N/A", + "accession": "SAMN37797096", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.87", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH074", + "filename": "02_15_22_R941_HG00658_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.13", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "02_15_22_R941_HG00658_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "89274", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.301266", + "oneHundredkbPlus": "9.29", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/nanopore/guppy_6/02_15_22_R941_HG00658_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00658", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.53", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "68.86", + "totalReads": "N/A", + "twoHundredkbPlus": "2.5", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN37797096", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "26.29", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH074", + "filename": "02_15_22_R941_HG00658_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.07", + "fourHundredkbPlus": "0.21", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "02_15_22_R941_HG00658_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "93714", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.302639", + "oneHundredkbPlus": "12.28", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/nanopore/guppy_6/02_15_22_R941_HG00658_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00658", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.77", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "86.75", + "totalReads": "N/A", + "twoHundredkbPlus": "3.38", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN37797096", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.09", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH074", + "filename": "02_15_22_R941_HG00658_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.06", + "fourHundredkbPlus": "0.15", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "02_15_22_R941_HG00658_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "87952", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.342092", + "oneHundredkbPlus": "9.23", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/nanopore/guppy_6/02_15_22_R941_HG00658_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00658", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.55", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "69.61", + "totalReads": "N/A", + "twoHundredkbPlus": "2.49", + "whales": "12" + }, + { + "Gb": "N/A", + "accession": "SAMN37797105", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.49", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN087", + "filename": "02_15_22_R941_HG02514_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.17", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "02_15_22_R941_HG02514_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "97579", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.334196", + "oneHundredkbPlus": "10.49", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02514/raw_data/nanopore/guppy_6/02_15_22_R941_HG02514_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02514", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.76", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "70.91", + "totalReads": "N/A", + "twoHundredkbPlus": "3.14", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN37797105", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "22.59", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN087", + "filename": "02_15_22_R941_HG02514_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.19", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "02_15_22_R941_HG02514_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "96127", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.312431", + "oneHundredkbPlus": "10.86", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02514/raw_data/nanopore/guppy_6/02_15_22_R941_HG02514_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02514", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.8", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "74.55", + "totalReads": "N/A", + "twoHundredkbPlus": "3.3", + "whales": "4" + }, + { + "Gb": "N/A", + "accession": "SAMN37797105", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "19.99", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN087", + "filename": "02_15_22_R941_HG02514_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.13", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "02_15_22_R941_HG02514_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "90028", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.293918", + "oneHundredkbPlus": "8.95", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02514/raw_data/nanopore/guppy_6/02_15_22_R941_HG02514_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02514", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.57", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "65.96", + "totalReads": "N/A", + "twoHundredkbPlus": "2.5", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN33758790", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.27", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "GB110", + "filename": "02_15_22_R941_HG03041_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.08", + "fourHundredkbPlus": "0.22", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "02_15_22_R941_HG03041_1", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "94132", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.338052", + "oneHundredkbPlus": "9.5", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03041/raw_data/nanopore/guppy_6/02_15_22_R941_HG03041_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03041", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.72", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "66.91", + "totalReads": "N/A", + "twoHundredkbPlus": "2.76", + "whales": "7" + }, + { + "Gb": "N/A", + "accession": "SAMN33758790", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.83", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "GB110", + "filename": "02_15_22_R941_HG03041_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.09", + "fourHundredkbPlus": "0.23", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "02_15_22_R941_HG03041_2", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "87337", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.339754", + "oneHundredkbPlus": "9.49", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03041/raw_data/nanopore/guppy_6/02_15_22_R941_HG03041_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03041", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.72", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "72.05", + "totalReads": "N/A", + "twoHundredkbPlus": "2.69", + "whales": "10" + }, + { + "Gb": "N/A", + "accession": "SAMN33758790", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "17.31", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "GB110", + "filename": "02_15_22_R941_HG03041_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.08", + "fourHundredkbPlus": "0.2", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "02_15_22_R941_HG03041_3", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "95935", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.315332", + "oneHundredkbPlus": "8.29", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG03041/raw_data/nanopore/guppy_6/02_15_22_R941_HG03041_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03041", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.65", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "57.11", + "totalReads": "N/A", + "twoHundredkbPlus": "2.44", + "whales": "15" + }, + { + "Gb": "N/A", + "accession": "SAMN37797108", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "23.24", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "GB113", + "filename": "02_15_22_R941_HG03050_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.16", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "02_15_22_R941_HG03050_1", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "96204", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.325861", + "oneHundredkbPlus": "11.14", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03050/raw_data/nanopore/guppy_6/02_15_22_R941_HG03050_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03050", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.63", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "76.7", + "totalReads": "N/A", + "twoHundredkbPlus": "2.91", + "whales": "4" + }, + { + "Gb": "N/A", + "accession": "SAMN37797108", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "15.72", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "GB113", + "filename": "02_15_22_R941_HG03050_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.1", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "02_15_22_R941_HG03050_2", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "88591", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.341999", + "oneHundredkbPlus": "6.89", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03050/raw_data/nanopore/guppy_6/02_15_22_R941_HG03050_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03050", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.37", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "51.87", + "totalReads": "N/A", + "twoHundredkbPlus": "1.72", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN37797108", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.59", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "GB113", + "filename": "02_15_22_R941_HG03050_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.14", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "02_15_22_R941_HG03050_3", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "92017", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.346017", + "oneHundredkbPlus": "9.85", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03050/raw_data/nanopore/guppy_6/02_15_22_R941_HG03050_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03050", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.54", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "71.23", + "totalReads": "N/A", + "twoHundredkbPlus": "2.51", + "whales": "8" + }, + { + "Gb": "N/A", + "accession": "SAMN33758794", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "22.54", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "PK41", + "filename": "02_15_22_R941_HG03239_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.1", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "02_15_22_R941_HG03239_1", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "84730", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.34711", + "oneHundredkbPlus": "9.29", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03239/raw_data/nanopore/guppy_6/02_15_22_R941_HG03239_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03239", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.37", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "74.38", + "totalReads": "N/A", + "twoHundredkbPlus": "1.99", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN33758794", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "23.69", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "PK41", + "filename": "02_15_22_R941_HG03239_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.11", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "02_15_22_R941_HG03239_2", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "80855", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.328338", + "oneHundredkbPlus": "9.26", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03239/raw_data/nanopore/guppy_6/02_15_22_R941_HG03239_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03239", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.39", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "78.16", + "totalReads": "N/A", + "twoHundredkbPlus": "1.98", + "whales": "6" + }, + { + "Gb": "N/A", + "accession": "SAMN33758794", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "17.79", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "PK41", + "filename": "02_15_22_R941_HG03239_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.08", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "02_15_22_R941_HG03239_3", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "80856", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.36187", + "oneHundredkbPlus": "6.93", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03239/raw_data/nanopore/guppy_6/02_15_22_R941_HG03239_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03239", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.27", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "58.69", + "totalReads": "N/A", + "twoHundredkbPlus": "1.42", + "whales": "7" + }, + { + "Gb": "N/A", + "accession": "SAMN33758782", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.76", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PR18", + "filename": "02_17_22_R941_HG01074_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.06", + "fourHundredkbPlus": "0.18", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "02_17_22_R941_HG01074_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "93003", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.378887", + "oneHundredkbPlus": "11.93", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01074/raw_data/nanopore/guppy_6/02_17_22_R941_HG01074_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01074", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PUR", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.68", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "85.01", + "totalReads": "N/A", + "twoHundredkbPlus": "3.19", + "whales": "4" + }, + { + "Gb": "N/A", + "accession": "SAMN33758782", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "27.95", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PR18", + "filename": "02_17_22_R941_HG01074_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.11", + "fourHundredkbPlus": "0.25", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "02_17_22_R941_HG01074_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "90778", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.370613", + "oneHundredkbPlus": "12.64", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG01074/raw_data/nanopore/guppy_6/02_17_22_R941_HG01074_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01074", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PUR", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.79", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "92.24", + "totalReads": "N/A", + "twoHundredkbPlus": "3.4", + "whales": "22" + }, + { + "Gb": "N/A", + "accession": "SAMN33758782", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "23.5", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PR18", + "filename": "02_17_22_R941_HG01074_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.06", + "fourHundredkbPlus": "0.17", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "02_17_22_R941_HG01074_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "89548", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.404218", + "oneHundredkbPlus": "10.44", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01074/raw_data/nanopore/guppy_6/02_17_22_R941_HG01074_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01074", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PUR", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.58", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "77.56", + "totalReads": "N/A", + "twoHundredkbPlus": "2.71", + "whales": "6" + }, + { + "Gb": "N/A", + "accession": "SAMN33758781", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "30.82", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PR03", + "filename": "03_01_22_R941_HG00639_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.1", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "03_01_22_R941_HG00639_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "88735", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.338452", + "oneHundredkbPlus": "13.5", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00639/raw_data/nanopore/guppy_6/03_01_22_R941_HG00639_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00639", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PUR", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.55", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "101.69", + "totalReads": "N/A", + "twoHundredkbPlus": "3.21", + "whales": "4" + }, + { + "Gb": "N/A", + "accession": "SAMN33758781", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "29.42", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PR03", + "filename": "03_01_22_R941_HG00639_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.09", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "03_01_22_R941_HG00639_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "88325", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.347786", + "oneHundredkbPlus": "12.8", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00639/raw_data/nanopore/guppy_6/03_01_22_R941_HG00639_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00639", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PUR", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.54", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "97.09", + "totalReads": "N/A", + "twoHundredkbPlus": "3", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33758781", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.53", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PR03", + "filename": "03_01_22_R941_HG00639_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.09", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "03_01_22_R941_HG00639_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "88377", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.345697", + "oneHundredkbPlus": "11.14", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00639/raw_data/nanopore/guppy_6/03_01_22_R941_HG00639_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00639", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PUR", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.48", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "84.25", + "totalReads": "N/A", + "twoHundredkbPlus": "2.69", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN33758783", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "13.51", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PR21", + "filename": "03_01_22_R941_HG01081_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.03", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "03_01_22_R941_HG01081_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "82757", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.419744", + "oneHundredkbPlus": "5.51", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01081/raw_data/nanopore/guppy_6/03_01_22_R941_HG01081_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01081", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PUR", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.2", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "44.57", + "totalReads": "N/A", + "twoHundredkbPlus": "1.26", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33758783", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "28.32", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PR21", + "filename": "03_01_22_R941_HG01081_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.06", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "03_01_22_R941_HG01081_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "79502", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.354066", + "oneHundredkbPlus": "11", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01081/raw_data/nanopore/guppy_6/03_01_22_R941_HG01081_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01081", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PUR", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.37", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "93.45", + "totalReads": "N/A", + "twoHundredkbPlus": "2.38", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN33758783", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "28.68", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PR21", + "filename": "03_01_22_R941_HG01081_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "03_01_22_R941_HG01081_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "81570", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.345031", + "oneHundredkbPlus": "11.47", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01081/raw_data/nanopore/guppy_6/03_01_22_R941_HG01081_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01081", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PUR", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.4", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "94.66", + "totalReads": "N/A", + "twoHundredkbPlus": "2.55", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN33758783", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "30.17", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PR21", + "filename": "03_01_22_R941_HG01081_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "03_01_22_R941_HG01081_4", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "83915", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.364588", + "oneHundredkbPlus": "12.42", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01081/raw_data/nanopore/guppy_6/03_01_22_R941_HG01081_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01081", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PUR", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.39", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "99.55", + "totalReads": "N/A", + "twoHundredkbPlus": "2.68", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN37797097", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "29.48", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "CLM12", + "filename": "03_01_22_R941_HG01150_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.14", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "03_01_22_R941_HG01150_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "92449", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.340795", + "oneHundredkbPlus": "13.6", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/nanopore/guppy_6/03_01_22_R941_HG01150_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01150", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CLM", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.84", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "97.29", + "totalReads": "N/A", + "twoHundredkbPlus": "3.92", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37797097", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "27.99", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "CLM12", + "filename": "03_01_22_R941_HG01150_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.1", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "03_01_22_R941_HG01150_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "85044", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.357692", + "oneHundredkbPlus": "11.79", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/nanopore/guppy_6/03_01_22_R941_HG01150_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01150", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CLM", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.62", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "92.38", + "totalReads": "N/A", + "twoHundredkbPlus": "3.1", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37797097", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "26.75", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "CLM12", + "filename": "03_01_22_R941_HG01150_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.13", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "03_01_22_R941_HG01150_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "89619", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.318516", + "oneHundredkbPlus": "11.94", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/nanopore/guppy_6/03_01_22_R941_HG01150_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01150", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CLM", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.73", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "88.26", + "totalReads": "N/A", + "twoHundredkbPlus": "3.36", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37797101", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "27.88", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL015", + "filename": "03_01_22_R941_HG01940_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.06", + "fourHundredkbPlus": "0.18", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "03_01_22_R941_HG01940_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "87902", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.329193", + "oneHundredkbPlus": "12.13", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01940/raw_data/nanopore/guppy_6/03_01_22_R941_HG01940_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01940", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.66", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "92", + "totalReads": "N/A", + "twoHundredkbPlus": "3.05", + "whales": "5" + }, + { + "Gb": "N/A", + "accession": "SAMN37797101", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.97", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL015", + "filename": "03_01_22_R941_HG01940_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.15", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "03_01_22_R941_HG01940_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "86686", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.332433", + "oneHundredkbPlus": "11.09", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01940/raw_data/nanopore/guppy_6/03_01_22_R941_HG01940_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01940", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.57", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "85.7", + "totalReads": "N/A", + "twoHundredkbPlus": "2.7", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN37797101", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.6", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL015", + "filename": "03_01_22_R941_HG01940_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.12", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "03_01_22_R941_HG01940_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "84815", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.311553", + "oneHundredkbPlus": "9.03", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01940/raw_data/nanopore/guppy_6/03_01_22_R941_HG01940_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01940", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.47", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "71.28", + "totalReads": "N/A", + "twoHundredkbPlus": "2.2", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN37797103", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "13.87", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL023", + "filename": "03_01_22_R941_HG01969_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "03_01_22_R941_HG01969_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "89548", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.384367", + "oneHundredkbPlus": "6.16", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/nanopore/guppy_6/03_01_22_R941_HG01969_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01969", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.33", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "45.78", + "totalReads": "N/A", + "twoHundredkbPlus": "1.58", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN37797103", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "27.65", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL023", + "filename": "03_01_22_R941_HG01969_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.14", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "03_01_22_R941_HG01969_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "90251", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.335214", + "oneHundredkbPlus": "12.38", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/nanopore/guppy_6/03_01_22_R941_HG01969_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01969", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.68", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "91.24", + "totalReads": "N/A", + "twoHundredkbPlus": "3.24", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37797103", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "18.7", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL023", + "filename": "03_01_22_R941_HG01969_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.11", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "03_01_22_R941_HG01969_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "88378", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.362328", + "oneHundredkbPlus": "8.2", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/nanopore/guppy_6/03_01_22_R941_HG01969_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01969", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.49", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "61.72", + "totalReads": "N/A", + "twoHundredkbPlus": "2.18", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN33758789", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.37", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK35", + "filename": "03_01_22_R941_HG03017_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.09", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "03_01_22_R941_HG03017_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "86206", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.338232", + "oneHundredkbPlus": "10.45", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/nanopore/guppy_6/03_01_22_R941_HG03017_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03017", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.52", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "80.42", + "totalReads": "N/A", + "twoHundredkbPlus": "2.74", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33758789", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "30.05", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "PK35", + "filename": "03_01_22_R941_HG03017_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.12", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "03_01_22_R941_HG03017_2", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "89100", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.350232", + "oneHundredkbPlus": "13.36", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/nanopore/guppy_6/03_01_22_R941_HG03017_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03017", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.74", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "99.17", + "totalReads": "N/A", + "twoHundredkbPlus": "3.68", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33758789", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "23.31", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "PK35", + "filename": "03_01_22_R941_HG03017_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.09", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "03_01_22_R941_HG03017_3", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "88874", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.310042", + "oneHundredkbPlus": "10.33", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/nanopore/guppy_6/03_01_22_R941_HG03017_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03017", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.54", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "76.92", + "totalReads": "N/A", + "twoHundredkbPlus": "2.81", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33621953", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.93", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL46", + "filename": "04_12_22_R941_HG02273_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.18", + "fourHundredkbPlus": "0.36", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "04_12_22_R941_HG02273_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "91973", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.306329", + "oneHundredkbPlus": "9.62", + "oneMbPlus": "0.02", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/nanopore/guppy_6/04_12_22_R941_HG02273_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02273", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.91", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "69.07", + "totalReads": "N/A", + "twoHundredkbPlus": "2.94", + "whales": "50" + }, + { + "Gb": "N/A", + "accession": "SAMN33621953", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.46", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL46", + "filename": "04_12_22_R941_HG02273_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.14", + "fourHundredkbPlus": "0.31", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "04_12_22_R941_HG02273_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "87115", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.336303", + "oneHundredkbPlus": "11", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/nanopore/guppy_6/04_12_22_R941_HG02273_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02273", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.88", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "84", + "totalReads": "N/A", + "twoHundredkbPlus": "3.12", + "whales": "21" + }, + { + "Gb": "N/A", + "accession": "SAMN33621953", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.61", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL46", + "filename": "04_12_22_R941_HG02273_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.14", + "fourHundredkbPlus": "0.31", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "04_12_22_R941_HG02273_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "92212", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.322979", + "oneHundredkbPlus": "9.93", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/nanopore/guppy_6/04_12_22_R941_HG02273_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02273", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.86", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "71.3", + "totalReads": "N/A", + "twoHundredkbPlus": "2.96", + "whales": "26" + }, + { + "Gb": "N/A", + "accession": "SAMN33621954", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.1", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "NG20", + "filename": "04_12_22_R941_HG02965_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.06", + "fourHundredkbPlus": "0.22", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "04_12_22_R941_HG02965_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "98065", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.348437", + "oneHundredkbPlus": "9.87", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/nanopore/guppy_6/04_12_22_R941_HG02965_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02965", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ESN", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.91", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "66.34", + "totalReads": "N/A", + "twoHundredkbPlus": "3.31", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN33621954", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.55", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "NG20", + "filename": "04_12_22_R941_HG02965_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.08", + "fourHundredkbPlus": "0.34", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "04_12_22_R941_HG02965_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "105322", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.337004", + "oneHundredkbPlus": "12.88", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/nanopore/guppy_6/04_12_22_R941_HG02965_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02965", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ESN", + "superpopulation": "AFR", + "threeHundredkbPlus": "1.32", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "81.02", + "totalReads": "N/A", + "twoHundredkbPlus": "4.59", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN33621954", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.94", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "NG20", + "filename": "04_12_22_R941_HG02965_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.07", + "fourHundredkbPlus": "0.3", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "04_12_22_R941_HG02965_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "104882", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.358389", + "oneHundredkbPlus": "10.94", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/nanopore/guppy_6/04_12_22_R941_HG02965_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02965", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ESN", + "superpopulation": "AFR", + "threeHundredkbPlus": "1.14", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "69.09", + "totalReads": "N/A", + "twoHundredkbPlus": "3.93", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN33621955", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.37", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "NG24", + "filename": "04_12_22_R941_HG02976_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.06", + "fourHundredkbPlus": "0.14", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "04_12_22_R941_HG02976_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "82006", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.368315", + "oneHundredkbPlus": "8.3", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/nanopore/guppy_6/04_12_22_R941_HG02976_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02976", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ESN", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.48", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "67.21", + "totalReads": "N/A", + "twoHundredkbPlus": "2.13", + "whales": "11" + }, + { + "Gb": "N/A", + "accession": "SAMN33621955", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.79", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "NG24", + "filename": "04_12_22_R941_HG02976_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.06", + "fourHundredkbPlus": "0.16", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "04_12_22_R941_HG02976_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "88094", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.374164", + "oneHundredkbPlus": "9.57", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/nanopore/guppy_6/04_12_22_R941_HG02976_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02976", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ESN", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.58", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "71.9", + "totalReads": "N/A", + "twoHundredkbPlus": "2.58", + "whales": "7" + }, + { + "Gb": "N/A", + "accession": "SAMN33621955", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.7", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "NG24", + "filename": "04_12_22_R941_HG02976_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.15", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "04_12_22_R941_HG02976_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "88896", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.362134", + "oneHundredkbPlus": "9.61", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/nanopore/guppy_6/04_12_22_R941_HG02976_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02976", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ESN", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.58", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "71.6", + "totalReads": "N/A", + "twoHundredkbPlus": "2.61", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN33621956", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "7.34", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "NG58", + "filename": "04_12_22_R941_HG03195_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.03", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "04_12_22_R941_HG03195_1", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "82523", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.435326", + "oneHundredkbPlus": "2.92", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/nanopore/guppy_6/04_12_22_R941_HG03195_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03195", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "ESN", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.11", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "24.23", + "totalReads": "N/A", + "twoHundredkbPlus": "0.57", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN33621956", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "9.83", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "NG58", + "filename": "04_12_22_R941_HG03195_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.05", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "04_12_22_R941_HG03195_2", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "79825", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.39897", + "oneHundredkbPlus": "3.75", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/nanopore/guppy_6/04_12_22_R941_HG03195_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03195", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "ESN", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.15", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "32.42", + "totalReads": "N/A", + "twoHundredkbPlus": "0.72", + "whales": "4" + }, + { + "Gb": "N/A", + "accession": "SAMN33621956", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.17", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "NG58", + "filename": "04_12_22_R941_HG03195_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.09", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "04_12_22_R941_HG03195_3", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "79740", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.379395", + "oneHundredkbPlus": "7.67", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/nanopore/guppy_6/04_12_22_R941_HG03195_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03195", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "ESN", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.3", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "66.57", + "totalReads": "N/A", + "twoHundredkbPlus": "1.47", + "whales": "15" + }, + { + "Gb": "N/A", + "accession": "SAMN33621956", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "10.21", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "NG58", + "filename": "04_12_22_R941_HG03195_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.06", + "fourHundredkbPlus": "0.1", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "04_12_22_R941_HG03195_4", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "76326", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.399203", + "oneHundredkbPlus": "3.74", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/nanopore/guppy_6/04_12_22_R941_HG03195_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03195", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "ESN", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.22", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "33.71", + "totalReads": "N/A", + "twoHundredkbPlus": "0.81", + "whales": "24" + }, + { + "Gb": "N/A", + "accession": "SAMN33621957", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "22.12", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": null, + "filename": "04_12_22_R941_HG03225_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.17", + "fourHundredkbPlus": "0.54", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "04_12_22_R941_HG03225_1", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "113230", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.321181", + "oneHundredkbPlus": "12.28", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/nanopore/guppy_6/04_12_22_R941_HG03225_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03225", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "MSL", + "superpopulation": "AFR", + "threeHundredkbPlus": "1.73", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "72.99", + "totalReads": "N/A", + "twoHundredkbPlus": "5", + "whales": "4" + }, + { + "Gb": "N/A", + "accession": "SAMN33621957", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "23.85", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": null, + "filename": "04_12_22_R941_HG03225_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.18", + "fourHundredkbPlus": "0.57", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "04_12_22_R941_HG03225_2", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "111305", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.341689", + "oneHundredkbPlus": "13.06", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/nanopore/guppy_6/04_12_22_R941_HG03225_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03225", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "MSL", + "superpopulation": "AFR", + "threeHundredkbPlus": "1.82", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "78.71", + "totalReads": "N/A", + "twoHundredkbPlus": "5.3", + "whales": "4" + }, + { + "Gb": "N/A", + "accession": "SAMN33621957", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "19.08", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": null, + "filename": "04_12_22_R941_HG03225_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.14", + "fourHundredkbPlus": "0.44", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "04_12_22_R941_HG03225_3", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "107783", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.385432", + "oneHundredkbPlus": "10.17", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/nanopore/guppy_6/04_12_22_R941_HG03225_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03225", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "MSL", + "superpopulation": "AFR", + "threeHundredkbPlus": "1.39", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "62.97", + "totalReads": "N/A", + "twoHundredkbPlus": "4.07", + "whales": "7" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "23.22", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "05_17_22_R941_GM18522_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "05_17_22_R941_GM18522_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "90186", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.336724", + "oneHundredkbPlus": "10.33", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/nanopore/guppy_6/05_17_22_R941_GM18522_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM18522", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.34", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "76.64", + "totalReads": "N/A", + "twoHundredkbPlus": "2.31", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "29.67", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "05_17_22_R941_GM18522_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "05_17_22_R941_GM18522_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "92175", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.333979", + "oneHundredkbPlus": "13.52", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/nanopore/guppy_6/05_17_22_R941_GM18522_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM18522", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.46", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "97.92", + "totalReads": "N/A", + "twoHundredkbPlus": "3.04", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "16.12", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "05_17_22_R941_GM18522_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "05_17_22_R941_GM18522_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "87553", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.385127", + "oneHundredkbPlus": "6.97", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/nanopore/guppy_6/05_17_22_R941_GM18522_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM18522", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.27", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "53.19", + "totalReads": "N/A", + "twoHundredkbPlus": "1.65", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN33758791", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "19.62", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "NG36", + "filename": "05_17_22_R941_HG03130_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.02", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "05_17_22_R941_HG03130_1", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "78539", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.338227", + "oneHundredkbPlus": "7.17", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/nanopore/guppy_6/05_17_22_R941_HG03130_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03130", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "ESN", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.1", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "64.75", + "totalReads": "N/A", + "twoHundredkbPlus": "1.05", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33758791", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "16.12", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "NG36", + "filename": "05_17_22_R941_HG03130_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "05_17_22_R941_HG03130_2", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "77435", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.336958", + "oneHundredkbPlus": "5.75", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/nanopore/guppy_6/05_17_22_R941_HG03130_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03130", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "ESN", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.08", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "53.19", + "totalReads": "N/A", + "twoHundredkbPlus": "0.82", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN33758791", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "23.12", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "NG36", + "filename": "05_17_22_R941_HG03130_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.02", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "05_17_22_R941_HG03130_3", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "77603", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.332566", + "oneHundredkbPlus": "8.37", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/nanopore/guppy_6/05_17_22_R941_HG03130_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03130", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "ESN", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.12", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "76.3", + "totalReads": "N/A", + "twoHundredkbPlus": "1.25", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33758792", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "18.61", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": null, + "filename": "05_17_22_R941_HG03139_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.1", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "05_17_22_R941_HG03139_1", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "87401", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.361164", + "oneHundredkbPlus": "7.98", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/nanopore/guppy_6/05_17_22_R941_HG03139_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03139", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "ESN", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.35", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "61.42", + "totalReads": "N/A", + "twoHundredkbPlus": "1.75", + "whales": "5" + }, + { + "Gb": "N/A", + "accession": "SAMN33758792", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.48", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": null, + "filename": "05_17_22_R941_HG03139_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.1", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "05_17_22_R941_HG03139_2", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "88064", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.30899", + "oneHundredkbPlus": "8.82", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/nanopore/guppy_6/05_17_22_R941_HG03139_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03139", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "ESN", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.35", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "67.58", + "totalReads": "N/A", + "twoHundredkbPlus": "1.84", + "whales": "12" + }, + { + "Gb": "N/A", + "accession": "SAMN33758792", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "18.56", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": null, + "filename": "05_17_22_R941_HG03139_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.09", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "05_17_22_R941_HG03139_3", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "87921", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.356189", + "oneHundredkbPlus": "8", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/nanopore/guppy_6/05_17_22_R941_HG03139_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03139", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "ESN", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.33", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "61.26", + "totalReads": "N/A", + "twoHundredkbPlus": "1.72", + "whales": "8" + }, + { + "Gb": "N/A", + "accession": "SAMN33758793", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "30.66", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": null, + "filename": "05_17_22_R941_HG03209_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.07", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "05_17_22_R941_HG03209_1", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "89912", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.338017", + "oneHundredkbPlus": "13.56", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/nanopore/guppy_6/05_17_22_R941_HG03209_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03209", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "MSL", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.49", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "101.17", + "totalReads": "N/A", + "twoHundredkbPlus": "3.08", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33758793", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "12.31", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": null, + "filename": "05_17_22_R941_HG03209_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "05_17_22_R941_HG03209_2", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "76033", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.339003", + "oneHundredkbPlus": "4.38", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/nanopore/guppy_6/05_17_22_R941_HG03209_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03209", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "MSL", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.12", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "40.63", + "totalReads": "N/A", + "twoHundredkbPlus": "0.83", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33758793", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "27.97", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": null, + "filename": "05_17_22_R941_HG03209_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.06", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "05_17_22_R941_HG03209_3", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "86569", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.312373", + "oneHundredkbPlus": "11.85", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/nanopore/guppy_6/05_17_22_R941_HG03209_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03209", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "MSL", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.44", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "92.31", + "totalReads": "N/A", + "twoHundredkbPlus": "2.66", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.21", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "05_24_22_R941_GM19338_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.09", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "05_24_22_R941_GM19338_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "95247", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.326651", + "oneHundredkbPlus": "9.58", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/nanopore/guppy_6/05_24_22_R941_GM19338_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19338", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.46", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "66.68", + "totalReads": "N/A", + "twoHundredkbPlus": "2.45", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.57", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "05_24_22_R941_GM19338_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.12", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "05_24_22_R941_GM19338_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "91754", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.305379", + "oneHundredkbPlus": "11.67", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/nanopore/guppy_6/05_24_22_R941_GM19338_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19338", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.6", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "84.39", + "totalReads": "N/A", + "twoHundredkbPlus": "3.03", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "19.54", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "05_24_22_R941_GM19338_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.08", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "05_24_22_R941_GM19338_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "94485", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.331124", + "oneHundredkbPlus": "9.19", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/nanopore/guppy_6/05_24_22_R941_GM19338_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19338", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.44", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "64.47", + "totalReads": "N/A", + "twoHundredkbPlus": "2.36", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "27.12", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "05_24_22_R941_GM19391_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.11", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "05_24_22_R941_GM19391_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "93740", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.350281", + "oneHundredkbPlus": "12.65", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/nanopore/guppy_6/05_24_22_R941_GM19391_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19391", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.68", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "89.49", + "totalReads": "N/A", + "twoHundredkbPlus": "3.45", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "29.12", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "05_24_22_R941_GM19391_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.11", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "05_24_22_R941_GM19391_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "91516", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.331306", + "oneHundredkbPlus": "13.23", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/nanopore/guppy_6/05_24_22_R941_GM19391_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19391", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.67", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "96.08", + "totalReads": "N/A", + "twoHundredkbPlus": "3.54", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.63", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "05_24_22_R941_GM19391_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.1", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "05_24_22_R941_GM19391_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "81407", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.359076", + "oneHundredkbPlus": "10.36", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/nanopore/guppy_6/05_24_22_R941_GM19391_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19391", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.54", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "84.59", + "totalReads": "N/A", + "twoHundredkbPlus": "2.73", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "26.98", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "05_24_22_R941_GM19468_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "05_24_22_R941_GM19468_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "75210", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.353823", + "oneHundredkbPlus": "9.24", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/nanopore/guppy_6/05_24_22_R941_GM19468_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19468", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.24", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "89.02", + "totalReads": "N/A", + "twoHundredkbPlus": "1.37", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.61", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "05_24_22_R941_GM19468_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.06", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "05_24_22_R941_GM19468_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "75624", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.339855", + "oneHundredkbPlus": "8.88", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/nanopore/guppy_6/05_24_22_R941_GM19468_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19468", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.25", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "84.5", + "totalReads": "N/A", + "twoHundredkbPlus": "1.38", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.57", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "05_24_22_R941_GM19468_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "05_24_22_R941_GM19468_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "75099", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.363104", + "oneHundredkbPlus": "8.77", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/nanopore/guppy_6/05_24_22_R941_GM19468_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19468", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.24", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "84.38", + "totalReads": "N/A", + "twoHundredkbPlus": "1.33", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN37797109", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.2", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": null, + "filename": "05_24_22_R941_HG03458_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.08", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "05_24_22_R941_HG03458_1", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "83325", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.328283", + "oneHundredkbPlus": "8.33", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03458/raw_data/nanopore/guppy_6/05_24_22_R941_HG03458_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03458", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "MSL", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.44", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "66.67", + "totalReads": "N/A", + "twoHundredkbPlus": "2.18", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37797109", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.19", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": null, + "filename": "05_24_22_R941_HG03458_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.11", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "05_24_22_R941_HG03458_2", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "82416", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.363894", + "oneHundredkbPlus": "9.9", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03458/raw_data/nanopore/guppy_6/05_24_22_R941_HG03458_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03458", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "MSL", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.58", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "79.84", + "totalReads": "N/A", + "twoHundredkbPlus": "2.67", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37797109", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "23.88", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": null, + "filename": "05_24_22_R941_HG03458_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.11", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "05_24_22_R941_HG03458_3", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "81018", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.393812", + "oneHundredkbPlus": "9.59", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03458/raw_data/nanopore/guppy_6/05_24_22_R941_HG03458_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03458", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "MSL", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.56", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "78.8", + "totalReads": "N/A", + "twoHundredkbPlus": "2.57", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37797110", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.24", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "SL56", + "filename": "05_24_22_R941_HG03470_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.06", + "fourHundredkbPlus": "0.18", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "05_24_22_R941_HG03470_1", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "92406", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.364659", + "oneHundredkbPlus": "11.2", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/nanopore/guppy_6/05_24_22_R941_HG03470_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03470", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "MSL", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.76", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "79.99", + "totalReads": "N/A", + "twoHundredkbPlus": "3.29", + "whales": "4" + }, + { + "Gb": "N/A", + "accession": "SAMN37797110", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.14", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "SL56", + "filename": "05_24_22_R941_HG03470_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.16", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "05_24_22_R941_HG03470_2", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "90420", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.334592", + "oneHundredkbPlus": "9.12", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/nanopore/guppy_6/05_24_22_R941_HG03470_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03470", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "MSL", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.67", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "66.47", + "totalReads": "N/A", + "twoHundredkbPlus": "2.73", + "whales": "8" + }, + { + "Gb": "N/A", + "accession": "SAMN37797110", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "22.56", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": "SL56", + "filename": "05_24_22_R941_HG03470_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.06", + "fourHundredkbPlus": "0.18", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "05_24_22_R941_HG03470_3", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "91609", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.330391", + "oneHundredkbPlus": "10.33", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/nanopore/guppy_6/05_24_22_R941_HG03470_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03470", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "MSL", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.74", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "74.44", + "totalReads": "N/A", + "twoHundredkbPlus": "3.08", + "whales": "5" + }, + { + "Gb": "N/A", + "accession": "SAMN26237493", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "27.9", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PR07", + "filename": "06_22_21_R941_HG00738_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.09", + "fourHundredkbPlus": "0.24", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_22_21_R941_HG00738_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "82004", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.350062", + "oneHundredkbPlus": "11", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/nanopore/guppy_6/06_22_21_R941_HG00738_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00738", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PUR", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.78", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "92.07", + "totalReads": "N/A", + "twoHundredkbPlus": "2.73", + "whales": "9" + }, + { + "Gb": "N/A", + "accession": "SAMN26267392", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "33.46", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN081", + "filename": "06_22_21_R941_HG02135_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.08", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_22_21_R941_HG02135_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "75826", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.316953", + "oneHundredkbPlus": "11.9", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/nanopore/guppy_6/06_22_21_R941_HG02135_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02135", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.31", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "110.43", + "totalReads": "N/A", + "twoHundredkbPlus": "2.05", + "whales": "7" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.45", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_GM18612_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_GM18612_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "86342", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.340271", + "oneHundredkbPlus": "10.34", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/nanopore/guppy_6/06_28_22_R941_GM18612_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM18612", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.37", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "80.7", + "totalReads": "N/A", + "twoHundredkbPlus": "2.25", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "19.88", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_GM18612_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.08", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_GM18612_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "86242", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.369822", + "oneHundredkbPlus": "8.41", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/nanopore/guppy_6/06_28_22_R941_GM18612_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM18612", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.33", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "65.62", + "totalReads": "N/A", + "twoHundredkbPlus": "1.89", + "whales": "5" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "28.01", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_GM18612_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.1", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_GM18612_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "84839", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.329798", + "oneHundredkbPlus": "11.6", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/nanopore/guppy_6/06_28_22_R941_GM18612_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM18612", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.42", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "92.45", + "totalReads": "N/A", + "twoHundredkbPlus": "2.49", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.53", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_GM18747_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_GM18747_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "79877", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.326619", + "oneHundredkbPlus": "9.59", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/nanopore/guppy_6/06_28_22_R941_GM18747_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM18747", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.36", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "80.94", + "totalReads": "N/A", + "twoHundredkbPlus": "2.2", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.51", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_GM18747_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.06", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_GM18747_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "83080", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.340225", + "oneHundredkbPlus": "10.02", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/nanopore/guppy_6/06_28_22_R941_GM18747_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM18747", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.41", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "80.89", + "totalReads": "N/A", + "twoHundredkbPlus": "2.4", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "26.08", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_GM18747_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.08", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_GM18747_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "88902", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.330606", + "oneHundredkbPlus": "11.51", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/nanopore/guppy_6/06_28_22_R941_GM18747_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM18747", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.54", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "86.07", + "totalReads": "N/A", + "twoHundredkbPlus": "2.97", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.8", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_GM18971_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.1", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_GM18971_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "77826", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.378314", + "oneHundredkbPlus": "9.2", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/nanopore/guppy_6/06_28_22_R941_GM18971_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM18971", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.33", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "81.83", + "totalReads": "N/A", + "twoHundredkbPlus": "1.79", + "whales": "8" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "28.49", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_GM18971_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.13", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_GM18971_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "78916", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.383637", + "oneHundredkbPlus": "10.78", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/nanopore/guppy_6/06_28_22_R941_GM18971_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM18971", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.43", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "94.02", + "totalReads": "N/A", + "twoHundredkbPlus": "2.17", + "whales": "10" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "26.59", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_GM18971_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.11", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_GM18971_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "78514", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.366243", + "oneHundredkbPlus": "10", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/nanopore/guppy_6/06_28_22_R941_GM18971_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM18971", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.39", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "87.74", + "totalReads": "N/A", + "twoHundredkbPlus": "1.99", + "whales": "6" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "18.63", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_GM18983_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.03", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_GM18983_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "82261", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.432677", + "oneHundredkbPlus": "7.43", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/nanopore/guppy_6/06_28_22_R941_GM18983_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM18983", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.2", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "61.47", + "totalReads": "N/A", + "twoHundredkbPlus": "1.54", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.7", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_GM18983_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_GM18983_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "78875", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.404763", + "oneHundredkbPlus": "9.45", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/nanopore/guppy_6/06_28_22_R941_GM18983_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM18983", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.28", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "81.5", + "totalReads": "N/A", + "twoHundredkbPlus": "1.98", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.77", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_GM18983_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_GM18983_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "78929", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.403313", + "oneHundredkbPlus": "9.52", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/nanopore/guppy_6/06_28_22_R941_GM18983_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM18983", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.29", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "81.73", + "totalReads": "N/A", + "twoHundredkbPlus": "2.03", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN33621941", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.21", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_HG00140_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_HG00140_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "81568", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.385939", + "oneHundredkbPlus": "9.54", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/nanopore/guppy_6/06_28_22_R941_HG00140_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00140", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GBR", + "superpopulation": "EUR", + "threeHundredkbPlus": "0.21", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "79.9", + "totalReads": "N/A", + "twoHundredkbPlus": "1.78", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN33621941", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "26.01", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_HG00140_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_HG00140_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "85375", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.361734", + "oneHundredkbPlus": "10.8", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/nanopore/guppy_6/06_28_22_R941_HG00140_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00140", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GBR", + "superpopulation": "EUR", + "threeHundredkbPlus": "0.24", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "85.83", + "totalReads": "N/A", + "twoHundredkbPlus": "2.05", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN33621941", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "22.65", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_HG00140_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_HG00140_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "85423", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.354421", + "oneHundredkbPlus": "9.42", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/nanopore/guppy_6/06_28_22_R941_HG00140_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00140", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GBR", + "superpopulation": "EUR", + "threeHundredkbPlus": "0.21", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "74.74", + "totalReads": "N/A", + "twoHundredkbPlus": "1.79", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN33621942", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "17.7", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_HG00323_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.07", + "fourHundredkbPlus": "0.2", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_HG00323_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "85739", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.399829", + "oneHundredkbPlus": "7.48", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/nanopore/guppy_6/06_28_22_R941_HG00323_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00323", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "FIN", + "superpopulation": "EUR", + "threeHundredkbPlus": "0.59", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "58.41", + "totalReads": "N/A", + "twoHundredkbPlus": "1.96", + "whales": "4" + }, + { + "Gb": "N/A", + "accession": "SAMN33621942", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "22.04", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_HG00323_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.12", + "fourHundredkbPlus": "0.3", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_HG00323_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "85829", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.391998", + "oneHundredkbPlus": "9.35", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/nanopore/guppy_6/06_28_22_R941_HG00323_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00323", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "FIN", + "superpopulation": "EUR", + "threeHundredkbPlus": "0.79", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "72.74", + "totalReads": "N/A", + "twoHundredkbPlus": "2.5", + "whales": "14" + }, + { + "Gb": "N/A", + "accession": "SAMN33621942", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.11", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_HG00323_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_HG00323_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "60729", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.414351", + "oneHundredkbPlus": "5.56", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/nanopore/guppy_6/06_28_22_R941_HG00323_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00323", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "FIN", + "superpopulation": "EUR", + "threeHundredkbPlus": "0.22", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "69.65", + "totalReads": "N/A", + "twoHundredkbPlus": "0.96", + "whales": "6" + }, + { + "Gb": "N/A", + "accession": "SAMN33758784", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "27.24", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_HG02040_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_HG02040_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "84809", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.370728", + "oneHundredkbPlus": "11.38", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/nanopore/guppy_6/06_28_22_R941_HG02040_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02040", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.48", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "89.9", + "totalReads": "N/A", + "twoHundredkbPlus": "2.74", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33758784", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "31.23", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_HG02040_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.09", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_HG02040_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "88092", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.35563", + "oneHundredkbPlus": "13.59", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/nanopore/guppy_6/06_28_22_R941_HG02040_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02040", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.58", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "103.06", + "totalReads": "N/A", + "twoHundredkbPlus": "3.31", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33758784", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.19", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_HG02040_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_HG02040_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "79018", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.356216", + "oneHundredkbPlus": "9.27", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/nanopore/guppy_6/06_28_22_R941_HG02040_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02040", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.34", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "79.82", + "totalReads": "N/A", + "twoHundredkbPlus": "2.07", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33621951", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "23.54", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_HG02155_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_HG02155_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "77287", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.393689", + "oneHundredkbPlus": "8.68", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/nanopore/guppy_6/06_28_22_R941_HG02155_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02155", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CDX", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.26", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "77.69", + "totalReads": "N/A", + "twoHundredkbPlus": "1.74", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN33621951", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "26.02", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_HG02155_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.12", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_HG02155_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "87421", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.372588", + "oneHundredkbPlus": "11.23", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/nanopore/guppy_6/06_28_22_R941_HG02155_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02155", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CDX", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.49", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "85.86", + "totalReads": "N/A", + "twoHundredkbPlus": "2.68", + "whales": "10" + }, + { + "Gb": "N/A", + "accession": "SAMN33621951", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "26.11", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_HG02155_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.12", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_HG02155_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "85506", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.395328", + "oneHundredkbPlus": "10.95", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/nanopore/guppy_6/06_28_22_R941_HG02155_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02155", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CDX", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.47", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "86.15", + "totalReads": "N/A", + "twoHundredkbPlus": "2.58", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN33758785", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "22.62", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_HG02165_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_HG02165_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "83115", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.377173", + "oneHundredkbPlus": "9.25", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/nanopore/guppy_6/06_28_22_R941_HG02165_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02165", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CDX", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.42", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "74.64", + "totalReads": "N/A", + "twoHundredkbPlus": "2.26", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN33758785", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.43", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_HG02165_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.09", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_HG02165_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "90174", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.376957", + "oneHundredkbPlus": "9.6", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/nanopore/guppy_6/06_28_22_R941_HG02165_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02165", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CDX", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.48", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "70.71", + "totalReads": "N/A", + "twoHundredkbPlus": "2.48", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN33758785", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "22.79", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "06_28_22_R941_HG02165_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.12", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_HG02165_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "99543", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.38002", + "oneHundredkbPlus": "11.34", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/nanopore/guppy_6/06_28_22_R941_HG02165_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02165", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CDX", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.64", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "75.21", + "totalReads": "N/A", + "twoHundredkbPlus": "3.19", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN33758788", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "31.01", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "NG06", + "filename": "06_28_22_R941_HG02922_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.1", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_HG02922_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "84324", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.357278", + "oneHundredkbPlus": "12.93", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/nanopore/guppy_6/06_28_22_R941_HG02922_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02922", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ESN", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.6", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "102.34", + "totalReads": "N/A", + "twoHundredkbPlus": "3.24", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN33758788", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "30.97", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "NG06", + "filename": "06_28_22_R941_HG02922_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.1", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_HG02922_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "85325", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.368987", + "oneHundredkbPlus": "13.1", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/nanopore/guppy_6/06_28_22_R941_HG02922_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02922", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ESN", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.64", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "102.21", + "totalReads": "N/A", + "twoHundredkbPlus": "3.37", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN33758788", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.39", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "NG06", + "filename": "06_28_22_R941_HG02922_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "06_28_22_R941_HG02922_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "74004", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.361226", + "oneHundredkbPlus": "9.18", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/nanopore/guppy_6/06_28_22_R941_HG02922_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02922", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ESN", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.42", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "83.8", + "totalReads": "N/A", + "twoHundredkbPlus": "2.2", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237491", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "23.9", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH042", + "filename": "07_13_21_R941_HG00544_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_13_21_R941_HG00544_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "62807", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.365332", + "oneHundredkbPlus": "5.66", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/nanopore/guppy_6/07_13_21_R941_HG00544_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00544", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.09", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "78.86", + "totalReads": "N/A", + "twoHundredkbPlus": "0.56", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237491", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.4", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH042", + "filename": "07_13_21_R941_HG00544_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_13_21_R941_HG00544_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "62839", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.360982", + "oneHundredkbPlus": "4.89", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/nanopore/guppy_6/07_13_21_R941_HG00544_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00544", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.05", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "70.63", + "totalReads": "N/A", + "twoHundredkbPlus": "0.38", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237491", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "23.17", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH042", + "filename": "07_13_21_R941_HG00544_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_13_21_R941_HG00544_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "65631", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.354387", + "oneHundredkbPlus": "5.68", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/nanopore/guppy_6/07_13_21_R941_HG00544_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00544", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.06", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "76.46", + "totalReads": "N/A", + "twoHundredkbPlus": "0.43", + "whales": "4" + }, + { + "Gb": "N/A", + "accession": "SAMN37706905", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "22.45", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH090", + "filename": "07_13_21_R941_HG00706_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.03", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_13_21_R941_HG00706_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "72401", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.345581", + "oneHundredkbPlus": "7.11", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/nanopore/guppy_6/07_13_21_R941_HG00706_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00706", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.14", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "74.09", + "totalReads": "N/A", + "twoHundredkbPlus": "0.93", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN37706905", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "27.23", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH090", + "filename": "07_13_21_R941_HG00706_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_13_21_R941_HG00706_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "72132", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.348804", + "oneHundredkbPlus": "8.6", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/nanopore/guppy_6/07_13_21_R941_HG00706_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00706", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.19", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "89.85", + "totalReads": "N/A", + "twoHundredkbPlus": "1.16", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN37706905", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "22.53", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH090", + "filename": "07_13_21_R941_HG00706_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.03", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_13_21_R941_HG00706_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "72386", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.323904", + "oneHundredkbPlus": "7.12", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/nanopore/guppy_6/07_13_21_R941_HG00706_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00706", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.14", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "74.34", + "totalReads": "N/A", + "twoHundredkbPlus": "0.93", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26237493", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "23.78", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PR07", + "filename": "07_13_21_R941_HG00738_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_13_21_R941_HG00738_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "72927", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.350161", + "oneHundredkbPlus": "7.47", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/nanopore/guppy_6/07_13_21_R941_HG00738_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00738", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PUR", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.1", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "78.47", + "totalReads": "N/A", + "twoHundredkbPlus": "0.92", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26237493", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "26.69", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PR07", + "filename": "07_13_21_R941_HG00738_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_13_21_R941_HG00738_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "71965", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.347786", + "oneHundredkbPlus": "8.23", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/nanopore/guppy_6/07_13_21_R941_HG00738_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00738", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PUR", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.13", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "88.09", + "totalReads": "N/A", + "twoHundredkbPlus": "1.03", + "whales": "5" + }, + { + "Gb": "N/A", + "accession": "SAMN26237495", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "18.71", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "CLM15", + "filename": "07_13_21_R941_HG01255_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_13_21_R941_HG01255_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "76438", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.364765", + "oneHundredkbPlus": "6.38", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/nanopore/guppy_6/07_13_21_R941_HG01255_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01255", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CLM", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.05", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "61.74", + "totalReads": "N/A", + "twoHundredkbPlus": "0.62", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26237495", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "26.75", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "CLM15", + "filename": "07_13_21_R941_HG01255_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_13_21_R941_HG01255_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "75335", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.365546", + "oneHundredkbPlus": "8.92", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/nanopore/guppy_6/07_13_21_R941_HG01255_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01255", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CLM", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.07", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "88.28", + "totalReads": "N/A", + "twoHundredkbPlus": "0.85", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN26237495", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "32.19", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "CLM15", + "filename": "07_13_21_R941_HG01255_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_13_21_R941_HG01255_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "77211", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.381373", + "oneHundredkbPlus": "11.21", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/nanopore/guppy_6/07_13_21_R941_HG01255_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01255", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CLM", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.13", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "106.24", + "totalReads": "N/A", + "twoHundredkbPlus": "1.24", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26267380", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "28.63", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN065", + "filename": "07_13_21_R941_HG02071_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_13_21_R941_HG02071_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "68103", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.328543", + "oneHundredkbPlus": "7.61", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/nanopore/guppy_6/07_13_21_R941_HG02071_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02071", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.03", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "94.47", + "totalReads": "N/A", + "twoHundredkbPlus": "0.38", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26267380", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "31.93", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN065", + "filename": "07_13_21_R941_HG02071_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_13_21_R941_HG02071_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "67686", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.315385", + "oneHundredkbPlus": "8.45", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/nanopore/guppy_6/07_13_21_R941_HG02071_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02071", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.05", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "105.36", + "totalReads": "N/A", + "twoHundredkbPlus": "0.49", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26267380", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "18.24", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN065", + "filename": "07_13_21_R941_HG02071_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_13_21_R941_HG02071_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "67347", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.335713", + "oneHundredkbPlus": "4.76", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/nanopore/guppy_6/07_13_21_R941_HG02071_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02071", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.02", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "60.19", + "totalReads": "N/A", + "twoHundredkbPlus": "0.25", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26267381", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "26.78", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN066", + "filename": "07_13_21_R941_HG02074_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_13_21_R941_HG02074_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "62895", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.238384", + "oneHundredkbPlus": "6.32", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/nanopore/guppy_6/07_13_21_R941_HG02074_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02074", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.02", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "88.36", + "totalReads": "N/A", + "twoHundredkbPlus": "0.32", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26267381", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "28.24", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN066", + "filename": "07_13_21_R941_HG02074_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_13_21_R941_HG02074_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "62972", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.253961", + "oneHundredkbPlus": "6.81", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/nanopore/guppy_6/07_13_21_R941_HG02074_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02074", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.05", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "93.19", + "totalReads": "N/A", + "twoHundredkbPlus": "0.46", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26267381", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "23.83", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN066", + "filename": "07_13_21_R941_HG02074_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_13_21_R941_HG02074_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "62011", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.282248", + "oneHundredkbPlus": "5.53", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/nanopore/guppy_6/07_13_21_R941_HG02074_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02074", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.03", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "78.64", + "totalReads": "N/A", + "twoHundredkbPlus": "0.31", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26267382", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "30.27", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN080", + "filename": "07_13_21_R941_HG02132_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.03", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_13_21_R941_HG02132_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "74492", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.375313", + "oneHundredkbPlus": "10.21", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/nanopore/guppy_6/07_13_21_R941_HG02132_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02132", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.15", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "99.88", + "totalReads": "N/A", + "twoHundredkbPlus": "1.31", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26267382", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "13.77", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN080", + "filename": "07_13_21_R941_HG02132_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_13_21_R941_HG02132_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "74076", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.36073", + "oneHundredkbPlus": "4.61", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/nanopore/guppy_6/07_13_21_R941_HG02132_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02132", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.06", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "45.44", + "totalReads": "N/A", + "twoHundredkbPlus": "0.57", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26267382", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.05", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN080", + "filename": "07_13_21_R941_HG02132_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_13_21_R941_HG02132_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "72221", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.377674", + "oneHundredkbPlus": "8.1", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/nanopore/guppy_6/07_13_21_R941_HG02132_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02132", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.12", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "82.68", + "totalReads": "N/A", + "twoHundredkbPlus": "1.02", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26267392", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "14.53", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN081", + "filename": "07_13_21_R941_HG02135_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_13_21_R941_HG02135_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "72386", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.32118", + "oneHundredkbPlus": "4.62", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/nanopore/guppy_6/07_13_21_R941_HG02135_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02135", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.05", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "47.95", + "totalReads": "N/A", + "twoHundredkbPlus": "0.5", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26267392", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "28.12", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN081", + "filename": "07_13_21_R941_HG02135_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.03", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_13_21_R941_HG02135_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "71374", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.310944", + "oneHundredkbPlus": "8.8", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/nanopore/guppy_6/07_13_21_R941_HG02135_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02135", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.12", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "92.79", + "totalReads": "N/A", + "twoHundredkbPlus": "1", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN26237507", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "32.31", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK09", + "filename": "07_20_21_R941_HG02602_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG02602_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "65361", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.323213", + "oneHundredkbPlus": "8.03", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/nanopore/guppy_6/07_20_21_R941_HG02602_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02602", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.05", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "106.62", + "totalReads": "N/A", + "twoHundredkbPlus": "0.54", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN26237507", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "29.12", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK09", + "filename": "07_20_21_R941_HG02602_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG02602_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "63774", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.341738", + "oneHundredkbPlus": "6.93", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/nanopore/guppy_6/07_20_21_R941_HG02602_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02602", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.04", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "96.1", + "totalReads": "N/A", + "twoHundredkbPlus": "0.46", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237507", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.66", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK09", + "filename": "07_20_21_R941_HG02602_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG02602_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "63732", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.344395", + "oneHundredkbPlus": "5.14", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/nanopore/guppy_6/07_20_21_R941_HG02602_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02602", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.03", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "71.47", + "totalReads": "N/A", + "twoHundredkbPlus": "0.32", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26237508", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "27.9", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "GB29", + "filename": "07_20_21_R941_HG02615_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG02615_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "70878", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.28681", + "oneHundredkbPlus": "8.59", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/nanopore/guppy_6/07_20_21_R941_HG02615_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02615", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.07", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "92.07", + "totalReads": "N/A", + "twoHundredkbPlus": "0.92", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237508", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "29.54", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "GB29", + "filename": "07_20_21_R941_HG02615_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG02615_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "70070", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.282447", + "oneHundredkbPlus": "8.96", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/nanopore/guppy_6/07_20_21_R941_HG02615_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02615", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.09", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "97.5", + "totalReads": "N/A", + "twoHundredkbPlus": "0.98", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237508", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "11.35", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "GB29", + "filename": "07_20_21_R941_HG02615_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG02615_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "68679", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.352641", + "oneHundredkbPlus": "3.37", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/nanopore/guppy_6/07_20_21_R941_HG02615_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02615", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.04", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "37.46", + "totalReads": "N/A", + "twoHundredkbPlus": "0.4", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37706906", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "16.56", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "GB40", + "filename": "07_20_21_R941_HG02668_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG02668_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "67467", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.330569", + "oneHundredkbPlus": "4.43", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02668/raw_data/nanopore/guppy_6/07_20_21_R941_HG02668_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02668", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.02", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "54.64", + "totalReads": "N/A", + "twoHundredkbPlus": "0.26", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN37706906", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.05", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "GB40", + "filename": "07_20_21_R941_HG02668_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG02668_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "69535", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.319356", + "oneHundredkbPlus": "5.95", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02668/raw_data/nanopore/guppy_6/07_20_21_R941_HG02668_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02668", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.04", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "69.45", + "totalReads": "N/A", + "twoHundredkbPlus": "0.4", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN37706906", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "16.41", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "GB40", + "filename": "07_20_21_R941_HG02668_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG02668_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "67023", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.343288", + "oneHundredkbPlus": "4.42", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02668/raw_data/nanopore/guppy_6/07_20_21_R941_HG02668_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02668", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.04", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "54.16", + "totalReads": "N/A", + "twoHundredkbPlus": "0.33", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237509", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "34.61", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK21", + "filename": "07_20_21_R941_HG02698_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG02698_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "70225", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.271365", + "oneHundredkbPlus": "9.89", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/nanopore/guppy_6/07_20_21_R941_HG02698_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02698", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.08", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "114.21", + "totalReads": "N/A", + "twoHundredkbPlus": "0.7", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237509", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "7.27", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK21", + "filename": "07_20_21_R941_HG02698_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG02698_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "67825", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.389891", + "oneHundredkbPlus": "1.95", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/nanopore/guppy_6/07_20_21_R941_HG02698_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02698", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.02", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "23.99", + "totalReads": "N/A", + "twoHundredkbPlus": "0.14", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237509", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "7.03", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK21", + "filename": "07_20_21_R941_HG02698_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG02698_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "64031", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.39883", + "oneHundredkbPlus": "1.79", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/nanopore/guppy_6/07_20_21_R941_HG02698_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02698", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.03", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "23.2", + "totalReads": "N/A", + "twoHundredkbPlus": "0.17", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237509", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "27.81", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK21", + "filename": "07_20_21_R941_HG02698_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG02698_4", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "67680", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.316759", + "oneHundredkbPlus": "7.5", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/nanopore/guppy_6/07_20_21_R941_HG02698_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02698", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.07", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "91.79", + "totalReads": "N/A", + "twoHundredkbPlus": "0.55", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237509", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "5.94", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK21", + "filename": "07_20_21_R941_HG02698_5_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG02698_5", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "67466", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.370307", + "oneHundredkbPlus": "1.6", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/nanopore/guppy_6/07_20_21_R941_HG02698_5_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02698", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.02", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "19.6", + "totalReads": "N/A", + "twoHundredkbPlus": "0.12", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237513", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.42", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK62", + "filename": "07_20_21_R941_HG03710_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.06", + "fourHundredkbPlus": "0.15", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG03710_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "70962", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.315969", + "oneHundredkbPlus": "8.19", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/nanopore/guppy_6/07_20_21_R941_HG03710_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03710", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.44", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "83.88", + "totalReads": "N/A", + "twoHundredkbPlus": "1.64", + "whales": "9" + }, + { + "Gb": "N/A", + "accession": "SAMN26237513", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "2.19", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK62", + "filename": "07_20_21_R941_HG03710_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG03710_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "72459", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.53917", + "oneHundredkbPlus": "0.72", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/nanopore/guppy_6/07_20_21_R941_HG03710_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03710", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.05", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "7.22", + "totalReads": "N/A", + "twoHundredkbPlus": "0.16", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN26237513", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "30.55", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK62", + "filename": "07_20_21_R941_HG03710_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.09", + "fourHundredkbPlus": "0.21", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG03710_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "71735", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.326694", + "oneHundredkbPlus": "10.03", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/nanopore/guppy_6/07_20_21_R941_HG03710_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03710", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.58", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "100.83", + "totalReads": "N/A", + "twoHundredkbPlus": "2.04", + "whales": "14" + }, + { + "Gb": "N/A", + "accession": "SAMN26237513", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "9.07", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK62", + "filename": "07_20_21_R941_HG03710_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG03710_4", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "71374", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.382901", + "oneHundredkbPlus": "2.9", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/nanopore/guppy_6/07_20_21_R941_HG03710_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03710", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.08", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "29.92", + "totalReads": "N/A", + "twoHundredkbPlus": "0.47", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37706907", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "31.92", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD18", + "filename": "07_20_21_R941_HG03804_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG03804_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "84812", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.348398", + "oneHundredkbPlus": "13.09", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/nanopore/guppy_6/07_20_21_R941_HG03804_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03804", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.33", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "105.33", + "totalReads": "N/A", + "twoHundredkbPlus": "2.51", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37706907", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "28.16", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD18", + "filename": "07_20_21_R941_HG03804_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG03804_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "83161", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.371964", + "oneHundredkbPlus": "11.27", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/nanopore/guppy_6/07_20_21_R941_HG03804_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03804", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.3", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "92.91", + "totalReads": "N/A", + "twoHundredkbPlus": "2.13", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37706907", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "32.21", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD18", + "filename": "07_20_21_R941_HG03804_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.12", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG03804_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "85557", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.359278", + "oneHundredkbPlus": "13.44", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/nanopore/guppy_6/07_20_21_R941_HG03804_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03804", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.51", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "106.31", + "totalReads": "N/A", + "twoHundredkbPlus": "2.85", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN37706908", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "28.94", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD22", + "filename": "07_20_21_R941_HG03816_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.06", + "fourHundredkbPlus": "0.17", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG03816_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "67158", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.362723", + "oneHundredkbPlus": "8.56", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/nanopore/guppy_6/07_20_21_R941_HG03816_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03816", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.48", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "95.51", + "totalReads": "N/A", + "twoHundredkbPlus": "1.66", + "whales": "9" + }, + { + "Gb": "N/A", + "accession": "SAMN37706908", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.57", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD22", + "filename": "07_20_21_R941_HG03816_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.12", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG03816_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "71008", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.369259", + "oneHundredkbPlus": "6.47", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/nanopore/guppy_6/07_20_21_R941_HG03816_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03816", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.35", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "67.87", + "totalReads": "N/A", + "twoHundredkbPlus": "1.24", + "whales": "12" + }, + { + "Gb": "N/A", + "accession": "SAMN37706908", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "30.01", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD22", + "filename": "07_20_21_R941_HG03816_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.13", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG03816_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "70485", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.358974", + "oneHundredkbPlus": "9.29", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/nanopore/guppy_6/07_20_21_R941_HG03816_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03816", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.44", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "99.03", + "totalReads": "N/A", + "twoHundredkbPlus": "1.73", + "whales": "4" + }, + { + "Gb": "N/A", + "accession": "SAMN26267387", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "4.77", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD42", + "filename": "07_20_21_R941_HG03942_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG03942_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "66391", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.458215", + "oneHundredkbPlus": "1.32", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/nanopore/guppy_6/07_20_21_R941_HG03942_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03942", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.01", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "15.74", + "totalReads": "N/A", + "twoHundredkbPlus": "0.1", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26267387", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "29.07", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD42", + "filename": "07_20_21_R941_HG03942_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG03942_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "66610", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.329795", + "oneHundredkbPlus": "8.18", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/nanopore/guppy_6/07_20_21_R941_HG03942_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03942", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.06", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "95.93", + "totalReads": "N/A", + "twoHundredkbPlus": "0.7", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26267387", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.46", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD42", + "filename": "07_20_21_R941_HG03942_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_20_21_R941_HG03942_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "63707", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.33346", + "oneHundredkbPlus": "5.72", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/nanopore/guppy_6/07_20_21_R941_HG03942_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03942", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.05", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "70.83", + "totalReads": "N/A", + "twoHundredkbPlus": "0.51", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33621943", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "34.2", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH002", + "filename": "07_27_21_R941_HG00408_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG00408_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "84313", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.330454", + "oneHundredkbPlus": "13.91", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00408/raw_data/nanopore/guppy_6/07_27_21_R941_HG00408_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00408", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.43", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "112.85", + "totalReads": "N/A", + "twoHundredkbPlus": "2.7", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN33621943", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "12.32", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH002", + "filename": "07_27_21_R941_HG00408_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG00408_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "84178", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.375213", + "oneHundredkbPlus": "5.05", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00408/raw_data/nanopore/guppy_6/07_27_21_R941_HG00408_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00408", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.22", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "40.67", + "totalReads": "N/A", + "twoHundredkbPlus": "1.09", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN33621943", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.17", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH002", + "filename": "07_27_21_R941_HG00408_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.08", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG00408_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "79492", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.341721", + "oneHundredkbPlus": "9.57", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00408/raw_data/nanopore/guppy_6/07_27_21_R941_HG00408_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00408", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.37", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "83.06", + "totalReads": "N/A", + "twoHundredkbPlus": "1.95", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN33621944", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "35.47", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH058", + "filename": "07_27_21_R941_HG00597_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.1", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG00597_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "77949", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.312985", + "oneHundredkbPlus": "12.58", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00597/raw_data/nanopore/guppy_6/07_27_21_R941_HG00597_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00597", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.36", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "117.05", + "totalReads": "N/A", + "twoHundredkbPlus": "1.95", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN33621944", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "36.3", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH058", + "filename": "07_27_21_R941_HG00597_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.11", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG00597_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "77976", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.338146", + "oneHundredkbPlus": "12.95", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00597/raw_data/nanopore/guppy_6/07_27_21_R941_HG00597_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00597", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.43", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "119.79", + "totalReads": "N/A", + "twoHundredkbPlus": "2.1", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN33621944", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "4.3", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH058", + "filename": "07_27_21_R941_HG00597_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG00597_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "74934", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.453926", + "oneHundredkbPlus": "1.44", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00597/raw_data/nanopore/guppy_6/07_27_21_R941_HG00597_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00597", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.03", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "14.19", + "totalReads": "N/A", + "twoHundredkbPlus": "0.21", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33621944", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "7.23", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH058", + "filename": "07_27_21_R941_HG00597_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG00597_4", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "78817", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.413863", + "oneHundredkbPlus": "2.6", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00597/raw_data/nanopore/guppy_6/07_27_21_R941_HG00597_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00597", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.06", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "23.87", + "totalReads": "N/A", + "twoHundredkbPlus": "0.39", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33621946", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "17.26", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "CLM17", + "filename": "07_27_21_R941_HG01261_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG01261_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "48175", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.358418", + "oneHundredkbPlus": "3.5", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01261/raw_data/nanopore/guppy_6/07_27_21_R941_HG01261_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01261", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CLM", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.05", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "56.96", + "totalReads": "N/A", + "twoHundredkbPlus": "0.39", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN33621946", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.85", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "CLM17", + "filename": "07_27_21_R941_HG01261_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.03", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG01261_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "74715", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.351018", + "oneHundredkbPlus": "8.6", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01261/raw_data/nanopore/guppy_6/07_27_21_R941_HG01261_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01261", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CLM", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.11", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "85.3", + "totalReads": "N/A", + "twoHundredkbPlus": "0.96", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN33621946", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "23.28", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "CLM17", + "filename": "07_27_21_R941_HG01261_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG01261_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "75397", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.321985", + "oneHundredkbPlus": "7.81", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01261/raw_data/nanopore/guppy_6/07_27_21_R941_HG01261_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01261", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CLM", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.1", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "76.83", + "totalReads": "N/A", + "twoHundredkbPlus": "0.86", + "whales": "5" + }, + { + "Gb": "N/A", + "accession": "SAMN26237498", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "26.3", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL013", + "filename": "07_27_21_R941_HG01934_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.03", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG01934_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "91931", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.301812", + "oneHundredkbPlus": "11.87", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01934/raw_data/nanopore/guppy_6/07_27_21_R941_HG01934_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01934", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.24", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "86.8", + "totalReads": "N/A", + "twoHundredkbPlus": "2.26", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26237498", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "2.75", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL013", + "filename": "07_27_21_R941_HG01934_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG01934_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "89234", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.513319", + "oneHundredkbPlus": "1.2", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01934/raw_data/nanopore/guppy_6/07_27_21_R941_HG01934_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01934", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.03", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "9.09", + "totalReads": "N/A", + "twoHundredkbPlus": "0.24", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237498", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "27.69", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL013", + "filename": "07_27_21_R941_HG01934_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG01934_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "90878", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.304109", + "oneHundredkbPlus": "12.35", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01934/raw_data/nanopore/guppy_6/07_27_21_R941_HG01934_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01934", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.29", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "91.37", + "totalReads": "N/A", + "twoHundredkbPlus": "2.44", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237498", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "18.86", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL013", + "filename": "07_27_21_R941_HG01934_4_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.03", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG01934_4", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "89331", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.350033", + "oneHundredkbPlus": "8.21", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01934/raw_data/nanopore/guppy_6/07_27_21_R941_HG01934_4_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01934", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.2", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "62.23", + "totalReads": "N/A", + "twoHundredkbPlus": "1.59", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237511", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "13.95", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK53", + "filename": "07_27_21_R941_HG03654_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG03654_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "86618", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.365241", + "oneHundredkbPlus": "5.72", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03654/raw_data/nanopore/guppy_6/07_27_21_R941_HG03654_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03654", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.08", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "46.03", + "totalReads": "N/A", + "twoHundredkbPlus": "0.78", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN26237511", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "22.53", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK53", + "filename": "07_27_21_R941_HG03654_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG03654_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "86774", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.310269", + "oneHundredkbPlus": "9.29", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03654/raw_data/nanopore/guppy_6/07_27_21_R941_HG03654_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03654", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.17", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "74.33", + "totalReads": "N/A", + "twoHundredkbPlus": "1.36", + "whales": "5" + }, + { + "Gb": "N/A", + "accession": "SAMN26237511", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "22.91", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK53", + "filename": "07_27_21_R941_HG03654_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG03654_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "86618", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.318698", + "oneHundredkbPlus": "9.41", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03654/raw_data/nanopore/guppy_6/07_27_21_R941_HG03654_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03654", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.19", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "75.59", + "totalReads": "N/A", + "twoHundredkbPlus": "1.4", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26237512", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.92", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK58", + "filename": "07_27_21_R941_HG03669_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG03669_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "81595", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.283215", + "oneHundredkbPlus": "9.12", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/nanopore/guppy_6/07_27_21_R941_HG03669_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03669", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.06", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "82.25", + "totalReads": "N/A", + "twoHundredkbPlus": "0.78", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237512", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "3.34", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK58", + "filename": "07_27_21_R941_HG03669_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG03669_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "77047", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.507088", + "oneHundredkbPlus": "1.12", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/nanopore/guppy_6/07_27_21_R941_HG03669_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03669", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "11.04", + "totalReads": "N/A", + "twoHundredkbPlus": "0.08", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237512", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.24", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK58", + "filename": "07_27_21_R941_HG03669_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG03669_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "78086", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.340057", + "oneHundredkbPlus": "8.62", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/nanopore/guppy_6/07_27_21_R941_HG03669_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03669", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.06", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "83.29", + "totalReads": "N/A", + "twoHundredkbPlus": "0.72", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237512", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "7.37", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK58", + "filename": "07_27_21_R941_HG03669_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG03669_4", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "79377", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.418265", + "oneHundredkbPlus": "2.58", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/nanopore/guppy_6/07_27_21_R941_HG03669_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03669", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.01", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "24.32", + "totalReads": "N/A", + "twoHundredkbPlus": "0.19", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26267385", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.49", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "ST016", + "filename": "07_27_21_R941_HG03688_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.08", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG03688_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "84574", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.334326", + "oneHundredkbPlus": "8.59", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03688/raw_data/nanopore/guppy_6/07_27_21_R941_HG03688_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03688", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "STU", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.28", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "70.9", + "totalReads": "N/A", + "twoHundredkbPlus": "1.47", + "whales": "5" + }, + { + "Gb": "N/A", + "accession": "SAMN26267385", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "27.31", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "ST016", + "filename": "07_27_21_R941_HG03688_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG03688_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "83458", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.342356", + "oneHundredkbPlus": "10.54", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03688/raw_data/nanopore/guppy_6/07_27_21_R941_HG03688_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03688", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "STU", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.19", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "90.13", + "totalReads": "N/A", + "twoHundredkbPlus": "1.38", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26267385", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.02", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "ST016", + "filename": "07_27_21_R941_HG03688_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG03688_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "79602", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.323537", + "oneHundredkbPlus": "8.63", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03688/raw_data/nanopore/guppy_6/07_27_21_R941_HG03688_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03688", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "STU", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.12", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "79.27", + "totalReads": "N/A", + "twoHundredkbPlus": "1.01", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26267388", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "8.25", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "ST111", + "filename": "07_27_21_R941_HG04115_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG04115_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "79209", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.392543", + "oneHundredkbPlus": "2.99", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/nanopore/guppy_6/07_27_21_R941_HG04115_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04115", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "STU", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.09", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "27.22", + "totalReads": "N/A", + "twoHundredkbPlus": "0.46", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26267388", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "17.59", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "ST111", + "filename": "07_27_21_R941_HG04115_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG04115_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "80416", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.274663", + "oneHundredkbPlus": "6.57", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/nanopore/guppy_6/07_27_21_R941_HG04115_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04115", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "STU", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.25", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "58.04", + "totalReads": "N/A", + "twoHundredkbPlus": "1.13", + "whales": "4" + }, + { + "Gb": "N/A", + "accession": "SAMN26267388", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "7.53", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "ST111", + "filename": "07_27_21_R941_HG04115_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.03", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG04115_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "76195", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.399528", + "oneHundredkbPlus": "2.6", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/nanopore/guppy_6/07_27_21_R941_HG04115_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04115", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "STU", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.09", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "24.85", + "totalReads": "N/A", + "twoHundredkbPlus": "0.41", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26267388", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "14.89", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "ST111", + "filename": "07_27_21_R941_HG04115_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG04115_4", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "79848", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.348811", + "oneHundredkbPlus": "5.47", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/nanopore/guppy_6/07_27_21_R941_HG04115_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04115", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "STU", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.17", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "49.13", + "totalReads": "N/A", + "twoHundredkbPlus": "0.86", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26267388", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "7.67", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "ST111", + "filename": "07_27_21_R941_HG04115_5_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.03", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "07_27_21_R941_HG04115_5", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "80123", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.422534", + "oneHundredkbPlus": "2.84", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/nanopore/guppy_6/07_27_21_R941_HG04115_5_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04115", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "STU", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.1", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "25.3", + "totalReads": "N/A", + "twoHundredkbPlus": "0.48", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37797102", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "10.74", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BB11", + "filename": "08_03_21_R941_HG01960_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_03_21_R941_HG01960_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "76744", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.354958", + "oneHundredkbPlus": "3.64", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01960/raw_data/nanopore/guppy_6/08_03_21_R941_HG01960_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01960", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ACB", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.13", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "35.44", + "totalReads": "N/A", + "twoHundredkbPlus": "0.54", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN37797102", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "27.99", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BB11", + "filename": "08_03_21_R941_HG01960_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.12", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_03_21_R941_HG01960_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "74685", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.292281", + "oneHundredkbPlus": "9.21", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01960/raw_data/nanopore/guppy_6/08_03_21_R941_HG01960_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01960", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ACB", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.36", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "92.37", + "totalReads": "N/A", + "twoHundredkbPlus": "1.45", + "whales": "12" + }, + { + "Gb": "N/A", + "accession": "SAMN37797102", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "7.31", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BB11", + "filename": "08_03_21_R941_HG01960_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_03_21_R941_HG01960_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "73518", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.423853", + "oneHundredkbPlus": "2.35", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01960/raw_data/nanopore/guppy_6/08_03_21_R941_HG01960_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01960", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ACB", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.1", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "24.12", + "totalReads": "N/A", + "twoHundredkbPlus": "0.38", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN37797102", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "3.06", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BB11", + "filename": "08_03_21_R941_HG01960_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_03_21_R941_HG01960_4", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "74432", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.473214", + "oneHundredkbPlus": "0.98", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01960/raw_data/nanopore/guppy_6/08_03_21_R941_HG01960_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01960", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ACB", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.02", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "10.09", + "totalReads": "N/A", + "twoHundredkbPlus": "0.12", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33621947", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "33.07", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL25", + "filename": "08_03_21_R941_HG01975_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.06", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_03_21_R941_HG01975_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "80551", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.27161", + "oneHundredkbPlus": "12.71", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01975/raw_data/nanopore/guppy_6/08_03_21_R941_HG01975_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01975", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.3", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "109.15", + "totalReads": "N/A", + "twoHundredkbPlus": "2.22", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN33621947", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "22.43", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL25", + "filename": "08_03_21_R941_HG01975_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.03", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_03_21_R941_HG01975_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "80419", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.305576", + "oneHundredkbPlus": "8.55", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01975/raw_data/nanopore/guppy_6/08_03_21_R941_HG01975_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01975", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.17", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "74.02", + "totalReads": "N/A", + "twoHundredkbPlus": "1.42", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33621947", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "22.93", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL25", + "filename": "08_03_21_R941_HG01975_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_03_21_R941_HG01975_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "75260", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.291271", + "oneHundredkbPlus": "8.03", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01975/raw_data/nanopore/guppy_6/08_03_21_R941_HG01975_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01975", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.13", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "75.67", + "totalReads": "N/A", + "twoHundredkbPlus": "1.24", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37797106", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "19.14", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "GB74", + "filename": "08_03_21_R941_HG02841_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_03_21_R941_HG02841_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "81577", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.296905", + "oneHundredkbPlus": "7.23", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/nanopore/guppy_6/08_03_21_R941_HG02841_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02841", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.04", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "63.15", + "totalReads": "N/A", + "twoHundredkbPlus": "0.81", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN37797106", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "13.88", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "GB74", + "filename": "08_03_21_R941_HG02841_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_03_21_R941_HG02841_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "79068", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.325085", + "oneHundredkbPlus": "5.04", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/nanopore/guppy_6/08_03_21_R941_HG02841_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02841", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.04", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "45.81", + "totalReads": "N/A", + "twoHundredkbPlus": "0.58", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37797106", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "26.51", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "GB74", + "filename": "08_03_21_R941_HG02841_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_03_21_R941_HG02841_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "79315", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.303632", + "oneHundredkbPlus": "9.73", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/nanopore/guppy_6/08_03_21_R941_HG02841_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02841", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.16", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "87.47", + "totalReads": "N/A", + "twoHundredkbPlus": "1.3", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN37797107", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "30.86", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "GB97", + "filename": "08_03_21_R941_HG02984_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.15", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_03_21_R941_HG02984_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "78236", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.314809", + "oneHundredkbPlus": "11.21", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/nanopore/guppy_6/08_03_21_R941_HG02984_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02984", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.54", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "101.85", + "totalReads": "N/A", + "twoHundredkbPlus": "2.15", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN37797107", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "23.24", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "GB97", + "filename": "08_03_21_R941_HG02984_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.11", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_03_21_R941_HG02984_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "71722", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.314432", + "oneHundredkbPlus": "7.53", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/nanopore/guppy_6/08_03_21_R941_HG02984_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02984", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.36", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "76.68", + "totalReads": "N/A", + "twoHundredkbPlus": "1.42", + "whales": "5" + }, + { + "Gb": "N/A", + "accession": "SAMN37797107", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "10.6", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "GB97", + "filename": "08_03_21_R941_HG02984_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.06", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_03_21_R941_HG02984_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "74982", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.339783", + "oneHundredkbPlus": "3.66", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/nanopore/guppy_6/08_03_21_R941_HG02984_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02984", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.18", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "34.98", + "totalReads": "N/A", + "twoHundredkbPlus": "0.7", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN37797107", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "6.65", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "GB97", + "filename": "08_03_21_R941_HG02984_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_03_21_R941_HG02984_4", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "79486", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.390259", + "oneHundredkbPlus": "2.5", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/nanopore/guppy_6/08_03_21_R941_HG02984_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02984", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.14", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "21.96", + "totalReads": "N/A", + "twoHundredkbPlus": "0.5", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37706909", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "29.58", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD52", + "filename": "08_03_21_R941_HG04157_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_03_21_R941_HG04157_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "76817", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.277016", + "oneHundredkbPlus": "10.29", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/nanopore/guppy_6/08_03_21_R941_HG04157_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04157", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.16", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "97.61", + "totalReads": "N/A", + "twoHundredkbPlus": "1.24", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN37706909", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "32.3", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD52", + "filename": "08_03_21_R941_HG04157_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_03_21_R941_HG04157_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "75575", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.335831", + "oneHundredkbPlus": "11.03", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/nanopore/guppy_6/08_03_21_R941_HG04157_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04157", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.18", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "106.58", + "totalReads": "N/A", + "twoHundredkbPlus": "1.37", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37706909", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "23.85", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD52", + "filename": "08_03_21_R941_HG04157_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_03_21_R941_HG04157_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "74339", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.284331", + "oneHundredkbPlus": "8.01", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/nanopore/guppy_6/08_03_21_R941_HG04157_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04157", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.21", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "78.71", + "totalReads": "N/A", + "twoHundredkbPlus": "1.1", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN37706910", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "22.94", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD53", + "filename": "08_03_21_R941_HG04160_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_03_21_R941_HG04160_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "69217", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.329487", + "oneHundredkbPlus": "6.44", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/nanopore/guppy_6/08_03_21_R941_HG04160_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04160", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.05", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "75.69", + "totalReads": "N/A", + "twoHundredkbPlus": "0.49", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37706910", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.52", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD53", + "filename": "08_03_21_R941_HG04160_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_03_21_R941_HG04160_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "68811", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.361508", + "oneHundredkbPlus": "6.86", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/nanopore/guppy_6/08_03_21_R941_HG04160_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04160", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.07", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "80.9", + "totalReads": "N/A", + "twoHundredkbPlus": "0.53", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37706910", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.78", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD53", + "filename": "08_03_21_R941_HG04160_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_03_21_R941_HG04160_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "67552", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.385452", + "oneHundredkbPlus": "6.75", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/nanopore/guppy_6/08_03_21_R941_HG04160_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04160", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.07", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "81.77", + "totalReads": "N/A", + "twoHundredkbPlus": "0.55", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26237492", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "28.25", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH062", + "filename": "08_10_21_R941_HG00609_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.06", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG00609_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "73742", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.303564", + "oneHundredkbPlus": "8.82", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/nanopore/guppy_6/08_10_21_R941_HG00609_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00609", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.18", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "93.22", + "totalReads": "N/A", + "twoHundredkbPlus": "0.89", + "whales": "4" + }, + { + "Gb": "N/A", + "accession": "SAMN26237492", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "32.14", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH062", + "filename": "08_10_21_R941_HG00609_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG00609_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "75448", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.323289", + "oneHundredkbPlus": "10.45", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/nanopore/guppy_6/08_10_21_R941_HG00609_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00609", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.2", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "106.08", + "totalReads": "N/A", + "twoHundredkbPlus": "1.08", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN26237492", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "28.76", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH062", + "filename": "08_10_21_R941_HG00609_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG00609_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "73789", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.331212", + "oneHundredkbPlus": "9.09", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/nanopore/guppy_6/08_10_21_R941_HG00609_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00609", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.19", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "94.9", + "totalReads": "N/A", + "twoHundredkbPlus": "0.98", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN26267378", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "18.35", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PR04", + "filename": "08_10_21_R941_HG00642_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.07", + "fourHundredkbPlus": "0.13", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG00642_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "94988", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.295302", + "oneHundredkbPlus": "8.67", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/nanopore/guppy_6/08_10_21_R941_HG00642_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00642", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PUR", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.42", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "60.56", + "totalReads": "N/A", + "twoHundredkbPlus": "2.06", + "whales": "23" + }, + { + "Gb": "N/A", + "accession": "SAMN26267378", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.8", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PR04", + "filename": "08_10_21_R941_HG00642_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.13", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG00642_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "101008", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.34542", + "oneHundredkbPlus": "10.52", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/nanopore/guppy_6/08_10_21_R941_HG00642_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00642", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PUR", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.47", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "68.63", + "totalReads": "N/A", + "twoHundredkbPlus": "2.52", + "whales": "7" + }, + { + "Gb": "N/A", + "accession": "SAMN26267378", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "27.68", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PR04", + "filename": "08_10_21_R941_HG00642_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.06", + "fourHundredkbPlus": "0.15", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG00642_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "95618", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.350263", + "oneHundredkbPlus": "13.15", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/nanopore/guppy_6/08_10_21_R941_HG00642_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00642", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PUR", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.53", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "91.35", + "totalReads": "N/A", + "twoHundredkbPlus": "2.93", + "whales": "5" + }, + { + "Gb": "N/A", + "accession": "SAMN26237494", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.09", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PR31", + "filename": "08_10_21_R941_HG01099_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG01099_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "74857", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.319944", + "oneHundredkbPlus": "7.9", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/nanopore/guppy_6/08_10_21_R941_HG01099_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01099", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PUR", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.19", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "79.51", + "totalReads": "N/A", + "twoHundredkbPlus": "0.93", + "whales": "6" + }, + { + "Gb": "N/A", + "accession": "SAMN26237494", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.55", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PR31", + "filename": "08_10_21_R941_HG01099_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG01099_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "75225", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.315749", + "oneHundredkbPlus": "8.39", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/nanopore/guppy_6/08_10_21_R941_HG01099_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01099", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PUR", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.16", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "84.33", + "totalReads": "N/A", + "twoHundredkbPlus": "0.91", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26237494", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "19.9", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PR31", + "filename": "08_10_21_R941_HG01099_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG01099_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "75724", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.29249", + "oneHundredkbPlus": "6.6", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/nanopore/guppy_6/08_10_21_R941_HG01099_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01099", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PUR", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.13", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "65.67", + "totalReads": "N/A", + "twoHundredkbPlus": "0.75", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237496", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "31.67", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "CLM43", + "filename": "08_10_21_R941_HG01433_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.06", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG01433_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "67193", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.327795", + "oneHundredkbPlus": "7.9", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01433/raw_data/nanopore/guppy_6/08_10_21_R941_HG01433_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01433", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CLM", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.17", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "104.5", + "totalReads": "N/A", + "twoHundredkbPlus": "0.75", + "whales": "5" + }, + { + "Gb": "N/A", + "accession": "SAMN26237496", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.79", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "CLM43", + "filename": "08_10_21_R941_HG01433_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.03", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG01433_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "67405", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.28057", + "oneHundredkbPlus": "6.07", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01433/raw_data/nanopore/guppy_6/08_10_21_R941_HG01433_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01433", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CLM", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.1", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "81.82", + "totalReads": "N/A", + "twoHundredkbPlus": "0.48", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN26237496", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.54", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "CLM43", + "filename": "08_10_21_R941_HG01433_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.03", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG01433_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "66723", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.348327", + "oneHundredkbPlus": "5.92", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01433/raw_data/nanopore/guppy_6/08_10_21_R941_HG01433_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01433", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CLM", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.09", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "80.97", + "totalReads": "N/A", + "twoHundredkbPlus": "0.48", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237501", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.6", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL29", + "filename": "08_10_21_R941_HG01993_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.06", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG01993_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "79775", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.357558", + "oneHundredkbPlus": "9.14", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/nanopore/guppy_6/08_10_21_R941_HG01993_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01993", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.19", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "81.17", + "totalReads": "N/A", + "twoHundredkbPlus": "1.31", + "whales": "6" + }, + { + "Gb": "N/A", + "accession": "SAMN26237501", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "35.76", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL29", + "filename": "08_10_21_R941_HG01993_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.13", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG01993_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "83016", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.337567", + "oneHundredkbPlus": "14.08", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/nanopore/guppy_6/08_10_21_R941_HG01993_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01993", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.41", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "117.99", + "totalReads": "N/A", + "twoHundredkbPlus": "2.34", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN26237501", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "34.76", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL29", + "filename": "08_10_21_R941_HG01993_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.08", + "fourHundredkbPlus": "0.2", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG01993_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "83178", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.346723", + "oneHundredkbPlus": "13.81", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/nanopore/guppy_6/08_10_21_R941_HG01993_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01993", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.58", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "114.71", + "totalReads": "N/A", + "twoHundredkbPlus": "2.59", + "whales": "4" + }, + { + "Gb": "N/A", + "accession": "SAMN26267383", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "10.77", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "GB38", + "filename": "08_10_21_R941_HG02647_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.09", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG02647_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "67975", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.364914", + "oneHundredkbPlus": "3.34", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/nanopore/guppy_6/08_10_21_R941_HG02647_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02647", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.2", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "35.55", + "totalReads": "N/A", + "twoHundredkbPlus": "0.66", + "whales": "22" + }, + { + "Gb": "N/A", + "accession": "SAMN26267383", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "17.51", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "GB38", + "filename": "08_10_21_R941_HG02647_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.06", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG02647_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "74826", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.293523", + "oneHundredkbPlus": "5.9", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/nanopore/guppy_6/08_10_21_R941_HG02647_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02647", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.18", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "57.79", + "totalReads": "N/A", + "twoHundredkbPlus": "0.94", + "whales": "5" + }, + { + "Gb": "N/A", + "accession": "SAMN26267383", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "19.22", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "GB38", + "filename": "08_10_21_R941_HG02647_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG02647_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "75914", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.272442", + "oneHundredkbPlus": "6.51", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/nanopore/guppy_6/08_10_21_R941_HG02647_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02647", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.16", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "63.43", + "totalReads": "N/A", + "twoHundredkbPlus": "0.95", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN26267383", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "3.5", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "GB38", + "filename": "08_10_21_R941_HG02647_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG02647_4", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "78171", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.472454", + "oneHundredkbPlus": "1.24", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/nanopore/guppy_6/08_10_21_R941_HG02647_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02647", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.04", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "11.54", + "totalReads": "N/A", + "twoHundredkbPlus": "0.19", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237514", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.58", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD27", + "filename": "08_10_21_R941_HG03831_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG03831_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "79360", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.312214", + "oneHundredkbPlus": "9.56", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/nanopore/guppy_6/08_10_21_R941_HG03831_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03831", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.3", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "84.42", + "totalReads": "N/A", + "twoHundredkbPlus": "1.72", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN26237514", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "26.03", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD27", + "filename": "08_10_21_R941_HG03831_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG03831_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "81179", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.324472", + "oneHundredkbPlus": "9.89", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/nanopore/guppy_6/08_10_21_R941_HG03831_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03831", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.23", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "85.9", + "totalReads": "N/A", + "twoHundredkbPlus": "1.63", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237514", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "28.21", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD27", + "filename": "08_10_21_R941_HG03831_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.08", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG03831_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "80227", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.324669", + "oneHundredkbPlus": "10.65", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/nanopore/guppy_6/08_10_21_R941_HG03831_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03831", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.35", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "93.08", + "totalReads": "N/A", + "twoHundredkbPlus": "1.95", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26267386", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "12.27", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD37", + "filename": "08_10_21_R941_HG03927_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG03927_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "78594", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.403406", + "oneHundredkbPlus": "4.52", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/nanopore/guppy_6/08_10_21_R941_HG03927_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03927", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.1", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "40.5", + "totalReads": "N/A", + "twoHundredkbPlus": "0.77", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26267386", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "22.91", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD37", + "filename": "08_10_21_R941_HG03927_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG03927_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "80348", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.318072", + "oneHundredkbPlus": "8.6", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/nanopore/guppy_6/08_10_21_R941_HG03927_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03927", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.2", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "75.61", + "totalReads": "N/A", + "twoHundredkbPlus": "1.43", + "whales": "4" + }, + { + "Gb": "N/A", + "accession": "SAMN26267386", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "26.76", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD37", + "filename": "08_10_21_R941_HG03927_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG03927_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "84221", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.361284", + "oneHundredkbPlus": "10.7", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/nanopore/guppy_6/08_10_21_R941_HG03927_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03927", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.26", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "88.3", + "totalReads": "N/A", + "twoHundredkbPlus": "1.88", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN37706911", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "7.78", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD62", + "filename": "08_10_21_R941_HG04187_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG04187_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "80040", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.399721", + "oneHundredkbPlus": "2.83", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/nanopore/guppy_6/08_10_21_R941_HG04187_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04187", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.03", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "25.66", + "totalReads": "N/A", + "twoHundredkbPlus": "0.3", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37706911", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.02", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD62", + "filename": "08_10_21_R941_HG04187_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG04187_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "77575", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.336445", + "oneHundredkbPlus": "6.95", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/nanopore/guppy_6/08_10_21_R941_HG04187_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04187", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.07", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "66.07", + "totalReads": "N/A", + "twoHundredkbPlus": "0.76", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37706911", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "18.44", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD62", + "filename": "08_10_21_R941_HG04187_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG04187_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "75818", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.329922", + "oneHundredkbPlus": "6.19", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/nanopore/guppy_6/08_10_21_R941_HG04187_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04187", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.08", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "60.84", + "totalReads": "N/A", + "twoHundredkbPlus": "0.71", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37706911", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "0.86", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD62", + "filename": "08_10_21_R941_HG04187_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG04187_4", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "79819", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.679294", + "oneHundredkbPlus": "0.31", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/nanopore/guppy_6/08_10_21_R941_HG04187_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04187", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "2.82", + "totalReads": "N/A", + "twoHundredkbPlus": "0.03", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26267389", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "29.05", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "ST203", + "filename": "08_10_21_R941_HG04199_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.08", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG04199_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "83714", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.300183", + "oneHundredkbPlus": "11.2", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/nanopore/guppy_6/08_10_21_R941_HG04199_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04199", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "STU", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.3", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "95.87", + "totalReads": "N/A", + "twoHundredkbPlus": "1.59", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26267389", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "12.5", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "ST203", + "filename": "08_10_21_R941_HG04199_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG04199_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "80766", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.366146", + "oneHundredkbPlus": "4.58", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/nanopore/guppy_6/08_10_21_R941_HG04199_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04199", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "STU", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.12", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "41.26", + "totalReads": "N/A", + "twoHundredkbPlus": "0.63", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26267389", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "18.45", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "ST203", + "filename": "08_10_21_R941_HG04199_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG04199_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "71491", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.337721", + "oneHundredkbPlus": "5.55", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/nanopore/guppy_6/08_10_21_R941_HG04199_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04199", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "STU", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.1", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "60.89", + "totalReads": "N/A", + "twoHundredkbPlus": "0.64", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26267390", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "28.35", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "ST006", + "filename": "08_10_21_R941_HG04204_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG04204_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "87228", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.322726", + "oneHundredkbPlus": "11.74", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/nanopore/guppy_6/08_10_21_R941_HG04204_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04204", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "STU", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.22", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "93.56", + "totalReads": "N/A", + "twoHundredkbPlus": "1.6", + "whales": "5" + }, + { + "Gb": "N/A", + "accession": "SAMN26267390", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.51", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "ST006", + "filename": "08_10_21_R941_HG04204_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG04204_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "83571", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.308884", + "oneHundredkbPlus": "8.43", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/nanopore/guppy_6/08_10_21_R941_HG04204_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04204", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "STU", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.17", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "70.98", + "totalReads": "N/A", + "twoHundredkbPlus": "1.17", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN26267390", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "8.36", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "ST006", + "filename": "08_10_21_R941_HG04204_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG04204_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "82249", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.38478", + "oneHundredkbPlus": "3.19", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/nanopore/guppy_6/08_10_21_R941_HG04204_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04204", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "STU", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.06", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "27.6", + "totalReads": "N/A", + "twoHundredkbPlus": "0.41", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26267391", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "30.32", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "ST232", + "filename": "08_10_21_R941_HG04228_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.1", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG04228_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "77428", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.313973", + "oneHundredkbPlus": "10.71", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/nanopore/guppy_6/08_10_21_R941_HG04228_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04228", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "STU", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.4", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "100.06", + "totalReads": "N/A", + "twoHundredkbPlus": "1.93", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN26267391", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "15.02", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "ST232", + "filename": "08_10_21_R941_HG04228_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG04228_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "77232", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.340369", + "oneHundredkbPlus": "5.27", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/nanopore/guppy_6/08_10_21_R941_HG04228_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04228", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "STU", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.18", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "49.57", + "totalReads": "N/A", + "twoHundredkbPlus": "0.93", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26267391", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "26.95", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "ST232", + "filename": "08_10_21_R941_HG04228_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.09", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_21_R941_HG04228_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "76339", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.316726", + "oneHundredkbPlus": "9.37", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/nanopore/guppy_6/08_10_21_R941_HG04228_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04228", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "STU", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.36", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "88.93", + "totalReads": "N/A", + "twoHundredkbPlus": "1.71", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "23.54", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "08_10_22_R941_GM18570_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.06", + "fourHundredkbPlus": "0.17", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_22_R941_GM18570_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "85731", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.339543", + "oneHundredkbPlus": "10.02", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/nanopore/guppy_6/08_10_22_R941_GM18570_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM18570", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.63", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "77.67", + "totalReads": "N/A", + "twoHundredkbPlus": "2.71", + "whales": "5" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "23.88", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "08_10_22_R941_GM18570_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.08", + "fourHundredkbPlus": "0.22", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_22_R941_GM18570_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "77119", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.340802", + "oneHundredkbPlus": "9.24", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/nanopore/guppy_6/08_10_22_R941_GM18570_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM18570", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.68", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "78.8", + "totalReads": "N/A", + "twoHundredkbPlus": "2.63", + "whales": "15" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "18.8", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "08_10_22_R941_GM18570_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.11", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_22_R941_GM18570_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "81801", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.353154", + "oneHundredkbPlus": "7.59", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/nanopore/guppy_6/08_10_22_R941_GM18570_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM18570", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.44", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "62.05", + "totalReads": "N/A", + "twoHundredkbPlus": "1.94", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "15.45", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "08_10_22_R941_GM19120_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.16", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_22_R941_GM19120_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "91781", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.349111", + "oneHundredkbPlus": "7.09", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/nanopore/guppy_6/08_10_22_R941_GM19120_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19120", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.61", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "51", + "totalReads": "N/A", + "twoHundredkbPlus": "2.2", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "17.61", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "08_10_22_R941_GM19120_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.17", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_22_R941_GM19120_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "86577", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.386826", + "oneHundredkbPlus": "7.62", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/nanopore/guppy_6/08_10_22_R941_GM19120_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19120", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.64", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "58.1", + "totalReads": "N/A", + "twoHundredkbPlus": "2.34", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.36", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "08_10_22_R941_GM19120_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.16", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_22_R941_GM19120_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "77646", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.361188", + "oneHundredkbPlus": "9.34", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/nanopore/guppy_6/08_10_22_R941_GM19120_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19120", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.66", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "80.4", + "totalReads": "N/A", + "twoHundredkbPlus": "2.58", + "whales": "6" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.16", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "08_10_22_R941_GM19159_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.16", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_22_R941_GM19159_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "89279", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.332599", + "oneHundredkbPlus": "9.42", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/nanopore/guppy_6/08_10_22_R941_GM19159_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19159", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.69", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "69.84", + "totalReads": "N/A", + "twoHundredkbPlus": "2.77", + "whales": "6" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "18.43", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "08_10_22_R941_GM19159_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.12", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_22_R941_GM19159_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "78467", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.370954", + "oneHundredkbPlus": "7.17", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/nanopore/guppy_6/08_10_22_R941_GM19159_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19159", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.5", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "60.82", + "totalReads": "N/A", + "twoHundredkbPlus": "2.01", + "whales": "6" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "16.74", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "08_10_22_R941_GM19159_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.15", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_22_R941_GM19159_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "85827", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.376472", + "oneHundredkbPlus": "7.14", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/nanopore/guppy_6/08_10_22_R941_GM19159_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19159", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.55", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "55.23", + "totalReads": "N/A", + "twoHundredkbPlus": "2.11", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "18.49", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "08_10_22_R941_GM19185_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.07", + "fourHundredkbPlus": "0.21", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_22_R941_GM19185_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "82038", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.358044", + "oneHundredkbPlus": "7.54", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/nanopore/guppy_6/08_10_22_R941_GM19185_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19185", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.69", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "61", + "totalReads": "N/A", + "twoHundredkbPlus": "2.31", + "whales": "8" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "16.96", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "08_10_22_R941_GM19185_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.1", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_22_R941_GM19185_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "69161", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.349426", + "oneHundredkbPlus": "5.63", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/nanopore/guppy_6/08_10_22_R941_GM19185_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19185", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.39", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "55.98", + "totalReads": "N/A", + "twoHundredkbPlus": "1.45", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "19.07", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "08_10_22_R941_GM19185_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.15", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_22_R941_GM19185_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "72791", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.363303", + "oneHundredkbPlus": "6.79", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/nanopore/guppy_6/08_10_22_R941_GM19185_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19185", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.53", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "62.93", + "totalReads": "N/A", + "twoHundredkbPlus": "1.88", + "whales": "4" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "5.16", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "08_10_22_R941_GM20805_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_22_R941_GM20805_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "74947", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.507947", + "oneHundredkbPlus": "1.98", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/nanopore/guppy_6/08_10_22_R941_GM20805_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM20805", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.17", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "17.01", + "totalReads": "N/A", + "twoHundredkbPlus": "0.62", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "18.88", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "08_10_22_R941_GM20805_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.12", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_22_R941_GM20805_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "82608", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.373759", + "oneHundredkbPlus": "7.77", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/nanopore/guppy_6/08_10_22_R941_GM20805_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM20805", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.55", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "62.3", + "totalReads": "N/A", + "twoHundredkbPlus": "2.23", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "15.28", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "08_10_22_R941_GM20805_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_22_R941_GM20805_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "75115", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.387074", + "oneHundredkbPlus": "5.68", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/nanopore/guppy_6/08_10_22_R941_GM20805_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM20805", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.37", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "50.43", + "totalReads": "N/A", + "twoHundredkbPlus": "1.55", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "10.11", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "08_10_22_R941_GM20805_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_22_R941_GM20805_4", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "71330", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.420147", + "oneHundredkbPlus": "3.53", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/nanopore/guppy_6/08_10_22_R941_GM20805_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM20805", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.22", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "33.38", + "totalReads": "N/A", + "twoHundredkbPlus": "0.93", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "17.19", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "08_10_22_R941_GM20858_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.15", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_22_R941_GM20858_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "83361", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.38728", + "oneHundredkbPlus": "7.21", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/nanopore/guppy_6/08_10_22_R941_GM20858_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM20858", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.6", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "56.73", + "totalReads": "N/A", + "twoHundredkbPlus": "2.25", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "15.36", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "08_10_22_R941_GM20858_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.1", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_22_R941_GM20858_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "72966", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.38856", + "oneHundredkbPlus": "5.54", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/nanopore/guppy_6/08_10_22_R941_GM20858_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM20858", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.41", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "50.68", + "totalReads": "N/A", + "twoHundredkbPlus": "1.56", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "14.51", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "08_10_22_R941_GM20858_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.12", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_22_R941_GM20858_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "73630", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.398138", + "oneHundredkbPlus": "5.33", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/nanopore/guppy_6/08_10_22_R941_GM20858_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM20858", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.43", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "47.89", + "totalReads": "N/A", + "twoHundredkbPlus": "1.55", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37797104", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "1.31", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "08_10_22_R941_HG02391_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_22_R941_HG02391_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "72462", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.64693", + "oneHundredkbPlus": "0.44", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/nanopore/guppy_6/08_10_22_R941_HG02391_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02391", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CDX", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.02", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "4.33", + "totalReads": "N/A", + "twoHundredkbPlus": "0.09", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37797104", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "19.09", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "08_10_22_R941_HG02391_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.1", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_22_R941_HG02391_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "76876", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.373826", + "oneHundredkbPlus": "7.27", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/nanopore/guppy_6/08_10_22_R941_HG02391_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02391", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CDX", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.45", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "62.98", + "totalReads": "N/A", + "twoHundredkbPlus": "1.96", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN37797104", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "18.2", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "08_10_22_R941_HG02391_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.08", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_22_R941_HG02391_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "72921", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.369934", + "oneHundredkbPlus": "6.5", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/nanopore/guppy_6/08_10_22_R941_HG02391_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02391", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CDX", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.38", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "60.06", + "totalReads": "N/A", + "twoHundredkbPlus": "1.71", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN37797104", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "13.23", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "08_10_22_R941_HG02391_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.1", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_10_22_R941_HG02391_4", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "95822", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.39373", + "oneHundredkbPlus": "6.34", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/nanopore/guppy_6/08_10_22_R941_HG02391_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02391", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CDX", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.45", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "43.65", + "totalReads": "N/A", + "twoHundredkbPlus": "1.93", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN37797112", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.93", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": null, + "filename": "08_10_22_R941_HG03792_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.02", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "08_10_22_R941_HG03792_1", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "59519", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.322213", + "oneHundredkbPlus": "6.56", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/nanopore/guppy_6/08_10_22_R941_HG03792_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR4", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03792", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "ITU", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.14", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "85.57", + "totalReads": "N/A", + "twoHundredkbPlus": "1.02", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN37797112", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.29", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": null, + "filename": "08_10_22_R941_HG03792_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.02", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "08_10_22_R941_HG03792_2", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "53139", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.349105", + "oneHundredkbPlus": "4.49", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/nanopore/guppy_6/08_10_22_R941_HG03792_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR4", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03792", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "ITU", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.09", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "70.26", + "totalReads": "N/A", + "twoHundredkbPlus": "0.63", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN37797112", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.83", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": null, + "filename": "08_10_22_R941_HG03792_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.02", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "08_10_22_R941_HG03792_3", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "58516", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.358335", + "oneHundredkbPlus": "6.43", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/nanopore/guppy_6/08_10_22_R941_HG03792_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR4", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03792", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "ITU", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.15", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "85.23", + "totalReads": "N/A", + "twoHundredkbPlus": "1.04", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26267379", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "14.92", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "CLM27", + "filename": "08_17_21_R941_HG01346_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.06", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG01346_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "72488", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.349099", + "oneHundredkbPlus": "4.89", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/nanopore/guppy_6/08_17_21_R941_HG01346_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01346", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CLM", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.15", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "49.22", + "totalReads": "N/A", + "twoHundredkbPlus": "0.75", + "whales": "13" + }, + { + "Gb": "N/A", + "accession": "SAMN26267379", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "30.15", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "CLM27", + "filename": "08_17_21_R941_HG01346_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG01346_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "72436", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.297416", + "oneHundredkbPlus": "9.7", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/nanopore/guppy_6/08_17_21_R941_HG01346_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01346", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CLM", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.21", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "99.49", + "totalReads": "N/A", + "twoHundredkbPlus": "1.34", + "whales": "6" + }, + { + "Gb": "N/A", + "accession": "SAMN26267379", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "27.58", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "CLM27", + "filename": "08_17_21_R941_HG01346_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG01346_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "72638", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.322652", + "oneHundredkbPlus": "8.89", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/nanopore/guppy_6/08_17_21_R941_HG01346_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01346", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CLM", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.18", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "91", + "totalReads": "N/A", + "twoHundredkbPlus": "1.2", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN26237497", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "33.69", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "CLM64", + "filename": "08_17_21_R941_HG01496_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.06", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG01496_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "83713", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.372854", + "oneHundredkbPlus": "13.53", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/nanopore/guppy_6/08_17_21_R941_HG01496_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01496", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CLM", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.32", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "111.18", + "totalReads": "N/A", + "twoHundredkbPlus": "2.45", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237497", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "29.57", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "CLM64", + "filename": "08_17_21_R941_HG01496_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG01496_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "75967", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.364163", + "oneHundredkbPlus": "10.53", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/nanopore/guppy_6/08_17_21_R941_HG01496_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01496", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CLM", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.21", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "97.59", + "totalReads": "N/A", + "twoHundredkbPlus": "1.75", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN26237497", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "17.85", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "CLM64", + "filename": "08_17_21_R941_HG01496_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.03", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG01496_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "80965", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.328512", + "oneHundredkbPlus": "6.87", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/nanopore/guppy_6/08_17_21_R941_HG01496_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01496", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CLM", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.16", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "58.91", + "totalReads": "N/A", + "twoHundredkbPlus": "1.18", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26267393", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.44", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BB03", + "filename": "08_17_21_R941_HG01884_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.12", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG01884_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "81515", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.2997", + "oneHundredkbPlus": "7.84", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/nanopore/guppy_6/08_17_21_R941_HG01884_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01884", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ACB", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.33", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "67.44", + "totalReads": "N/A", + "twoHundredkbPlus": "1.46", + "whales": "14" + }, + { + "Gb": "N/A", + "accession": "SAMN26267393", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BB03", + "filename": "08_17_21_R941_HG01884_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.1", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG01884_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "78937", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.30104", + "oneHundredkbPlus": "7.35", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/nanopore/guppy_6/08_17_21_R941_HG01884_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01884", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ACB", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.28", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "65.99", + "totalReads": "N/A", + "twoHundredkbPlus": "1.31", + "whales": "10" + }, + { + "Gb": "N/A", + "accession": "SAMN26267393", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "13.89", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BB03", + "filename": "08_17_21_R941_HG01884_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.08", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG01884_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "72924", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.329724", + "oneHundredkbPlus": "4.64", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/nanopore/guppy_6/08_17_21_R941_HG01884_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01884", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ACB", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.18", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "45.84", + "totalReads": "N/A", + "twoHundredkbPlus": "0.81", + "whales": "8" + }, + { + "Gb": "N/A", + "accession": "SAMN26237499", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "27.02", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL016", + "filename": "08_17_21_R941_HG01943_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG01943_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "72475", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.322052", + "oneHundredkbPlus": "8.87", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/nanopore/guppy_6/08_17_21_R941_HG01943_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01943", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.2", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "89.17", + "totalReads": "N/A", + "twoHundredkbPlus": "1.27", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26237499", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "15.07", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL016", + "filename": "08_17_21_R941_HG01943_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG01943_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "68632", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.322058", + "oneHundredkbPlus": "4.59", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/nanopore/guppy_6/08_17_21_R941_HG01943_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01943", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.1", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "49.72", + "totalReads": "N/A", + "twoHundredkbPlus": "0.61", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237499", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.55", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL016", + "filename": "08_17_21_R941_HG01943_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG01943_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "65101", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.326738", + "oneHundredkbPlus": "5.92", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/nanopore/guppy_6/08_17_21_R941_HG01943_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01943", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.13", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "67.8", + "totalReads": "N/A", + "twoHundredkbPlus": "0.82", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26237505", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.02", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BB23", + "filename": "08_17_21_R941_HG02280_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG02280_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "84963", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.334565", + "oneHundredkbPlus": "8.3", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/nanopore/guppy_6/08_17_21_R941_HG02280_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02280", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ACB", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.28", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "66.07", + "totalReads": "N/A", + "twoHundredkbPlus": "1.79", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237505", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "34.64", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BB23", + "filename": "08_17_21_R941_HG02280_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.08", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG02280_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "82220", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.324119", + "oneHundredkbPlus": "13.82", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/nanopore/guppy_6/08_17_21_R941_HG02280_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02280", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ACB", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.48", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "114.3", + "totalReads": "N/A", + "twoHundredkbPlus": "2.93", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN26237505", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "12.1", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BB23", + "filename": "08_17_21_R941_HG02280_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.03", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG02280_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "82435", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.348716", + "oneHundredkbPlus": "4.85", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/nanopore/guppy_6/08_17_21_R941_HG02280_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02280", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ACB", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.17", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "39.92", + "totalReads": "N/A", + "twoHundredkbPlus": "1.05", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26267394", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "28.51", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL51", + "filename": "08_17_21_R941_HG02293_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.12", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG02293_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "81288", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.365369", + "oneHundredkbPlus": "10.94", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/nanopore/guppy_6/08_17_21_R941_HG02293_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02293", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.37", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "94.09", + "totalReads": "N/A", + "twoHundredkbPlus": "1.9", + "whales": "7" + }, + { + "Gb": "N/A", + "accession": "SAMN26267394", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "30.04", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL51", + "filename": "08_17_21_R941_HG02293_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.13", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG02293_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "81745", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.384852", + "oneHundredkbPlus": "11.63", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/nanopore/guppy_6/08_17_21_R941_HG02293_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02293", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.41", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "99.12", + "totalReads": "N/A", + "twoHundredkbPlus": "2.06", + "whales": "6" + }, + { + "Gb": "N/A", + "accession": "SAMN26267394", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "33.18", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL51", + "filename": "08_17_21_R941_HG02293_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.12", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG02293_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "81085", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.374775", + "oneHundredkbPlus": "12.69", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/nanopore/guppy_6/08_17_21_R941_HG02293_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02293", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.4", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "109.5", + "totalReads": "N/A", + "twoHundredkbPlus": "2.16", + "whales": "6" + }, + { + "Gb": "N/A", + "accession": "SAMN26267395", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "17.64", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL52", + "filename": "08_17_21_R941_HG02300_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.08", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG02300_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "89326", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.329926", + "oneHundredkbPlus": "7.72", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/nanopore/guppy_6/08_17_21_R941_HG02300_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02300", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.35", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "58.23", + "totalReads": "N/A", + "twoHundredkbPlus": "1.72", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26267395", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.98", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL52", + "filename": "08_17_21_R941_HG02300_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.08", + "fourHundredkbPlus": "0.21", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG02300_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "89321", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.326405", + "oneHundredkbPlus": "11.44", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/nanopore/guppy_6/08_17_21_R941_HG02300_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02300", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.67", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "85.74", + "totalReads": "N/A", + "twoHundredkbPlus": "2.82", + "whales": "16" + }, + { + "Gb": "N/A", + "accession": "SAMN26267395", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "19.23", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL52", + "filename": "08_17_21_R941_HG02300_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.06", + "fourHundredkbPlus": "0.15", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG02300_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "87466", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.327987", + "oneHundredkbPlus": "8.27", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/nanopore/guppy_6/08_17_21_R941_HG02300_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02300", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.48", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "63.45", + "totalReads": "N/A", + "twoHundredkbPlus": "2", + "whales": "9" + }, + { + "Gb": "N/A", + "accession": "SAMN33758786", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "12.08", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BB46", + "filename": "08_17_21_R941_HG02451_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG02451_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "83173", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.338318", + "oneHundredkbPlus": "4.81", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02451/raw_data/nanopore/guppy_6/08_17_21_R941_HG02451_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02451", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ACB", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.13", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "39.87", + "totalReads": "N/A", + "twoHundredkbPlus": "0.89", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN33758786", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "18.9", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BB46", + "filename": "08_17_21_R941_HG02451_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.03", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG02451_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "78263", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.301994", + "oneHundredkbPlus": "6.97", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02451/raw_data/nanopore/guppy_6/08_17_21_R941_HG02451_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02451", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ACB", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.18", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "62.38", + "totalReads": "N/A", + "twoHundredkbPlus": "1.24", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN33758786", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "18.95", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BB46", + "filename": "08_17_21_R941_HG02451_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG02451_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "82173", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.307473", + "oneHundredkbPlus": "7.45", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02451/raw_data/nanopore/guppy_6/08_17_21_R941_HG02451_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02451", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "ACB", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.25", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "62.53", + "totalReads": "N/A", + "twoHundredkbPlus": "1.45", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33758787", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "15.77", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK26", + "filename": "08_17_21_R941_HG02735_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.11", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG02735_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "79365", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.362279", + "oneHundredkbPlus": "5.83", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/nanopore/guppy_6/08_17_21_R941_HG02735_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02735", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.29", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "52.05", + "totalReads": "N/A", + "twoHundredkbPlus": "1.14", + "whales": "18" + }, + { + "Gb": "N/A", + "accession": "SAMN33758787", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "17.4", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK26", + "filename": "08_17_21_R941_HG02735_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.09", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG02735_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "80063", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.350825", + "oneHundredkbPlus": "6.43", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/nanopore/guppy_6/08_17_21_R941_HG02735_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02735", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.26", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "57.41", + "totalReads": "N/A", + "twoHundredkbPlus": "1.13", + "whales": "7" + }, + { + "Gb": "N/A", + "accession": "SAMN33758787", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "8.75", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK26", + "filename": "08_17_21_R941_HG02735_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.03", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG02735_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "77157", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.419899", + "oneHundredkbPlus": "2.99", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/nanopore/guppy_6/08_17_21_R941_HG02735_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02735", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.09", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "28.87", + "totalReads": "N/A", + "twoHundredkbPlus": "0.46", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33758787", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "12.7", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK26", + "filename": "08_17_21_R941_HG02735_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG02735_4", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "81587", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.352212", + "oneHundredkbPlus": "4.74", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/nanopore/guppy_6/08_17_21_R941_HG02735_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02735", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.16", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "41.91", + "totalReads": "N/A", + "twoHundredkbPlus": "0.79", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26267396", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "6.17", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK27", + "filename": "08_17_21_R941_HG02738_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG02738_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "75231", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.407703", + "oneHundredkbPlus": "2.19", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/nanopore/guppy_6/08_17_21_R941_HG02738_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02738", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.1", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "20.37", + "totalReads": "N/A", + "twoHundredkbPlus": "0.42", + "whales": "5" + }, + { + "Gb": "N/A", + "accession": "SAMN26267396", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.49", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK27", + "filename": "08_17_21_R941_HG02738_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.06", + "fourHundredkbPlus": "0.14", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG02738_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "84858", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.275721", + "oneHundredkbPlus": "8.82", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/nanopore/guppy_6/08_17_21_R941_HG02738_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02738", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.4", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "70.92", + "totalReads": "N/A", + "twoHundredkbPlus": "1.79", + "whales": "6" + }, + { + "Gb": "N/A", + "accession": "SAMN26267396", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "29", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK27", + "filename": "08_17_21_R941_HG02738_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.09", + "fourHundredkbPlus": "0.22", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG02738_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "85682", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.296058", + "oneHundredkbPlus": "12.07", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/nanopore/guppy_6/08_17_21_R941_HG02738_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02738", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.64", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "95.7", + "totalReads": "N/A", + "twoHundredkbPlus": "2.64", + "whales": "16" + }, + { + "Gb": "N/A", + "accession": "SAMN26237510", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "14.81", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "GB63", + "filename": "08_17_21_R941_HG02809_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG02809_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "88827", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.330392", + "oneHundredkbPlus": "6.43", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/nanopore/guppy_6/08_17_21_R941_HG02809_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02809", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.24", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "48.89", + "totalReads": "N/A", + "twoHundredkbPlus": "1.32", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN26237510", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "22.52", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "GB63", + "filename": "08_17_21_R941_HG02809_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.08", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG02809_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "93836", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.339115", + "oneHundredkbPlus": "10.41", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/nanopore/guppy_6/08_17_21_R941_HG02809_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02809", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.32", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "74.33", + "totalReads": "N/A", + "twoHundredkbPlus": "2.04", + "whales": "4" + }, + { + "Gb": "N/A", + "accession": "SAMN26237510", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.53", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "GB63", + "filename": "08_17_21_R941_HG02809_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.1", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG02809_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "91856", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.321222", + "oneHundredkbPlus": "11.5", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/nanopore/guppy_6/08_17_21_R941_HG02809_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02809", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "0.4", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "84.25", + "totalReads": "N/A", + "twoHundredkbPlus": "2.28", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN33758795", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.08", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK60", + "filename": "08_17_21_R941_HG03704_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.03", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG03704_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "85778", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.322761", + "oneHundredkbPlus": "10.17", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03704/raw_data/nanopore/guppy_6/08_17_21_R941_HG03704_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03704", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.17", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "82.75", + "totalReads": "N/A", + "twoHundredkbPlus": "1.49", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33758795", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.6", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK60", + "filename": "08_17_21_R941_HG03704_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG03704_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "82890", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.35997", + "oneHundredkbPlus": "9.61", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03704/raw_data/nanopore/guppy_6/08_17_21_R941_HG03704_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03704", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.19", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "81.19", + "totalReads": "N/A", + "twoHundredkbPlus": "1.48", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN33758795", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.04", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK60", + "filename": "08_17_21_R941_HG03704_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_17_21_R941_HG03704_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "78860", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.333713", + "oneHundredkbPlus": "7.24", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03704/raw_data/nanopore/guppy_6/08_17_21_R941_HG03704_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03704", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.11", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "66.14", + "totalReads": "N/A", + "twoHundredkbPlus": "0.99", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26237500", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "17.09", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL27", + "filename": "08_25_21_R941_HG01981_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_25_21_R941_HG01981_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "66847", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.266703", + "oneHundredkbPlus": "4.92", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/nanopore/guppy_6/08_25_21_R941_HG01981_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01981", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.04", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "56.38", + "totalReads": "N/A", + "twoHundredkbPlus": "0.52", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN26237500", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.49", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL27", + "filename": "08_25_21_R941_HG01981_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_25_21_R941_HG01981_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "65984", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.301576", + "oneHundredkbPlus": "6.96", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/nanopore/guppy_6/08_25_21_R941_HG01981_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01981", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.07", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "80.81", + "totalReads": "N/A", + "twoHundredkbPlus": "0.75", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26237500", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.99", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL27", + "filename": "08_25_21_R941_HG01981_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_25_21_R941_HG01981_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "65439", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.323498", + "oneHundredkbPlus": "5.88", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/nanopore/guppy_6/08_25_21_R941_HG01981_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01981", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.07", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "69.28", + "totalReads": "N/A", + "twoHundredkbPlus": "0.66", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237502", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "35.45", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL33", + "filename": "08_25_21_R941_HG02004_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_25_21_R941_HG02004_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "89941", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.297757", + "oneHundredkbPlus": "15.74", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/nanopore/guppy_6/08_25_21_R941_HG02004_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02004", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.39", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "116.98", + "totalReads": "N/A", + "twoHundredkbPlus": "3.26", + "whales": "4" + }, + { + "Gb": "N/A", + "accession": "SAMN26237502", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "31.24", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL33", + "filename": "08_25_21_R941_HG02004_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.06", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_25_21_R941_HG02004_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "89761", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.307564", + "oneHundredkbPlus": "13.86", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/nanopore/guppy_6/08_25_21_R941_HG02004_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02004", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.36", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "103.09", + "totalReads": "N/A", + "twoHundredkbPlus": "2.91", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN26237502", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "17.74", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PEL33", + "filename": "08_25_21_R941_HG02004_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.03", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_25_21_R941_HG02004_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "85447", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.341192", + "oneHundredkbPlus": "7.42", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/nanopore/guppy_6/08_25_21_R941_HG02004_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02004", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PEL", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.19", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "58.55", + "totalReads": "N/A", + "twoHundredkbPlus": "1.48", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26267384", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "15.46", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK16", + "filename": "08_25_21_R941_HG02683_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.08", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_25_21_R941_HG02683_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "93672", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.373037", + "oneHundredkbPlus": "7.2", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/nanopore/guppy_6/08_25_21_R941_HG02683_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02683", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.33", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "51.01", + "totalReads": "N/A", + "twoHundredkbPlus": "1.76", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN26267384", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "16.57", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK16", + "filename": "08_25_21_R941_HG02683_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_25_21_R941_HG02683_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "98701", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.341715", + "oneHundredkbPlus": "8.17", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/nanopore/guppy_6/08_25_21_R941_HG02683_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02683", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.31", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "54.69", + "totalReads": "N/A", + "twoHundredkbPlus": "1.89", + "whales": "6" + }, + { + "Gb": "N/A", + "accession": "SAMN26267384", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "15.58", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PK16", + "filename": "08_25_21_R941_HG02683_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.06", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_25_21_R941_HG02683_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "95821", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.344844", + "oneHundredkbPlus": "7.42", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/nanopore/guppy_6/08_25_21_R941_HG02683_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02683", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PJL", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.27", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "51.42", + "totalReads": "N/A", + "twoHundredkbPlus": "1.67", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26267397", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "13.97", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD61", + "filename": "08_25_21_R941_HG04184_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.08", + "fourHundredkbPlus": "0.17", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_25_21_R941_HG04184_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "87332", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.340642", + "oneHundredkbPlus": "6", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/nanopore/guppy_6/08_25_21_R941_HG04184_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04184", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.43", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "46.09", + "totalReads": "N/A", + "twoHundredkbPlus": "1.5", + "whales": "15" + }, + { + "Gb": "N/A", + "accession": "SAMN26267397", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "18.01", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD61", + "filename": "08_25_21_R941_HG04184_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.13", + "fourHundredkbPlus": "0.28", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_25_21_R941_HG04184_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "99822", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.334229", + "oneHundredkbPlus": "8.99", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/nanopore/guppy_6/08_25_21_R941_HG04184_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04184", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.69", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "59.44", + "totalReads": "N/A", + "twoHundredkbPlus": "2.4", + "whales": "30" + }, + { + "Gb": "N/A", + "accession": "SAMN26267397", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "15.81", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "BD61", + "filename": "08_25_21_R941_HG04184_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.1", + "fourHundredkbPlus": "0.21", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "08_25_21_R941_HG04184_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "89392", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.361875", + "oneHundredkbPlus": "6.96", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/nanopore/guppy_6/08_25_21_R941_HG04184_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG04184", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.5", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "52.17", + "totalReads": "N/A", + "twoHundredkbPlus": "1.73", + "whales": "25" + }, + { + "Gb": "N/A", + "accession": "SAMN33621945", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "19.78", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PR40", + "filename": "09_08_21_R941_HG01192_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.14", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_08_21_R941_HG01192_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "93439", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.36009", + "oneHundredkbPlus": "9.23", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01192/raw_data/nanopore/guppy_6/09_08_21_R941_HG01192_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01192", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PUR", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.58", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "65.28", + "totalReads": "N/A", + "twoHundredkbPlus": "2.6", + "whales": "10" + }, + { + "Gb": "N/A", + "accession": "SAMN33621945", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "13.78", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PR40", + "filename": "09_08_21_R941_HG01192_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_08_21_R941_HG01192_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "96482", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.341194", + "oneHundredkbPlus": "6.63", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01192/raw_data/nanopore/guppy_6/09_08_21_R941_HG01192_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01192", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PUR", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.35", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "45.46", + "totalReads": "N/A", + "twoHundredkbPlus": "1.75", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33621945", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "16.31", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "PR40", + "filename": "09_08_21_R941_HG01192_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.09", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_08_21_R941_HG01192_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "96610", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.383568", + "oneHundredkbPlus": "7.86", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01192/raw_data/nanopore/guppy_6/09_08_21_R941_HG01192_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01192", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "PUR", + "superpopulation": "AMR", + "threeHundredkbPlus": "0.44", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "53.82", + "totalReads": "N/A", + "twoHundredkbPlus": "2.12", + "whales": "5" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "23.91", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_14_22_R941_GM19087_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.06", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_14_22_R941_GM19087_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "67258", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.363347", + "oneHundredkbPlus": "7.34", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/nanopore/guppy_6/09_14_22_R941_GM19087_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19087", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.26", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "78.91", + "totalReads": "N/A", + "twoHundredkbPlus": "1.35", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "22.89", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_14_22_R941_GM19087_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_14_22_R941_GM19087_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "63634", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.37074", + "oneHundredkbPlus": "6.62", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/nanopore/guppy_6/09_14_22_R941_GM19087_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19087", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.26", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "75.53", + "totalReads": "N/A", + "twoHundredkbPlus": "1.25", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.21", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_14_22_R941_GM19087_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.12", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_14_22_R941_GM19087_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "70432", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.389523", + "oneHundredkbPlus": "8.38", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/nanopore/guppy_6/09_14_22_R941_GM19087_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19087", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.4", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "83.18", + "totalReads": "N/A", + "twoHundredkbPlus": "1.75", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "27.2", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_14_22_R941_GM20752_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.1", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_14_22_R941_GM20752_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "76135", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.35574", + "oneHundredkbPlus": "10.05", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/nanopore/guppy_6/09_14_22_R941_GM20752_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM20752", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.49", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "89.75", + "totalReads": "N/A", + "twoHundredkbPlus": "2.39", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "27.2", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_14_22_R941_GM20752_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.1", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_14_22_R941_GM20752_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "76135", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.35574", + "oneHundredkbPlus": "10.05", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/nanopore/guppy_6/09_14_22_R941_GM20752_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM20752", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.49", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "89.75", + "totalReads": "N/A", + "twoHundredkbPlus": "2.39", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.53", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_14_22_R941_GM20752_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.11", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_14_22_R941_GM20752_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "81001", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.370001", + "oneHundredkbPlus": "9.75", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/nanopore/guppy_6/09_14_22_R941_GM20752_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM20752", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.53", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "80.96", + "totalReads": "N/A", + "twoHundredkbPlus": "2.47", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN33758778", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "19.41", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_14_22_R941_HG00099_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.13", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_14_22_R941_HG00099_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "72981", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.369611", + "oneHundredkbPlus": "6.98", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/nanopore/guppy_6/09_14_22_R941_HG00099_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00099", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GBR", + "superpopulation": "EUR", + "threeHundredkbPlus": "0.5", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "64.04", + "totalReads": "N/A", + "twoHundredkbPlus": "1.86", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN33758778", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "19.1", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_14_22_R941_HG00099_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.12", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_14_22_R941_HG00099_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "71544", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.377991", + "oneHundredkbPlus": "6.65", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/nanopore/guppy_6/09_14_22_R941_HG00099_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00099", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GBR", + "superpopulation": "EUR", + "threeHundredkbPlus": "0.45", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "63.02", + "totalReads": "N/A", + "twoHundredkbPlus": "1.72", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN33758778", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.27", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_14_22_R941_HG00099_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.12", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_14_22_R941_HG00099_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "71872", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.3764", + "oneHundredkbPlus": "7.12", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/nanopore/guppy_6/09_14_22_R941_HG00099_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00099", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "GBR", + "superpopulation": "EUR", + "threeHundredkbPlus": "0.47", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "66.9", + "totalReads": "N/A", + "twoHundredkbPlus": "1.83", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN33758779", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "22.12", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_14_22_R941_HG00280_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.12", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_14_22_R941_HG00280_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "74653", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.375128", + "oneHundredkbPlus": "8.13", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/nanopore/guppy_6/09_14_22_R941_HG00280_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00280", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "FIN", + "superpopulation": "EUR", + "threeHundredkbPlus": "0.5", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "72.98", + "totalReads": "N/A", + "twoHundredkbPlus": "2.14", + "whales": "4" + }, + { + "Gb": "N/A", + "accession": "SAMN33758779", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "18.91", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_14_22_R941_HG00280_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.11", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_14_22_R941_HG00280_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "65990", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.380822", + "oneHundredkbPlus": "6.12", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/nanopore/guppy_6/09_14_22_R941_HG00280_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00280", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "FIN", + "superpopulation": "EUR", + "threeHundredkbPlus": "0.39", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "62.41", + "totalReads": "N/A", + "twoHundredkbPlus": "1.57", + "whales": "14" + }, + { + "Gb": "N/A", + "accession": "SAMN33758779", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "18.81", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_14_22_R941_HG00280_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.09", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_14_22_R941_HG00280_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "67870", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.360848", + "oneHundredkbPlus": "6.15", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/nanopore/guppy_6/09_14_22_R941_HG00280_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00280", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "FIN", + "superpopulation": "EUR", + "threeHundredkbPlus": "0.34", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "62.07", + "totalReads": "N/A", + "twoHundredkbPlus": "1.49", + "whales": "8" + }, + { + "Gb": "N/A", + "accession": "SAMN37797099", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "17.09", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_14_22_R941_HG01530_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.06", + "fourHundredkbPlus": "0.19", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_14_22_R941_HG01530_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "80614", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.373646", + "oneHundredkbPlus": "6.91", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/nanopore/guppy_6/09_14_22_R941_HG01530_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01530", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "IBS", + "superpopulation": "EUR", + "threeHundredkbPlus": "0.65", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "56.39", + "totalReads": "N/A", + "twoHundredkbPlus": "2.13", + "whales": "4" + }, + { + "Gb": "N/A", + "accession": "SAMN37797099", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "19.07", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_14_22_R941_HG01530_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.06", + "fourHundredkbPlus": "0.2", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_14_22_R941_HG01530_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "75444", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.370886", + "oneHundredkbPlus": "7.19", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/nanopore/guppy_6/09_14_22_R941_HG01530_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01530", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "IBS", + "superpopulation": "EUR", + "threeHundredkbPlus": "0.66", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "62.94", + "totalReads": "N/A", + "twoHundredkbPlus": "2.14", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN37797099", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "17.93", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_14_22_R941_HG01530_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.14", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_14_22_R941_HG01530_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "73858", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.39413", + "oneHundredkbPlus": "6.49", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/nanopore/guppy_6/09_14_22_R941_HG01530_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01530", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "IBS", + "superpopulation": "EUR", + "threeHundredkbPlus": "0.49", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "59.17", + "totalReads": "N/A", + "twoHundredkbPlus": "1.77", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN37797100", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "22.9", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_14_22_R941_HG01784_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.14", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_14_22_R941_HG01784_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "76764", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.352992", + "oneHundredkbPlus": "8.62", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01784/raw_data/nanopore/guppy_6/09_14_22_R941_HG01784_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01784", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "IBS", + "superpopulation": "EUR", + "threeHundredkbPlus": "0.52", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "75.57", + "totalReads": "N/A", + "twoHundredkbPlus": "2.16", + "whales": "4" + }, + { + "Gb": "N/A", + "accession": "SAMN37797100", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.58", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_14_22_R941_HG01784_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.14", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_14_22_R941_HG01784_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "72441", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.367476", + "oneHundredkbPlus": "8.93", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01784/raw_data/nanopore/guppy_6/09_14_22_R941_HG01784_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01784", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "IBS", + "superpopulation": "EUR", + "threeHundredkbPlus": "0.5", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "84.4", + "totalReads": "N/A", + "twoHundredkbPlus": "2.11", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN37797100", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "22.49", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_14_22_R941_HG01784_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.11", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_14_22_R941_HG01784_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "70230", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.374443", + "oneHundredkbPlus": "7.55", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG01784/raw_data/nanopore/guppy_6/09_14_22_R941_HG01784_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG01784", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "IBS", + "superpopulation": "EUR", + "threeHundredkbPlus": "0.39", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "74.22", + "totalReads": "N/A", + "twoHundredkbPlus": "1.71", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "2.37", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_27_2022_R941_GM19043_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.01", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_27_2022_R941_GM19043_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "77107", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.570092", + "oneHundredkbPlus": "0.9", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/nanopore/guppy_6/09_27_2022_R941_GM19043_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19043", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.04", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "7.83", + "totalReads": "N/A", + "twoHundredkbPlus": "0.21", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.36", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_27_2022_R941_GM19043_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_27_2022_R941_GM19043_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "71878", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.346266", + "oneHundredkbPlus": "7.16", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/nanopore/guppy_6/09_27_2022_R941_GM19043_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19043", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.23", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "70.5", + "totalReads": "N/A", + "twoHundredkbPlus": "1.38", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.83", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_27_2022_R941_GM19043_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.06", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_27_2022_R941_GM19043_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "71558", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.371248", + "oneHundredkbPlus": "7.05", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/nanopore/guppy_6/09_27_2022_R941_GM19043_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19043", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.27", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "68.75", + "totalReads": "N/A", + "twoHundredkbPlus": "1.45", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "17.89", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_27_2022_R941_GM19043_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_27_2022_R941_GM19043_4", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "77640", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.35535", + "oneHundredkbPlus": "6.71", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/nanopore/guppy_6/09_27_2022_R941_GM19043_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM19043", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.26", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "59.04", + "totalReads": "N/A", + "twoHundredkbPlus": "1.47", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "23.77", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_27_2022_R941_GM20799_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_27_2022_R941_GM20799_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "68413", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.340489", + "oneHundredkbPlus": "7.71", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20799_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM20799", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.26", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "78.44", + "totalReads": "N/A", + "twoHundredkbPlus": "1.61", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "12.85", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_27_2022_R941_GM20799_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_27_2022_R941_GM20799_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "64340", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.401567", + "oneHundredkbPlus": "3.8", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20799_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM20799", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.11", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "42.4", + "totalReads": "N/A", + "twoHundredkbPlus": "0.71", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.72", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_27_2022_R941_GM20799_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.03", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_27_2022_R941_GM20799_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "66914", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.368589", + "oneHundredkbPlus": "6.75", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20799_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM20799", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.2", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "71.69", + "totalReads": "N/A", + "twoHundredkbPlus": "1.3", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.22", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_27_2022_R941_GM20905_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.05", + "fourHundredkbPlus": "0.15", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_27_2022_R941_GM20905_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "78145", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.318679", + "oneHundredkbPlus": "8.31", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20905_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM20905", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.61", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "70.02", + "totalReads": "N/A", + "twoHundredkbPlus": "2.42", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "19.23", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_27_2022_R941_GM20905_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.12", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_27_2022_R941_GM20905_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "70923", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.349624", + "oneHundredkbPlus": "6.76", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20905_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM20905", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.45", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "63.45", + "totalReads": "N/A", + "twoHundredkbPlus": "1.84", + "whales": "4" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.1", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": null, + "filename": "09_27_2022_R941_GM20905_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.12", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "09_27_2022_R941_GM20905_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "69497", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.38176", + "oneHundredkbPlus": "6.92", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20905_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "GM20905", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "0.46", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "66.35", + "totalReads": "N/A", + "twoHundredkbPlus": "1.84", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN37797111", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.24", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": null, + "filename": "09_27_2022_R941_HG03742_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.11", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "09_27_2022_R941_HG03742_1", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "81011", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.377766", + "oneHundredkbPlus": "8.14", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/nanopore/guppy_6/09_27_2022_R941_HG03742_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03742", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "ITU", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.48", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "66.81", + "totalReads": "N/A", + "twoHundredkbPlus": "2.19", + "whales": "7" + }, + { + "Gb": "N/A", + "accession": "SAMN37797111", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.4", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": null, + "filename": "09_27_2022_R941_HG03742_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.07", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "09_27_2022_R941_HG03742_2", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "71143", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.367302", + "oneHundredkbPlus": "7.02", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/nanopore/guppy_6/09_27_2022_R941_HG03742_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03742", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "ITU", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.34", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "67.34", + "totalReads": "N/A", + "twoHundredkbPlus": "1.69", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN37797111", + "assembly": "N/A", + "basecaller": "", + "basecallerModel": "", + "basecallerVersion": "", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "19.25", + "dataType": "", + "deepConsensusVersion": "N/A", + "designDescription": "", + "familyId": null, + "filename": "09_27_2022_R941_HG03742_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.1", + "generatorContact": "", + "generatorFacility": "", + "instrumentModel": "", + "libraryId": "09_27_2022_R941_HG03742_3", + "libraryLayout": "", + "librarySelection": "", + "librarySource": "", + "libraryStrategy": "", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "76240", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.368966", + "oneHundredkbPlus": "7.22", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/nanopore/guppy_6/09_27_2022_R941_HG03742_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG03742", + "seqKit": "", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "", + "sizeSelection": "", + "study": "N/A", + "subpopulation": "ITU", + "superpopulation": "SAS", + "threeHundredkbPlus": "0.4", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "63.51", + "totalReads": "N/A", + "twoHundredkbPlus": "1.86", + "whales": "8" + }, + { + "Gb": "N/A", + "accession": "SAMN33621948", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "5.26", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN046", + "filename": "10_12_21_R941_HG02015_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.02", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "10_12_21_R941_HG02015_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "101497", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.368566", + "oneHundredkbPlus": "2.67", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02015/raw_data/nanopore/guppy_6/10_12_21_R941_HG02015_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02015", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.14", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "17.35", + "totalReads": "N/A", + "twoHundredkbPlus": "0.73", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33621948", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "6.2", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN046", + "filename": "10_12_21_R941_HG02015_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.03", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "10_12_21_R941_HG02015_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "100719", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.377167", + "oneHundredkbPlus": "3.12", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02015/raw_data/nanopore/guppy_6/10_12_21_R941_HG02015_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02015", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.15", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "20.45", + "totalReads": "N/A", + "twoHundredkbPlus": "0.83", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33621948", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "13.73", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN046", + "filename": "10_12_21_R941_HG02015_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.06", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "10_12_21_R941_HG02015_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "102206", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.331869", + "oneHundredkbPlus": "7.03", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02015/raw_data/nanopore/guppy_6/10_12_21_R941_HG02015_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02015", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.33", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "45.31", + "totalReads": "N/A", + "twoHundredkbPlus": "1.81", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN33621948", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "8.67", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN046", + "filename": "10_12_21_R941_HG02015_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "10_12_21_R941_HG02015_4", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "101105", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.362562", + "oneHundredkbPlus": "4.39", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02015/raw_data/nanopore/guppy_6/10_12_21_R941_HG02015_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02015", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.25", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "28.62", + "totalReads": "N/A", + "twoHundredkbPlus": "1.23", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN33621949", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "14.62", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN060", + "filename": "10_12_21_R941_HG02056_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "10_12_21_R941_HG02056_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "86229", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.359442", + "oneHundredkbPlus": "6.05", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02056/raw_data/nanopore/guppy_6/10_12_21_R941_HG02056_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02056", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.17", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "48.23", + "totalReads": "N/A", + "twoHundredkbPlus": "1.09", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN33621949", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "15.79", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN060", + "filename": "10_12_21_R941_HG02056_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.06", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "10_12_21_R941_HG02056_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "79943", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.365471", + "oneHundredkbPlus": "6.01", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02056/raw_data/nanopore/guppy_6/10_12_21_R941_HG02056_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02056", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.22", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "52.1", + "totalReads": "N/A", + "twoHundredkbPlus": "1.14", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN33621949", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "18.29", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN060", + "filename": "10_12_21_R941_HG02056_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.08", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "10_12_21_R941_HG02056_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "84411", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.360656", + "oneHundredkbPlus": "7.42", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02056/raw_data/nanopore/guppy_6/10_12_21_R941_HG02056_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02056", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.27", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "60.36", + "totalReads": "N/A", + "twoHundredkbPlus": "1.44", + "whales": "5" + }, + { + "Gb": "N/A", + "accession": "SAMN33621950", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "14.72", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN079", + "filename": "10_12_21_R941_HG02129_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "10_12_21_R941_HG02129_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "83679", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.342092", + "oneHundredkbPlus": "5.88", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02129/raw_data/nanopore/guppy_6/10_12_21_R941_HG02129_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02129", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.17", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "48.56", + "totalReads": "N/A", + "twoHundredkbPlus": "1.05", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN33621950", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "13.37", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN079", + "filename": "10_12_21_R941_HG02129_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "10_12_21_R941_HG02129_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "81649", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.312407", + "oneHundredkbPlus": "5.2", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02129/raw_data/nanopore/guppy_6/10_12_21_R941_HG02129_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02129", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.17", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "44.13", + "totalReads": "N/A", + "twoHundredkbPlus": "0.96", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN33621950", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.5.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "13.79", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN079", + "filename": "10_12_21_R941_HG02129_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "10_12_21_R941_HG02129_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "79677", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.350055", + "oneHundredkbPlus": "5.18", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02129/raw_data/nanopore/guppy_6/10_12_21_R941_HG02129_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR3", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02129", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.14", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "45.51", + "totalReads": "N/A", + "twoHundredkbPlus": "0.89", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": "SAMN26237490", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.03", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH007", + "filename": "12_08_21_R941_HG00423_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.11", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "12_08_21_R941_HG00423_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "92363", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.307526", + "oneHundredkbPlus": "9.67", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/nanopore/guppy_6/12_08_21_R941_HG00423_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00423", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.52", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "69.39", + "totalReads": "N/A", + "twoHundredkbPlus": "2.55", + "whales": "6" + }, + { + "Gb": "N/A", + "accession": "SAMN26237490", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "18.61", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH007", + "filename": "12_08_21_R941_HG00423_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.11", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "12_08_21_R941_HG00423_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "89888", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.298268", + "oneHundredkbPlus": "8.32", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/nanopore/guppy_6/12_08_21_R941_HG00423_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00423", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.46", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "61.42", + "totalReads": "N/A", + "twoHundredkbPlus": "2.2", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN26237490", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "20.8", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "SH007", + "filename": "12_08_21_R941_HG00423_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.11", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "12_08_21_R941_HG00423_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "92063", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.301781", + "oneHundredkbPlus": "9.52", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/nanopore/guppy_6/12_08_21_R941_HG00423_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG00423", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "CHS", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.47", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "68.64", + "totalReads": "N/A", + "twoHundredkbPlus": "2.46", + "whales": "3" + }, + { + "Gb": "N/A", + "accession": "SAMN26237503", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "17.1", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN050", + "filename": "12_08_21_R941_HG02027_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.03", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "12_08_21_R941_HG02027_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "58363", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.334542", + "oneHundredkbPlus": "4.32", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02027/raw_data/nanopore/guppy_6/12_08_21_R941_HG02027_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02027", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.11", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "56.42", + "totalReads": "N/A", + "twoHundredkbPlus": "0.54", + "whales": "2" + }, + { + "Gb": "N/A", + "accession": "SAMN26237503", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.7", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN050", + "filename": "12_08_21_R941_HG02027_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.05", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "12_08_21_R941_HG02027_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "64561", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.339873", + "oneHundredkbPlus": "6.25", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02027/raw_data/nanopore/guppy_6/12_08_21_R941_HG02027_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02027", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.15", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "71.62", + "totalReads": "N/A", + "twoHundredkbPlus": "0.82", + "whales": "5" + }, + { + "Gb": "N/A", + "accession": "SAMN26237503", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "21.32", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN050", + "filename": "12_08_21_R941_HG02027_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.01", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "12_08_21_R941_HG02027_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "61541", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.327309", + "oneHundredkbPlus": "5.7", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02027/raw_data/nanopore/guppy_6/12_08_21_R941_HG02027_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02027", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.13", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "70.35", + "totalReads": "N/A", + "twoHundredkbPlus": "0.71", + "whales": "0" + }, + { + "Gb": "N/A", + "accession": "SAMN26237504", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.01", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN069", + "filename": "12_08_21_R941_HG02083_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.06", + "fourHundredkbPlus": "0.11", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "12_08_21_R941_HG02083_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "74924", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.299525", + "oneHundredkbPlus": "8.69", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG02083/raw_data/nanopore/guppy_6/12_08_21_R941_HG02083_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02083", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.27", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "82.53", + "totalReads": "N/A", + "twoHundredkbPlus": "1.41", + "whales": "24" + }, + { + "Gb": "N/A", + "accession": "SAMN26237504", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "24.95", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN069", + "filename": "12_08_21_R941_HG02083_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.08", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "12_08_21_R941_HG02083_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "76579", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.316949", + "oneHundredkbPlus": "8.89", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG02083/raw_data/nanopore/guppy_6/12_08_21_R941_HG02083_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02083", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.24", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "82.33", + "totalReads": "N/A", + "twoHundredkbPlus": "1.4", + "whales": "24" + }, + { + "Gb": "N/A", + "accession": "SAMN26237504", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "26.77", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN069", + "filename": "12_08_21_R941_HG02083_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.08", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "12_08_21_R941_HG02083_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "74918", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.280197", + "oneHundredkbPlus": "9.27", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG02083/raw_data/nanopore/guppy_6/12_08_21_R941_HG02083_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02083", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.23", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "88.36", + "totalReads": "N/A", + "twoHundredkbPlus": "1.42", + "whales": "14" + }, + { + "Gb": "N/A", + "accession": "SAMN26237506", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "29.08", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN090", + "filename": "12_08_21_R941_HG02523_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.04", + "fourHundredkbPlus": "0.09", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "12_08_21_R941_HG02523_1", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "73676", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.331787", + "oneHundredkbPlus": "9.94", + "oneMbPlus": "0.01", + "path": "s3://human-pangenomics/working/HPRC/HG02523/raw_data/nanopore/guppy_6/12_08_21_R941_HG02523_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02523", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.24", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "95.97", + "totalReads": "N/A", + "twoHundredkbPlus": "1.47", + "whales": "15" + }, + { + "Gb": "N/A", + "accession": "SAMN26237506", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "25.74", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN090", + "filename": "12_08_21_R941_HG02523_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.03", + "fourHundredkbPlus": "0.07", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "12_08_21_R941_HG02523_2", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "74782", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.32545", + "oneHundredkbPlus": "8.82", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02523/raw_data/nanopore/guppy_6/12_08_21_R941_HG02523_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02523", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.2", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "84.96", + "totalReads": "N/A", + "twoHundredkbPlus": "1.23", + "whales": "10" + }, + { + "Gb": "N/A", + "accession": "SAMN26237506", + "assembly": "N/A", + "basecaller": "guppy", + "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", + "basecallerVersion": "6.4.6", + "bioprojectAccession": "N/A", + "biosampleAccession": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "22.8", + "dataType": "unaligned reads with 5mC mods", + "deepConsensusVersion": "N/A", + "designDescription": "UL sequencing using ONT-Circulomics method", + "familyId": "VN090", + "filename": "12_08_21_R941_HG02523_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "filetype": "bam", + "fiveHundredkbPlus": "0.02", + "fourHundredkbPlus": "0.04", + "generatorContact": "iviolich@ucsc.edu", + "generatorFacility": "University of California, Santa Cruz", + "instrumentModel": "PromethION", + "libraryId": "12_08_21_R941_HG02523_3", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "N/A", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "75745", + "n75": "N/A", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "0.331465", + "oneHundredkbPlus": "7.95", + "oneMbPlus": "0", + "path": "s3://human-pangenomics/working/HPRC/HG02523/raw_data/nanopore/guppy_6/12_08_21_R941_HG02523_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", + "platform": "OXFORD_NANOPORE", + "polymeraseVersion": "N/A", + "productionYear": "YR2", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "Similar", + "sampleId": "HG02523", + "seqKit": "SQK-ULK001", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "no SS", + "study": "N/A", + "subpopulation": "KHV", + "superpopulation": "EAS", + "threeHundredkbPlus": "0.15", + "title": "N/A", + "totalBp": "N/A", + "totalGbp": "75.24", + "totalReads": "N/A", + "twoHundredkbPlus": "1.1", + "whales": "1" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758778", + "ccsAlgorithm": "N/A", + "coverage": "3.37", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00099-1_S20_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00099-1_S20_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242407", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.63141", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-1_S20_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00099", + "totalBp": "10451741673", + "totalGbp": "10.45", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758778", + "ccsAlgorithm": "N/A", + "coverage": "3.37", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00099-1_S20_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00099-1_S20_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242407", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.586367", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-1_S20_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00099", + "totalBp": "10450847711", + "totalGbp": "10.45", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758778", + "ccsAlgorithm": "N/A", + "coverage": "3.63", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00099-1_S20_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00099-1_S20_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242406", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.580328", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-1_S20_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00099", + "totalBp": "11266122224", + "totalGbp": "11.27", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758778", + "ccsAlgorithm": "N/A", + "coverage": "3.63", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00099-1_S20_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00099-1_S20_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242406", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.584291", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-1_S20_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00099", + "totalBp": "11265516145", + "totalGbp": "11.27", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758778", + "ccsAlgorithm": "N/A", + "coverage": "3.63", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00099-1_S20_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00099-1_S20_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242322", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.577897", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-1_S20_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00099", + "totalBp": "11263022499", + "totalGbp": "11.26", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758778", + "ccsAlgorithm": "N/A", + "coverage": "3.63", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00099-1_S20_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00099-1_S20_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242322", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.593362", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-1_S20_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00099", + "totalBp": "11262373437", + "totalGbp": "11.26", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758778", + "ccsAlgorithm": "N/A", + "coverage": "3.6", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00099-1_S20_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00099-1_S20_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242307", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.610805", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-1_S20_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00099", + "totalBp": "11172967086", + "totalGbp": "11.17", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758778", + "ccsAlgorithm": "N/A", + "coverage": "3.6", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00099-1_S20_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00099-1_S20_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242307", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.606946", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-1_S20_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00099", + "totalBp": "11172372001", + "totalGbp": "11.17", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758778", + "ccsAlgorithm": "N/A", + "coverage": "3.27", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00099-2_S28_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00099-2_S28_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242271", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.607471", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-2_S28_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00099", + "totalBp": "10131790358", + "totalGbp": "10.13", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758778", + "ccsAlgorithm": "N/A", + "coverage": "3.27", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00099-2_S28_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00099-2_S28_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242271", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.585726", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-2_S28_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00099", + "totalBp": "10130938028", + "totalGbp": "10.13", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758778", + "ccsAlgorithm": "N/A", + "coverage": "3.59", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00099-2_S28_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00099-2_S28_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242256", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.634275", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-2_S28_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00099", + "totalBp": "11131760226", + "totalGbp": "11.13", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758778", + "ccsAlgorithm": "N/A", + "coverage": "3.59", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00099-2_S28_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00099-2_S28_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242256", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.574405", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-2_S28_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00099", + "totalBp": "11131143646", + "totalGbp": "11.13", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758778", + "ccsAlgorithm": "N/A", + "coverage": "3.59", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00099-2_S28_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00099-2_S28_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242245", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.639197", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-2_S28_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00099", + "totalBp": "11135119794", + "totalGbp": "11.14", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758778", + "ccsAlgorithm": "N/A", + "coverage": "3.59", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00099-2_S28_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00099-2_S28_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242245", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.580572", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-2_S28_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00099", + "totalBp": "11134454158", + "totalGbp": "11.13", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758778", + "ccsAlgorithm": "N/A", + "coverage": "3.55", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00099-2_S28_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00099-2_S28_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242475", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.602038", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-2_S28_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00099", + "totalBp": "10993123748", + "totalGbp": "10.99", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758778", + "ccsAlgorithm": "N/A", + "coverage": "3.55", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00099-2_S28_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00099-2_S28_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242475", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.590519", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/hic/HG00099-2_S28_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00099", + "totalBp": "10992500429", + "totalGbp": "10.99", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021637", + "ccsAlgorithm": "N/A", + "coverage": "7.42", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00126-1_FC1_S3_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00126-1_FC1_S3_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310981", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.456062", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00126/raw_data/hic/HG00126-1_FC1_S3_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00126", + "totalBp": "23014404072", + "totalGbp": "23.01", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021637", + "ccsAlgorithm": "N/A", + "coverage": "7.42", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00126-1_FC1_S3_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00126-1_FC1_S3_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310981", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.456062", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00126/raw_data/hic/HG00126-1_FC1_S3_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00126", + "totalBp": "23014404072", + "totalGbp": "23.01", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021637", + "ccsAlgorithm": "N/A", + "coverage": "6.98", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00126-1_FC2_S3_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00126-1_FC2_S3_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310980", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.494569", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00126/raw_data/hic/HG00126-1_FC2_S3_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00126", + "totalBp": "21643319995", + "totalGbp": "21.64", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021637", + "ccsAlgorithm": "N/A", + "coverage": "6.98", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00126-1_FC2_S3_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00126-1_FC2_S3_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310980", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.494569", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00126/raw_data/hic/HG00126-1_FC2_S3_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00126", + "totalBp": "21643319995", + "totalGbp": "21.64", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021637", + "ccsAlgorithm": "N/A", + "coverage": "10.74", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00126-2_FC1_S4_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00126-2_FC1_S4_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310819", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.416005", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00126/raw_data/hic/HG00126-2_FC1_S4_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00126", + "totalBp": "33281084483", + "totalGbp": "33.28", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021637", + "ccsAlgorithm": "N/A", + "coverage": "10.74", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00126-2_FC1_S4_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00126-2_FC1_S4_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310819", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.416005", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00126/raw_data/hic/HG00126-2_FC1_S4_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00126", + "totalBp": "33281084483", + "totalGbp": "33.28", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021637", + "ccsAlgorithm": "N/A", + "coverage": "10.03", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00126-2_FC2_S4_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00126-2_FC2_S4_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310952", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.42042", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00126/raw_data/hic/HG00126-2_FC2_S4_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00126", + "totalBp": "31102901178", + "totalGbp": "31.1", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021637", + "ccsAlgorithm": "N/A", + "coverage": "10.03", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00126-2_FC2_S4_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00126-2_FC2_S4_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310952", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.42042", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00126/raw_data/hic/HG00126-2_FC2_S4_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00126", + "totalBp": "31102901178", + "totalGbp": "31.1", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021641", + "ccsAlgorithm": "N/A", + "coverage": "5.92", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00128-1_FC1_S9_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00128-1_FC1_S9_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310941", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.461992", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00128/raw_data/hic/HG00128-1_FC1_S9_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00128", + "totalBp": "18338855625", + "totalGbp": "18.34", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021641", + "ccsAlgorithm": "N/A", + "coverage": "5.92", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00128-1_FC1_S9_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00128-1_FC1_S9_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310941", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.461992", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00128/raw_data/hic/HG00128-1_FC1_S9_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00128", + "totalBp": "18338855625", + "totalGbp": "18.34", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021641", + "ccsAlgorithm": "N/A", + "coverage": "5.64", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00128-1_FC2_S9_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00128-1_FC2_S9_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310906", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.498659", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00128/raw_data/hic/HG00128-1_FC2_S9_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00128", + "totalBp": "17480349957", + "totalGbp": "17.48", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021641", + "ccsAlgorithm": "N/A", + "coverage": "5.64", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00128-1_FC2_S9_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00128-1_FC2_S9_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310906", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.498659", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00128/raw_data/hic/HG00128-1_FC2_S9_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00128", + "totalBp": "17480349957", + "totalGbp": "17.48", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021641", + "ccsAlgorithm": "N/A", + "coverage": "5.52", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00128-2_FC1_S10_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00128-2_FC1_S10_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310895", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.519285", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00128/raw_data/hic/HG00128-2_FC1_S10_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00128", + "totalBp": "17124632311", + "totalGbp": "17.12", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021641", + "ccsAlgorithm": "N/A", + "coverage": "5.52", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00128-2_FC1_S10_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00128-2_FC1_S10_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310895", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.519285", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00128/raw_data/hic/HG00128-2_FC1_S10_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00128", + "totalBp": "17124632311", + "totalGbp": "17.12", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021641", + "ccsAlgorithm": "N/A", + "coverage": "5.25", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00128-2_FC2_S10_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00128-2_FC2_S10_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310884", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.558467", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00128/raw_data/hic/HG00128-2_FC2_S10_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00128", + "totalBp": "16272984308", + "totalGbp": "16.27", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021641", + "ccsAlgorithm": "N/A", + "coverage": "5.25", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00128-2_FC2_S10_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00128-2_FC2_S10_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310884", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.558467", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00128/raw_data/hic/HG00128-2_FC2_S10_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00128", + "totalBp": "16272984308", + "totalGbp": "16.27", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021638", + "ccsAlgorithm": "N/A", + "coverage": "7.03", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00133-1_FC1_S5_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00133-1_FC1_S5_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310849", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.481832", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00133/raw_data/hic/HG00133-1_FC1_S5_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00133", + "totalBp": "21805365041", + "totalGbp": "21.81", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021638", + "ccsAlgorithm": "N/A", + "coverage": "7.03", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00133-1_FC1_S5_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00133-1_FC1_S5_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310849", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.481832", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00133/raw_data/hic/HG00133-1_FC1_S5_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00133", + "totalBp": "21805365041", + "totalGbp": "21.81", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021638", + "ccsAlgorithm": "N/A", + "coverage": "6.61", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00133-1_FC2_S5_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00133-1_FC2_S5_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310838", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.453404", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00133/raw_data/hic/HG00133-1_FC2_S5_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00133", + "totalBp": "20487595742", + "totalGbp": "20.49", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021638", + "ccsAlgorithm": "N/A", + "coverage": "6.61", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00133-1_FC2_S5_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00133-1_FC2_S5_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310838", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.453404", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00133/raw_data/hic/HG00133-1_FC2_S5_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00133", + "totalBp": "20487595742", + "totalGbp": "20.49", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021638", + "ccsAlgorithm": "N/A", + "coverage": "5.04", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00133-2_FC1_S6_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00133-2_FC1_S6_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310979", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.513267", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00133/raw_data/hic/HG00133-2_FC1_S6_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00133", + "totalBp": "15627199286", + "totalGbp": "15.63", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021638", + "ccsAlgorithm": "N/A", + "coverage": "5.04", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00133-2_FC1_S6_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00133-2_FC1_S6_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310979", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.513267", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00133/raw_data/hic/HG00133-2_FC1_S6_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00133", + "totalBp": "15627199286", + "totalGbp": "15.63", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021638", + "ccsAlgorithm": "N/A", + "coverage": "4.75", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00133-2_FC2_S6_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00133-2_FC2_S6_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310968", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.527565", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00133/raw_data/hic/HG00133-2_FC2_S6_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00133", + "totalBp": "14710505617", + "totalGbp": "14.71", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021638", + "ccsAlgorithm": "N/A", + "coverage": "4.75", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00133-2_FC2_S6_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00133-2_FC2_S6_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310968", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.527565", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00133/raw_data/hic/HG00133-2_FC2_S6_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00133", + "totalBp": "14710505617", + "totalGbp": "14.71", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621941", + "ccsAlgorithm": "N/A", + "coverage": "11.94", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00140-1_S22_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00140-1_S22_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242464", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.525447", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-1_S22_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00140", + "totalBp": "37024993829", + "totalGbp": "37.02", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621941", + "ccsAlgorithm": "N/A", + "coverage": "11.94", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00140-1_S22_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00140-1_S22_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242464", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.502603", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-1_S22_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00140", + "totalBp": "37022701013", + "totalGbp": "37.02", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621941", + "ccsAlgorithm": "N/A", + "coverage": "12.29", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00140-1_S22_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00140-1_S22_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242456", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.510349", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-1_S22_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00140", + "totalBp": "38093038178", + "totalGbp": "38.09", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621941", + "ccsAlgorithm": "N/A", + "coverage": "12.29", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00140-1_S22_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00140-1_S22_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242456", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.458847", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-1_S22_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00140", + "totalBp": "38090056712", + "totalGbp": "38.09", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621941", + "ccsAlgorithm": "N/A", + "coverage": "11.66", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00140-1_S22_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00140-1_S22_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242405", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.497501", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-1_S22_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00140", + "totalBp": "36160735792", + "totalGbp": "36.16", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621941", + "ccsAlgorithm": "N/A", + "coverage": "11.66", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00140-1_S22_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00140-1_S22_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242405", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.461085", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-1_S22_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00140", + "totalBp": "36158028520", + "totalGbp": "36.16", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621941", + "ccsAlgorithm": "N/A", + "coverage": "12.02", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00140-1_S22_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00140-1_S22_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242394", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.464198", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-1_S22_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00140", + "totalBp": "37251792722", + "totalGbp": "37.25", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621941", + "ccsAlgorithm": "N/A", + "coverage": "12.02", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00140-1_S22_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00140-1_S22_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242394", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.478879", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-1_S22_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00140", + "totalBp": "37249046997", + "totalGbp": "37.25", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621941", + "ccsAlgorithm": "N/A", + "coverage": "3.76", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00140-2_S30_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00140-2_S30_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242383", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.605446", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-2_S30_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00140", + "totalBp": "11657507684", + "totalGbp": "11.66", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621941", + "ccsAlgorithm": "N/A", + "coverage": "3.76", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00140-2_S30_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00140-2_S30_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242383", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.578836", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-2_S30_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00140", + "totalBp": "11656900126", + "totalGbp": "11.66", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621941", + "ccsAlgorithm": "N/A", + "coverage": "3.86", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00140-2_S30_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00140-2_S30_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242372", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.595329", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-2_S30_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00140", + "totalBp": "11961656403", + "totalGbp": "11.96", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621941", + "ccsAlgorithm": "N/A", + "coverage": "3.86", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00140-2_S30_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00140-2_S30_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242372", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.558096", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-2_S30_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00140", + "totalBp": "11960834436", + "totalGbp": "11.96", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621941", + "ccsAlgorithm": "N/A", + "coverage": "3.67", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00140-2_S30_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00140-2_S30_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242364", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.605152", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-2_S30_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00140", + "totalBp": "11381920704", + "totalGbp": "11.38", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621941", + "ccsAlgorithm": "N/A", + "coverage": "3.67", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00140-2_S30_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00140-2_S30_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242364", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.584642", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-2_S30_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00140", + "totalBp": "11381178346", + "totalGbp": "11.38", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621941", + "ccsAlgorithm": "N/A", + "coverage": "3.77", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00140-2_S30_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00140-2_S30_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242350", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.611291", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-2_S30_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00140", + "totalBp": "11682855823", + "totalGbp": "11.68", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621941", + "ccsAlgorithm": "N/A", + "coverage": "3.77", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00140-2_S30_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00140-2_S30_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242350", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.605834", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/hic/HG00140-2_S30_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00140", + "totalBp": "11682118798", + "totalGbp": "11.68", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021634", + "ccsAlgorithm": "N/A", + "coverage": "8.55", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00146-1_FC1_S5_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00146-1_FC1_S5_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310957", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.461355", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00146/raw_data/hic/HG00146-1_FC1_S5_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00146", + "totalBp": "26496294197", + "totalGbp": "26.5", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021634", + "ccsAlgorithm": "N/A", + "coverage": "8.55", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00146-1_FC1_S5_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00146-1_FC1_S5_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310957", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.461355", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00146/raw_data/hic/HG00146-1_FC1_S5_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00146", + "totalBp": "26496294197", + "totalGbp": "26.5", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021634", + "ccsAlgorithm": "N/A", + "coverage": "8.83", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00146-1_FC2_S5_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00146-1_FC2_S5_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310922", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.476218", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00146/raw_data/hic/HG00146-1_FC2_S5_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00146", + "totalBp": "27358753045", + "totalGbp": "27.36", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021634", + "ccsAlgorithm": "N/A", + "coverage": "8.83", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00146-1_FC2_S5_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00146-1_FC2_S5_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310922", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.476218", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00146/raw_data/hic/HG00146-1_FC2_S5_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00146", + "totalBp": "27358753045", + "totalGbp": "27.36", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021634", + "ccsAlgorithm": "N/A", + "coverage": "7.73", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00146-2_FC1_S6_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00146-2_FC1_S6_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310911", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.50744", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00146/raw_data/hic/HG00146-2_FC1_S6_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00146", + "totalBp": "23962537602", + "totalGbp": "23.96", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021634", + "ccsAlgorithm": "N/A", + "coverage": "7.73", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00146-2_FC1_S6_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00146-2_FC1_S6_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310911", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.50744", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00146/raw_data/hic/HG00146-2_FC1_S6_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00146", + "totalBp": "23962537602", + "totalGbp": "23.96", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021634", + "ccsAlgorithm": "N/A", + "coverage": "8.01", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00146-2_FC2_S6_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00146-2_FC2_S6_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310876", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.501278", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00146/raw_data/hic/HG00146-2_FC2_S6_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00146", + "totalBp": "24830283262", + "totalGbp": "24.83", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021634", + "ccsAlgorithm": "N/A", + "coverage": "8.01", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00146-2_FC2_S6_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00146-2_FC2_S6_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310876", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.501278", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00146/raw_data/hic/HG00146-2_FC2_S6_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00146", + "totalBp": "24830283262", + "totalGbp": "24.83", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021635", + "ccsAlgorithm": "N/A", + "coverage": "6.16", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00232-1_FC1_S7_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00232-1_FC1_S7_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310865", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.486337", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00232/raw_data/hic/HG00232-1_FC1_S7_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00232", + "totalBp": "19099015899", + "totalGbp": "19.1", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021635", + "ccsAlgorithm": "N/A", + "coverage": "6.16", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00232-1_FC1_S7_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00232-1_FC1_S7_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310865", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.486337", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00232/raw_data/hic/HG00232-1_FC1_S7_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00232", + "totalBp": "19099015899", + "totalGbp": "19.1", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021635", + "ccsAlgorithm": "N/A", + "coverage": "6.23", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00232-1_FC2_S7_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00232-1_FC2_S7_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310830", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.510446", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00232/raw_data/hic/HG00232-1_FC2_S7_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00232", + "totalBp": "19310675468", + "totalGbp": "19.31", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021635", + "ccsAlgorithm": "N/A", + "coverage": "6.23", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00232-1_FC2_S7_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00232-1_FC2_S7_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310830", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.510446", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00232/raw_data/hic/HG00232-1_FC2_S7_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00232", + "totalBp": "19310675468", + "totalGbp": "19.31", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021635", + "ccsAlgorithm": "N/A", + "coverage": "8.01", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00232-2_FC1_S8_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00232-2_FC1_S8_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310821", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.441484", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00232/raw_data/hic/HG00232-2_FC1_S8_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00232", + "totalBp": "24837421032", + "totalGbp": "24.84", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021635", + "ccsAlgorithm": "N/A", + "coverage": "8.01", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00232-2_FC1_S8_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00232-2_FC1_S8_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310821", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.441484", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00232/raw_data/hic/HG00232-2_FC1_S8_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00232", + "totalBp": "24837421032", + "totalGbp": "24.84", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021635", + "ccsAlgorithm": "N/A", + "coverage": "8.13", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00232-2_FC2_S8_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00232-2_FC2_S8_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310820", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.459377", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00232/raw_data/hic/HG00232-2_FC2_S8_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00232", + "totalBp": "25214121638", + "totalGbp": "25.21", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021635", + "ccsAlgorithm": "N/A", + "coverage": "8.13", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00232-2_FC2_S8_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00232-2_FC2_S8_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310820", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.459377", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00232/raw_data/hic/HG00232-2_FC2_S8_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00232", + "totalBp": "25214121638", + "totalGbp": "25.21", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758779", + "ccsAlgorithm": "N/A", + "coverage": "9.03", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00280-1_S21_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00280-1_S21_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242339", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.511729", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-1_S21_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00280", + "totalBp": "27990281383", + "totalGbp": "27.99", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758779", + "ccsAlgorithm": "N/A", + "coverage": "9.03", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00280-1_S21_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00280-1_S21_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242339", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.524038", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-1_S21_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00280", + "totalBp": "27988108312", + "totalGbp": "27.99", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758779", + "ccsAlgorithm": "N/A", + "coverage": "9.71", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00280-1_S21_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00280-1_S21_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242235", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.527324", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-1_S21_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00280", + "totalBp": "30106363791", + "totalGbp": "30.11", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758779", + "ccsAlgorithm": "N/A", + "coverage": "9.71", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00280-1_S21_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00280-1_S21_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242235", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.487399", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-1_S21_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00280", + "totalBp": "30104843106", + "totalGbp": "30.1", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758779", + "ccsAlgorithm": "N/A", + "coverage": "9.71", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00280-1_S21_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00280-1_S21_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242224", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.525498", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-1_S21_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00280", + "totalBp": "30105901448", + "totalGbp": "30.11", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758779", + "ccsAlgorithm": "N/A", + "coverage": "9.71", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00280-1_S21_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00280-1_S21_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242224", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.480544", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-1_S21_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00280", + "totalBp": "30104295509", + "totalGbp": "30.1", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758779", + "ccsAlgorithm": "N/A", + "coverage": "9.61", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00280-1_S21_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00280-1_S21_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242333", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.528697", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-1_S21_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00280", + "totalBp": "29777940263", + "totalGbp": "29.78", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758779", + "ccsAlgorithm": "N/A", + "coverage": "9.61", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00280-1_S21_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00280-1_S21_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242333", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.524678", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-1_S21_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00280", + "totalBp": "29776396233", + "totalGbp": "29.78", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758779", + "ccsAlgorithm": "N/A", + "coverage": "3.6", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00280-2_S29_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00280-2_S29_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242321", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.596472", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-2_S29_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00280", + "totalBp": "11174314891", + "totalGbp": "11.17", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758779", + "ccsAlgorithm": "N/A", + "coverage": "3.6", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00280-2_S29_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00280-2_S29_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242321", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.58995", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-2_S29_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00280", + "totalBp": "11173432972", + "totalGbp": "11.17", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758779", + "ccsAlgorithm": "N/A", + "coverage": "3.96", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00280-2_S29_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00280-2_S29_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242314", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.594296", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-2_S29_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00280", + "totalBp": "12278822216", + "totalGbp": "12.28", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758779", + "ccsAlgorithm": "N/A", + "coverage": "3.96", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00280-2_S29_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00280-2_S29_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242314", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.607224", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-2_S29_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00280", + "totalBp": "12278186501", + "totalGbp": "12.28", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758779", + "ccsAlgorithm": "N/A", + "coverage": "3.96", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00280-2_S29_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00280-2_S29_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242175", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.585727", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-2_S29_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00280", + "totalBp": "12282924436", + "totalGbp": "12.28", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758779", + "ccsAlgorithm": "N/A", + "coverage": "3.96", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00280-2_S29_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00280-2_S29_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242175", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.577749", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-2_S29_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00280", + "totalBp": "12282249384", + "totalGbp": "12.28", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758779", + "ccsAlgorithm": "N/A", + "coverage": "3.92", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00280-2_S29_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00280-2_S29_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242526", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.579023", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-2_S29_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00280", + "totalBp": "12137842068", + "totalGbp": "12.14", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758779", + "ccsAlgorithm": "N/A", + "coverage": "3.92", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00280-2_S29_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00280-2_S29_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242526", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.606626", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/hic/HG00280-2_S29_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00280", + "totalBp": "12137209598", + "totalGbp": "12.14", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021639", + "ccsAlgorithm": "N/A", + "coverage": "6.29", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00290-1_FC1_S7_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00290-1_FC1_S7_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310818", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.4654", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00290/raw_data/hic/HG00290-1_FC1_S7_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00290", + "totalBp": "19497247142", + "totalGbp": "19.5", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021639", + "ccsAlgorithm": "N/A", + "coverage": "6.29", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00290-1_FC1_S7_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00290-1_FC1_S7_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310818", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.4654", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00290/raw_data/hic/HG00290-1_FC1_S7_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00290", + "totalBp": "19497247142", + "totalGbp": "19.5", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021639", + "ccsAlgorithm": "N/A", + "coverage": "6.17", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00290-1_FC2_S7_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00290-1_FC2_S7_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310817", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.484694", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00290/raw_data/hic/HG00290-1_FC2_S7_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00290", + "totalBp": "19123573331", + "totalGbp": "19.12", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021639", + "ccsAlgorithm": "N/A", + "coverage": "6.17", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00290-1_FC2_S7_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00290-1_FC2_S7_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310817", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.484694", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00290/raw_data/hic/HG00290-1_FC2_S7_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00290", + "totalBp": "19123573331", + "totalGbp": "19.12", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021639", + "ccsAlgorithm": "N/A", + "coverage": "7.47", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00290-2_FC1_S8_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00290-2_FC1_S8_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310816", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.48162", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00290/raw_data/hic/HG00290-2_FC1_S8_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00290", + "totalBp": "23168123129", + "totalGbp": "23.17", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021639", + "ccsAlgorithm": "N/A", + "coverage": "7.47", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00290-2_FC1_S8_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00290-2_FC1_S8_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310816", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.48162", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00290/raw_data/hic/HG00290-2_FC1_S8_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00290", + "totalBp": "23168123129", + "totalGbp": "23.17", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021639", + "ccsAlgorithm": "N/A", + "coverage": "7.42", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00290-2_FC2_S8_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00290-2_FC2_S8_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310815", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.50788", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00290/raw_data/hic/HG00290-2_FC2_S8_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00290", + "totalBp": "22995756931", + "totalGbp": "23", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021639", + "ccsAlgorithm": "N/A", + "coverage": "7.42", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00290-2_FC2_S8_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00290-2_FC2_S8_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310815", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.50788", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00290/raw_data/hic/HG00290-2_FC2_S8_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00290", + "totalBp": "22995756931", + "totalGbp": "23", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021632", + "ccsAlgorithm": "N/A", + "coverage": "7.05", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00320-1_FC1_S9_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00320-1_FC1_S9_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310814", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.506774", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00320/raw_data/hic/HG00320-1_FC1_S9_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00320", + "totalBp": "21859015341", + "totalGbp": "21.86", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021632", + "ccsAlgorithm": "N/A", + "coverage": "7.05", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00320-1_FC1_S9_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00320-1_FC1_S9_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310814", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.506774", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00320/raw_data/hic/HG00320-1_FC1_S9_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00320", + "totalBp": "21859015341", + "totalGbp": "21.86", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021632", + "ccsAlgorithm": "N/A", + "coverage": "7.29", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00320-1_FC2_S9_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00320-1_FC2_S9_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310813", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.48307", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00320/raw_data/hic/HG00320-1_FC2_S9_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00320", + "totalBp": "22604932087", + "totalGbp": "22.6", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021632", + "ccsAlgorithm": "N/A", + "coverage": "7.29", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00320-1_FC2_S9_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00320-1_FC2_S9_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310813", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.48307", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00320/raw_data/hic/HG00320-1_FC2_S9_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00320", + "totalBp": "22604932087", + "totalGbp": "22.6", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021632", + "ccsAlgorithm": "N/A", + "coverage": "11.46", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00320-2_FC1_S10_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00320-2_FC1_S10_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310812", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.439958", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00320/raw_data/hic/HG00320-2_FC1_S10_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00320", + "totalBp": "35516787765", + "totalGbp": "35.52", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021632", + "ccsAlgorithm": "N/A", + "coverage": "11.46", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00320-2_FC1_S10_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00320-2_FC1_S10_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310812", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.439958", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00320/raw_data/hic/HG00320-2_FC1_S10_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00320", + "totalBp": "35516787765", + "totalGbp": "35.52", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021632", + "ccsAlgorithm": "N/A", + "coverage": "11.86", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00320-2_FC2_S10_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00320-2_FC2_S10_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310811", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.465434", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00320/raw_data/hic/HG00320-2_FC2_S10_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00320", + "totalBp": "36761442562", + "totalGbp": "36.76", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021632", + "ccsAlgorithm": "N/A", + "coverage": "11.86", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00320-2_FC2_S10_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00320-2_FC2_S10_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310811", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.465434", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00320/raw_data/hic/HG00320-2_FC2_S10_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00320", + "totalBp": "36761442562", + "totalGbp": "36.76", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021636", + "ccsAlgorithm": "N/A", + "coverage": "10.25", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00321-1_FC1_S11_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00321-1_FC1_S11_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310954", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.445028", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00321/raw_data/hic/HG00321-1_FC1_S11_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00321", + "totalBp": "31765796916", + "totalGbp": "31.77", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021636", + "ccsAlgorithm": "N/A", + "coverage": "10.25", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00321-1_FC1_S11_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00321-1_FC1_S11_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310954", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.445028", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00321/raw_data/hic/HG00321-1_FC1_S11_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00321", + "totalBp": "31765796916", + "totalGbp": "31.77", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021636", + "ccsAlgorithm": "N/A", + "coverage": "10.52", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00321-1_FC2_S11_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00321-1_FC2_S11_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310953", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.435627", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00321/raw_data/hic/HG00321-1_FC2_S11_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00321", + "totalBp": "32618282667", + "totalGbp": "32.62", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021636", + "ccsAlgorithm": "N/A", + "coverage": "10.52", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00321-1_FC2_S11_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00321-1_FC2_S11_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310953", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.435627", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00321/raw_data/hic/HG00321-1_FC2_S11_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00321", + "totalBp": "32618282667", + "totalGbp": "32.62", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021636", + "ccsAlgorithm": "N/A", + "coverage": "9.26", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00321-2_FC1_S12_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00321-2_FC1_S12_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310951", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.440311", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00321/raw_data/hic/HG00321-2_FC1_S12_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00321", + "totalBp": "28716418960", + "totalGbp": "28.72", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021636", + "ccsAlgorithm": "N/A", + "coverage": "9.26", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00321-2_FC1_S12_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00321-2_FC1_S12_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310951", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.440311", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00321/raw_data/hic/HG00321-2_FC1_S12_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00321", + "totalBp": "28716418960", + "totalGbp": "28.72", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021636", + "ccsAlgorithm": "N/A", + "coverage": "9.56", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00321-2_FC2_S12_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00321-2_FC2_S12_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310950", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.477987", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00321/raw_data/hic/HG00321-2_FC2_S12_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00321", + "totalBp": "29645490401", + "totalGbp": "29.65", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021636", + "ccsAlgorithm": "N/A", + "coverage": "9.56", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00321-2_FC2_S12_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00321-2_FC2_S12_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310950", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.477987", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00321/raw_data/hic/HG00321-2_FC2_S12_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00321", + "totalBp": "29645490401", + "totalGbp": "29.65", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621942", + "ccsAlgorithm": "N/A", + "coverage": "3", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00323-1_S23_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00323-1_S23_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242517", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.668508", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-1_S23_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00323", + "totalBp": "9307268830", + "totalGbp": "9.31", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621942", + "ccsAlgorithm": "N/A", + "coverage": "3", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00323-1_S23_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00323-1_S23_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242517", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.572325", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-1_S23_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00323", + "totalBp": "9306726494", + "totalGbp": "9.31", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621942", + "ccsAlgorithm": "N/A", + "coverage": "3.09", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00323-1_S23_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00323-1_S23_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242506", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.624167", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-1_S23_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00323", + "totalBp": "9572806260", + "totalGbp": "9.57", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621942", + "ccsAlgorithm": "N/A", + "coverage": "3.09", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00323-1_S23_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00323-1_S23_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242506", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.576623", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-1_S23_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00323", + "totalBp": "9572123103", + "totalGbp": "9.57", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621942", + "ccsAlgorithm": "N/A", + "coverage": "2.89", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00323-1_S23_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00323-1_S23_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242207", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.663599", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-1_S23_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00323", + "totalBp": "8948801097", + "totalGbp": "8.95", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621942", + "ccsAlgorithm": "N/A", + "coverage": "2.89", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00323-1_S23_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00323-1_S23_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242207", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.600535", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-1_S23_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00323", + "totalBp": "8948237735", + "totalGbp": "8.95", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621942", + "ccsAlgorithm": "N/A", + "coverage": "2.99", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00323-1_S23_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00323-1_S23_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242196", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.628386", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-1_S23_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00323", + "totalBp": "9273418950", + "totalGbp": "9.27", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621942", + "ccsAlgorithm": "N/A", + "coverage": "2.99", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00323-1_S23_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00323-1_S23_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242196", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.607121", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-1_S23_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00323", + "totalBp": "9272807579", + "totalGbp": "9.27", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621942", + "ccsAlgorithm": "N/A", + "coverage": "4.34", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00323-2_S31_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00323-2_S31_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242449", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.586155", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-2_S31_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00323", + "totalBp": "13454844253", + "totalGbp": "13.45", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621942", + "ccsAlgorithm": "N/A", + "coverage": "4.34", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00323-2_S31_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00323-2_S31_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242449", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.558651", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-2_S31_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00323", + "totalBp": "13454144527", + "totalGbp": "13.45", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621942", + "ccsAlgorithm": "N/A", + "coverage": "4.46", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00323-2_S31_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00323-2_S31_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242438", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.629683", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-2_S31_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00323", + "totalBp": "13831739909", + "totalGbp": "13.83", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621942", + "ccsAlgorithm": "N/A", + "coverage": "4.46", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00323-2_S31_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00323-2_S31_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242438", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.524332", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-2_S31_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00323", + "totalBp": "13830862496", + "totalGbp": "13.83", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621942", + "ccsAlgorithm": "N/A", + "coverage": "4.18", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00323-2_S31_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00323-2_S31_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242306", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.604095", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-2_S31_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00323", + "totalBp": "12967687388", + "totalGbp": "12.97", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621942", + "ccsAlgorithm": "N/A", + "coverage": "4.18", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00323-2_S31_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00323-2_S31_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242306", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.606035", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-2_S31_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00323", + "totalBp": "12966946971", + "totalGbp": "12.97", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621942", + "ccsAlgorithm": "N/A", + "coverage": "4.33", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00323-2_S31_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00323-2_S31_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242493", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.581474", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-2_S31_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00323", + "totalBp": "13422786440", + "totalGbp": "13.42", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621942", + "ccsAlgorithm": "N/A", + "coverage": "4.33", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00323-2_S31_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00323-2_S31_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242493", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.567536", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/hic/HG00323-2_S31_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00323", + "totalBp": "13421982668", + "totalGbp": "13.42", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621943", + "ccsAlgorithm": "N/A", + "coverage": "24.38", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00408-1_S4_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00408-1_S4_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310949", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.402711", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00408/raw_data/hic/HG00408-1_S4_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00408", + "totalBp": "75586775321", + "totalGbp": "75.59", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621943", + "ccsAlgorithm": "N/A", + "coverage": "24.38", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00408-1_S4_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00408-1_S4_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310949", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.402711", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00408/raw_data/hic/HG00408-1_S4_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00408", + "totalBp": "75586775321", + "totalGbp": "75.59", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621943", + "ccsAlgorithm": "N/A", + "coverage": "17.81", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00408-2_S4_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00408-2_S4_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310948", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.439714", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00408/raw_data/hic/HG00408-2_S4_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00408", + "totalBp": "55207426647", + "totalGbp": "55.21", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621943", + "ccsAlgorithm": "N/A", + "coverage": "17.81", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00408-2_S4_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00408-2_S4_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310948", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.439714", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00408/raw_data/hic/HG00408-2_S4_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00408", + "totalBp": "55207426647", + "totalGbp": "55.21", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237490", + "ccsAlgorithm": "N/A", + "coverage": "5.87", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00423-81d-1_S15_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00423-81d-1-1_S15_L001_R1_001-1_S15_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613929", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.568935", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-1_S15_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00423", + "totalBp": "18206561943", + "totalGbp": "18.21", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237490", + "ccsAlgorithm": "N/A", + "coverage": "5.87", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00423-81d-1_S15_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00423-81d-1-1_S15_L001_R1_001-1_S15_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613929", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.548333", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-1_S15_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00423", + "totalBp": "18205859028", + "totalGbp": "18.21", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237490", + "ccsAlgorithm": "N/A", + "coverage": "5.9", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00423-81d-1_S15_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00423-81d-1-1_S15_L002_R1_001-1_S15_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613928", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.587264", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-1_S15_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00423", + "totalBp": "18277431102", + "totalGbp": "18.28", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237490", + "ccsAlgorithm": "N/A", + "coverage": "5.9", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00423-81d-1_S15_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00423-81d-1-1_S15_L002_R1_001-1_S15_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613928", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.55441", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-1_S15_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00423", + "totalBp": "18276612828", + "totalGbp": "18.28", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237490", + "ccsAlgorithm": "N/A", + "coverage": "5.9", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00423-81d-1_S15_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00423-81d-1-1_S15_L003_R1_001-1_S15_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613888", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.518726", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-1_S15_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00423", + "totalBp": "18277713152", + "totalGbp": "18.28", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237490", + "ccsAlgorithm": "N/A", + "coverage": "5.9", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00423-81d-1_S15_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00423-81d-1-1_S15_L003_R1_001-1_S15_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613888", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.543274", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-1_S15_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00423", + "totalBp": "18276972806", + "totalGbp": "18.28", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237490", + "ccsAlgorithm": "N/A", + "coverage": "5.92", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00423-81d-1_S15_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00423-81d-1-1_S15_L004_R1_001-1_S15_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613695", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.567746", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-1_S15_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00423", + "totalBp": "18349525689", + "totalGbp": "18.35", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237490", + "ccsAlgorithm": "N/A", + "coverage": "5.92", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00423-81d-1_S15_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00423-81d-1-1_S15_L004_R1_001-1_S15_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613695", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.543997", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-1_S15_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00423", + "totalBp": "18348901564", + "totalGbp": "18.35", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237490", + "ccsAlgorithm": "N/A", + "coverage": "6.28", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00423-81d-2_S16_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00423-81d-2-2_S16_L001_R1_001-2_S16_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613837", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.57545", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-2_S16_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00423", + "totalBp": "19474750712", + "totalGbp": "19.47", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237490", + "ccsAlgorithm": "N/A", + "coverage": "6.28", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00423-81d-2_S16_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00423-81d-2-2_S16_L001_R1_001-2_S16_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613837", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.541185", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-2_S16_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00423", + "totalBp": "19473878276", + "totalGbp": "19.47", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237490", + "ccsAlgorithm": "N/A", + "coverage": "6.3", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00423-81d-2_S16_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00423-81d-2-2_S16_L002_R1_001-2_S16_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613668", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.567801", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-2_S16_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00423", + "totalBp": "19540903591", + "totalGbp": "19.54", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237490", + "ccsAlgorithm": "N/A", + "coverage": "6.3", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00423-81d-2_S16_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00423-81d-2-2_S16_L002_R1_001-2_S16_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613668", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.560693", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-2_S16_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00423", + "totalBp": "19539880777", + "totalGbp": "19.54", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237490", + "ccsAlgorithm": "N/A", + "coverage": "6.31", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00423-81d-2_S16_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00423-81d-2-2_S16_L003_R1_001-2_S16_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613655", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.543371", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-2_S16_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00423", + "totalBp": "19557125825", + "totalGbp": "19.56", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237490", + "ccsAlgorithm": "N/A", + "coverage": "6.31", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00423-81d-2_S16_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00423-81d-2-2_S16_L003_R1_001-2_S16_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613655", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.526359", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-2_S16_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00423", + "totalBp": "19556191785", + "totalGbp": "19.56", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237490", + "ccsAlgorithm": "N/A", + "coverage": "6.34", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00423-81d-2_S16_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00423-81d-2-2_S16_L004_R1_001-2_S16_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613823", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.550402", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-2_S16_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00423", + "totalBp": "19641695401", + "totalGbp": "19.64", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237490", + "ccsAlgorithm": "N/A", + "coverage": "6.34", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00423-81d-2_S16_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00423-81d-2-2_S16_L004_R1_001-2_S16_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613823", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.553529", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/hic/HG00423-81d-2_S16_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00423", + "totalBp": "19640887124", + "totalGbp": "19.64", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237491", + "ccsAlgorithm": "N/A", + "coverage": "8.22", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00544-24ab-1_S1_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00544-24ab-1-1_S1_L001_R1_001-1_S1_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613813", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.52936", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-1_S1_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00544", + "totalBp": "25480247832", + "totalGbp": "25.48", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237491", + "ccsAlgorithm": "N/A", + "coverage": "8.22", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00544-24ab-1_S1_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00544-24ab-1-1_S1_L001_R1_001-1_S1_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613813", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.500524", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-1_S1_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00544", + "totalBp": "25479513215", + "totalGbp": "25.48", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237491", + "ccsAlgorithm": "N/A", + "coverage": "8.18", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00544-24ab-1_S1_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00544-24ab-1-1_S1_L002_R1_001-1_S1_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613731", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.537102", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-1_S1_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00544", + "totalBp": "25348619543", + "totalGbp": "25.35", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237491", + "ccsAlgorithm": "N/A", + "coverage": "8.18", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00544-24ab-1_S1_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00544-24ab-1-1_S1_L002_R1_001-1_S1_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613731", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.491247", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-1_S1_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00544", + "totalBp": "25347790881", + "totalGbp": "25.35", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237491", + "ccsAlgorithm": "N/A", + "coverage": "8.21", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00544-24ab-1_S1_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00544-24ab-1-1_S1_L003_R1_001-1_S1_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613927", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.521718", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-1_S1_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00544", + "totalBp": "25442045007", + "totalGbp": "25.44", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237491", + "ccsAlgorithm": "N/A", + "coverage": "8.21", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00544-24ab-1_S1_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00544-24ab-1-1_S1_L003_R1_001-1_S1_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613927", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.48624", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-1_S1_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00544", + "totalBp": "25441102605", + "totalGbp": "25.44", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237491", + "ccsAlgorithm": "N/A", + "coverage": "7.95", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00544-24ab-1_S1_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00544-24ab-1-1_S1_L004_R1_001-1_S1_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613916", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.482918", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-1_S1_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00544", + "totalBp": "24631525119", + "totalGbp": "24.63", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237491", + "ccsAlgorithm": "N/A", + "coverage": "7.95", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00544-24ab-1_S1_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00544-24ab-1-1_S1_L004_R1_001-1_S1_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613916", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.513698", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-1_S1_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00544", + "totalBp": "24630424908", + "totalGbp": "24.63", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237491", + "ccsAlgorithm": "N/A", + "coverage": "8.5", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00544-24ab-2_S2_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00544-24ab-2-2_S2_L001_R1_001-2_S2_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613905", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.533568", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-2_S2_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00544", + "totalBp": "26340905434", + "totalGbp": "26.34", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237491", + "ccsAlgorithm": "N/A", + "coverage": "8.5", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00544-24ab-2_S2_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00544-24ab-2-2_S2_L001_R1_001-2_S2_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613905", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.479951", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-2_S2_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00544", + "totalBp": "26340003436", + "totalGbp": "26.34", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237491", + "ccsAlgorithm": "N/A", + "coverage": "8.46", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00544-24ab-2_S2_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00544-24ab-2-2_S2_L002_R1_001-2_S2_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613798", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.521346", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-2_S2_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00544", + "totalBp": "26223483770", + "totalGbp": "26.22", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237491", + "ccsAlgorithm": "N/A", + "coverage": "8.46", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00544-24ab-2_S2_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00544-24ab-2-2_S2_L002_R1_001-2_S2_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613798", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.451696", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-2_S2_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00544", + "totalBp": "26222530879", + "totalGbp": "26.22", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237491", + "ccsAlgorithm": "N/A", + "coverage": "8.5", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00544-24ab-2_S2_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00544-24ab-2-2_S2_L003_R1_001-2_S2_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613787", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.505937", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-2_S2_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00544", + "totalBp": "26343216176", + "totalGbp": "26.34", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237491", + "ccsAlgorithm": "N/A", + "coverage": "8.5", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00544-24ab-2_S2_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00544-24ab-2-2_S2_L003_R1_001-2_S2_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613787", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.456688", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-2_S2_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00544", + "totalBp": "26342190727", + "totalGbp": "26.34", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237491", + "ccsAlgorithm": "N/A", + "coverage": "8.19", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00544-24ab-2_S2_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00544-24ab-2-2_S2_L004_R1_001-2_S2_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613715", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.500233", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-2_S2_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00544", + "totalBp": "25383174741", + "totalGbp": "25.38", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237491", + "ccsAlgorithm": "N/A", + "coverage": "8.19", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00544-24ab-2_S2_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00544-24ab-2-2_S2_L004_R1_001-2_S2_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613715", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.498429", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/hic/HG00544-24ab-2_S2_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00544", + "totalBp": "25382012070", + "totalGbp": "25.38", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758780", + "ccsAlgorithm": "N/A", + "coverage": "8.9", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00558-1_S4_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00558-1_S4_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310947", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.465973", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/hic/HG00558-1_S4_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00558", + "totalBp": "27603885539", + "totalGbp": "27.6", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758780", + "ccsAlgorithm": "N/A", + "coverage": "8.9", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00558-1_S4_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00558-1_S4_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310947", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.465973", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/hic/HG00558-1_S4_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00558", + "totalBp": "27603885539", + "totalGbp": "27.6", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758780", + "ccsAlgorithm": "N/A", + "coverage": "10.36", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00558-2_S8_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00558-2_S8_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310946", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.482983", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/hic/HG00558-2_S8_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00558", + "totalBp": "32101602796", + "totalGbp": "32.1", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758780", + "ccsAlgorithm": "N/A", + "coverage": "10.36", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00558-2_S8_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00558-2_S8_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310946", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.482983", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/hic/HG00558-2_S8_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00558", + "totalBp": "32101602796", + "totalGbp": "32.1", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621944", + "ccsAlgorithm": "N/A", + "coverage": "32.67", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00597-1_S1_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00597-1_S1_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310945", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.406575", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00597/raw_data/hic/HG00597-1_S1_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00597", + "totalBp": "101280993154", + "totalGbp": "101.28", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621944", + "ccsAlgorithm": "N/A", + "coverage": "32.67", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00597-1_S1_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00597-1_S1_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310945", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.406575", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00597/raw_data/hic/HG00597-1_S1_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00597", + "totalBp": "101280993154", + "totalGbp": "101.28", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621944", + "ccsAlgorithm": "N/A", + "coverage": "19.5", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00597-2_S1_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00597-2_S1_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310944", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.417803", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00597/raw_data/hic/HG00597-2_S1_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00597", + "totalBp": "60459807174", + "totalGbp": "60.46", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621944", + "ccsAlgorithm": "N/A", + "coverage": "19.5", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00597-2_S1_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00597-2_S1_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310944", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.417803", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00597/raw_data/hic/HG00597-2_S1_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00597", + "totalBp": "60459807174", + "totalGbp": "60.46", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237492", + "ccsAlgorithm": "N/A", + "coverage": "5.01", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00609-38a-1_S9_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00609-38a-1-1_S9_L001_R1_001-1_S9_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613699", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.52783", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-1_S9_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00609", + "totalBp": "15539181423", + "totalGbp": "15.54", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237492", + "ccsAlgorithm": "N/A", + "coverage": "5.01", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00609-38a-1_S9_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00609-38a-1-1_S9_L001_R1_001-1_S9_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613699", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.481616", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-1_S9_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00609", + "totalBp": "15538962800", + "totalGbp": "15.54", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237492", + "ccsAlgorithm": "N/A", + "coverage": "3.75", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00609-38a-1_S9_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00609-38a-1-1_S9_L002_R1_001-1_S9_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613637", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.577875", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-1_S9_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00609", + "totalBp": "11618228831", + "totalGbp": "11.62", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237492", + "ccsAlgorithm": "N/A", + "coverage": "3.75", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00609-38a-1_S9_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00609-38a-1-1_S9_L002_R1_001-1_S9_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613637", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.537744", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-1_S9_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00609", + "totalBp": "11618221393", + "totalGbp": "11.62", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237492", + "ccsAlgorithm": "N/A", + "coverage": "3.94", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00609-38a-1_S9_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00609-38a-1-1_S9_L003_R1_001-1_S9_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613648", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.550621", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-1_S9_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00609", + "totalBp": "12222236915", + "totalGbp": "12.22", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237492", + "ccsAlgorithm": "N/A", + "coverage": "3.94", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00609-38a-1_S9_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00609-38a-1-1_S9_L003_R1_001-1_S9_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613648", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.540724", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-1_S9_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00609", + "totalBp": "12221960042", + "totalGbp": "12.22", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237492", + "ccsAlgorithm": "N/A", + "coverage": "4.86", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00609-38a-1_S9_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00609-38a-1-1_S9_L004_R1_001-1_S9_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613901", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.539782", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-1_S9_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00609", + "totalBp": "15069587773", + "totalGbp": "15.07", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237492", + "ccsAlgorithm": "N/A", + "coverage": "4.86", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00609-38a-1_S9_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00609-38a-1-1_S9_L004_R1_001-1_S9_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613901", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.512936", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-1_S9_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00609", + "totalBp": "15069409755", + "totalGbp": "15.07", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237492", + "ccsAlgorithm": "N/A", + "coverage": "4.18", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00609-38a-2_S10_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00609-38a-2-2_S10_L001_R1_001-2_S10_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613887", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.575816", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-2_S10_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00609", + "totalBp": "12949249772", + "totalGbp": "12.95", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237492", + "ccsAlgorithm": "N/A", + "coverage": "4.18", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00609-38a-2_S10_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00609-38a-2-2_S10_L001_R1_001-2_S10_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613887", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.556853", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-2_S10_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00609", + "totalBp": "12949041846", + "totalGbp": "12.95", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237492", + "ccsAlgorithm": "N/A", + "coverage": "2.75", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00609-38a-2_S10_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00609-38a-2-2_S10_L002_R1_001-2_S10_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613621", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.611128", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-2_S10_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00609", + "totalBp": "8513185331", + "totalGbp": "8.51", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237492", + "ccsAlgorithm": "N/A", + "coverage": "2.75", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00609-38a-2_S10_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00609-38a-2-2_S10_L002_R1_001-2_S10_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613621", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.567948", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-2_S10_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00609", + "totalBp": "8513076121", + "totalGbp": "8.51", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237492", + "ccsAlgorithm": "N/A", + "coverage": "3.11", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00609-38a-2_S10_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00609-38a-2-2_S10_L003_R1_001-2_S10_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613769", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.621931", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-2_S10_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00609", + "totalBp": "9629510218", + "totalGbp": "9.63", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237492", + "ccsAlgorithm": "N/A", + "coverage": "3.11", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00609-38a-2_S10_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00609-38a-2-2_S10_L003_R1_001-2_S10_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613769", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.598919", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-2_S10_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00609", + "totalBp": "9629272820", + "totalGbp": "9.63", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237492", + "ccsAlgorithm": "N/A", + "coverage": "4.03", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00609-38a-2_S10_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00609-38a-2-2_S10_L004_R1_001-2_S10_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613624", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.577953", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-2_S10_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00609", + "totalBp": "12493735034", + "totalGbp": "12.49", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237492", + "ccsAlgorithm": "N/A", + "coverage": "4.03", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00609-38a-2_S10_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00609-38a-2-2_S10_L004_R1_001-2_S10_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613624", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.544026", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/hic/HG00609-38a-2_S10_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00609", + "totalBp": "12493545109", + "totalGbp": "12.49", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758781", + "ccsAlgorithm": "N/A", + "coverage": "28.66", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00639-1_S6_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00639-1_S6_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310943", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.424694", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00639/raw_data/hic/HG00639-1_S6_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00639", + "totalBp": "88846013898", + "totalGbp": "88.85", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758781", + "ccsAlgorithm": "N/A", + "coverage": "28.66", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00639-1_S6_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00639-1_S6_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310943", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.424694", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00639/raw_data/hic/HG00639-1_S6_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00639", + "totalBp": "88846013898", + "totalGbp": "88.85", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758781", + "ccsAlgorithm": "N/A", + "coverage": "17.94", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00639-2_S6_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00639-2_S6_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310942", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.454326", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00639/raw_data/hic/HG00639-2_S6_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00639", + "totalBp": "55624447424", + "totalGbp": "55.62", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758781", + "ccsAlgorithm": "N/A", + "coverage": "17.94", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00639-2_S6_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00639-2_S6_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310942", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.454326", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00639/raw_data/hic/HG00639-2_S6_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00639", + "totalBp": "55624447424", + "totalGbp": "55.62", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267378", + "ccsAlgorithm": "N/A", + "coverage": "6.82", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00642-33b-1_S9_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00642-33b-1-1_S9_L001_R1_001-1_S9_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613615", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.484121", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-1_S9_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00642", + "totalBp": "21128977021", + "totalGbp": "21.13", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267378", + "ccsAlgorithm": "N/A", + "coverage": "6.81", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00642-33b-1_S9_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00642-33b-1-1_S9_L001_R1_001-1_S9_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613615", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.508042", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-1_S9_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00642", + "totalBp": "21121058813", + "totalGbp": "21.12", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267378", + "ccsAlgorithm": "N/A", + "coverage": "6.67", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00642-33b-1_S9_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00642-33b-1-1_S9_L002_R1_001-1_S9_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613606", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.512407", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-1_S9_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00642", + "totalBp": "20688069145", + "totalGbp": "20.69", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267378", + "ccsAlgorithm": "N/A", + "coverage": "6.67", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00642-33b-1_S9_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00642-33b-1-1_S9_L002_R1_001-1_S9_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613606", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.542202", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-1_S9_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00642", + "totalBp": "20680099632", + "totalGbp": "20.68", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267378", + "ccsAlgorithm": "N/A", + "coverage": "6.67", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00642-33b-1_S9_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00642-33b-1-1_S9_L003_R1_001-1_S9_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613873", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.478242", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-1_S9_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00642", + "totalBp": "20676101807", + "totalGbp": "20.68", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267378", + "ccsAlgorithm": "N/A", + "coverage": "6.67", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00642-33b-1_S9_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00642-33b-1-1_S9_L003_R1_001-1_S9_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613873", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.51377", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-1_S9_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00642", + "totalBp": "20668110100", + "totalGbp": "20.67", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267378", + "ccsAlgorithm": "N/A", + "coverage": "6.53", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00642-33b-1_S9_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00642-33b-1-1_S9_L004_R1_001-1_S9_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613860", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.463337", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-1_S9_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00642", + "totalBp": "20231917492", + "totalGbp": "20.23", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267378", + "ccsAlgorithm": "N/A", + "coverage": "6.52", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00642-33b-1_S9_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00642-33b-1-1_S9_L004_R1_001-1_S9_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613860", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.50337", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-1_S9_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00642", + "totalBp": "20223836184", + "totalGbp": "20.22", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267378", + "ccsAlgorithm": "N/A", + "coverage": "5.98", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00642-33b-2_S10_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00642-33b-2-2_S10_L001_R1_001-2_S10_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613753", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.488832", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-2_S10_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00642", + "totalBp": "18552268209", + "totalGbp": "18.55", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267378", + "ccsAlgorithm": "N/A", + "coverage": "5.98", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00642-33b-2_S10_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00642-33b-2-2_S10_L001_R1_001-2_S10_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613753", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.530213", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-2_S10_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00642", + "totalBp": "18545179698", + "totalGbp": "18.55", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267378", + "ccsAlgorithm": "N/A", + "coverage": "5.86", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00642-33b-2_S10_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00642-33b-2-2_S10_L002_R1_001-2_S10_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613744", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.500443", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-2_S10_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00642", + "totalBp": "18169055248", + "totalGbp": "18.17", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267378", + "ccsAlgorithm": "N/A", + "coverage": "5.86", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00642-33b-2_S10_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00642-33b-2-2_S10_L002_R1_001-2_S10_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613744", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.517358", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-2_S10_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00642", + "totalBp": "18161898712", + "totalGbp": "18.16", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267378", + "ccsAlgorithm": "N/A", + "coverage": "5.87", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00642-33b-2_S10_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00642-33b-2-2_S10_L003_R1_001-2_S10_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613694", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.494904", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-2_S10_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00642", + "totalBp": "18199440590", + "totalGbp": "18.2", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267378", + "ccsAlgorithm": "N/A", + "coverage": "5.87", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00642-33b-2_S10_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00642-33b-2-2_S10_L003_R1_001-2_S10_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613694", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.529195", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-2_S10_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00642", + "totalBp": "18192290032", + "totalGbp": "18.19", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267378", + "ccsAlgorithm": "N/A", + "coverage": "5.72", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00642-33b-2_S10_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00642-33b-2-2_S10_L004_R1_001-2_S10_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613683", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.489863", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-2_S10_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00642", + "totalBp": "17742358903", + "totalGbp": "17.74", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267378", + "ccsAlgorithm": "N/A", + "coverage": "5.72", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00642-33b-2_S10_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00642-33b-2-2_S10_L004_R1_001-2_S10_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613683", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.519703", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/hic/HG00642-33b-2_S10_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00642", + "totalBp": "17735122754", + "totalGbp": "17.74", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797096", + "ccsAlgorithm": "N/A", + "coverage": "15.71", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00658-1_S6_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00658-1_S6_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310940", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.407118", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/hic/HG00658-1_S6_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00658", + "totalBp": "48698842692", + "totalGbp": "48.7", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797096", + "ccsAlgorithm": "N/A", + "coverage": "15.71", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00658-1_S6_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00658-1_S6_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310940", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.407118", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/hic/HG00658-1_S6_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00658", + "totalBp": "48698842692", + "totalGbp": "48.7", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797096", + "ccsAlgorithm": "N/A", + "coverage": "16.43", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00658-2_S12_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00658-2_S12_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310939", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.425113", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/hic/HG00658-2_S12_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00658", + "totalBp": "50947499509", + "totalGbp": "50.95", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797096", + "ccsAlgorithm": "N/A", + "coverage": "16.43", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00658-2_S12_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00658-2_S12_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310939", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.425113", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/hic/HG00658-2_S12_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00658", + "totalBp": "50947499509", + "totalGbp": "50.95", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706905", + "ccsAlgorithm": "N/A", + "coverage": "10.83", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00706-30b-1_S7_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00706-30b-1-1_S7_L001_R1_001-1_S7_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613600", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.504847", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-1_S7_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00706", + "totalBp": "33571212335", + "totalGbp": "33.57", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706905", + "ccsAlgorithm": "N/A", + "coverage": "10.83", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00706-30b-1_S7_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00706-30b-1-1_S7_L001_R1_001-1_S7_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613600", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.488216", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-1_S7_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00706", + "totalBp": "33569856040", + "totalGbp": "33.57", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706905", + "ccsAlgorithm": "N/A", + "coverage": "10.1", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00706-30b-1_S7_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00706-30b-1-1_S7_L002_R1_001-1_S7_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613586", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.496394", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-1_S7_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00706", + "totalBp": "31295353877", + "totalGbp": "31.3", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706905", + "ccsAlgorithm": "N/A", + "coverage": "10.1", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00706-30b-1_S7_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00706-30b-1-1_S7_L002_R1_001-1_S7_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613586", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.435909", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-1_S7_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00706", + "totalBp": "31294902568", + "totalGbp": "31.29", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706905", + "ccsAlgorithm": "N/A", + "coverage": "9.9", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00706-30b-1_S7_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00706-30b-1-1_S7_L003_R1_001-1_S7_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613671", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.46421", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-1_S7_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00706", + "totalBp": "30677836995", + "totalGbp": "30.68", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706905", + "ccsAlgorithm": "N/A", + "coverage": "9.9", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00706-30b-1_S7_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00706-30b-1-1_S7_L003_R1_001-1_S7_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613671", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.466868", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-1_S7_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00706", + "totalBp": "30676226359", + "totalGbp": "30.68", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706905", + "ccsAlgorithm": "N/A", + "coverage": "10.86", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00706-30b-1_S7_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00706-30b-1-1_S7_L004_R1_001-1_S7_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613844", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.479003", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-1_S7_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00706", + "totalBp": "33657736867", + "totalGbp": "33.66", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706905", + "ccsAlgorithm": "N/A", + "coverage": "10.86", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00706-30b-1_S7_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00706-30b-1-1_S7_L004_R1_001-1_S7_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613844", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.455786", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-1_S7_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00706", + "totalBp": "33656367347", + "totalGbp": "33.66", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706905", + "ccsAlgorithm": "N/A", + "coverage": "10.8", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00706-30b-2_S8_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00706-30b-2-2_S8_L001_R1_001-2_S8_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613841", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.464912", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-2_S8_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00706", + "totalBp": "33494020868", + "totalGbp": "33.49", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706905", + "ccsAlgorithm": "N/A", + "coverage": "10.8", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00706-30b-2_S8_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00706-30b-2-2_S8_L001_R1_001-2_S8_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613841", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.455354", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-2_S8_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00706", + "totalBp": "33492693545", + "totalGbp": "33.49", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706905", + "ccsAlgorithm": "N/A", + "coverage": "10.49", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00706-30b-2_S8_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00706-30b-2-2_S8_L002_R1_001-2_S8_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613840", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.441177", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-2_S8_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00706", + "totalBp": "32506555844", + "totalGbp": "32.51", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706905", + "ccsAlgorithm": "N/A", + "coverage": "10.49", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00706-30b-2_S8_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00706-30b-2-2_S8_L002_R1_001-2_S8_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613840", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.458113", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-2_S8_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00706", + "totalBp": "32506106723", + "totalGbp": "32.51", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706905", + "ccsAlgorithm": "N/A", + "coverage": "10.27", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00706-30b-2_S8_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00706-30b-2-2_S8_L003_R1_001-2_S8_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613839", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.49911", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-2_S8_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00706", + "totalBp": "31843782777", + "totalGbp": "31.84", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706905", + "ccsAlgorithm": "N/A", + "coverage": "10.27", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00706-30b-2_S8_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00706-30b-2-2_S8_L003_R1_001-2_S8_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613839", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.483548", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-2_S8_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00706", + "totalBp": "31842089397", + "totalGbp": "31.84", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706905", + "ccsAlgorithm": "N/A", + "coverage": "10.95", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00706-30b-2_S8_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00706-30b-2-2_S8_L004_R1_001-2_S8_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613838", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.463297", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-2_S8_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00706", + "totalBp": "33950462941", + "totalGbp": "33.95", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706905", + "ccsAlgorithm": "N/A", + "coverage": "10.95", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00706-30b-2_S8_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00706-30b-2-2_S8_L004_R1_001-2_S8_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613838", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.485922", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/hic/HG00706-30b-2_S8_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00706", + "totalBp": "33949129096", + "totalGbp": "33.95", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237493", + "ccsAlgorithm": "N/A", + "coverage": "5.93", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00738-27a-1_S5_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00738-27a-1-1_S5_L001_R1_001-1_S5_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613836", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.523334", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-1_S5_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00738", + "totalBp": "18367769859", + "totalGbp": "18.37", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237493", + "ccsAlgorithm": "N/A", + "coverage": "5.92", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00738-27a-1_S5_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00738-27a-1-1_S5_L001_R1_001-1_S5_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613836", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.485473", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-1_S5_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00738", + "totalBp": "18367159767", + "totalGbp": "18.37", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237493", + "ccsAlgorithm": "N/A", + "coverage": "4.97", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00738-27a-1_S5_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00738-27a-1-1_S5_L002_R1_001-1_S5_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613580", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.504746", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-1_S5_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00738", + "totalBp": "15415024940", + "totalGbp": "15.42", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237493", + "ccsAlgorithm": "N/A", + "coverage": "4.97", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00738-27a-1_S5_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00738-27a-1-1_S5_L002_R1_001-1_S5_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613580", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.506541", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-1_S5_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00738", + "totalBp": "15414815373", + "totalGbp": "15.41", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237493", + "ccsAlgorithm": "N/A", + "coverage": "4.94", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00738-27a-1_S5_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00738-27a-1-1_S5_L003_R1_001-1_S5_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613835", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.541099", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-1_S5_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00738", + "totalBp": "15325726571", + "totalGbp": "15.33", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237493", + "ccsAlgorithm": "N/A", + "coverage": "4.94", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00738-27a-1_S5_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00738-27a-1-1_S5_L003_R1_001-1_S5_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613835", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.512644", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-1_S5_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00738", + "totalBp": "15325075636", + "totalGbp": "15.33", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237493", + "ccsAlgorithm": "N/A", + "coverage": "5.78", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00738-27a-1_S5_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00738-27a-1-1_S5_L004_R1_001-1_S5_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613834", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.540128", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-1_S5_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00738", + "totalBp": "17922615302", + "totalGbp": "17.92", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237493", + "ccsAlgorithm": "N/A", + "coverage": "5.78", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00738-27a-1_S5_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00738-27a-1-1_S5_L004_R1_001-1_S5_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613834", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.509791", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-1_S5_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00738", + "totalBp": "17922015478", + "totalGbp": "17.92", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237493", + "ccsAlgorithm": "N/A", + "coverage": "6.76", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00738-27a-2_S6_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00738-27a-2-2_S6_L001_R1_001-2_S6_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613833", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.499276", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-2_S6_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00738", + "totalBp": "20966714303", + "totalGbp": "20.97", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237493", + "ccsAlgorithm": "N/A", + "coverage": "6.76", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00738-27a-2_S6_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00738-27a-2-2_S6_L001_R1_001-2_S6_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613833", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.496646", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-2_S6_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00738", + "totalBp": "20965932073", + "totalGbp": "20.97", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237493", + "ccsAlgorithm": "N/A", + "coverage": "5.86", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00738-27a-2_S6_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00738-27a-2-2_S6_L002_R1_001-2_S6_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613829", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.513316", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-2_S6_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00738", + "totalBp": "18176641824", + "totalGbp": "18.18", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237493", + "ccsAlgorithm": "N/A", + "coverage": "5.86", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00738-27a-2_S6_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00738-27a-2-2_S6_L002_R1_001-2_S6_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613829", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.460197", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-2_S6_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00738", + "totalBp": "18176333768", + "totalGbp": "18.18", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237493", + "ccsAlgorithm": "N/A", + "coverage": "5.78", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00738-27a-2_S6_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00738-27a-2-2_S6_L003_R1_001-2_S6_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613825", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.527902", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-2_S6_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00738", + "totalBp": "17927564334", + "totalGbp": "17.93", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237493", + "ccsAlgorithm": "N/A", + "coverage": "5.78", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00738-27a-2_S6_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00738-27a-2-2_S6_L003_R1_001-2_S6_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613825", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.534164", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-2_S6_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00738", + "totalBp": "17926650579", + "totalGbp": "17.93", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237493", + "ccsAlgorithm": "N/A", + "coverage": "6.61", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00738-27a-2_S6_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00738-27a-2-2_S6_L004_R1_001-2_S6_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613824", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.551244", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-2_S6_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00738", + "totalBp": "20501818761", + "totalGbp": "20.5", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237493", + "ccsAlgorithm": "N/A", + "coverage": "6.61", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00738-27a-2_S6_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00738-27a-2-2_S6_L004_R1_001-2_S6_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613824", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.522309", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/hic/HG00738-27a-2_S6_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00738", + "totalBp": "20501098777", + "totalGbp": "20.5", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021616", + "ccsAlgorithm": "N/A", + "coverage": "6.31", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00867-1_FC1_S7_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00867-1_FC1_S7_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310938", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.497153", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00867/raw_data/hic/HG00867-1_FC1_S7_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00867", + "totalBp": "19551234323", + "totalGbp": "19.55", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021616", + "ccsAlgorithm": "N/A", + "coverage": "6.31", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00867-1_FC1_S7_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00867-1_FC1_S7_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310938", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.497153", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00867/raw_data/hic/HG00867-1_FC1_S7_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00867", + "totalBp": "19551234323", + "totalGbp": "19.55", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021616", + "ccsAlgorithm": "N/A", + "coverage": "6.26", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00867-1_FC2_S7_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00867-1_FC2_S7_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310937", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.492661", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00867/raw_data/hic/HG00867-1_FC2_S7_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00867", + "totalBp": "19398350296", + "totalGbp": "19.4", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021616", + "ccsAlgorithm": "N/A", + "coverage": "6.26", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00867-1_FC2_S7_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00867-1_FC2_S7_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310937", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.492661", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00867/raw_data/hic/HG00867-1_FC2_S7_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00867", + "totalBp": "19398350296", + "totalGbp": "19.4", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021616", + "ccsAlgorithm": "N/A", + "coverage": "16.34", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00867-2_FC1_S8_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00867-2_FC1_S8_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310936", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.447926", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00867/raw_data/hic/HG00867-2_FC1_S8_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00867", + "totalBp": "50659452513", + "totalGbp": "50.66", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021616", + "ccsAlgorithm": "N/A", + "coverage": "16.34", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00867-2_FC1_S8_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00867-2_FC1_S8_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310936", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.447926", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00867/raw_data/hic/HG00867-2_FC1_S8_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00867", + "totalBp": "50659452513", + "totalGbp": "50.66", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021616", + "ccsAlgorithm": "N/A", + "coverage": "16.22", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00867-2_FC2_S8_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00867-2_FC2_S8_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310935", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.446306", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00867/raw_data/hic/HG00867-2_FC2_S8_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00867", + "totalBp": "50295251838", + "totalGbp": "50.3", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021616", + "ccsAlgorithm": "N/A", + "coverage": "16.22", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG00867-2_FC2_S8_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG00867-2_FC2_S8_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310935", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.446306", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00867/raw_data/hic/HG00867-2_FC2_S8_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG00867", + "totalBp": "50295251838", + "totalGbp": "50.3", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758782", + "ccsAlgorithm": "N/A", + "coverage": "6.98", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01074-1_S1_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01074-1_S1_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310934", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.530659", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01074/raw_data/hic/HG01074-1_S1_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01074", + "totalBp": "21626785797", + "totalGbp": "21.63", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758782", + "ccsAlgorithm": "N/A", + "coverage": "6.98", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01074-1_S1_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01074-1_S1_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310934", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.530659", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01074/raw_data/hic/HG01074-1_S1_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01074", + "totalBp": "21626785797", + "totalGbp": "21.63", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758782", + "ccsAlgorithm": "N/A", + "coverage": "9.68", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01074-2_S5_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01074-2_S5_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310933", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.503104", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01074/raw_data/hic/HG01074-2_S5_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01074", + "totalBp": "30020586028", + "totalGbp": "30.02", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758782", + "ccsAlgorithm": "N/A", + "coverage": "9.68", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01074-2_S5_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01074-2_S5_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310933", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.503104", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01074/raw_data/hic/HG01074-2_S5_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01074", + "totalBp": "30020586028", + "totalGbp": "30.02", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758783", + "ccsAlgorithm": "N/A", + "coverage": "37.39", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01081-1_S5_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01081-1_S5_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310932", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.416466", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01081/raw_data/hic/HG01081-1_S5_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01081", + "totalBp": "115919387211", + "totalGbp": "115.92", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758783", + "ccsAlgorithm": "N/A", + "coverage": "37.39", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01081-1_S5_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01081-1_S5_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310932", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.416466", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01081/raw_data/hic/HG01081-1_S5_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01081", + "totalBp": "115919387211", + "totalGbp": "115.92", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758783", + "ccsAlgorithm": "N/A", + "coverage": "17.73", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01081-2_S5_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01081-2_S5_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310931", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.432473", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01081/raw_data/hic/HG01081-2_S5_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01081", + "totalBp": "54958779326", + "totalGbp": "54.96", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758783", + "ccsAlgorithm": "N/A", + "coverage": "17.73", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01081-2_S5_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01081-2_S5_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310931", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.432473", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01081/raw_data/hic/HG01081-2_S5_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01081", + "totalBp": "54958779326", + "totalGbp": "54.96", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237494", + "ccsAlgorithm": "N/A", + "coverage": "14.3", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01099-48d-1_S9_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01099-48d-1-1_S9_L001_R1_001-1_S9_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613670", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.446262", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-1_S9_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01099", + "totalBp": "44345156707", + "totalGbp": "44.35", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237494", + "ccsAlgorithm": "N/A", + "coverage": "14.3", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01099-48d-1_S9_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01099-48d-1-1_S9_L001_R1_001-1_S9_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613670", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.37174", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-1_S9_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01099", + "totalBp": "44343408405", + "totalGbp": "44.34", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237494", + "ccsAlgorithm": "N/A", + "coverage": "14.27", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01099-48d-1_S9_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01099-48d-1-1_S9_L002_R1_001-1_S9_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613669", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.475752", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-1_S9_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01099", + "totalBp": "44250179223", + "totalGbp": "44.25", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237494", + "ccsAlgorithm": "N/A", + "coverage": "14.27", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01099-48d-1_S9_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01099-48d-1-1_S9_L002_R1_001-1_S9_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613669", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.398098", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-1_S9_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01099", + "totalBp": "44248548020", + "totalGbp": "44.25", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237494", + "ccsAlgorithm": "N/A", + "coverage": "13.86", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01099-48d-1_S9_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01099-48d-1-1_S9_L003_R1_001-1_S9_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613667", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.463932", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-1_S9_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01099", + "totalBp": "42973424503", + "totalGbp": "42.97", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237494", + "ccsAlgorithm": "N/A", + "coverage": "13.86", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01099-48d-1_S9_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01099-48d-1-1_S9_L003_R1_001-1_S9_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613667", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.382227", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-1_S9_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01099", + "totalBp": "42971929540", + "totalGbp": "42.97", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237494", + "ccsAlgorithm": "N/A", + "coverage": "13.43", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01099-48d-1_S9_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01099-48d-1-1_S9_L004_R1_001-1_S9_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613666", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.457563", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-1_S9_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01099", + "totalBp": "41647099520", + "totalGbp": "41.65", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237494", + "ccsAlgorithm": "N/A", + "coverage": "13.43", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01099-48d-1_S9_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01099-48d-1-1_S9_L004_R1_001-1_S9_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613666", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.388033", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-1_S9_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01099", + "totalBp": "41645436252", + "totalGbp": "41.65", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237494", + "ccsAlgorithm": "N/A", + "coverage": "11.02", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01099-48d-2_S10_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01099-48d-2-2_S10_L001_R1_001-2_S10_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613665", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.489721", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-2_S10_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01099", + "totalBp": "34159284495", + "totalGbp": "34.16", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237494", + "ccsAlgorithm": "N/A", + "coverage": "11.02", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01099-48d-2_S10_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01099-48d-2-2_S10_L001_R1_001-2_S10_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613665", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.354635", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-2_S10_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01099", + "totalBp": "34158924007", + "totalGbp": "34.16", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237494", + "ccsAlgorithm": "N/A", + "coverage": "10.92", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01099-48d-2_S10_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01099-48d-2-2_S10_L002_R1_001-2_S10_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613663", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.499502", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-2_S10_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01099", + "totalBp": "33839554348", + "totalGbp": "33.84", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237494", + "ccsAlgorithm": "N/A", + "coverage": "10.92", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01099-48d-2_S10_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01099-48d-2-2_S10_L002_R1_001-2_S10_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613663", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.370817", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-2_S10_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01099", + "totalBp": "33839261342", + "totalGbp": "33.84", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237494", + "ccsAlgorithm": "N/A", + "coverage": "10.22", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01099-48d-2_S10_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01099-48d-2-2_S10_L003_R1_001-2_S10_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613662", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.476125", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-2_S10_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01099", + "totalBp": "31688513653", + "totalGbp": "31.69", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237494", + "ccsAlgorithm": "N/A", + "coverage": "10.22", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01099-48d-2_S10_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01099-48d-2-2_S10_L003_R1_001-2_S10_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613662", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.362405", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-2_S10_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01099", + "totalBp": "31688676240", + "totalGbp": "31.69", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237494", + "ccsAlgorithm": "N/A", + "coverage": "9.61", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01099-48d-2_S10_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01099-48d-2-2_S10_L004_R1_001-2_S10_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613660", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.507264", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-2_S10_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01099", + "totalBp": "29788957117", + "totalGbp": "29.79", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237494", + "ccsAlgorithm": "N/A", + "coverage": "9.61", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01099-48d-2_S10_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01099-48d-2-2_S10_L004_R1_001-2_S10_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613660", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.36217", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/hic/HG01099-48d-2_S10_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01099", + "totalBp": "29788791558", + "totalGbp": "29.79", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797097", + "ccsAlgorithm": "N/A", + "coverage": "12.57", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01150-1_S5_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01150-1_S5_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310905", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.436529", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/hic/HG01150-1_S5_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01150", + "totalBp": "38965707191", + "totalGbp": "38.97", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797097", + "ccsAlgorithm": "N/A", + "coverage": "12.57", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01150-1_S5_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01150-1_S5_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310905", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.436529", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/hic/HG01150-1_S5_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01150", + "totalBp": "38965707191", + "totalGbp": "38.97", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797097", + "ccsAlgorithm": "N/A", + "coverage": "10.63", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01150-2_S11_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01150-2_S11_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310904", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.451094", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/hic/HG01150-2_S11_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01150", + "totalBp": "32958728626", + "totalGbp": "32.96", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797097", + "ccsAlgorithm": "N/A", + "coverage": "10.63", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01150-2_S11_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01150-2_S11_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310904", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.451094", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/hic/HG01150-2_S11_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01150", + "totalBp": "32958728626", + "totalGbp": "32.96", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797098", + "ccsAlgorithm": "N/A", + "coverage": "44.3", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01252-2_S2_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01252-2_S2_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310903", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.42038", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01252/raw_data/hic/HG01252-2_S2_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01252", + "totalBp": "137329443161", + "totalGbp": "137.33", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797098", + "ccsAlgorithm": "N/A", + "coverage": "44.3", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01252-2_S2_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01252-2_S2_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310903", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.42038", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01252/raw_data/hic/HG01252-2_S2_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01252", + "totalBp": "137329443161", + "totalGbp": "137.33", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237495", + "ccsAlgorithm": "N/A", + "coverage": "5.38", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01255-22b-1_S1_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01255-22b-1-1_S1_L001_R1_001-1_S1_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613659", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.529301", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-1_S1_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01255", + "totalBp": "16681351404", + "totalGbp": "16.68", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237495", + "ccsAlgorithm": "N/A", + "coverage": "5.38", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01255-22b-1_S1_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01255-22b-1-1_S1_L001_R1_001-1_S1_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613659", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.53322", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-1_S1_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01255", + "totalBp": "16680693058", + "totalGbp": "16.68", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237495", + "ccsAlgorithm": "N/A", + "coverage": "5.22", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01255-22b-1_S1_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01255-22b-1-1_S1_L002_R1_001-1_S1_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613658", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.506356", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-1_S1_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01255", + "totalBp": "16195169606", + "totalGbp": "16.2", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237495", + "ccsAlgorithm": "N/A", + "coverage": "5.22", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01255-22b-1_S1_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01255-22b-1-1_S1_L002_R1_001-1_S1_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613658", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.51579", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-1_S1_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01255", + "totalBp": "16194896399", + "totalGbp": "16.19", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237495", + "ccsAlgorithm": "N/A", + "coverage": "4.98", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01255-22b-1_S1_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01255-22b-1-1_S1_L003_R1_001-1_S1_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613657", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.563926", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-1_S1_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01255", + "totalBp": "15429008129", + "totalGbp": "15.43", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237495", + "ccsAlgorithm": "N/A", + "coverage": "4.98", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01255-22b-1_S1_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01255-22b-1-1_S1_L003_R1_001-1_S1_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613657", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.509006", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-1_S1_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01255", + "totalBp": "15428182463", + "totalGbp": "15.43", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237495", + "ccsAlgorithm": "N/A", + "coverage": "5.36", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01255-22b-1_S1_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01255-22b-1-1_S1_L004_R1_001-1_S1_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613656", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.514441", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-1_S1_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01255", + "totalBp": "16617551009", + "totalGbp": "16.62", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237495", + "ccsAlgorithm": "N/A", + "coverage": "5.36", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01255-22b-1_S1_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01255-22b-1-1_S1_L004_R1_001-1_S1_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613656", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.527531", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-1_S1_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01255", + "totalBp": "16616907605", + "totalGbp": "16.62", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237495", + "ccsAlgorithm": "N/A", + "coverage": "7.93", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01255-22b-2_S2_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01255-22b-2-2_S2_L001_R1_001-2_S2_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613654", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.467304", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-2_S2_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01255", + "totalBp": "24589117638", + "totalGbp": "24.59", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237495", + "ccsAlgorithm": "N/A", + "coverage": "7.93", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01255-22b-2_S2_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01255-22b-2-2_S2_L001_R1_001-2_S2_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613654", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.476012", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-2_S2_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01255", + "totalBp": "24588270538", + "totalGbp": "24.59", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237495", + "ccsAlgorithm": "N/A", + "coverage": "7.14", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01255-22b-2_S2_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01255-22b-2-2_S2_L002_R1_001-2_S2_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613652", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.468712", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-2_S2_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01255", + "totalBp": "22131125314", + "totalGbp": "22.13", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237495", + "ccsAlgorithm": "N/A", + "coverage": "7.14", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01255-22b-2_S2_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01255-22b-2-2_S2_L002_R1_001-2_S2_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613652", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.489861", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-2_S2_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01255", + "totalBp": "22130799487", + "totalGbp": "22.13", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237495", + "ccsAlgorithm": "N/A", + "coverage": "7.17", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01255-22b-2_S2_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01255-22b-2-2_S2_L003_R1_001-2_S2_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613651", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.474316", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-2_S2_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01255", + "totalBp": "22238062415", + "totalGbp": "22.24", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237495", + "ccsAlgorithm": "N/A", + "coverage": "7.17", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01255-22b-2_S2_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01255-22b-2-2_S2_L003_R1_001-2_S2_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613651", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.447274", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-2_S2_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01255", + "totalBp": "22236991052", + "totalGbp": "22.24", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237495", + "ccsAlgorithm": "N/A", + "coverage": "7.97", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01255-22b-2_S2_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01255-22b-2-2_S2_L004_R1_001-2_S2_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613650", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.497556", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-2_S2_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01255", + "totalBp": "24716422119", + "totalGbp": "24.72", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237495", + "ccsAlgorithm": "N/A", + "coverage": "7.97", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01255-22b-2_S2_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01255-22b-2-2_S2_L004_R1_001-2_S2_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613650", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.475035", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/hic/HG01255-22b-2_S2_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01255", + "totalBp": "24715581993", + "totalGbp": "24.72", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267379", + "ccsAlgorithm": "N/A", + "coverage": "5.19", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01346-35a-1_S13_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01346-35a-1-1_S13_L001_R1_001-1_S13_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613832", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.531304", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-1_S13_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01346", + "totalBp": "16080143956", + "totalGbp": "16.08", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267379", + "ccsAlgorithm": "N/A", + "coverage": "5.19", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01346-35a-1_S13_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01346-35a-1-1_S13_L001_R1_001-1_S13_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613832", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.515223", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-1_S13_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01346", + "totalBp": "16075708981", + "totalGbp": "16.08", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267379", + "ccsAlgorithm": "N/A", + "coverage": "5.09", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01346-35a-1_S13_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01346-35a-1-1_S13_L002_R1_001-1_S13_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613830", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.519959", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-1_S13_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01346", + "totalBp": "15782722375", + "totalGbp": "15.78", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267379", + "ccsAlgorithm": "N/A", + "coverage": "5.09", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01346-35a-1_S13_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01346-35a-1-1_S13_L002_R1_001-1_S13_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613830", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.537513", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-1_S13_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01346", + "totalBp": "15778258111", + "totalGbp": "15.78", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267379", + "ccsAlgorithm": "N/A", + "coverage": "5.19", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01346-35a-1_S13_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01346-35a-1-1_S13_L003_R1_001-1_S13_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613828", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.510559", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-1_S13_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01346", + "totalBp": "16095195043", + "totalGbp": "16.1", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267379", + "ccsAlgorithm": "N/A", + "coverage": "5.19", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01346-35a-1_S13_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01346-35a-1-1_S13_L003_R1_001-1_S13_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613828", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.517624", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-1_S13_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01346", + "totalBp": "16090720284", + "totalGbp": "16.09", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267379", + "ccsAlgorithm": "N/A", + "coverage": "4.96", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01346-35a-1_S13_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01346-35a-1-1_S13_L004_R1_001-1_S13_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613672", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.515589", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-1_S13_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01346", + "totalBp": "15380919737", + "totalGbp": "15.38", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267379", + "ccsAlgorithm": "N/A", + "coverage": "4.96", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01346-35a-1_S13_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01346-35a-1-1_S13_L004_R1_001-1_S13_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613672", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.533727", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-1_S13_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01346", + "totalBp": "15376373585", + "totalGbp": "15.38", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267379", + "ccsAlgorithm": "N/A", + "coverage": "4.69", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01346-35a-2_S14_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01346-35a-2-2_S14_L001_R1_001-2_S14_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613827", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.543407", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-2_S14_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01346", + "totalBp": "14544675512", + "totalGbp": "14.54", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267379", + "ccsAlgorithm": "N/A", + "coverage": "4.69", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01346-35a-2_S14_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01346-35a-2-2_S14_L001_R1_001-2_S14_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613827", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.532021", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-2_S14_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01346", + "totalBp": "14540872654", + "totalGbp": "14.54", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267379", + "ccsAlgorithm": "N/A", + "coverage": "4.6", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01346-35a-2_S14_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01346-35a-2-2_S14_L002_R1_001-2_S14_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613826", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.523963", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-2_S14_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01346", + "totalBp": "14268195144", + "totalGbp": "14.27", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267379", + "ccsAlgorithm": "N/A", + "coverage": "4.6", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01346-35a-2_S14_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01346-35a-2-2_S14_L002_R1_001-2_S14_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613826", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.524517", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-2_S14_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01346", + "totalBp": "14264378370", + "totalGbp": "14.26", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267379", + "ccsAlgorithm": "N/A", + "coverage": "4.7", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01346-35a-2_S14_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01346-35a-2-2_S14_L003_R1_001-2_S14_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613822", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.556958", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-2_S14_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01346", + "totalBp": "14561225280", + "totalGbp": "14.56", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267379", + "ccsAlgorithm": "N/A", + "coverage": "4.7", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01346-35a-2_S14_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01346-35a-2-2_S14_L003_R1_001-2_S14_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613822", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.521915", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-2_S14_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01346", + "totalBp": "14557434045", + "totalGbp": "14.56", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267379", + "ccsAlgorithm": "N/A", + "coverage": "4.49", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01346-35a-2_S14_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01346-35a-2-2_S14_L004_R1_001-2_S14_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613821", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.552218", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-2_S14_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01346", + "totalBp": "13931683671", + "totalGbp": "13.93", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267379", + "ccsAlgorithm": "N/A", + "coverage": "4.49", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01346-35a-2_S14_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01346-35a-2-2_S14_L004_R1_001-2_S14_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613821", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.524202", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/hic/HG01346-35a-2_S14_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01346", + "totalBp": "13927791487", + "totalGbp": "13.93", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237497", + "ccsAlgorithm": "N/A", + "coverage": "5.39", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01496-43a-1_S13_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01496-43a-1-1_S13_L001_R1_001-1_S13_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613819", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.534152", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-1_S13_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01496", + "totalBp": "16707109865", + "totalGbp": "16.71", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237497", + "ccsAlgorithm": "N/A", + "coverage": "5.39", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01496-43a-1_S13_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01496-43a-1-1_S13_L001_R1_001-1_S13_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613819", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.541157", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-1_S13_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01496", + "totalBp": "16706671547", + "totalGbp": "16.71", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237497", + "ccsAlgorithm": "N/A", + "coverage": "4.4", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01496-43a-1_S13_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01496-43a-1-1_S13_L002_R1_001-1_S13_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613818", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.551344", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-1_S13_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01496", + "totalBp": "13629250197", + "totalGbp": "13.63", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237497", + "ccsAlgorithm": "N/A", + "coverage": "4.4", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01496-43a-1_S13_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01496-43a-1-1_S13_L002_R1_001-1_S13_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613818", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.540406", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-1_S13_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01496", + "totalBp": "13629067481", + "totalGbp": "13.63", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237497", + "ccsAlgorithm": "N/A", + "coverage": "4.47", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01496-43a-1_S13_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01496-43a-1-1_S13_L003_R1_001-1_S13_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613664", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.569148", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-1_S13_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01496", + "totalBp": "13851906875", + "totalGbp": "13.85", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237497", + "ccsAlgorithm": "N/A", + "coverage": "4.47", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01496-43a-1_S13_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01496-43a-1-1_S13_L003_R1_001-1_S13_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613664", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.569272", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-1_S13_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01496", + "totalBp": "13851340213", + "totalGbp": "13.85", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237497", + "ccsAlgorithm": "N/A", + "coverage": "5.31", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01496-43a-1_S13_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01496-43a-1-1_S13_L004_R1_001-1_S13_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613817", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.546852", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-1_S13_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01496", + "totalBp": "16453739298", + "totalGbp": "16.45", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237497", + "ccsAlgorithm": "N/A", + "coverage": "5.31", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01496-43a-1_S13_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01496-43a-1-1_S13_L004_R1_001-1_S13_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613817", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.539251", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-1_S13_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01496", + "totalBp": "16453313558", + "totalGbp": "16.45", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237497", + "ccsAlgorithm": "N/A", + "coverage": "4.63", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01496-43a-2_S14_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01496-43a-2-2_S14_L001_R1_001-2_S14_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613816", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.554269", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-2_S14_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01496", + "totalBp": "14366749798", + "totalGbp": "14.37", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237497", + "ccsAlgorithm": "N/A", + "coverage": "4.63", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01496-43a-2_S14_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01496-43a-2-2_S14_L001_R1_001-2_S14_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613816", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.553595", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-2_S14_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01496", + "totalBp": "14366469866", + "totalGbp": "14.37", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237497", + "ccsAlgorithm": "N/A", + "coverage": "3.8", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01496-43a-2_S14_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01496-43a-2-2_S14_L002_R1_001-2_S14_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613661", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.539892", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-2_S14_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01496", + "totalBp": "11789935190", + "totalGbp": "11.79", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237497", + "ccsAlgorithm": "N/A", + "coverage": "3.8", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01496-43a-2_S14_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01496-43a-2-2_S14_L002_R1_001-2_S14_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613661", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.571878", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-2_S14_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01496", + "totalBp": "11789832013", + "totalGbp": "11.79", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237497", + "ccsAlgorithm": "N/A", + "coverage": "3.8", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01496-43a-2_S14_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01496-43a-2-2_S14_L003_R1_001-2_S14_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613815", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.573823", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-2_S14_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01496", + "totalBp": "11778606793", + "totalGbp": "11.78", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237497", + "ccsAlgorithm": "N/A", + "coverage": "3.8", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01496-43a-2_S14_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01496-43a-2-2_S14_L003_R1_001-2_S14_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613815", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.571718", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-2_S14_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01496", + "totalBp": "11778261716", + "totalGbp": "11.78", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237497", + "ccsAlgorithm": "N/A", + "coverage": "4.52", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01496-43a-2_S14_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01496-43a-2-2_S14_L004_R1_001-2_S14_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613814", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.557804", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-2_S14_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01496", + "totalBp": "14002944412", + "totalGbp": "14", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237497", + "ccsAlgorithm": "N/A", + "coverage": "4.52", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01496-43a-2_S14_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01496-43a-2-2_S14_L004_R1_001-2_S14_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613814", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.534673", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/hic/HG01496-43a-2_S14_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01496", + "totalBp": "14002672404", + "totalGbp": "14", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "5.12", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-1_S3_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-1_S3_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242502", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.531106", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-1_S3_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "15881878484", + "totalGbp": "15.88", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "5.12", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-1_S3_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-1_S3_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242502", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.534723", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-1_S3_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "15880840056", + "totalGbp": "15.88", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "5.2", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-1_S3_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-1_S3_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242424", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.543372", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-1_S3_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "16121034186", + "totalGbp": "16.12", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "5.2", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-1_S3_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-1_S3_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242424", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.51989", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-1_S3_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "16120270893", + "totalGbp": "16.12", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "4.93", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-1_S3_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-1_S3_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242480", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.518959", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-1_S3_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "15269723276", + "totalGbp": "15.27", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "4.93", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-1_S3_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-1_S3_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242480", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.524037", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-1_S3_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "15268847244", + "totalGbp": "15.27", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "4.89", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-1_S3_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-1_S3_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242283", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.547714", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-1_S3_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "15150778535", + "totalGbp": "15.15", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "4.89", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-1_S3_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-1_S3_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242283", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.552279", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-1_S3_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "15149837710", + "totalGbp": "15.15", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "4.57", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-2_S11_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-2_S11_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242411", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.572679", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "14154859985", + "totalGbp": "14.15", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "4.57", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-2_S11_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-2_S11_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242411", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.556003", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "14153832303", + "totalGbp": "14.15", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "4.63", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-2_S11_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-2_S11_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242280", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.526389", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "14365907902", + "totalGbp": "14.37", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "4.63", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-2_S11_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-2_S11_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242280", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.477837", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "14365146781", + "totalGbp": "14.37", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "4.33", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-2_S11_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-2_S11_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242273", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.544446", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "13420324024", + "totalGbp": "13.42", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "4.33", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-2_S11_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-2_S11_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242273", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.55355", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "13419442072", + "totalGbp": "13.42", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "4.35", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-2_S11_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-2_S11_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242272", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.553314", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "13477345492", + "totalGbp": "13.48", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "4.35", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-2_S11_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-2_S11_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242272", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.508802", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "13476424101", + "totalGbp": "13.48", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "11.56", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-2_S11i_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-2_S11i_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242270", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.425715", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11i_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "35830722289", + "totalGbp": "35.83", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "11.56", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-2_S11i_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-2_S11i_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242270", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.425428", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11i_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "35828051996", + "totalGbp": "35.83", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "12.69", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-2_S11i_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-2_S11i_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242268", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.462949", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11i_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "39351820410", + "totalGbp": "39.35", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "12.69", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-2_S11i_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-2_S11i_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242268", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.442026", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11i_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "39350313141", + "totalGbp": "39.35", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "10.96", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-2_S11i_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-2_S11i_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242265", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.477153", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11i_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "33977811222", + "totalGbp": "33.98", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "10.96", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-2_S11i_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-2_S11i_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242265", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.475761", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11i_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "33976500567", + "totalGbp": "33.98", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "9.49", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-2_S11i_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-2_S11i_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242264", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.484091", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11i_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "29404032796", + "totalGbp": "29.4", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "N/A", + "coverage": "9.48", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01530-2_S11i_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01530-2_S11i_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242264", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.46578", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/hic/HG01530-2_S11i_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01530", + "totalBp": "29402751218", + "totalGbp": "29.4", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797100", + "ccsAlgorithm": "N/A", + "coverage": "4", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01784-2_S31_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01784-2_S31_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242262", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.602602", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01784/raw_data/hic/HG01784-2_S31_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01784", + "totalBp": "12386565567", + "totalGbp": "12.39", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797100", + "ccsAlgorithm": "N/A", + "coverage": "4", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01784-2_S31_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01784-2_S31_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242262", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.572815", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01784/raw_data/hic/HG01784-2_S31_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01784", + "totalBp": "12385592349", + "totalGbp": "12.39", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797100", + "ccsAlgorithm": "N/A", + "coverage": "4.32", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01784-2_S31_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01784-2_S31_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242479", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.592402", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01784/raw_data/hic/HG01784-2_S31_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01784", + "totalBp": "13377187618", + "totalGbp": "13.38", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797100", + "ccsAlgorithm": "N/A", + "coverage": "4.32", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01784-2_S31_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01784-2_S31_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242479", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.571426", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01784/raw_data/hic/HG01784-2_S31_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01784", + "totalBp": "13376511718", + "totalGbp": "13.38", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797100", + "ccsAlgorithm": "N/A", + "coverage": "4.31", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01784-2_S31_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01784-2_S31_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242478", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.583023", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01784/raw_data/hic/HG01784-2_S31_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01784", + "totalBp": "13371568307", + "totalGbp": "13.37", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797100", + "ccsAlgorithm": "N/A", + "coverage": "4.31", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01784-2_S31_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01784-2_S31_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242478", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.566998", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01784/raw_data/hic/HG01784-2_S31_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01784", + "totalBp": "13370845357", + "totalGbp": "13.37", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797100", + "ccsAlgorithm": "N/A", + "coverage": "4.27", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01784-2_S31_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01784-2_S31_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242259", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.605486", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01784/raw_data/hic/HG01784-2_S31_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01784", + "totalBp": "13250775565", + "totalGbp": "13.25", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797100", + "ccsAlgorithm": "N/A", + "coverage": "4.27", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01784-2_S31_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01784-2_S31_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242259", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.530222", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01784/raw_data/hic/HG01784-2_S31_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01784", + "totalBp": "13250075767", + "totalGbp": "13.25", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021633", + "ccsAlgorithm": "N/A", + "coverage": "5.41", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01786-1_FC1_S1_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01786-1_FC1_S1_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310902", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.53728", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01786/raw_data/hic/HG01786-1_FC1_S1_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01786", + "totalBp": "16785803411", + "totalGbp": "16.79", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021633", + "ccsAlgorithm": "N/A", + "coverage": "5.41", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01786-1_FC1_S1_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01786-1_FC1_S1_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310902", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.53728", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01786/raw_data/hic/HG01786-1_FC1_S1_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01786", + "totalBp": "16785803411", + "totalGbp": "16.79", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021633", + "ccsAlgorithm": "N/A", + "coverage": "5.23", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01786-1_FC2_S1_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01786-1_FC2_S1_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310901", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.497086", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01786/raw_data/hic/HG01786-1_FC2_S1_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01786", + "totalBp": "16208070616", + "totalGbp": "16.21", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021633", + "ccsAlgorithm": "N/A", + "coverage": "5.23", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01786-1_FC2_S1_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01786-1_FC2_S1_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310901", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.497086", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01786/raw_data/hic/HG01786-1_FC2_S1_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01786", + "totalBp": "16208070616", + "totalGbp": "16.21", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021633", + "ccsAlgorithm": "N/A", + "coverage": "5.98", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01786-2_FC1_S2_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01786-2_FC1_S2_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310900", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.487939", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01786/raw_data/hic/HG01786-2_FC1_S2_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01786", + "totalBp": "18534527163", + "totalGbp": "18.53", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021633", + "ccsAlgorithm": "N/A", + "coverage": "5.98", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01786-2_FC1_S2_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01786-2_FC1_S2_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310900", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.487939", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01786/raw_data/hic/HG01786-2_FC1_S2_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01786", + "totalBp": "18534527163", + "totalGbp": "18.53", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021633", + "ccsAlgorithm": "N/A", + "coverage": "5.72", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01786-2_FC2_S2_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01786-2_FC2_S2_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310899", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.489055", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01786/raw_data/hic/HG01786-2_FC2_S2_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01786", + "totalBp": "17723207636", + "totalGbp": "17.72", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021633", + "ccsAlgorithm": "N/A", + "coverage": "5.72", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01786-2_FC2_S2_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01786-2_FC2_S2_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310899", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.489055", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01786/raw_data/hic/HG01786-2_FC2_S2_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01786", + "totalBp": "17723207636", + "totalGbp": "17.72", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267393", + "ccsAlgorithm": "N/A", + "coverage": "11.17", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01884-49d-1_S5_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01884-49d-1-1_S5_L001_R1_001-1_S5_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613812", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.480757", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-1_S5_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01884", + "totalBp": "34623182101", + "totalGbp": "34.62", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267393", + "ccsAlgorithm": "N/A", + "coverage": "11.17", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01884-49d-1_S5_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01884-49d-1-1_S5_L001_R1_001-1_S5_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613812", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.346364", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-1_S5_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01884", + "totalBp": "34623021116", + "totalGbp": "34.62", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267393", + "ccsAlgorithm": "N/A", + "coverage": "11.19", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01884-49d-1_S5_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01884-49d-1-1_S5_L002_R1_001-1_S5_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613811", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.44543", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-1_S5_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01884", + "totalBp": "34676518613", + "totalGbp": "34.68", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267393", + "ccsAlgorithm": "N/A", + "coverage": "11.19", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01884-49d-1_S5_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01884-49d-1-1_S5_L002_R1_001-1_S5_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613811", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.324491", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-1_S5_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01884", + "totalBp": "34676334433", + "totalGbp": "34.68", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267393", + "ccsAlgorithm": "N/A", + "coverage": "10.71", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01884-49d-1_S5_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01884-49d-1-1_S5_L003_R1_001-1_S5_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613810", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.490835", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-1_S5_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01884", + "totalBp": "33214817044", + "totalGbp": "33.21", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267393", + "ccsAlgorithm": "N/A", + "coverage": "10.71", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01884-49d-1_S5_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01884-49d-1-1_S5_L003_R1_001-1_S5_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613810", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.332678", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-1_S5_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01884", + "totalBp": "33215039662", + "totalGbp": "33.22", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267393", + "ccsAlgorithm": "N/A", + "coverage": "10.44", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01884-49d-1_S5_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01884-49d-1-1_S5_L004_R1_001-1_S5_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613809", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.455756", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-1_S5_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01884", + "totalBp": "32369409063", + "totalGbp": "32.37", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267393", + "ccsAlgorithm": "N/A", + "coverage": "10.44", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01884-49d-1_S5_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01884-49d-1-1_S5_L004_R1_001-1_S5_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613809", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.31598", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-1_S5_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01884", + "totalBp": "32369124151", + "totalGbp": "32.37", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267393", + "ccsAlgorithm": "N/A", + "coverage": "12.1", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01884-49d-2_S6_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01884-49d-2-2_S6_L001_R1_001-2_S6_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613653", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.452907", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-2_S6_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01884", + "totalBp": "37516948189", + "totalGbp": "37.52", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267393", + "ccsAlgorithm": "N/A", + "coverage": "12.1", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01884-49d-2_S6_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01884-49d-2-2_S6_L001_R1_001-2_S6_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613653", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.37222", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-2_S6_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01884", + "totalBp": "37515467469", + "totalGbp": "37.52", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267393", + "ccsAlgorithm": "N/A", + "coverage": "12.06", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01884-49d-2_S6_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01884-49d-2-2_S6_L002_R1_001-2_S6_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613808", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.490871", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-2_S6_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01884", + "totalBp": "37393333326", + "totalGbp": "37.39", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267393", + "ccsAlgorithm": "N/A", + "coverage": "12.06", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01884-49d-2_S6_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01884-49d-2-2_S6_L002_R1_001-2_S6_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613808", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.355867", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-2_S6_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01884", + "totalBp": "37391871211", + "totalGbp": "37.39", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267393", + "ccsAlgorithm": "N/A", + "coverage": "11.57", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01884-49d-2_S6_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01884-49d-2-2_S6_L003_R1_001-2_S6_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613807", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.466052", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-2_S6_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01884", + "totalBp": "35880705852", + "totalGbp": "35.88", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267393", + "ccsAlgorithm": "N/A", + "coverage": "11.57", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01884-49d-2_S6_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01884-49d-2-2_S6_L003_R1_001-2_S6_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613807", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.350383", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-2_S6_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01884", + "totalBp": "35879440018", + "totalGbp": "35.88", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267393", + "ccsAlgorithm": "N/A", + "coverage": "11.17", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01884-49d-2_S6_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01884-49d-2-2_S6_L004_R1_001-2_S6_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613734", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.446011", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-2_S6_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01884", + "totalBp": "34636292642", + "totalGbp": "34.64", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267393", + "ccsAlgorithm": "N/A", + "coverage": "11.17", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01884-49d-2_S6_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01884-49d-2-2_S6_L004_R1_001-2_S6_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613734", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.366891", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/hic/HG01884-49d-2_S6_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01884", + "totalBp": "34634792364", + "totalGbp": "34.63", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797101", + "ccsAlgorithm": "N/A", + "coverage": "13.07", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01940-2_S10_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01940-2_S10_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310898", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.353777", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01940/raw_data/hic/HG01940-2_S10_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01940", + "totalBp": "40532207314", + "totalGbp": "40.53", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797101", + "ccsAlgorithm": "N/A", + "coverage": "13.07", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01940-2_S10_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01940-2_S10_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310898", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.353777", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01940/raw_data/hic/HG01940-2_S10_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01940", + "totalBp": "40532207314", + "totalGbp": "40.53", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237499", + "ccsAlgorithm": "N/A", + "coverage": "8.21", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01943-51f-1_S15_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01943-51f-1-1_S15_L001_R1_001-1_S15_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613733", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.548567", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-1_S15_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01943", + "totalBp": "25449074066", + "totalGbp": "25.45", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237499", + "ccsAlgorithm": "N/A", + "coverage": "8.21", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01943-51f-1_S15_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01943-51f-1-1_S15_L001_R1_001-1_S15_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613733", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.475063", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-1_S15_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01943", + "totalBp": "25448190500", + "totalGbp": "25.45", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237499", + "ccsAlgorithm": "N/A", + "coverage": "8.18", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01943-51f-1_S15_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01943-51f-1-1_S15_L002_R1_001-1_S15_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613732", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.523962", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-1_S15_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01943", + "totalBp": "25359743201", + "totalGbp": "25.36", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237499", + "ccsAlgorithm": "N/A", + "coverage": "8.18", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01943-51f-1_S15_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01943-51f-1-1_S15_L002_R1_001-1_S15_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613732", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.457827", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-1_S15_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01943", + "totalBp": "25358861260", + "totalGbp": "25.36", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237499", + "ccsAlgorithm": "N/A", + "coverage": "8.18", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01943-51f-1_S15_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01943-51f-1-1_S15_L003_R1_001-1_S15_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613730", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.539035", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-1_S15_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01943", + "totalBp": "25356677236", + "totalGbp": "25.36", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237499", + "ccsAlgorithm": "N/A", + "coverage": "8.18", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01943-51f-1_S15_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01943-51f-1-1_S15_L003_R1_001-1_S15_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613730", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.49187", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-1_S15_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01943", + "totalBp": "25355683603", + "totalGbp": "25.36", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237499", + "ccsAlgorithm": "N/A", + "coverage": "7.77", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01943-51f-1_S15_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01943-51f-1-1_S15_L004_R1_001-1_S15_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613729", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.535382", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-1_S15_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01943", + "totalBp": "24094137141", + "totalGbp": "24.09", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237499", + "ccsAlgorithm": "N/A", + "coverage": "7.77", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01943-51f-1_S15_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01943-51f-1-1_S15_L004_R1_001-1_S15_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613729", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.497998", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-1_S15_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01943", + "totalBp": "24093026177", + "totalGbp": "24.09", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237499", + "ccsAlgorithm": "N/A", + "coverage": "7.63", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01943-51f-2_S16_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01943-51f-2-2_S16_L001_R1_001-2_S16_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613724", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.495083", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-2_S16_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01943", + "totalBp": "23659301954", + "totalGbp": "23.66", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237499", + "ccsAlgorithm": "N/A", + "coverage": "7.63", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01943-51f-2_S16_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01943-51f-2-2_S16_L001_R1_001-2_S16_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613724", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.480733", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-2_S16_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01943", + "totalBp": "23658501824", + "totalGbp": "23.66", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237499", + "ccsAlgorithm": "N/A", + "coverage": "7.58", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01943-51f-2_S16_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01943-51f-2-2_S16_L002_R1_001-2_S16_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613723", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.553269", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-2_S16_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01943", + "totalBp": "23491487596", + "totalGbp": "23.49", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237499", + "ccsAlgorithm": "N/A", + "coverage": "7.58", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01943-51f-2_S16_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01943-51f-2-2_S16_L002_R1_001-2_S16_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613723", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.478279", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-2_S16_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01943", + "totalBp": "23490626642", + "totalGbp": "23.49", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237499", + "ccsAlgorithm": "N/A", + "coverage": "7.6", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01943-51f-2_S16_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01943-51f-2-2_S16_L003_R1_001-2_S16_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613722", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.550134", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-2_S16_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01943", + "totalBp": "23559419984", + "totalGbp": "23.56", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237499", + "ccsAlgorithm": "N/A", + "coverage": "7.6", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01943-51f-2_S16_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01943-51f-2-2_S16_L003_R1_001-2_S16_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613722", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.483036", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-2_S16_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01943", + "totalBp": "23558501341", + "totalGbp": "23.56", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237499", + "ccsAlgorithm": "N/A", + "coverage": "7.24", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01943-51f-2_S16_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01943-51f-2-2_S16_L004_R1_001-2_S16_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613728", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.509613", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-2_S16_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01943", + "totalBp": "22430718758", + "totalGbp": "22.43", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237499", + "ccsAlgorithm": "N/A", + "coverage": "7.24", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01943-51f-2_S16_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01943-51f-2-2_S16_L004_R1_001-2_S16_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613728", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.46008", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/hic/HG01943-51f-2_S16_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01943", + "totalBp": "22429687793", + "totalGbp": "22.43", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797102", + "ccsAlgorithm": "N/A", + "coverage": "9.9", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01960-1_S3_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01960-1_S3_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310829", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.46504", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01960/raw_data/hic/HG01960-1_S3_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01960", + "totalBp": "30702431662", + "totalGbp": "30.7", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797102", + "ccsAlgorithm": "N/A", + "coverage": "9.9", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01960-1_S3_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01960-1_S3_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310829", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.46504", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01960/raw_data/hic/HG01960-1_S3_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01960", + "totalBp": "30702431662", + "totalGbp": "30.7", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797102", + "ccsAlgorithm": "N/A", + "coverage": "8.56", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01960-2_S3_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01960-2_S3_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310828", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.448195", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01960/raw_data/hic/HG01960-2_S3_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01960", + "totalBp": "26523678349", + "totalGbp": "26.52", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797102", + "ccsAlgorithm": "N/A", + "coverage": "8.56", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01960-2_S3_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01960-2_S3_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310828", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.448195", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01960/raw_data/hic/HG01960-2_S3_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01960", + "totalBp": "26523678349", + "totalGbp": "26.52", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797103", + "ccsAlgorithm": "N/A", + "coverage": "25.93", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01969-1_S3_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01969-1_S3_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310897", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.409527", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/hic/HG01969-1_S3_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01969", + "totalBp": "80380642385", + "totalGbp": "80.38", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797103", + "ccsAlgorithm": "N/A", + "coverage": "25.93", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01969-1_S3_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01969-1_S3_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310897", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.409527", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/hic/HG01969-1_S3_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01969", + "totalBp": "80380642385", + "totalGbp": "80.38", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797103", + "ccsAlgorithm": "N/A", + "coverage": "22.04", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01969-2_S3_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01969-2_S3_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310896", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.428637", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/hic/HG01969-2_S3_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01969", + "totalBp": "68330824416", + "totalGbp": "68.33", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797103", + "ccsAlgorithm": "N/A", + "coverage": "22.04", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01969-2_S3_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01969-2_S3_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310896", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.428637", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/hic/HG01969-2_S3_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01969", + "totalBp": "68330824416", + "totalGbp": "68.33", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621947", + "ccsAlgorithm": "N/A", + "coverage": "10.88", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01975-1_S4_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01975-1_S4_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310827", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.439404", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01975/raw_data/hic/HG01975-1_S4_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01975", + "totalBp": "33735008754", + "totalGbp": "33.74", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621947", + "ccsAlgorithm": "N/A", + "coverage": "10.88", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01975-1_S4_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01975-1_S4_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310827", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.439404", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01975/raw_data/hic/HG01975-1_S4_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01975", + "totalBp": "33735008754", + "totalGbp": "33.74", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621947", + "ccsAlgorithm": "N/A", + "coverage": "14.66", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01975-2_S4_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01975-2_S4_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310826", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.406998", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01975/raw_data/hic/HG01975-2_S4_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01975", + "totalBp": "45449986488", + "totalGbp": "45.45", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621947", + "ccsAlgorithm": "N/A", + "coverage": "14.66", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01975-2_S4_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01975-2_S4_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310826", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.406998", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01975/raw_data/hic/HG01975-2_S4_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01975", + "totalBp": "45449986488", + "totalGbp": "45.45", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237500", + "ccsAlgorithm": "N/A", + "coverage": "13.44", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01981-51d-1_S1_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01981-51d-1-1_S1_L001_R1_001-1_S1_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613727", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.474543", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-1_S1_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01981", + "totalBp": "41653218805", + "totalGbp": "41.65", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237500", + "ccsAlgorithm": "N/A", + "coverage": "13.44", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01981-51d-1_S1_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01981-51d-1-1_S1_L001_R1_001-1_S1_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613727", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.403594", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-1_S1_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01981", + "totalBp": "41651984090", + "totalGbp": "41.65", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237500", + "ccsAlgorithm": "N/A", + "coverage": "13.38", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01981-51d-1_S1_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01981-51d-1-1_S1_L002_R1_001-1_S1_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613820", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.480367", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-1_S1_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01981", + "totalBp": "41483446061", + "totalGbp": "41.48", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237500", + "ccsAlgorithm": "N/A", + "coverage": "13.38", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01981-51d-1_S1_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01981-51d-1-1_S1_L002_R1_001-1_S1_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613820", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.366395", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-1_S1_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01981", + "totalBp": "41482286592", + "totalGbp": "41.48", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237500", + "ccsAlgorithm": "N/A", + "coverage": "12.97", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01981-51d-1_S1_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01981-51d-1-1_S1_L003_R1_001-1_S1_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613726", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.486159", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-1_S1_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01981", + "totalBp": "40201694104", + "totalGbp": "40.2", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237500", + "ccsAlgorithm": "N/A", + "coverage": "12.97", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01981-51d-1_S1_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01981-51d-1-1_S1_L003_R1_001-1_S1_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613726", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.399258", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-1_S1_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01981", + "totalBp": "40200790527", + "totalGbp": "40.2", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237500", + "ccsAlgorithm": "N/A", + "coverage": "12.58", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01981-51d-1_S1_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01981-51d-1-1_S1_L004_R1_001-1_S1_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613725", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.49117", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-1_S1_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01981", + "totalBp": "38996126517", + "totalGbp": "39", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237500", + "ccsAlgorithm": "N/A", + "coverage": "12.58", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01981-51d-1_S1_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01981-51d-1-1_S1_L004_R1_001-1_S1_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613725", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.376494", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-1_S1_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01981", + "totalBp": "38994877614", + "totalGbp": "38.99", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237500", + "ccsAlgorithm": "N/A", + "coverage": "13.24", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01981-51d-2_S2_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01981-51d-2-2_S2_L001_R1_001-2_S2_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613926", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.51542", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-2_S2_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01981", + "totalBp": "41035537380", + "totalGbp": "41.04", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237500", + "ccsAlgorithm": "N/A", + "coverage": "13.24", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01981-51d-2_S2_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01981-51d-2-2_S2_L001_R1_001-2_S2_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613926", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.353882", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-2_S2_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01981", + "totalBp": "41034585025", + "totalGbp": "41.03", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237500", + "ccsAlgorithm": "N/A", + "coverage": "13.23", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01981-51d-2_S2_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01981-51d-2-2_S2_L002_R1_001-2_S2_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613925", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.462307", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-2_S2_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01981", + "totalBp": "41017123458", + "totalGbp": "41.02", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237500", + "ccsAlgorithm": "N/A", + "coverage": "13.23", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01981-51d-2_S2_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01981-51d-2-2_S2_L002_R1_001-2_S2_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613925", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.357028", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-2_S2_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01981", + "totalBp": "41016184901", + "totalGbp": "41.02", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237500", + "ccsAlgorithm": "N/A", + "coverage": "12.72", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01981-51d-2_S2_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01981-51d-2-2_S2_L003_R1_001-2_S2_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613924", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.485472", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-2_S2_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01981", + "totalBp": "39422310710", + "totalGbp": "39.42", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237500", + "ccsAlgorithm": "N/A", + "coverage": "12.72", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01981-51d-2_S2_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01981-51d-2-2_S2_L003_R1_001-2_S2_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613924", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.329355", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-2_S2_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01981", + "totalBp": "39421903264", + "totalGbp": "39.42", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237500", + "ccsAlgorithm": "N/A", + "coverage": "12.33", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01981-51d-2_S2_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01981-51d-2-2_S2_L004_R1_001-2_S2_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613923", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.478379", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-2_S2_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01981", + "totalBp": "38230911347", + "totalGbp": "38.23", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237500", + "ccsAlgorithm": "N/A", + "coverage": "12.33", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01981-51d-2_S2_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01981-51d-2-2_S2_L004_R1_001-2_S2_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613923", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.344637", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/hic/HG01981-51d-2_S2_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01981", + "totalBp": "38230009956", + "totalGbp": "38.23", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237501", + "ccsAlgorithm": "N/A", + "coverage": "4.85", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01993-32a-1_S7_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01993-32a-1-1_S7_L001_R1_001-1_S7_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613922", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.533211", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-1_S7_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01993", + "totalBp": "15039409706", + "totalGbp": "15.04", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237501", + "ccsAlgorithm": "N/A", + "coverage": "4.85", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01993-32a-1_S7_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01993-32a-1-1_S7_L001_R1_001-1_S7_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613922", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.544515", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-1_S7_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01993", + "totalBp": "15035465143", + "totalGbp": "15.04", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237501", + "ccsAlgorithm": "N/A", + "coverage": "4.76", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01993-32a-1_S7_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01993-32a-1-1_S7_L002_R1_001-1_S7_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613921", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.53817", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-1_S7_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01993", + "totalBp": "14748632305", + "totalGbp": "14.75", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237501", + "ccsAlgorithm": "N/A", + "coverage": "4.76", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01993-32a-1_S7_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01993-32a-1-1_S7_L002_R1_001-1_S7_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613921", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.583001", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-1_S7_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01993", + "totalBp": "14744648656", + "totalGbp": "14.74", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237501", + "ccsAlgorithm": "N/A", + "coverage": "4.84", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01993-32a-1_S7_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01993-32a-1-1_S7_L003_R1_001-1_S7_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613920", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.530802", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-1_S7_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01993", + "totalBp": "15016327874", + "totalGbp": "15.02", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237501", + "ccsAlgorithm": "N/A", + "coverage": "4.84", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01993-32a-1_S7_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01993-32a-1-1_S7_L003_R1_001-1_S7_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613920", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.54599", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-1_S7_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01993", + "totalBp": "15012311055", + "totalGbp": "15.01", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237501", + "ccsAlgorithm": "N/A", + "coverage": "4.65", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01993-32a-1_S7_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01993-32a-1-1_S7_L004_R1_001-1_S7_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613919", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.531523", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-1_S7_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01993", + "totalBp": "14405613107", + "totalGbp": "14.41", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237501", + "ccsAlgorithm": "N/A", + "coverage": "4.65", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01993-32a-1_S7_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01993-32a-1-1_S7_L004_R1_001-1_S7_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613919", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.569494", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-1_S7_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01993", + "totalBp": "14401564846", + "totalGbp": "14.4", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237501", + "ccsAlgorithm": "N/A", + "coverage": "5.95", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01993-32a-2_S8_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01993-32a-2-2_S8_L001_R1_001-2_S8_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613918", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.501297", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-2_S8_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01993", + "totalBp": "18451286661", + "totalGbp": "18.45", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237501", + "ccsAlgorithm": "N/A", + "coverage": "5.95", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01993-32a-2_S8_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01993-32a-2-2_S8_L001_R1_001-2_S8_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613918", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.51883", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-2_S8_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01993", + "totalBp": "18446819358", + "totalGbp": "18.45", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237501", + "ccsAlgorithm": "N/A", + "coverage": "5.84", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01993-32a-2_S8_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01993-32a-2-2_S8_L002_R1_001-2_S8_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613917", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.494803", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-2_S8_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01993", + "totalBp": "18114911480", + "totalGbp": "18.11", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237501", + "ccsAlgorithm": "N/A", + "coverage": "5.84", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01993-32a-2_S8_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01993-32a-2-2_S8_L002_R1_001-2_S8_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613917", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.503447", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-2_S8_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01993", + "totalBp": "18110406973", + "totalGbp": "18.11", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237501", + "ccsAlgorithm": "N/A", + "coverage": "5.96", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01993-32a-2_S8_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01993-32a-2-2_S8_L003_R1_001-2_S8_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613915", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.503744", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-2_S8_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01993", + "totalBp": "18488268913", + "totalGbp": "18.49", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237501", + "ccsAlgorithm": "N/A", + "coverage": "5.96", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01993-32a-2_S8_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01993-32a-2-2_S8_L003_R1_001-2_S8_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613915", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.518475", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-2_S8_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01993", + "totalBp": "18483757744", + "totalGbp": "18.48", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237501", + "ccsAlgorithm": "N/A", + "coverage": "5.71", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01993-32a-2_S8_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01993-32a-2-2_S8_L004_R1_001-2_S8_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613914", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.466547", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-2_S8_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01993", + "totalBp": "17691191989", + "totalGbp": "17.69", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237501", + "ccsAlgorithm": "N/A", + "coverage": "5.71", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG01993-32a-2_S8_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG01993-32a-2-2_S8_L004_R1_001-2_S8_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613914", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.508678", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/hic/HG01993-32a-2_S8_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG01993", + "totalBp": "17686611142", + "totalGbp": "17.69", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237502", + "ccsAlgorithm": "N/A", + "coverage": "6.37", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02004-41a-1_S19_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02004-41a-1-1_S19_L001_R1_001-1_S19_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613913", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.559967", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-1_S19_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02004", + "totalBp": "19743627057", + "totalGbp": "19.74", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237502", + "ccsAlgorithm": "N/A", + "coverage": "6.37", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02004-41a-1_S19_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02004-41a-1-1_S19_L001_R1_001-1_S19_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613913", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.548643", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-1_S19_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02004", + "totalBp": "19743164158", + "totalGbp": "19.74", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237502", + "ccsAlgorithm": "N/A", + "coverage": "4.9", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02004-41a-1_S19_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02004-41a-1-1_S19_L002_R1_001-1_S19_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613912", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.537074", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-1_S19_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02004", + "totalBp": "15193807061", + "totalGbp": "15.19", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237502", + "ccsAlgorithm": "N/A", + "coverage": "4.9", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02004-41a-1_S19_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02004-41a-1-1_S19_L002_R1_001-1_S19_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613912", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.507177", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-1_S19_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02004", + "totalBp": "15193687155", + "totalGbp": "15.19", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237502", + "ccsAlgorithm": "N/A", + "coverage": "5.12", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02004-41a-1_S19_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02004-41a-1-1_S19_L003_R1_001-1_S19_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613911", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.588349", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-1_S19_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02004", + "totalBp": "15882534487", + "totalGbp": "15.88", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237502", + "ccsAlgorithm": "N/A", + "coverage": "5.12", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02004-41a-1_S19_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02004-41a-1-1_S19_L003_R1_001-1_S19_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613911", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.516906", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-1_S19_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02004", + "totalBp": "15882024380", + "totalGbp": "15.88", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237502", + "ccsAlgorithm": "N/A", + "coverage": "6.23", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02004-41a-1_S19_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02004-41a-1-1_S19_L004_R1_001-1_S19_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613910", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.565979", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-1_S19_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02004", + "totalBp": "19309597381", + "totalGbp": "19.31", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237502", + "ccsAlgorithm": "N/A", + "coverage": "6.23", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02004-41a-1_S19_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02004-41a-1-1_S19_L004_R1_001-1_S19_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613910", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.531654", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-1_S19_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02004", + "totalBp": "19309193760", + "totalGbp": "19.31", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237502", + "ccsAlgorithm": "N/A", + "coverage": "6.63", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02004-41a-2_S20_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02004-41a-2-2_S20_L001_R1_001-2_S20_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613909", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.549893", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-2_S20_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02004", + "totalBp": "20562673901", + "totalGbp": "20.56", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237502", + "ccsAlgorithm": "N/A", + "coverage": "6.63", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02004-41a-2_S20_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02004-41a-2-2_S20_L001_R1_001-2_S20_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613909", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.505175", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-2_S20_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02004", + "totalBp": "20562443318", + "totalGbp": "20.56", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237502", + "ccsAlgorithm": "N/A", + "coverage": "5.22", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02004-41a-2_S20_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02004-41a-2-2_S20_L002_R1_001-2_S20_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613908", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.563956", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-2_S20_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02004", + "totalBp": "16170996529", + "totalGbp": "16.17", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237502", + "ccsAlgorithm": "N/A", + "coverage": "5.22", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02004-41a-2_S20_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02004-41a-2-2_S20_L002_R1_001-2_S20_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613908", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.532909", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-2_S20_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02004", + "totalBp": "16171016865", + "totalGbp": "16.17", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237502", + "ccsAlgorithm": "N/A", + "coverage": "5.32", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02004-41a-2_S20_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02004-41a-2-2_S20_L003_R1_001-2_S20_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613907", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.560374", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-2_S20_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02004", + "totalBp": "16488076013", + "totalGbp": "16.49", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237502", + "ccsAlgorithm": "N/A", + "coverage": "5.32", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02004-41a-2_S20_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02004-41a-2-2_S20_L003_R1_001-2_S20_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613907", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.528333", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-2_S20_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02004", + "totalBp": "16487741328", + "totalGbp": "16.49", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237502", + "ccsAlgorithm": "N/A", + "coverage": "6.43", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02004-41a-2_S20_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02004-41a-2-2_S20_L004_R1_001-2_S20_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613906", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.568568", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-2_S20_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02004", + "totalBp": "19942114080", + "totalGbp": "19.94", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237502", + "ccsAlgorithm": "N/A", + "coverage": "6.43", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02004-41a-2_S20_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02004-41a-2-2_S20_L004_R1_001-2_S20_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613906", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.513076", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/hic/HG02004-41a-2_S20_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02004", + "totalBp": "19941931383", + "totalGbp": "19.94", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621948", + "ccsAlgorithm": "N/A", + "coverage": "8.99", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02015-1_S3_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02015-1_S3_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310894", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.474905", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02015/raw_data/hic/HG02015-1_S3_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02015", + "totalBp": "27863340987", + "totalGbp": "27.86", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621948", + "ccsAlgorithm": "N/A", + "coverage": "8.99", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02015-1_S3_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02015-1_S3_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310894", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.474905", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02015/raw_data/hic/HG02015-1_S3_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02015", + "totalBp": "27863340987", + "totalGbp": "27.86", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758784", + "ccsAlgorithm": "N/A", + "coverage": "2.67", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02040-1_S1_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02040-1_S1_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242258", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.647356", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-1_S1_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02040", + "totalBp": "8290570287", + "totalGbp": "8.29", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758784", + "ccsAlgorithm": "N/A", + "coverage": "2.67", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02040-1_S1_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02040-1_S1_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242258", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.601321", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-1_S1_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02040", + "totalBp": "8289959870", + "totalGbp": "8.29", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758784", + "ccsAlgorithm": "N/A", + "coverage": "2.9", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02040-1_S1_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02040-1_S1_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242257", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.620614", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-1_S1_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02040", + "totalBp": "8975206509", + "totalGbp": "8.98", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758784", + "ccsAlgorithm": "N/A", + "coverage": "2.9", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02040-1_S1_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02040-1_S1_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242257", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.652041", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-1_S1_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02040", + "totalBp": "8974786338", + "totalGbp": "8.97", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758784", + "ccsAlgorithm": "N/A", + "coverage": "2.9", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02040-1_S1_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02040-1_S1_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242255", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.622793", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-1_S1_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02040", + "totalBp": "8977755556", + "totalGbp": "8.98", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758784", + "ccsAlgorithm": "N/A", + "coverage": "2.9", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02040-1_S1_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02040-1_S1_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242255", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.614708", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-1_S1_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02040", + "totalBp": "8977307221", + "totalGbp": "8.98", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758784", + "ccsAlgorithm": "N/A", + "coverage": "2.86", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02040-1_S1_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02040-1_S1_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242254", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.649502", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-1_S1_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02040", + "totalBp": "8864041665", + "totalGbp": "8.86", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758784", + "ccsAlgorithm": "N/A", + "coverage": "2.86", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02040-1_S1_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02040-1_S1_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242254", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.590258", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-1_S1_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02040", + "totalBp": "8863626631", + "totalGbp": "8.86", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758784", + "ccsAlgorithm": "N/A", + "coverage": "3.11", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02040-2_S9_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02040-2_S9_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242253", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.620916", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-2_S9_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02040", + "totalBp": "9651428893", + "totalGbp": "9.65", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758784", + "ccsAlgorithm": "N/A", + "coverage": "3.11", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02040-2_S9_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02040-2_S9_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242253", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.617313", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-2_S9_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02040", + "totalBp": "9650777164", + "totalGbp": "9.65", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758784", + "ccsAlgorithm": "N/A", + "coverage": "3.4", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02040-2_S9_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02040-2_S9_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242252", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.612289", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-2_S9_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02040", + "totalBp": "10541830391", + "totalGbp": "10.54", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758784", + "ccsAlgorithm": "N/A", + "coverage": "3.4", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02040-2_S9_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02040-2_S9_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242252", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.586206", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-2_S9_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02040", + "totalBp": "10541378055", + "totalGbp": "10.54", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758784", + "ccsAlgorithm": "N/A", + "coverage": "3.4", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02040-2_S9_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02040-2_S9_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242251", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.596701", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-2_S9_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02040", + "totalBp": "10535978094", + "totalGbp": "10.54", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758784", + "ccsAlgorithm": "N/A", + "coverage": "3.4", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02040-2_S9_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02040-2_S9_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242251", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.558683", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-2_S9_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02040", + "totalBp": "10535494418", + "totalGbp": "10.54", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758784", + "ccsAlgorithm": "N/A", + "coverage": "3.34", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02040-2_S9_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02040-2_S9_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242250", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.611257", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-2_S9_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02040", + "totalBp": "10368682458", + "totalGbp": "10.37", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758784", + "ccsAlgorithm": "N/A", + "coverage": "3.34", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02040-2_S9_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02040-2_S9_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242250", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.596591", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/hic/HG02040-2_S9_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02040", + "totalBp": "10368222187", + "totalGbp": "10.37", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621949", + "ccsAlgorithm": "N/A", + "coverage": "12.54", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02056-1_S1_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02056-1_S1_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310893", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.401986", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02056/raw_data/hic/HG02056-1_S1_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02056", + "totalBp": "38875139656", + "totalGbp": "38.88", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621949", + "ccsAlgorithm": "N/A", + "coverage": "12.54", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02056-1_S1_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02056-1_S1_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310893", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.401986", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02056/raw_data/hic/HG02056-1_S1_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02056", + "totalBp": "38875139656", + "totalGbp": "38.88", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621949", + "ccsAlgorithm": "N/A", + "coverage": "12.1", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02056-2_S5_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02056-2_S5_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310892", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.412847", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02056/raw_data/hic/HG02056-2_S5_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02056", + "totalBp": "37502509943", + "totalGbp": "37.5", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621949", + "ccsAlgorithm": "N/A", + "coverage": "12.1", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02056-2_S5_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02056-2_S5_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310892", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.412847", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02056/raw_data/hic/HG02056-2_S5_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02056", + "totalBp": "37502509943", + "totalGbp": "37.5", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267380", + "ccsAlgorithm": "N/A", + "coverage": "9.02", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02071-10a-1_S9_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02071-10a-1-1_S9_L001_R1_001-1_S9_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613904", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.508271", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-1_S9_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02071", + "totalBp": "27976854046", + "totalGbp": "27.98", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267380", + "ccsAlgorithm": "N/A", + "coverage": "9.02", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02071-10a-1_S9_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02071-10a-1-1_S9_L001_R1_001-1_S9_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613904", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.530192", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-1_S9_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02071", + "totalBp": "27974427271", + "totalGbp": "27.97", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267380", + "ccsAlgorithm": "N/A", + "coverage": "8.89", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02071-10a-1_S9_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02071-10a-1-1_S9_L002_R1_001-1_S9_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613903", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.524602", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-1_S9_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02071", + "totalBp": "27559239936", + "totalGbp": "27.56", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267380", + "ccsAlgorithm": "N/A", + "coverage": "8.89", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02071-10a-1_S9_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02071-10a-1-1_S9_L002_R1_001-1_S9_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613903", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.513939", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-1_S9_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02071", + "totalBp": "27556708929", + "totalGbp": "27.56", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267380", + "ccsAlgorithm": "N/A", + "coverage": "8.7", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02071-10a-1_S9_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02071-10a-1-1_S9_L003_R1_001-1_S9_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613806", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.511619", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-1_S9_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02071", + "totalBp": "26981985480", + "totalGbp": "26.98", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267380", + "ccsAlgorithm": "N/A", + "coverage": "8.7", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02071-10a-1_S9_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02071-10a-1-1_S9_L003_R1_001-1_S9_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613806", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.50155", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-1_S9_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02071", + "totalBp": "26979161944", + "totalGbp": "26.98", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267380", + "ccsAlgorithm": "N/A", + "coverage": "8.66", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02071-10a-1_S9_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02071-10a-1-1_S9_L004_R1_001-1_S9_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613805", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.522843", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-1_S9_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02071", + "totalBp": "26835668937", + "totalGbp": "26.84", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267380", + "ccsAlgorithm": "N/A", + "coverage": "8.66", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02071-10a-1_S9_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02071-10a-1-1_S9_L004_R1_001-1_S9_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613805", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.515198", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-1_S9_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02071", + "totalBp": "26833648157", + "totalGbp": "26.83", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267380", + "ccsAlgorithm": "N/A", + "coverage": "10.54", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02071-10a-2_S10_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02071-10a-2-2_S10_L001_R1_001-2_S10_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613804", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.487174", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-2_S10_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02071", + "totalBp": "32687331195", + "totalGbp": "32.69", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267380", + "ccsAlgorithm": "N/A", + "coverage": "10.54", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02071-10a-2_S10_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02071-10a-2-2_S10_L001_R1_001-2_S10_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613804", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.478376", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-2_S10_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02071", + "totalBp": "32684521263", + "totalGbp": "32.68", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267380", + "ccsAlgorithm": "N/A", + "coverage": "10.38", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02071-10a-2_S10_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02071-10a-2-2_S10_L002_R1_001-2_S10_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613803", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.482137", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-2_S10_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02071", + "totalBp": "32173438473", + "totalGbp": "32.17", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267380", + "ccsAlgorithm": "N/A", + "coverage": "10.38", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02071-10a-2_S10_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02071-10a-2-2_S10_L002_R1_001-2_S10_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613803", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.464847", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-2_S10_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02071", + "totalBp": "32170513666", + "totalGbp": "32.17", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267380", + "ccsAlgorithm": "N/A", + "coverage": "10.18", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02071-10a-2_S10_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02071-10a-2-2_S10_L003_R1_001-2_S10_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613802", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.510296", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-2_S10_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02071", + "totalBp": "31547013386", + "totalGbp": "31.55", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267380", + "ccsAlgorithm": "N/A", + "coverage": "10.18", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02071-10a-2_S10_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02071-10a-2-2_S10_L003_R1_001-2_S10_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613802", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.466128", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-2_S10_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02071", + "totalBp": "31543755812", + "totalGbp": "31.54", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267380", + "ccsAlgorithm": "N/A", + "coverage": "10.13", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02071-10a-2_S10_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02071-10a-2-2_S10_L004_R1_001-2_S10_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613801", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.504286", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-2_S10_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02071", + "totalBp": "31388041716", + "totalGbp": "31.39", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267380", + "ccsAlgorithm": "N/A", + "coverage": "10.12", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02071-10a-2_S10_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02071-10a-2-2_S10_L004_R1_001-2_S10_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613801", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.498477", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/hic/HG02071-10a-2_S10_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02071", + "totalBp": "31385698636", + "totalGbp": "31.39", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267381", + "ccsAlgorithm": "N/A", + "coverage": "1.91", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02074-08c-1_S15_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02074-08c-1-1_S15_L001_R1_001-1_S15_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613800", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.683547", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-1_S15_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02074", + "totalBp": "5908243760", + "totalGbp": "5.91", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267381", + "ccsAlgorithm": "N/A", + "coverage": "1.91", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02074-08c-1_S15_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02074-08c-1-1_S15_L001_R1_001-1_S15_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613800", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.657624", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-1_S15_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02074", + "totalBp": "5907920965", + "totalGbp": "5.91", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267381", + "ccsAlgorithm": "N/A", + "coverage": "1.87", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02074-08c-1_S15_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02074-08c-1-1_S15_L002_R1_001-1_S15_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613799", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.686717", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-1_S15_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02074", + "totalBp": "5802746886", + "totalGbp": "5.8", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267381", + "ccsAlgorithm": "N/A", + "coverage": "1.87", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02074-08c-1_S15_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02074-08c-1-1_S15_L002_R1_001-1_S15_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613799", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.672525", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-1_S15_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02074", + "totalBp": "5802437763", + "totalGbp": "5.8", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267381", + "ccsAlgorithm": "N/A", + "coverage": "1.81", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02074-08c-1_S15_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02074-08c-1-1_S15_L003_R1_001-1_S15_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613797", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.699699", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-1_S15_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02074", + "totalBp": "5616633788", + "totalGbp": "5.62", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267381", + "ccsAlgorithm": "N/A", + "coverage": "1.81", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02074-08c-1_S15_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02074-08c-1-1_S15_L003_R1_001-1_S15_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613797", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.683277", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-1_S15_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02074", + "totalBp": "5616271476", + "totalGbp": "5.62", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267381", + "ccsAlgorithm": "N/A", + "coverage": "1.78", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02074-08c-1_S15_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02074-08c-1-1_S15_L004_R1_001-1_S15_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613796", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.698373", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/PacBio_HiFi/m64076_210703_103644.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "15744", - "quartile50": "17909", - "quartile75": "20918", + "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-1_S15_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02683", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "34531266097", - "totalGbp": "34.53", - "totalReads": "1851700", + "title": "Illumina Sequencing of Omni-C Libraries of HG02074", + "totalBp": "5529386514", + "totalGbp": "5.53", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267396", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267396", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267381", + "ccsAlgorithm": "N/A", + "coverage": "1.78", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", - "familyId": "PK27", - "filename": "m64076_210706_214544.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02074-08c-1_S15_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02738.HFSS", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02074-08c-1-1_S15_L004_R1_001-1_S15_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56090", - "mean": "18869", - "metadataAccession": "SRR18158588", - "min": "159", - "mmTag": false, - "n25": "16413", - "n50": "18995", - "n75": "22389", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613796", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.664672", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m64076_210706_214544.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "15831", - "quartile50": "18094", - "quartile75": "21198", + "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-1_S15_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02738", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02074", + "totalBp": "5529159150", + "totalGbp": "5.53", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267381", + "ccsAlgorithm": "N/A", + "coverage": "2.16", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02074-08c-2_S16_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02074-08c-2-2_S16_L001_R1_001-2_S16_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613795", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.655755", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-2_S16_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02074", + "totalBp": "6685585465", + "totalGbp": "6.69", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267381", + "ccsAlgorithm": "N/A", + "coverage": "2.16", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02074-08c-2_S16_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02074-08c-2-2_S16_L001_R1_001-2_S16_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613795", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.637199", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-2_S16_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02074", + "totalBp": "6685173508", + "totalGbp": "6.69", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267381", + "ccsAlgorithm": "N/A", + "coverage": "2.12", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02074-08c-2_S16_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02074-08c-2-2_S16_L002_R1_001-2_S16_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613794", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.684823", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-2_S16_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02074", + "totalBp": "6562148038", + "totalGbp": "6.56", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267381", + "ccsAlgorithm": "N/A", + "coverage": "2.12", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02074-08c-2_S16_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02074-08c-2-2_S16_L002_R1_001-2_S16_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613794", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.656184", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-2_S16_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02074", + "totalBp": "6561732846", + "totalGbp": "6.56", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267381", + "ccsAlgorithm": "N/A", + "coverage": "2.06", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02074-08c-2_S16_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02074-08c-2-2_S16_L003_R1_001-2_S16_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613793", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.654338", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-2_S16_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02074", + "totalBp": "6373653019", + "totalGbp": "6.37", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267381", + "ccsAlgorithm": "N/A", + "coverage": "2.06", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02074-08c-2_S16_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02074-08c-2-2_S16_L003_R1_001-2_S16_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613793", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.643486", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-2_S16_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02074", + "totalBp": "6373198523", + "totalGbp": "6.37", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267381", + "ccsAlgorithm": "N/A", + "coverage": "2.03", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02074-08c-2_S16_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02074-08c-2-2_S16_L004_R1_001-2_S16_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613792", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.660558", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-2_S16_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02074", + "totalBp": "6298946650", + "totalGbp": "6.3", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267381", + "ccsAlgorithm": "N/A", + "coverage": "2.03", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02074-08c-2_S16_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02074-08c-2-2_S16_L004_R1_001-2_S16_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613792", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.645209", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/hic/HG02074-08c-2_S16_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02074", + "totalBp": "6298614337", + "totalGbp": "6.3", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621950", + "ccsAlgorithm": "N/A", + "coverage": "40.19", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02129-1_S2_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02129-1_S2_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310891", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.409818", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02129/raw_data/hic/HG02129-1_S2_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02129", + "totalBp": "124595417314", + "totalGbp": "124.6", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621950", + "ccsAlgorithm": "N/A", + "coverage": "40.19", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02129-1_S2_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02129-1_S2_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310891", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.409818", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02129/raw_data/hic/HG02129-1_S2_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02129", + "totalBp": "124595417314", + "totalGbp": "124.6", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621950", + "ccsAlgorithm": "N/A", + "coverage": "9.61", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02129-2_S6_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02129-2_S6_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310890", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.454769", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02129/raw_data/hic/HG02129-2_S6_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02129", + "totalBp": "29800157587", + "totalGbp": "29.8", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621950", + "ccsAlgorithm": "N/A", + "coverage": "9.61", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02129-2_S6_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02129-2_S6_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310890", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.454769", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02129/raw_data/hic/HG02129-2_S6_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02129", + "totalBp": "29800157587", + "totalGbp": "29.8", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267382", + "ccsAlgorithm": "N/A", + "coverage": "8.67", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02132-07a-1_S7_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02132-07a-1-1_S7_L001_R1_001-1_S7_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613791", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.505939", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-1_S7_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02132", + "totalBp": "26861908818", + "totalGbp": "26.86", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267382", + "ccsAlgorithm": "N/A", + "coverage": "8.66", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02132-07a-1_S7_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02132-07a-1-1_S7_L001_R1_001-1_S7_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613791", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.487649", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-1_S7_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02132", + "totalBp": "26860809034", + "totalGbp": "26.86", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267382", + "ccsAlgorithm": "N/A", + "coverage": "8.63", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02132-07a-1_S7_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02132-07a-1-1_S7_L002_R1_001-1_S7_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613790", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.514339", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-1_S7_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02132", + "totalBp": "26745946000", + "totalGbp": "26.75", + "totalReads": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267382", + "ccsAlgorithm": "N/A", + "coverage": "8.63", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02132-07a-1_S7_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02132-07a-1-1_S7_L002_R1_001-1_S7_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613790", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.476563", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-1_S7_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "22457209908", - "totalGbp": "22.46", - "totalReads": "1190157", + "title": "Illumina Sequencing of Omni-C Libraries of HG02132", + "totalBp": "26744705770", + "totalGbp": "26.74", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267397", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267397", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267382", + "ccsAlgorithm": "N/A", + "coverage": "8.68", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD61", - "filename": "m64076_210708_084125.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02132-07a-1_S7_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG04184.HFSS", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02132-07a-1-1_S7_L003_R1_001-1_S7_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "49905", - "mean": "18509", - "metadataAccession": "SRR18158589", - "min": "486", - "mmTag": false, - "n25": "16173", - "n50": "18541", - "n75": "21710", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613789", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.538383", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m64076_210708_084125.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "15682", - "quartile50": "17759", - "quartile75": "20652", + "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-1_S7_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04184", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "27875629860", - "totalGbp": "27.88", - "totalReads": "1505987", + "title": "Illumina Sequencing of Omni-C Libraries of HG02132", + "totalBp": "26900364270", + "totalGbp": "26.9", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267397", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267397", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267382", + "ccsAlgorithm": "N/A", + "coverage": "8.68", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD61", - "filename": "m64076_210709_232529.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02132-07a-1_S7_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG04184.HFSS", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02132-07a-1-1_S7_L003_R1_001-1_S7_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "51996", - "mean": "18490", - "metadataAccession": "SRR18158589", - "min": "202", - "mmTag": false, - "n25": "16162", - "n50": "18521", - "n75": "21691", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613789", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.46151", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m64076_210709_232529.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "15669", - "quartile50": "17739", - "quartile75": "20632", + "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-1_S7_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04184", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "26834639179", - "totalGbp": "26.83", - "totalReads": "1451248", + "title": "Illumina Sequencing of Omni-C Libraries of HG02132", + "totalBp": "26898942832", + "totalGbp": "26.9", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267396", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267396", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267382", + "ccsAlgorithm": "N/A", + "coverage": "8.57", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", - "familyId": "PK27", - "filename": "m64076_210711_102225.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02132-07a-1_S7_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02738.HFSS", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02132-07a-1-1_S7_L004_R1_001-1_S7_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52901", - "mean": "18849", - "metadataAccession": "SRR18158588", - "min": "135", - "mmTag": false, - "n25": "16403", - "n50": "18981", - "n75": "22357", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613788", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.506325", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m64076_210711_102225.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "15824", - "quartile50": "18082", - "quartile75": "21176", + "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-1_S7_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02738", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "24958517767", - "totalGbp": "24.96", - "totalReads": "1324061", + "title": "Illumina Sequencing of Omni-C Libraries of HG02132", + "totalBp": "26570538872", + "totalGbp": "26.57", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267397", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267397", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267382", + "ccsAlgorithm": "N/A", + "coverage": "8.57", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD61", - "filename": "m64076_210712_194121.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02132-07a-1_S7_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG04184.HFSS", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02132-07a-1-1_S7_L004_R1_001-1_S7_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55878", - "mean": "18636", - "metadataAccession": "SRR18158589", - "min": "224", - "mmTag": false, - "n25": "16270", - "n50": "18693", - "n75": "21906", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613788", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.509859", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m64076_210712_194121.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "15762", - "quartile50": "17888", - "quartile75": "20832", + "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-1_S7_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04184", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "29878843321", - "totalGbp": "29.88", - "totalReads": "1603266", + "title": "Illumina Sequencing of Omni-C Libraries of HG02132", + "totalBp": "26568863486", + "totalGbp": "26.57", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267396", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267396", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267382", + "ccsAlgorithm": "N/A", + "coverage": "8.68", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", - "familyId": "PK27", - "filename": "m64076_210714_200553.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02132-07a-2_S8_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02738.HFSS", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02132-07a-2-2_S8_L001_R1_001-2_S8_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "62028", - "mean": "18960", - "metadataAccession": "SRR18158588", - "min": "256", - "mmTag": false, - "n25": "16478", - "n50": "19100", - "n75": "22533", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613786", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.525035", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m64076_210714_200553.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "15879", - "quartile50": "18180", - "quartile75": "21325", + "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-2_S8_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02738", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "24174029510", - "totalGbp": "24.17", - "totalReads": "1274956", + "title": "Illumina Sequencing of Omni-C Libraries of HG02132", + "totalBp": "26896539353", + "totalGbp": "26.9", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267394", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267394", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267382", + "ccsAlgorithm": "N/A", + "coverage": "8.68", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "PEL51", - "filename": "m64076_210716_220011.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02132-07a-2_S8_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02293.HFSS", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02132-07a-2-2_S8_L001_R1_001-2_S8_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59628", - "mean": "19168", - "metadataAccession": "SRR18158587", - "min": "88", - "mmTag": false, - "n25": "16720", - "n50": "19171", - "n75": "22463", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613786", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.502362", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/PacBio_HiFi/m64076_210716_220011.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "16225", - "quartile50": "18357", - "quartile75": "21365", + "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-2_S8_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02293", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "32725980265", - "totalGbp": "32.73", - "totalReads": "1707292", + "title": "Illumina Sequencing of Omni-C Libraries of HG02132", + "totalBp": "26895588212", + "totalGbp": "26.9", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267396", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267396", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267382", + "ccsAlgorithm": "N/A", + "coverage": "8.66", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", - "familyId": "PK27", - "filename": "m64076_210718_085619.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02132-07a-2_S8_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02738.HFSS", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02132-07a-2-2_S8_L002_R1_001-2_S8_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "51144", - "mean": "18666", - "metadataAccession": "SRR18158588", - "min": "696", - "mmTag": false, - "n25": "16283", - "n50": "18766", - "n75": "22057", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613785", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.557201", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m64076_210718_085619.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "15727", - "quartile50": "17909", - "quartile75": "20907", + "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-2_S8_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02738", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "23081037343", - "totalGbp": "23.08", - "totalReads": "1236481", + "title": "Illumina Sequencing of Omni-C Libraries of HG02132", + "totalBp": "26839389751", + "totalGbp": "26.84", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267392", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267392", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267382", + "ccsAlgorithm": "N/A", + "coverage": "8.66", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "VN081", - "filename": "m64076_210719_222908.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02132-07a-2_S8_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02135.HFSS3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02132-07a-2-2_S8_L002_R1_001-2_S8_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53626", - "mean": "17878", - "metadataAccession": "SRR18158585", - "min": "86", - "mmTag": false, - "n25": "15708", - "n50": "17809", - "n75": "20702", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613785", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.516505", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m64076_210719_222908.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR2", - "quartile25": "15316", - "quartile50": "17143", - "quartile75": "19779", + "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-2_S8_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02135", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "26147000508", - "totalGbp": "26.15", - "totalReads": "1462475", + "title": "Illumina Sequencing of Omni-C Libraries of HG02132", + "totalBp": "26838372759", + "totalGbp": "26.84", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758786", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758786", - "ccsAlgorithm": "6.2.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267382", + "ccsAlgorithm": "N/A", + "coverage": "8.69", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": "BB46", - "filename": "m64076_211109_232223-bc1003.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02132-07a-2_S8_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02451_SRE.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02132-07a-2-2_S8_L003_R1_001-2_S8_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58519", - "mean": "21225", - "metadataAccession": "SRR23922668", - "min": "139", - "mmTag": false, - "n25": "18403", - "n50": "21230", - "n75": "25048", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613784", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.509301", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/m64076_211109_232223-bc1003.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17810", - "quartile50": "20246", - "quartile75": "23690", + "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-2_S8_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02451", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "12874949688", - "totalGbp": "12.87", - "totalReads": "606568", + "title": "Illumina Sequencing of Omni-C Libraries of HG02132", + "totalBp": "26949384022", + "totalGbp": "26.95", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758786", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758786", - "ccsAlgorithm": "6.2.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267382", + "ccsAlgorithm": "N/A", + "coverage": "8.69", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "BB46", - "filename": "m64076_211208_005550-bc1003.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02132-07a-2_S8_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02451.HFSS2", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02132-07a-2-2_S8_L003_R1_001-2_S8_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50248", - "mean": "17319", - "metadataAccession": "SRR23922667", - "min": "424", - "mmTag": false, - "n25": "15174", - "n50": "17364", - "n75": "20294", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613784", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.462373", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/m64076_211208_005550-bc1003.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "14736", - "quartile50": "16646", - "quartile75": "19353", + "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-2_S8_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02451", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "38494025289", - "totalGbp": "38.49", - "totalReads": "2222540", + "title": "Illumina Sequencing of Omni-C Libraries of HG02132", + "totalBp": "26948184205", + "totalGbp": "26.95", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758787", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758787", - "ccsAlgorithm": "6.2.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267382", + "ccsAlgorithm": "N/A", + "coverage": "8.54", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": "PK26", - "filename": "m64076_211209_102926-bc1002.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02132-07a-2_S8_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02735.HFSS2", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02132-07a-2-2_S8_L004_R1_001-2_S8_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59898", - "mean": "19674", - "metadataAccession": "SRR23922665", - "min": "59", - "mmTag": false, - "n25": "17062", - "n50": "19856", - "n75": "23486", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613783", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.529282", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m64076_211209_102926-bc1002.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16411", - "quartile50": "18859", - "quartile75": "22198", + "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-2_S8_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02735", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "36782283250", - "totalGbp": "36.78", - "totalReads": "1869576", + "title": "Illumina Sequencing of Omni-C Libraries of HG02132", + "totalBp": "26481437034", + "totalGbp": "26.48", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758786", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758786", - "ccsAlgorithm": "6.2.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267382", + "ccsAlgorithm": "N/A", + "coverage": "8.54", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "BB46", - "filename": "m64076_211211_014755-bc1003.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02132-07a-2_S8_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02451.HFSS2", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02132-07a-2-2_S8_L004_R1_001-2_S8_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "51805", - "mean": "17401", - "metadataAccession": "SRR23922667", - "min": "199", - "mmTag": false, - "n25": "15239", - "n50": "17471", - "n75": "20411", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613783", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.517041", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/m64076_211211_014755-bc1003.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "14790", - "quartile50": "16739", - "quartile75": "19472", + "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/hic/HG02132-07a-2_S8_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02451", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "40519515849", - "totalGbp": "40.52", - "totalReads": "2328484", + "title": "Illumina Sequencing of Omni-C Libraries of HG02132", + "totalBp": "26480019915", + "totalGbp": "26.48", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758786", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758786", - "ccsAlgorithm": "6.2.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267392", + "ccsAlgorithm": "N/A", + "coverage": "8.01", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "BB46", - "filename": "m64076_211212_112351-bc1003.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02135-09a-1_S7_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02451.HFSS2", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02135-09a-1-1_S7_L001_R1_001-1_S7_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56001", - "mean": "17314", - "metadataAccession": "SRR23922667", - "min": "122", - "mmTag": false, - "n25": "15169", - "n50": "17361", - "n75": "20287", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613721", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.530045", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/m64076_211212_112351-bc1003.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "14730", - "quartile50": "16643", - "quartile75": "19345", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-1_S7_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02451", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "39439776523", - "totalGbp": "39.44", - "totalReads": "2277851", + "title": "Illumina Sequencing of Omni-C Libraries of HG02135", + "totalBp": "24844247576", + "totalGbp": "24.84", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758794", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758794", - "ccsAlgorithm": "6.2.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267392", + "ccsAlgorithm": "N/A", + "coverage": "8.01", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "PK41", - "filename": "m64076_220106_231243-bc1015.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02135-09a-1_S7_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03239.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02135-09a-1-1_S7_L001_R1_001-1_S7_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "67645", - "mean": "20251", - "metadataAccession": "SRR23922656", - "min": "77", - "mmTag": false, - "n25": "17390", - "n50": "20721", - "n75": "24825", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613721", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.496731", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/m64076_220106_231243-bc1015.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16457", - "quartile50": "19407", - "quartile75": "23235", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-1_S7_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03239", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "36349648567", - "totalGbp": "36.35", - "totalReads": "1794879", + "title": "Illumina Sequencing of Omni-C Libraries of HG02135", + "totalBp": "24842068966", + "totalGbp": "24.84", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758794", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758794", - "ccsAlgorithm": "6.2.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267392", + "ccsAlgorithm": "N/A", + "coverage": "7.89", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "PK41", - "filename": "m64076_220108_100904-bc1015.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02135-09a-1_S7_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03239.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02135-09a-1-1_S7_L002_R1_001-1_S7_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57608", - "mean": "20045", - "metadataAccession": "SRR23922656", - "min": "61", - "mmTag": false, - "n25": "17225", - "n50": "20513", - "n75": "24597", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613720", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.513137", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/m64076_220108_100904-bc1015.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16305", - "quartile50": "19208", - "quartile75": "23004", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-1_S7_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03239", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "35954386623", - "totalGbp": "35.95", - "totalReads": "1793658", + "title": "Illumina Sequencing of Omni-C Libraries of HG02135", + "totalBp": "24469886104", + "totalGbp": "24.47", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758795", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758795", - "ccsAlgorithm": "6.2.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267392", + "ccsAlgorithm": "N/A", + "coverage": "7.89", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": "PK60", - "filename": "m64076_220216_013707-bc1001.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02135-09a-1_S7_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03704.HFSS3", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02135-09a-1-1_S7_L002_R1_001-1_S7_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "62497", - "mean": "19965", - "metadataAccession": "SRR23922654", - "min": "54", - "mmTag": false, - "n25": "17037", - "n50": "20253", - "n75": "24361", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613720", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.525349", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m64076_220216_013707-bc1001.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16204", - "quartile50": "19002", - "quartile75": "22753", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-1_S7_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03704", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "12144176455", - "totalGbp": "12.14", - "totalReads": "608249", + "title": "Illumina Sequencing of Omni-C Libraries of HG02135", + "totalBp": "24467614879", + "totalGbp": "24.47", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758781", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758781", - "ccsAlgorithm": "6.2.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267392", + "ccsAlgorithm": "N/A", + "coverage": "7.72", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "PR03", - "filename": "m64076_220216_013707-bc1010.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02135-09a-1_S7_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00639.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02135-09a-1-1_S7_L003_R1_001-1_S7_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52534", - "mean": "19981", - "metadataAccession": "SRR23922643", - "min": "61", - "mmTag": false, - "n25": "17104", - "n50": "20746", - "n75": "25246", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613719", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.501051", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/m64076_220216_013707-bc1010.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "15886", - "quartile50": "19132", - "quartile75": "23275", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-1_S7_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00639", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "5693715374", - "totalGbp": "5.69", - "totalReads": "284943", + "title": "Illumina Sequencing of Omni-C Libraries of HG02135", + "totalBp": "23942784576", + "totalGbp": "23.94", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758789", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758789", - "ccsAlgorithm": "6.2.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267392", + "ccsAlgorithm": "N/A", + "coverage": "7.72", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": "PK35", - "filename": "m64076_220216_013707-bc1012.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02135-09a-1_S7_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03017.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02135-09a-1-1_S7_L003_R1_001-1_S7_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53564", - "mean": "19618", - "metadataAccession": "SRR23922662", - "min": "136", - "mmTag": false, - "n25": "16707", - "n50": "20379", - "n75": "24868", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613719", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.543505", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m64076_220216_013707-bc1012.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "15514", - "quartile50": "18737", - "quartile75": "22888", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-1_S7_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03017", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "8141215131", - "totalGbp": "8.14", - "totalReads": "414973", + "title": "Illumina Sequencing of Omni-C Libraries of HG02135", + "totalBp": "23940236444", + "totalGbp": "23.94", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758780", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758780", - "ccsAlgorithm": "6.2.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267392", + "ccsAlgorithm": "N/A", + "coverage": "7.68", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "SH045", - "filename": "m64076_220216_013707-bc1016.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02135-09a-1_S7_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00558.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02135-09a-1-1_S7_L004_R1_001-1_S7_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61233", - "mean": "20813", - "metadataAccession": "SRR23922640", - "min": "61", - "mmTag": false, - "n25": "17676", - "n50": "21415", - "n75": "26110", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613718", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.52006", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m64076_220216_013707-bc1016.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16484", - "quartile50": "19802", - "quartile75": "24088", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-1_S7_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00558", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "2266821485", - "totalGbp": "2.27", - "totalReads": "108911", + "title": "Illumina Sequencing of Omni-C Libraries of HG02135", + "totalBp": "23819749320", + "totalGbp": "23.82", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758791", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758791", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267392", + "ccsAlgorithm": "N/A", + "coverage": "7.68", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", - "familyId": "NG36", - "filename": "m64076_220513_215716-bc2018.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02135-09a-1_S7_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03130.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02135-09a-1-1_S7_L004_R1_001-1_S7_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "54183", - "mean": "19549", - "metadataAccession": "SRR23922660", - "min": "63", - "mmTag": false, - "n25": "16848", - "n50": "19851", - "n75": "23622", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613718", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.507607", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/PacBio_HiFi/m64076_220513_215716-bc2018.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "16080", - "quartile50": "18732", - "quartile75": "22231", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-1_S7_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03130", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "39686464232", - "totalGbp": "39.69", - "totalReads": "2030081", + "title": "Illumina Sequencing of Omni-C Libraries of HG02135", + "totalBp": "23817928834", + "totalGbp": "23.82", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758791", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758791", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267392", + "ccsAlgorithm": "N/A", + "coverage": "7.13", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", - "familyId": "NG36", - "filename": "m64076_220516_221911-bc2018.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02135-09a-2_S8_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03130.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02135-09a-2-2_S8_L001_R1_001-2_S8_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "63690", - "mean": "19623", - "metadataAccession": "SRR23922660", - "min": "88", - "mmTag": false, - "n25": "16938", - "n50": "19932", - "n75": "23673", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613717", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.528948", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/PacBio_HiFi/m64076_220516_221911-bc2018.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "16170", - "quartile50": "18830", - "quartile75": "22304", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-2_S8_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03130", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "39141478923", - "totalGbp": "39.14", - "totalReads": "1994630", + "title": "Illumina Sequencing of Omni-C Libraries of HG02135", + "totalBp": "22099992098", + "totalGbp": "22.1", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758791", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758791", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267392", + "ccsAlgorithm": "N/A", + "coverage": "7.13", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", - "familyId": "NG36", - "filename": "m64076_220518_191414-bc2018.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02135-09a-2_S8_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03130.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02135-09a-2-2_S8_L001_R1_001-2_S8_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55594", - "mean": "19705", - "metadataAccession": "SRR23922660", - "min": "78", - "mmTag": false, - "n25": "17005", - "n50": "20034", - "n75": "23797", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613717", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.503621", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/PacBio_HiFi/m64076_220518_191414-bc2018.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "16222", - "quartile50": "18912", - "quartile75": "22419", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-2_S8_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03130", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "38602098340", - "totalGbp": "38.6", - "totalReads": "1958959", + "title": "Illumina Sequencing of Omni-C Libraries of HG02135", + "totalBp": "22097891065", + "totalGbp": "22.1", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758793", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758793", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267392", + "ccsAlgorithm": "N/A", + "coverage": "7.04", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64076_220520_234906-bc2020.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02135-09a-2_S8_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03209.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02135-09a-2-2_S8_L002_R1_001-2_S8_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59822", - "mean": "18766", - "metadataAccession": "SRR23922657", - "min": "88", - "mmTag": false, - "n25": "16387", - "n50": "18885", - "n75": "22158", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613716", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.526848", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/m64076_220520_234906-bc2020.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "15843", - "quartile50": "18042", - "quartile75": "21068", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-2_S8_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03209", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "41408759487", - "totalGbp": "41.41", - "totalReads": "2206531", + "title": "Illumina Sequencing of Omni-C Libraries of HG02135", + "totalBp": "21819724005", + "totalGbp": "21.82", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758793", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758793", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267392", + "ccsAlgorithm": "N/A", + "coverage": "7.04", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64076_220524_161808-bc2020.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02135-09a-2_S8_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03209.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02135-09a-2-2_S8_L002_R1_001-2_S8_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52802", - "mean": "18697", - "metadataAccession": "SRR23922657", - "min": "111", - "mmTag": false, - "n25": "16331", - "n50": "18799", - "n75": "22046", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613716", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.517653", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/m64076_220524_161808-bc2020.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "15799", - "quartile50": "17970", - "quartile75": "20972", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-2_S8_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03209", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "39036651192", - "totalGbp": "39.04", - "totalReads": "2087855", + "title": "Illumina Sequencing of Omni-C Libraries of HG02135", + "totalBp": "21817542943", + "totalGbp": "21.82", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758793", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758793", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267392", + "ccsAlgorithm": "N/A", + "coverage": "6.91", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64076_220526_115049-bc2020.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02135-09a-2_S8_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03209.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02135-09a-2-2_S8_L003_R1_001-2_S8_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53890", - "mean": "18307", - "metadataAccession": "SRR23922657", - "min": "91", - "mmTag": false, - "n25": "16050", - "n50": "18337", - "n75": "21412", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613714", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.527542", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/m64076_220526_115049-bc2020.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "15577", - "quartile50": "17588", - "quartile75": "20402", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-2_S8_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03209", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "21783182095", - "totalGbp": "21.78", - "totalReads": "1189873", + "title": "Illumina Sequencing of Omni-C Libraries of HG02135", + "totalBp": "21420162997", + "totalGbp": "21.42", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267392", + "ccsAlgorithm": "N/A", + "coverage": "6.91", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64076_220826_143529-bc2049.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02135-09a-2_S8_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG18747_2.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02135-09a-2-2_S8_L003_R1_001-2_S8_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "86286", - "mean": "21168", - "metadataAccession": "SRR23922650", - "min": "95", - "mmTag": false, - "n25": "18567", - "n50": "21454", - "n75": "24961", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613714", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.500882", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/m64076_220826_143529-bc2049.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17906", - "quartile50": "20506", - "quartile75": "23861", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-2_S8_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "31669760595", - "totalGbp": "31.67", - "totalReads": "1496050", + "title": "Illumina Sequencing of Omni-C Libraries of HG02135", + "totalBp": "21417665897", + "totalGbp": "21.42", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267392", + "ccsAlgorithm": "N/A", + "coverage": "6.9", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64076_220828_113336-bc2049.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02135-09a-2_S8_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG18747_2.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02135-09a-2-2_S8_L004_R1_001-2_S8_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "85977", - "mean": "20876", - "metadataAccession": "SRR23922650", - "min": "158", - "mmTag": false, - "n25": "18289", - "n50": "21114", - "n75": "24619", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613713", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.532", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/m64076_220828_113336-bc2049.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17657", - "quartile50": "20179", - "quartile75": "23497", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-2_S8_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "33237414229", - "totalGbp": "33.24", - "totalReads": "1592112", + "title": "Illumina Sequencing of Omni-C Libraries of HG02135", + "totalBp": "21380721875", + "totalGbp": "21.38", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758779", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758779", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267392", + "ccsAlgorithm": "N/A", + "coverage": "6.9", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64076_220831_191646-bc2051.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02135-09a-2_S8_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG00280.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02135-09a-2-2_S8_L004_R1_001-2_S8_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56326", - "mean": "19962", - "metadataAccession": "SRR23922658", - "min": "83", - "mmTag": false, - "n25": "17534", - "n50": "19996", - "n75": "23256", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613713", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.515619", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/PacBio_HiFi/m64076_220831_191646-bc2051.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17046", - "quartile50": "19212", - "quartile75": "22241", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/hic/HG02135-09a-2_S8_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00280", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "35342284205", - "totalGbp": "35.34", - "totalReads": "1770422", + "title": "Illumina Sequencing of Omni-C Libraries of HG02135", + "totalBp": "21378942973", + "totalGbp": "21.38", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758785", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758785", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621951", + "ccsAlgorithm": "N/A", + "coverage": "3.64", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64076_220902_143723-bc2054.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02155-1_S24_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG02165.HFSS2", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02155-1_S24_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "66727", - "mean": "20945", - "metadataAccession": "SRR23922648", - "min": "84", - "mmTag": false, - "n25": "18503", - "n50": "21207", - "n75": "24441", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242249", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.623241", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/PacBio_HiFi/m64076_220902_143723-bc2054.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17918", - "quartile50": "20372", - "quartile75": "23498", + "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-1_S24_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02165", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "48389996564", - "totalGbp": "48.39", - "totalReads": "2310300", + "title": "Illumina Sequencing of Omni-C Libraries of HG02155", + "totalBp": "11299227154", + "totalGbp": "11.3", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758785", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758785", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621951", + "ccsAlgorithm": "N/A", + "coverage": "3.64", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64076_220904_113359-bc2054.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02155-1_S24_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG02165.HFSS2", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02155-1_S24_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61252", - "mean": "20321", - "metadataAccession": "SRR23922648", - "min": "85", - "mmTag": false, - "n25": "17970", - "n50": "20447", - "n75": "23596", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242249", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.583929", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/PacBio_HiFi/m64076_220904_113359-bc2054.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17465", - "quartile50": "19685", - "quartile75": "22659", + "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-1_S24_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02165", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "42083036071", - "totalGbp": "42.08", - "totalReads": "2070860", + "title": "Illumina Sequencing of Omni-C Libraries of HG02155", + "totalBp": "11298572204", + "totalGbp": "11.3", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758785", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758785", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621951", + "ccsAlgorithm": "N/A", + "coverage": "3.73", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64076_220906_083112-bc2054.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02155-1_S24_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG02165.HFSS2", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02155-1_S24_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57739", - "mean": "20170", - "metadataAccession": "SRR23922648", - "min": "87", - "mmTag": false, - "n25": "17829", - "n50": "20270", - "n75": "23418", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242248", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.602946", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/PacBio_HiFi/m64076_220906_083112-bc2054.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17338", - "quartile50": "19513", - "quartile75": "22476", + "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-1_S24_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02165", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "44241695516", - "totalGbp": "44.24", - "totalReads": "2193354", + "title": "Illumina Sequencing of Omni-C Libraries of HG02155", + "totalBp": "11567425336", + "totalGbp": "11.57", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758784", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758784", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621951", + "ccsAlgorithm": "N/A", + "coverage": "3.73", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64076_220908_204946-bc2056.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02155-1_S24_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02040.HFSS2", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02155-1_S24_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "63774", - "mean": "20362", - "metadataAccession": "SRR23922646", - "min": "72", - "mmTag": false, - "n25": "18052", - "n50": "20662", - "n75": "24153", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242248", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.608902", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/PacBio_HiFi/m64076_220908_204946-bc2056.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17430", - "quartile50": "19743", - "quartile75": "22962", + "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-1_S24_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02040", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "40975751860", - "totalGbp": "40.98", - "totalReads": "2012274", + "title": "Illumina Sequencing of Omni-C Libraries of HG02155", + "totalBp": "11566537131", + "totalGbp": "11.57", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758784", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758784", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621951", + "ccsAlgorithm": "N/A", + "coverage": "3.57", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64076_220910_174812-bc2056.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02155-1_S24_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02040.HFSS2", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02155-1_S24_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "72682", - "mean": "20935", - "metadataAccession": "SRR23922646", - "min": "106", - "mmTag": false, - "n25": "18390", - "n50": "21140", - "n75": "24689", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242247", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.619456", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/PacBio_HiFi/m64076_220910_174812-bc2056.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17777", - "quartile50": "20216", - "quartile75": "23524", + "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-1_S24_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02040", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "44556381201", - "totalGbp": "44.56", - "totalReads": "2128239", + "title": "Illumina Sequencing of Omni-C Libraries of HG02155", + "totalBp": "11070056950", + "totalGbp": "11.07", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758784", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758784", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621951", + "ccsAlgorithm": "N/A", + "coverage": "3.57", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64076_220912_140850-bc2056.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02155-1_S24_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02040.HFSS2", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02155-1_S24_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56457", - "mean": "21135", - "metadataAccession": "SRR23922646", - "min": "88", - "mmTag": false, - "n25": "18550", - "n50": "21351", - "n75": "24919", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242247", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.575936", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/PacBio_HiFi/m64076_220912_140850-bc2056.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17919", - "quartile50": "20417", - "quartile75": "23768", + "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-1_S24_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02040", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "44365842122", - "totalGbp": "44.37", - "totalReads": "2099134", + "title": "Illumina Sequencing of Omni-C Libraries of HG02155", + "totalBp": "11069248116", + "totalGbp": "11.07", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621951", + "ccsAlgorithm": "N/A", + "coverage": "3.65", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64076_220914_214248-bc2060.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02155-1_S24_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG20905.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02155-1_S24_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60851", - "mean": "20442", - "metadataAccession": "SRR23922642", - "min": "79", - "mmTag": false, - "n25": "17852", - "n50": "20849", - "n75": "24428", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242246", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.618786", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/m64076_220914_214248-bc2060.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17087", - "quartile50": "19810", - "quartile75": "23243", + "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-1_S24_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "43916560522", - "totalGbp": "43.92", - "totalReads": "2148277", + "title": "Illumina Sequencing of Omni-C Libraries of HG02155", + "totalBp": "11322530860", + "totalGbp": "11.32", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621951", + "ccsAlgorithm": "N/A", + "coverage": "3.65", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64076_220916_183810-bc2060.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02155-1_S24_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG20905.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02155-1_S24_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "65512", - "mean": "19751", - "metadataAccession": "SRR23922642", - "min": "82", - "mmTag": false, - "n25": "17191", - "n50": "20025", - "n75": "23576", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242246", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.570708", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/m64076_220916_183810-bc2060.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "16508", - "quartile50": "19031", - "quartile75": "22356", + "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-1_S24_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "41700838716", - "totalGbp": "41.7", - "totalReads": "2111321", + "title": "Illumina Sequencing of Omni-C Libraries of HG02155", + "totalBp": "11321714271", + "totalGbp": "11.32", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621951", + "ccsAlgorithm": "N/A", + "coverage": "4.06", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64076_220918_143117-bc2060.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02155-2_S32_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG20905.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02155-2_S32_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "69049", - "mean": "19793", - "metadataAccession": "SRR23922642", - "min": "54", - "mmTag": false, - "n25": "17228", - "n50": "20081", - "n75": "23645", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242244", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.6", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/m64076_220918_143117-bc2060.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "16533", - "quartile50": "19077", - "quartile75": "22417", + "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-2_S32_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "43283072105", - "totalGbp": "43.28", - "totalReads": "2186710", + "title": "Illumina Sequencing of Omni-C Libraries of HG02155", + "totalBp": "12578918553", + "totalGbp": "12.58", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758789", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758789", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621951", + "ccsAlgorithm": "N/A", + "coverage": "4.06", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": "PK35", - "filename": "m64076_221001_041132-bc1012.5mc.hifi_reads.bam", - "filetype": "N/A", - "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03017.HFSS", - "libraryLayout": "single", - "librarySelection": "RANDOM", - "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "67114", - "mean": "21129", - "metadataAccession": "SRR23922662", - "min": "396", - "mmTag": false, - "n25": "18187", - "n50": "21954", - "n75": "26294", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02155-2_S32_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02155-2_S32_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242244", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.556892", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m64076_221001_041132-bc1012.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "16904", - "quartile50": "20408", - "quartile75": "24540", + "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-2_S32_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03017", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "15298343686", - "totalGbp": "15.3", - "totalReads": "724011", + "title": "Illumina Sequencing of Omni-C Libraries of HG02155", + "totalBp": "12578283355", + "totalGbp": "12.58", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621951", + "ccsAlgorithm": "N/A", + "coverage": "4.16", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64076_221001_041132-bc2011.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02155-2_S32_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG18747_1.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02155-2_S32_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53613", - "mean": "20597", - "metadataAccession": "SRR23922651", - "min": "89", - "mmTag": false, - "n25": "18231", - "n50": "20819", - "n75": "24016", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242243", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.570687", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/m64076_221001_041132-bc2011.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17677", - "quartile50": "20028", - "quartile75": "23080", + "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-2_S32_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "9845535652", - "totalGbp": "9.85", - "totalReads": "477989", + "title": "Illumina Sequencing of Omni-C Libraries of HG02155", + "totalBp": "12886674344", + "totalGbp": "12.89", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758793", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758793", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621951", + "ccsAlgorithm": "N/A", + "coverage": "4.16", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64076_221001_041132-bc2020.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02155-2_S32_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03209.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02155-2_S32_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56747", - "mean": "19301", - "metadataAccession": "SRR23922657", - "min": "1106", - "mmTag": false, - "n25": "16905", - "n50": "19552", - "n75": "22812", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242243", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.580289", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/m64076_221001_041132-bc2020.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "16295", - "quartile50": "18678", - "quartile75": "21777", + "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-2_S32_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03209", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "14062564475", - "totalGbp": "14.06", - "totalReads": "728559", + "title": "Illumina Sequencing of Omni-C Libraries of HG02155", + "totalBp": "12885824519", + "totalGbp": "12.89", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861662", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861662", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621951", + "ccsAlgorithm": "N/A", + "coverage": "3.95", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL26", - "filename": "m64136_200530_164818.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02155-2_S32_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01978_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02155-2_S32_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50175", - "mean": "25990", - "metadataAccession": "SRR13684372", - "min": "45", - "mmTag": false, - "n25": "23294", - "n50": "26026", - "n75": "29681", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242242", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.588933", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01978/raw_data/PacBio_HiFi/m64136_200530_164818.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "22726", - "quartile50": "25247", - "quartile75": "28603", + "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-2_S32_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01978", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "27708518732", - "totalGbp": "27.71", - "totalReads": "1066105", + "title": "Illumina Sequencing of Omni-C Libraries of HG02155", + "totalBp": "12241855001", + "totalGbp": "12.24", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861662", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861662", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621951", + "ccsAlgorithm": "N/A", + "coverage": "3.95", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL26", - "filename": "m64136_200602_153012.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02155-2_S32_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01978_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02155-2_S32_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50181", - "mean": "26299", - "metadataAccession": "SRR13684372", - "min": "46", - "mmTag": false, - "n25": "23557", - "n50": "26366", - "n75": "30083", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242242", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.585525", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01978/raw_data/PacBio_HiFi/m64136_200602_153012.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "22977", - "quartile50": "25560", - "quartile75": "29003", + "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-2_S32_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01978", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "28572278581", - "totalGbp": "28.57", - "totalReads": "1086428", + "title": "Illumina Sequencing of Omni-C Libraries of HG02155", + "totalBp": "12241096227", + "totalGbp": "12.24", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861662", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861662", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621951", + "ccsAlgorithm": "N/A", + "coverage": "4.05", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL26", - "filename": "m64136_200603_214308.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02155-2_S32_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01978_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02155-2_S32_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50353", - "mean": "26165", - "metadataAccession": "SRR13684372", - "min": "46", - "mmTag": false, - "n25": "23425", - "n50": "26214", - "n75": "29904", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242241", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.596469", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01978/raw_data/PacBio_HiFi/m64136_200603_214308.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "22850", - "quartile50": "25418", - "quartile75": "28828", + "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-2_S32_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01978", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "31151393453", - "totalGbp": "31.15", - "totalReads": "1190563", + "title": "Illumina Sequencing of Omni-C Libraries of HG02155", + "totalBp": "12561609829", + "totalGbp": "12.56", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861662", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861662", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621951", + "ccsAlgorithm": "N/A", + "coverage": "4.05", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL26", - "filename": "m64136_200605_040848.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02155-2_S32_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01978_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02155-2_S32_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50262", - "mean": "26159", - "metadataAccession": "SRR13684372", - "min": "45", - "mmTag": false, - "n25": "23423", - "n50": "26200", - "n75": "29895", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242241", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.57334", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01978/raw_data/PacBio_HiFi/m64136_200605_040848.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "22851", - "quartile50": "25408", - "quartile75": "28812", + "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/hic/HG02155-2_S32_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01978", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "30137326069", - "totalGbp": "30.14", - "totalReads": "1152070", + "title": "Illumina Sequencing of Omni-C Libraries of HG02155", + "totalBp": "12560824040", + "totalGbp": "12.56", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861661", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861661", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758785", + "ccsAlgorithm": "N/A", + "coverage": "1.96", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL019", - "filename": "m64136_200612_201033.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02165-1_S2_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01952_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02165-1_S2_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "49213", - "mean": "21335", - "metadataAccession": "SRR13684375", - "min": "46", - "mmTag": false, - "n25": "18884", - "n50": "21101", - "n75": "24511", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242240", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.690243", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01952/raw_data/PacBio_HiFi/m64136_200612_201033.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "18527", - "quartile50": "20423", - "quartile75": "23484", + "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-1_S2_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01952", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "31770292477", - "totalGbp": "31.77", - "totalReads": "1489115", + "title": "Illumina Sequencing of Omni-C Libraries of HG02165", + "totalBp": "6089723758", + "totalGbp": "6.09", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861661", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861661", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758785", + "ccsAlgorithm": "N/A", + "coverage": "1.96", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL019", - "filename": "m64136_200614_192134.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02165-1_S2_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01952_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02165-1_S2_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50198", - "mean": "21306", - "metadataAccession": "SRR13684375", - "min": "46", - "mmTag": false, - "n25": "18871", - "n50": "21071", - "n75": "24461", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242240", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.663926", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01952/raw_data/PacBio_HiFi/m64136_200614_192134.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "18517", - "quartile50": "20403", - "quartile75": "23450", + "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-1_S2_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01952", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "32648526346", - "totalGbp": "32.65", - "totalReads": "1532352", + "title": "Illumina Sequencing of Omni-C Libraries of HG02165", + "totalBp": "6089288766", + "totalGbp": "6.09", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861661", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861661", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758785", + "ccsAlgorithm": "N/A", + "coverage": "2.13", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL019", - "filename": "m64136_200616_013426.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02165-1_S2_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01952_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02165-1_S2_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50070", - "mean": "21342", - "metadataAccession": "SRR13684375", - "min": "46", - "mmTag": false, - "n25": "18887", - "n50": "21106", - "n75": "24549", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242461", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.661908", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01952/raw_data/PacBio_HiFi/m64136_200616_013426.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "18527", - "quartile50": "20425", - "quartile75": "23508", + "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-1_S2_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01952", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "32546332886", - "totalGbp": "32.55", - "totalReads": "1524936", + "title": "Illumina Sequencing of Omni-C Libraries of HG02165", + "totalBp": "6601978749", + "totalGbp": "6.6", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861661", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861661", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758785", + "ccsAlgorithm": "N/A", + "coverage": "2.13", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL019", - "filename": "m64136_200617_080019.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02165-1_S2_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01952_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02165-1_S2_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "49913", - "mean": "21379", - "metadataAccession": "SRR13684375", - "min": "48", - "mmTag": false, - "n25": "18907", - "n50": "21158", - "n75": "24613", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242461", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.624771", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01952/raw_data/PacBio_HiFi/m64136_200617_080019.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "18542", - "quartile50": "20462", - "quartile75": "23575", + "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-1_S2_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01952", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "30885763106", - "totalGbp": "30.89", - "totalReads": "1444654", + "title": "Illumina Sequencing of Omni-C Libraries of HG02165", + "totalBp": "6601669753", + "totalGbp": "6.6", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861663", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861663", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758785", + "ccsAlgorithm": "N/A", + "coverage": "2.13", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL39", - "filename": "m64136_200618_202033.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02165-1_S2_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02148_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02165-1_S2_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "49035", - "mean": "17632", - "metadataAccession": "SRR13684391", - "min": "46", - "mmTag": false, - "n25": "15487", - "n50": "17027", - "n75": "20549", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242460", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.702147", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02148/raw_data/PacBio_HiFi/m64136_200618_202033.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "15274", - "quartile50": "16505", - "quartile75": "19399", + "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-1_S2_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02148", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "38806001935", - "totalGbp": "38.81", - "totalReads": "2200848", + "title": "Illumina Sequencing of Omni-C Libraries of HG02165", + "totalBp": "6605231258", + "totalGbp": "6.61", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861663", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861663", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758785", + "ccsAlgorithm": "N/A", + "coverage": "2.13", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL39", - "filename": "m64136_200620_173618.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02165-1_S2_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02148_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02165-1_S2_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "49685", - "mean": "17587", - "metadataAccession": "SRR13684391", - "min": "47", - "mmTag": false, - "n25": "15475", - "n50": "16977", - "n75": "20453", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242460", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.641039", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02148/raw_data/PacBio_HiFi/m64136_200620_173618.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "15265", - "quartile50": "16476", - "quartile75": "19301", + "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-1_S2_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02148", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "29586622176", - "totalGbp": "29.59", - "totalReads": "1682208", + "title": "Illumina Sequencing of Omni-C Libraries of HG02165", + "totalBp": "6604919718", + "totalGbp": "6.6", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861663", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861663", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758785", + "ccsAlgorithm": "N/A", + "coverage": "2.1", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL39", - "filename": "m64136_200621_234916.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02165-1_S2_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02148_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02165-1_S2_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "48355", - "mean": "17407", - "metadataAccession": "SRR13684391", - "min": "45", - "mmTag": false, - "n25": "15402", - "n50": "16790", - "n75": "20061", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242459", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.668794", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02148/raw_data/PacBio_HiFi/m64136_200621_234916.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "15211", - "quartile50": "16353", - "quartile75": "18901", + "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-1_S2_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02148", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "24801869543", - "totalGbp": "24.8", - "totalReads": "1424789", + "title": "Illumina Sequencing of Omni-C Libraries of HG02165", + "totalBp": "6519329233", + "totalGbp": "6.52", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861663", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861663", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758785", + "ccsAlgorithm": "N/A", + "coverage": "2.1", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL39", - "filename": "m64136_200623_061529.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02165-1_S2_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02148_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02165-1_S2_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "45232", - "mean": "17549", - "metadataAccession": "SRR13684391", - "min": "46", - "mmTag": false, - "n25": "15454", - "n50": "16933", - "n75": "20383", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242459", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.689028", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02148/raw_data/PacBio_HiFi/m64136_200623_061529.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "15249", - "quartile50": "16441", - "quartile75": "19221", + "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-1_S2_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02148", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "30048975399", - "totalGbp": "30.05", - "totalReads": "1712199", + "title": "Illumina Sequencing of Omni-C Libraries of HG02165", + "totalBp": "6519022113", + "totalGbp": "6.52", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861656", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861656", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758785", + "ccsAlgorithm": "N/A", + "coverage": "3.24", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR09", - "filename": "m64136_200625_174949.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02165-2_S10_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00741_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02165-2_S10_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50089", - "mean": "24685", - "metadataAccession": "SRR13684380", - "min": "45", - "mmTag": false, - "n25": "22246", - "n50": "24876", - "n75": "28087", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242477", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.659534", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00741/raw_data/PacBio_HiFi/m64136_200625_174949.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "21678", - "quartile50": "24172", - "quartile75": "27208", + "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-2_S10_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00741", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "31305642912", - "totalGbp": "31.31", - "totalReads": "1268202", + "title": "Illumina Sequencing of Omni-C Libraries of HG02165", + "totalBp": "10042788187", + "totalGbp": "10.04", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861656", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861656", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758785", + "ccsAlgorithm": "N/A", + "coverage": "3.24", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR09", - "filename": "m64136_200627_000247.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02165-2_S10_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00741_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02165-2_S10_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "49815", - "mean": "24612", - "metadataAccession": "SRR13684380", - "min": "48", - "mmTag": false, - "n25": "22183", - "n50": "24794", - "n75": "27976", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242477", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.627653", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00741/raw_data/PacBio_HiFi/m64136_200627_000247.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "21626", - "quartile50": "24097", - "quartile75": "27109", + "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-2_S10_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00741", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "27112467388", - "totalGbp": "27.11", - "totalReads": "1101565", + "title": "Illumina Sequencing of Omni-C Libraries of HG02165", + "totalBp": "10042100462", + "totalGbp": "10.04", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861656", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861656", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758785", + "ccsAlgorithm": "N/A", + "coverage": "3.57", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR09", - "filename": "m64136_200628_062837.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02165-2_S10_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00741_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02165-2_S10_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "49813", - "mean": "24694", - "metadataAccession": "SRR13684380", - "min": "47", - "mmTag": false, - "n25": "22254", - "n50": "24878", - "n75": "28094", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242476", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.611808", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00741/raw_data/PacBio_HiFi/m64136_200628_062837.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "21691", - "quartile50": "24170", - "quartile75": "27217", + "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-2_S10_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00741", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "31244401269", - "totalGbp": "31.24", - "totalReads": "1265235", + "title": "Illumina Sequencing of Omni-C Libraries of HG02165", + "totalBp": "11079858825", + "totalGbp": "11.08", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861656", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861656", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758785", + "ccsAlgorithm": "N/A", + "coverage": "3.57", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR09", - "filename": "m64136_200629_125431.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02165-2_S10_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00741_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02165-2_S10_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50008", - "mean": "24630", - "metadataAccession": "SRR13684380", - "min": "48", - "mmTag": false, - "n25": "22201", - "n50": "24812", - "n75": "28003", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242476", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.60866", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00741/raw_data/PacBio_HiFi/m64136_200629_125431.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "21639", - "quartile50": "24115", - "quartile75": "27138", + "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-2_S10_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00741", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "29569718896", - "totalGbp": "29.57", - "totalReads": "1200554", + "title": "Illumina Sequencing of Omni-C Libraries of HG02165", + "totalBp": "11079359976", + "totalGbp": "11.08", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861657", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861657", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758785", + "ccsAlgorithm": "N/A", + "coverage": "3.58", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR17", - "filename": "m64136_200702_173125.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02165-2_S10_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01071_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02165-2_S10_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50496", - "mean": "26662", - "metadataAccession": "SRR13684379", - "min": "45", - "mmTag": false, - "n25": "24027", - "n50": "26958", - "n75": "30418", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242474", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.634816", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01071/raw_data/PacBio_HiFi/m64136_200702_173125.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "23373", - "quartile50": "26164", - "quartile75": "29483", + "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-2_S10_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01071", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "29385994806", - "totalGbp": "29.39", - "totalReads": "1102142", + "title": "Illumina Sequencing of Omni-C Libraries of HG02165", + "totalBp": "11090061438", + "totalGbp": "11.09", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861657", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861657", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758785", + "ccsAlgorithm": "N/A", + "coverage": "3.58", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR17", - "filename": "m64136_200703_234438.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02165-2_S10_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01071_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02165-2_S10_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50514", - "mean": "26588", - "metadataAccession": "SRR13684379", - "min": "45", - "mmTag": false, - "n25": "23955", - "n50": "26878", - "n75": "30336", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242474", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.603623", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01071/raw_data/PacBio_HiFi/m64136_200703_234438.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "23300", - "quartile50": "26092", - "quartile75": "29403", + "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-2_S10_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01071", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "25131192610", - "totalGbp": "25.13", - "totalReads": "945196", + "title": "Illumina Sequencing of Omni-C Libraries of HG02165", + "totalBp": "11089554141", + "totalGbp": "11.09", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861657", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861657", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758785", + "ccsAlgorithm": "N/A", + "coverage": "3.52", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR17", - "filename": "m64136_200705_061033.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02165-2_S10_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01071_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02165-2_S10_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50254", - "mean": "26602", - "metadataAccession": "SRR13684379", - "min": "47", - "mmTag": false, - "n25": "23976", - "n50": "26903", - "n75": "30359", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242473", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.632186", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01071/raw_data/PacBio_HiFi/m64136_200705_061033.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "23316", - "quartile50": "26114", - "quartile75": "29430", + "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-2_S10_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01071", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "26986559262", - "totalGbp": "26.99", - "totalReads": "1014421", + "title": "Illumina Sequencing of Omni-C Libraries of HG02165", + "totalBp": "10897836302", + "totalGbp": "10.9", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861657", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861657", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758785", + "ccsAlgorithm": "N/A", + "coverage": "3.52", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR17", - "filename": "m64136_200706_123635.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02165-2_S10_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01071_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02165-2_S10_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50199", - "mean": "26652", - "metadataAccession": "SRR13684379", - "min": "45", - "mmTag": false, - "n25": "24033", - "n50": "26957", - "n75": "30389", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242473", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.567315", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01071/raw_data/PacBio_HiFi/m64136_200706_123635.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "23382", - "quartile50": "26172", - "quartile75": "29468", + "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/hic/HG02165-2_S10_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01071", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "27428056082", - "totalGbp": "27.43", - "totalReads": "1029096", + "title": "Illumina Sequencing of Omni-C Libraries of HG02165", + "totalBp": "10897343108", + "totalGbp": "10.9", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861653", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861653", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021617", + "ccsAlgorithm": "N/A", + "coverage": "7.01", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH066", - "filename": "m64136_200710_174522.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02178-1_FC1_S9_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00621_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", - "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50331", - "mean": "21942", - "metadataAccession": "SRR13684373", - "min": "44", - "mmTag": false, - "n25": "19006", - "n50": "21436", - "n75": "25863", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02178-1_FC1_S9_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310889", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.47463", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00621/raw_data/PacBio_HiFi/m64136_200710_174522.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "18576", - "quartile50": "20551", - "quartile75": "24261", + "path": "s3://human-pangenomics/working/HPRC/HG02178/raw_data/hic/HG02178-1_FC1_S9_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00621", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "32312653240", - "totalGbp": "32.31", - "totalReads": "1472593", + "title": "Illumina Sequencing of Omni-C Libraries of HG02178", + "totalBp": "21744973497", + "totalGbp": "21.74", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861653", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861653", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021617", + "ccsAlgorithm": "N/A", + "coverage": "7.01", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH066", - "filename": "m64136_200711_235843.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02178-1_FC1_S9_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00621_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02178-1_FC1_S9_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50165", - "mean": "22080", - "metadataAccession": "SRR13684373", - "min": "47", - "mmTag": false, - "n25": "19103", - "n50": "21606", - "n75": "26089", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310889", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.47463", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00621/raw_data/PacBio_HiFi/m64136_200711_235843.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "18659", - "quartile50": "20687", - "quartile75": "24482", + "path": "s3://human-pangenomics/working/HPRC/HG02178/raw_data/hic/HG02178-1_FC1_S9_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00621", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "29885213340", - "totalGbp": "29.89", - "totalReads": "1353445", + "title": "Illumina Sequencing of Omni-C Libraries of HG02178", + "totalBp": "21744973497", + "totalGbp": "21.74", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861653", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861653", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021617", + "ccsAlgorithm": "N/A", + "coverage": "6.83", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH066", - "filename": "m64136_200713_062514.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02178-1_FC2_S9_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00621_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02178-1_FC2_S9_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50388", - "mean": "21882", - "metadataAccession": "SRR13684373", - "min": "46", - "mmTag": false, - "n25": "18989", - "n50": "21377", - "n75": "25738", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310888", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.502882", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00621/raw_data/PacBio_HiFi/m64136_200713_062514.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "18570", - "quartile50": "20524", - "quartile75": "24172", + "path": "s3://human-pangenomics/working/HPRC/HG02178/raw_data/hic/HG02178-1_FC2_S9_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00621", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "29099465697", - "totalGbp": "29.1", - "totalReads": "1329779", + "title": "Illumina Sequencing of Omni-C Libraries of HG02178", + "totalBp": "21164708885", + "totalGbp": "21.16", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861653", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861653", - "ccsAlgorithm": "8.0.0.80529", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021617", + "ccsAlgorithm": "N/A", + "coverage": "6.83", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH066", - "filename": "m64136_200714_125149.ccs.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02178-1_FC2_S9_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00621_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02178-1_FC2_S9_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50286", - "mean": "22050", - "metadataAccession": "SRR13684373", - "min": "47", - "mmTag": false, - "n25": "19075", - "n50": "21579", - "n75": "26052", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310888", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.502882", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00621/raw_data/PacBio_HiFi/m64136_200714_125149.ccs.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "", - "productionYear": "YR1", - "quartile25": "18632", - "quartile50": "20658", - "quartile75": "24449", + "path": "s3://human-pangenomics/working/HPRC/HG02178/raw_data/hic/HG02178-1_FC2_S9_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00621", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "31198267999", - "totalGbp": "31.2", - "totalReads": "1414858", + "title": "Illumina Sequencing of Omni-C Libraries of HG02178", + "totalBp": "21164708885", + "totalGbp": "21.16", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237503", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237503", - "ccsAlgorithm": "9.0.0.92188", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021617", + "ccsAlgorithm": "N/A", + "coverage": "4.34", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN050", - "filename": "m64136_210205_190622.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02178-2_FC1_S10_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02027_lib", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02178-2_FC1_S10_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59462", - "mean": "19181", - "metadataAccession": "SRR18189659", - "min": "50", - "mmTag": false, - "n25": "17361", - "n50": "18842", - "n75": "21069", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310887", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.559189", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02027/raw_data/PacBio_HiFi/m64136_210205_190622.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17116", - "quartile50": "18474", - "quartile75": "20391", + "path": "s3://human-pangenomics/working/HPRC/HG02178/raw_data/hic/HG02178-2_FC1_S10_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02027", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "34463464135", - "totalGbp": "34.46", - "totalReads": "1796742", + "title": "Illumina Sequencing of Omni-C Libraries of HG02178", + "totalBp": "13449042406", + "totalGbp": "13.45", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237503", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237503", - "ccsAlgorithm": "9.0.0.92188", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021617", + "ccsAlgorithm": "N/A", + "coverage": "4.34", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN050", - "filename": "m64136_210207_012053.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02178-2_FC1_S10_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02027_lib", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02178-2_FC1_S10_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55858", - "mean": "19231", - "metadataAccession": "SRR18189659", - "min": "61", - "mmTag": false, - "n25": "17386", - "n50": "18891", - "n75": "21167", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310887", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.559189", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02027/raw_data/PacBio_HiFi/m64136_210207_012053.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17137", - "quartile50": "18510", - "quartile75": "20467", + "path": "s3://human-pangenomics/working/HPRC/HG02178/raw_data/hic/HG02178-2_FC1_S10_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02027", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "31820631982", - "totalGbp": "31.82", - "totalReads": "1654569", + "title": "Illumina Sequencing of Omni-C Libraries of HG02178", + "totalBp": "13449042406", + "totalGbp": "13.45", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237503", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237503", - "ccsAlgorithm": "9.0.0.92188", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021617", + "ccsAlgorithm": "N/A", + "coverage": "4.25", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN050", - "filename": "m64136_210209_184241.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02178-2_FC2_S10_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02027_lib", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02178-2_FC2_S10_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53960", - "mean": "19159", - "metadataAccession": "SRR18189659", - "min": "45", - "mmTag": false, - "n25": "17344", - "n50": "18825", - "n75": "21046", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310886", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.526419", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02027/raw_data/PacBio_HiFi/m64136_210209_184241.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17101", - "quartile50": "18456", - "quartile75": "20372", + "path": "s3://human-pangenomics/working/HPRC/HG02178/raw_data/hic/HG02178-2_FC2_S10_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02027", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "33394650011", - "totalGbp": "33.39", - "totalReads": "1742953", + "title": "Illumina Sequencing of Omni-C Libraries of HG02178", + "totalBp": "13164963690", + "totalGbp": "13.16", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237503", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237503", - "ccsAlgorithm": "9.0.0.92188", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021617", + "ccsAlgorithm": "N/A", + "coverage": "4.25", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN050", - "filename": "m64136_210211_010151.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02178-2_FC2_S10_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02027_lib", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02178-2_FC2_S10_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "47891", - "mean": "19529", - "metadataAccession": "SRR18189659", - "min": "48", - "mmTag": false, - "n25": "17577", - "n50": "19163", - "n75": "21640", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310886", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.526419", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02027/raw_data/PacBio_HiFi/m64136_210211_010151.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17310", - "quartile50": "18748", - "quartile75": "20835", + "path": "s3://human-pangenomics/working/HPRC/HG02178/raw_data/hic/HG02178-2_FC2_S10_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02027", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "32977753701", - "totalGbp": "32.98", - "totalReads": "1688620", + "title": "Illumina Sequencing of Omni-C Libraries of HG02178", + "totalBp": "13164963690", + "totalGbp": "13.16", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237504", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237504", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621952", + "ccsAlgorithm": "N/A", + "coverage": "17.8", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN069", - "filename": "m64136_210317_200525.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02258-2_S7_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02083_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02258-2_S7_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59173", - "mean": "19950", - "metadataAccession": "SRR18189658", - "min": "86", - "mmTag": false, - "n25": "17500", - "n50": "19287", - "n75": "23123", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310885", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.400263", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02083/raw_data/PacBio_HiFi/m64136_210317_200525.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17206", - "quartile50": "18711", - "quartile75": "21907", + "path": "s3://human-pangenomics/working/HPRC/HG02258/raw_data/hic/HG02258-2_S7_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02083", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "34788230322", - "totalGbp": "34.79", - "totalReads": "1743712", + "title": "Illumina Sequencing of Omni-C Libraries of HG02258", + "totalBp": "55183613645", + "totalGbp": "55.18", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237504", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237504", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621952", + "ccsAlgorithm": "N/A", + "coverage": "17.8", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN069", - "filename": "m64136_210319_191015.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02258-2_S7_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02083_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02258-2_S7_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60206", - "mean": "19965", - "metadataAccession": "SRR18189658", - "min": "86", - "mmTag": false, - "n25": "17508", - "n50": "19300", - "n75": "23147", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310885", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.400263", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02083/raw_data/PacBio_HiFi/m64136_210319_191015.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17216", - "quartile50": "18722", - "quartile75": "21930", + "path": "s3://human-pangenomics/working/HPRC/HG02258/raw_data/hic/HG02258-2_S7_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02083", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "35152401716", - "totalGbp": "35.15", - "totalReads": "1760691", + "title": "Illumina Sequencing of Omni-C Libraries of HG02258", + "totalBp": "55183613645", + "totalGbp": "55.18", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237504", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237504", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "4.74", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN069", - "filename": "m64136_210321_022417.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-1_S17_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02083_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-1_S17_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "62376", - "mean": "19914", - "metadataAccession": "SRR18189658", - "min": "89", - "mmTag": false, - "n25": "17499", - "n50": "19260", - "n75": "23033", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242472", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.567596", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02083/raw_data/PacBio_HiFi/m64136_210321_022417.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17213", - "quartile50": "18705", - "quartile75": "21841", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02083", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "31271435801", - "totalGbp": "31.27", - "totalReads": "1570273", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "14685113009", + "totalGbp": "14.69", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237504", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237504", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "4.74", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN069", - "filename": "m64136_210323_162524.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-1_S17_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02083_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-1_S17_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61695", - "mean": "20039", - "metadataAccession": "SRR18189658", - "min": "90", - "mmTag": false, - "n25": "17556", - "n50": "19392", - "n75": "23264", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242472", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.534099", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02083/raw_data/PacBio_HiFi/m64136_210323_162524.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17255", - "quartile50": "18792", - "quartile75": "22064", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02083", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "33996593694", - "totalGbp": "34", - "totalReads": "1696465", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "14684168841", + "totalGbp": "14.68", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { - "Gb": "N/A", - "accession": "SAMN26237509", - "assembly": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237509", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "4.8", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PK21", - "filename": "m64136_210514_184433.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-1_S17_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02698_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-1_S17_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57438", - "mean": "19944", - "metadataAccession": "SRR18189652", - "min": "84", - "mmTag": false, - "n25": "17461", - "n50": "19577", - "n75": "23289", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242471", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.56761", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/PacBio_HiFi/m64136_210514_184433.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17123", - "quartile50": "18853", - "quartile75": "22227", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02698", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "31502958375", - "totalGbp": "31.5", - "totalReads": "1579519", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "14883637778", + "totalGbp": "14.88", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237495", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237495", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "4.8", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM15", - "filename": "m64136_210516_022225.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-1_S17_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01255_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-1_S17_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60589", - "mean": "20849", - "metadataAccession": "SRR18189643", - "min": "681", - "mmTag": false, - "n25": "17882", - "n50": "20969", - "n75": "24579", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242471", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.49938", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/PacBio_HiFi/m64136_210516_022225.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17338", - "quartile50": "19917", - "quartile75": "23286", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01255", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "35010470276", - "totalGbp": "35.01", - "totalReads": "1679236", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "14882988127", + "totalGbp": "14.88", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237509", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237509", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "4.55", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PK21", - "filename": "m64136_210517_184202.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-1_S17_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02698_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-1_S17_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56902", - "mean": "19940", - "metadataAccession": "SRR18189652", - "min": "633", - "mmTag": false, - "n25": "17462", - "n50": "19578", - "n75": "23288", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242470", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.513992", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/PacBio_HiFi/m64136_210517_184202.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17123", - "quartile50": "18854", - "quartile75": "22222", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02698", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "32782437878", - "totalGbp": "32.78", - "totalReads": "1644028", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "14119543280", + "totalGbp": "14.12", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237495", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237495", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "4.55", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM15", - "filename": "m64136_210519_033858.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-1_S17_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01255_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-1_S17_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56837", - "mean": "20716", - "metadataAccession": "SRR18189643", - "min": "110", - "mmTag": false, - "n25": "17775", - "n50": "20797", - "n75": "24380", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242470", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.522761", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/PacBio_HiFi/m64136_210519_033858.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17261", - "quartile50": "19739", - "quartile75": "23108", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01255", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "32516315973", - "totalGbp": "32.52", - "totalReads": "1569564", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "14118755850", + "totalGbp": "14.12", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237491", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237491", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "4.51", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH042", - "filename": "m64136_210520_180433.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-1_S17_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00544_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-1_S17_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57625", - "mean": "19583", - "metadataAccession": "SRR18189653", - "min": "86", - "mmTag": false, - "n25": "17129", - "n50": "19121", - "n75": "22825", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242469", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.502015", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m64136_210520_180433.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "16825", - "quartile50": "18445", - "quartile75": "21784", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00544", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "29354505966", - "totalGbp": "29.35", - "totalReads": "1498910", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "13969422876", + "totalGbp": "13.97", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237491", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237491", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "4.51", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH042", - "filename": "m64136_210522_014758.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-1_S17_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00544_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-1_S17_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60270", - "mean": "19796", - "metadataAccession": "SRR18189653", - "min": "86", - "mmTag": false, - "n25": "17306", - "n50": "19452", - "n75": "23104", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242469", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.539868", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m64136_210522_014758.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "16970", - "quartile50": "18701", - "quartile75": "22117", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00544", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "18538580517", - "totalGbp": "18.54", - "totalReads": "936445", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "13968616751", + "totalGbp": "13.97", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237491", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237491", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "9.96", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH042", - "filename": "m64136_210523_100337.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-1_S17i_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00544_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-1_S17i_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55501", - "mean": "19776", - "metadataAccession": "SRR18189653", - "min": "161", - "mmTag": false, - "n25": "17283", - "n50": "19416", - "n75": "23091", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242468", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.490643", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m64136_210523_100337.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "16949", - "quartile50": "18670", - "quartile75": "22090", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17i_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00544", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "17391182429", - "totalGbp": "17.39", - "totalReads": "879373", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "30877274276", + "totalGbp": "30.88", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237491", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237491", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "9.96", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH042", - "filename": "m64136_210525_165246.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-1_S17i_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00544_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-1_S17i_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58523", - "mean": "19262", - "metadataAccession": "SRR18189653", - "min": "86", - "mmTag": false, - "n25": "16986", - "n50": "18747", - "n75": "22249", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242468", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.479031", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m64136_210525_165246.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "16723", - "quartile50": "18199", - "quartile75": "21194", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17i_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00544", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "19945672662", - "totalGbp": "19.95", - "totalReads": "1035453", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "30875082106", + "totalGbp": "30.88", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237508", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237508", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "10.42", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB29", - "filename": "m64136_210528_171842.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-1_S17i_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02615_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-1_S17i_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57329", - "mean": "19166", - "metadataAccession": "SRR18189654", - "min": "653", - "mmTag": false, - "n25": "16935", - "n50": "18925", - "n75": "22065", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242467", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.456736", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/PacBio_HiFi/m64136_210528_171842.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "16621", - "quartile50": "18304", - "quartile75": "21230", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17i_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02615", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "33766412584", - "totalGbp": "33.77", - "totalReads": "1761768", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "32305103519", + "totalGbp": "32.31", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237508", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237508", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "10.42", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB29", - "filename": "m64136_210530_004827.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-1_S17i_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02615_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-1_S17i_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "54925", - "mean": "19501", - "metadataAccession": "SRR18189654", - "min": "86", - "mmTag": false, - "n25": "17182", - "n50": "19404", - "n75": "22518", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242467", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.47092", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/PacBio_HiFi/m64136_210530_004827.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "16824", - "quartile50": "18684", - "quartile75": "21714", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17i_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02615", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "32739078900", - "totalGbp": "32.74", - "totalReads": "1678784", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "32304025376", + "totalGbp": "32.3", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237508", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237508", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "8.62", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB29", - "filename": "m64136_210531_083342.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-1_S17i_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02615_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-1_S17i_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "54872", - "mean": "19492", - "metadataAccession": "SRR18189654", - "min": "418", - "mmTag": false, - "n25": "17180", - "n50": "19380", - "n75": "22494", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242466", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.506923", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/PacBio_HiFi/m64136_210531_083342.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "16825", - "quartile50": "18669", - "quartile75": "21697", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17i_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02615", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "32475308904", - "totalGbp": "32.48", - "totalReads": "1666072", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "26710287853", + "totalGbp": "26.71", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237493", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237493", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "8.62", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PR07", - "filename": "m64136_210602_151340.hifi_reads.bam", - "filetype": "N/A", - "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00738_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", - "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61975", - "mean": "21750", - "metadataAccession": "SRR18189645", - "min": "90", - "mmTag": false, - "n25": "18952", - "n50": "21035", - "n75": "25464", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-1_S17i_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-1_S17i_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242466", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.488808", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/PacBio_HiFi/m64136_210602_151340.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "18587", - "quartile50": "20331", - "quartile75": "23822", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17i_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00738", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "22112433547", - "totalGbp": "22.11", - "totalReads": "1016642", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "26709413361", + "totalGbp": "26.71", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237496", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237496", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "7.36", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM43", - "filename": "m64136_210604_175856.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-1_S17i_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01433_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-1_S17i_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "62574", - "mean": "21918", - "metadataAccession": "SRR18189642", - "min": "551", - "mmTag": false, - "n25": "19050", - "n50": "21927", - "n75": "25849", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242465", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.49395", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01433/raw_data/PacBio_HiFi/m64136_210604_175856.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "18516", - "quartile50": "20897", - "quartile75": "24604", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17i_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01433", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "33371252434", - "totalGbp": "33.37", - "totalReads": "1522531", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "22807009905", + "totalGbp": "22.81", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237496", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237496", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "7.36", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM43", - "filename": "m64136_210606_025622.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-1_S17i_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01433_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-1_S17i_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57595", - "mean": "22335", - "metadataAccession": "SRR18189642", - "min": "86", - "mmTag": false, - "n25": "19394", - "n50": "22509", - "n75": "26396", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242465", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.486786", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01433/raw_data/PacBio_HiFi/m64136_210606_025622.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "18792", - "quartile50": "21399", - "quartile75": "25166", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-1_S17i_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01433", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "24912537616", - "totalGbp": "24.91", - "totalReads": "1115383", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "22806162075", + "totalGbp": "22.81", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237496", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237496", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "4.54", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM43", - "filename": "m64136_210607_115559.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-2_S19_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01433_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-2_S19_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58871", - "mean": "22122", - "metadataAccession": "SRR18189642", - "min": "495", - "mmTag": false, - "n25": "19214", - "n50": "22200", - "n75": "26119", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242463", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.598362", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01433/raw_data/PacBio_HiFi/m64136_210607_115559.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "18654", - "quartile50": "21131", - "quartile75": "24872", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01433", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "31122861165", - "totalGbp": "31.12", - "totalReads": "1406824", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "14063990321", + "totalGbp": "14.06", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237496", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237496", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "4.54", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM43", - "filename": "m64136_210610_203618.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-2_S19_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01433_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-2_S19_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59803", - "mean": "21255", - "metadataAccession": "SRR18189642", - "min": "509", - "mmTag": false, - "n25": "18562", - "n50": "21038", - "n75": "24891", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242463", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.505772", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01433/raw_data/PacBio_HiFi/m64136_210610_203618.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "18128", - "quartile50": "20177", - "quartile75": "23639", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01433", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "23199350663", - "totalGbp": "23.2", - "totalReads": "1091451", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "14062996580", + "totalGbp": "14.06", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237514", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237514", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "4.62", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD27", - "filename": "m64136_210612_053350.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-2_S19_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03831_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-2_S19_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55969", - "mean": "21743", - "metadataAccession": "SRR18189647", - "min": "641", - "mmTag": false, - "n25": "19766", - "n50": "21495", - "n75": "23983", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242462", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.581007", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/PacBio_HiFi/m64136_210612_053350.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "19481", - "quartile50": "21077", - "quartile75": "23313", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03831", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "19144027234", - "totalGbp": "19.14", - "totalReads": "880429", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "14326966085", + "totalGbp": "14.33", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237514", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237514", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "4.62", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD27", - "filename": "m64136_210613_130744.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-2_S19_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03831_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-2_S19_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56331", - "mean": "21716", - "metadataAccession": "SRR18189647", - "min": "385", - "mmTag": false, - "n25": "19746", - "n50": "21472", - "n75": "23951", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242462", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.533121", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/PacBio_HiFi/m64136_210613_130744.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "19461", - "quartile50": "21056", - "quartile75": "23284", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03831", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "19374660094", - "totalGbp": "19.37", - "totalReads": "892173", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "14326153377", + "totalGbp": "14.33", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237514", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237514", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "4.18", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD27", - "filename": "m64136_210614_204240.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-2_S19_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03831_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-2_S19_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "54835", - "mean": "21688", - "metadataAccession": "SRR18189647", - "min": "402", - "mmTag": false, - "n25": "19731", - "n50": "21450", - "n75": "23911", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242182", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.602997", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/PacBio_HiFi/m64136_210614_204240.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "19447", - "quartile50": "21037", - "quartile75": "23248", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03831", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "18666458074", - "totalGbp": "18.67", - "totalReads": "860681", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "12970944182", + "totalGbp": "12.97", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237514", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237514", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "4.18", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD27", - "filename": "m64136_210618_184849.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-2_S19_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03831_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-2_S19_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61821", - "mean": "21813", - "metadataAccession": "SRR18189647", - "min": "90", - "mmTag": false, - "n25": "19790", - "n50": "21555", - "n75": "24089", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242182", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.519903", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/PacBio_HiFi/m64136_210618_184849.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "19499", - "quartile50": "21123", - "quartile75": "23395", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03831", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "38500629563", - "totalGbp": "38.5", - "totalReads": "1764977", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "12970060855", + "totalGbp": "12.97", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237492", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237492", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "4.25", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH062", - "filename": "m64136_210620_054327.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-2_S19_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00609_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-2_S19_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59168", - "mean": "20480", - "metadataAccession": "SRR18189646", - "min": "80", - "mmTag": false, - "n25": "17837", - "n50": "20016", - "n75": "24004", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242181", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.608654", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/PacBio_HiFi/m64136_210620_054327.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17480", - "quartile50": "19248", - "quartile75": "22718", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00609", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "36542655261", - "totalGbp": "36.54", - "totalReads": "1784291", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "13174281820", + "totalGbp": "13.17", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237492", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237492", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "4.25", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH062", - "filename": "m64136_210622_163607.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-2_S19_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00609_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-2_S19_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60330", - "mean": "20295", - "metadataAccession": "SRR18189646", - "min": "294", - "mmTag": false, - "n25": "17754", - "n50": "19801", - "n75": "23634", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242181", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.537389", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/PacBio_HiFi/m64136_210622_163607.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17422", - "quartile50": "19106", - "quartile75": "22384", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00609", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "34196548457", - "totalGbp": "34.2", - "totalReads": "1684931", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "13173351744", + "totalGbp": "13.17", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237492", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237492", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "11.43", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH062", - "filename": "m64136_210624_033152.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-2_S19i_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00609_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-2_S19i_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "62855", - "mean": "20450", - "metadataAccession": "SRR18189646", - "min": "520", - "mmTag": false, - "n25": "17820", - "n50": "19987", - "n75": "23940", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242180", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.495572", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/PacBio_HiFi/m64136_210624_033152.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17467", - "quartile50": "19227", - "quartile75": "22670", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19i_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00609", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "36078913516", - "totalGbp": "36.08", - "totalReads": "1764223", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "35420500740", + "totalGbp": "35.42", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237500", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237500", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "11.43", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL27", - "filename": "m64136_210625_184731.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-2_S19i_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01981_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-2_S19i_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58677", - "mean": "22409", - "metadataAccession": "SRR18189662", - "min": "86", - "mmTag": false, - "n25": "20324", - "n50": "22093", - "n75": "24616", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242180", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.445329", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/PacBio_HiFi/m64136_210625_184731.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "20057", - "quartile50": "21671", - "quartile75": "23942", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19i_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01981", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "32558602266", - "totalGbp": "32.56", - "totalReads": "1452915", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "35417826788", + "totalGbp": "35.42", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237500", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237500", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "13", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL27", - "filename": "m64136_210627_054246.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-2_S19i_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01981_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-2_S19i_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58483", - "mean": "22404", - "metadataAccession": "SRR18189662", - "min": "109", - "mmTag": false, - "n25": "20321", - "n50": "22091", - "n75": "24616", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242179", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.506931", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/PacBio_HiFi/m64136_210627_054246.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "20054", - "quartile50": "21668", - "quartile75": "23950", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19i_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01981", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "38295698114", - "totalGbp": "38.3", - "totalReads": "1709317", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "40301197724", + "totalGbp": "40.3", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237500", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237500", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "13", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL27", - "filename": "m64136_210628_163953.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-2_S19i_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01981_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-2_S19i_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "67049", - "mean": "22492", - "metadataAccession": "SRR18189662", - "min": "461", - "mmTag": false, - "n25": "20370", - "n50": "22177", - "n75": "24752", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242179", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.392894", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/PacBio_HiFi/m64136_210628_163953.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "20094", - "quartile50": "21740", - "quartile75": "24060", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19i_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01981", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "34527307027", - "totalGbp": "34.53", - "totalReads": "1535065", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "40299352827", + "totalGbp": "40.3", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237502", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237502", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "10.05", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL33", - "filename": "m64136_210702_183526.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-2_S19i_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02004_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-2_S19i_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58589", - "mean": "19156", - "metadataAccession": "SRR18189660", - "min": "330", - "mmTag": false, - "n25": "16680", - "n50": "19065", - "n75": "22279", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242178", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.507416", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/PacBio_HiFi/m64136_210702_183526.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "16324", - "quartile50": "18153", - "quartile75": "21349", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19i_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02004", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "33142881457", - "totalGbp": "33.14", - "totalReads": "1730130", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "31160504966", + "totalGbp": "31.16", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237502", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237502", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "10.05", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL33", - "filename": "m64136_210704_053041.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-2_S19i_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02004_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-2_S19i_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55125", - "mean": "19374", - "metadataAccession": "SRR18189660", - "min": "271", - "mmTag": false, - "n25": "16832", - "n50": "19431", - "n75": "22579", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242178", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.478066", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/PacBio_HiFi/m64136_210704_053041.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "16441", - "quartile50": "18442", - "quartile75": "21645", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19i_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02004", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "22886582472", - "totalGbp": "22.89", - "totalReads": "1181301", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "31159100171", + "totalGbp": "31.16", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237502", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237502", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "8.36", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL33", - "filename": "m64136_210705_162724.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-2_S19i_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02004_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-2_S19i_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53948", - "mean": "19668", - "metadataAccession": "SRR18189660", - "min": "86", - "mmTag": false, - "n25": "17087", - "n50": "19873", - "n75": "22910", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242177", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.562155", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/PacBio_HiFi/m64136_210705_162724.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "16651", - "quartile50": "18898", - "quartile75": "22002", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19i_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02004", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "28890588164", - "totalGbp": "28.89", - "totalReads": "1468846", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "25907269627", + "totalGbp": "25.91", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237505", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237505", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "N/A", + "coverage": "8.36", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BB23", - "filename": "m64136_210716_230343.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02273-2_S19i_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02280_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02273-2_S19i_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55627", - "mean": "18909", - "metadataAccession": "SRR18189657", - "min": "77", - "mmTag": false, - "n25": "16598", - "n50": "19206", - "n75": "21600", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242177", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.458482", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/PacBio_HiFi/m64136_210716_230343.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "16156", - "quartile50": "18541", - "quartile75": "20932", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/hic/HG02273-2_S19i_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02280", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "32263383149", - "totalGbp": "32.26", - "totalReads": "1706223", + "title": "Illumina Sequencing of Omni-C Libraries of HG02273", + "totalBp": "25905984548", + "totalGbp": "25.91", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237505", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", + "bioprojectAccession": "PRJNA701308", "biosampleAccession": "SAMN26237505", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "8.71", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BB23", - "filename": "m64136_210718_091611.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02280-46c-1_S13_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02280_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02280-46c-1-1_S13_L001_R1_001-1_S13_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55386", - "mean": "18944", - "metadataAccession": "SRR18189657", - "min": "747", - "mmTag": false, - "n25": "16622", - "n50": "19243", - "n75": "21644", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613712", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.522887", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/PacBio_HiFi/m64136_210718_091611.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "16173", - "quartile50": "18582", - "quartile75": "20967", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-1_S13_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02280", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "35481365570", - "totalGbp": "35.48", - "totalReads": "1872882", + "title": "Illumina Sequencing of Omni-C Libraries of HG02280", + "totalBp": "27008156182", + "totalGbp": "27.01", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237505", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", + "bioprojectAccession": "PRJNA701308", "biosampleAccession": "SAMN26237505", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "8.71", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BB23", - "filename": "m64136_210719_201505.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02280-46c-1_S13_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02280_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02280-46c-1-1_S13_L001_R1_001-1_S13_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58301", - "mean": "18928", - "metadataAccession": "SRR18189657", - "min": "95", - "mmTag": false, - "n25": "16617", - "n50": "19228", - "n75": "21618", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613712", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.461734", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/PacBio_HiFi/m64136_210719_201505.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "16172", - "quartile50": "18564", - "quartile75": "20950", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-1_S13_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02280", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "32722313918", - "totalGbp": "32.72", - "totalReads": "1728776", + "title": "Illumina Sequencing of Omni-C Libraries of HG02280", + "totalBp": "27007036532", + "totalGbp": "27.01", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237498", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237498", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237505", + "ccsAlgorithm": "N/A", + "coverage": "8.66", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL013", - "filename": "m64136_210723_184622.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02280-46c-1_S13_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01934_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02280-46c-1-1_S13_L002_R1_001-1_S13_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55658", - "mean": "20392", - "metadataAccession": "SRR18189640", - "min": "87", - "mmTag": false, - "n25": "17643", - "n50": "19834", - "n75": "24088", - "notes": "bc1020 barcoded adapter", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613711", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.511952", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01934/raw_data/PacBio_HiFi/m64136_210723_184622.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17294", - "quartile50": "18988", - "quartile75": "22829", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-1_S13_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01934", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "23540899362", - "totalGbp": "23.54", - "totalReads": "1154412", + "title": "Illumina Sequencing of Omni-C Libraries of HG02280", + "totalBp": "26855128295", + "totalGbp": "26.86", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237498", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237498", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237505", + "ccsAlgorithm": "N/A", + "coverage": "8.66", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL013", - "filename": "m64136_210725_054129.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02280-46c-1_S13_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01934_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02280-46c-1-1_S13_L002_R1_001-1_S13_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56329", - "mean": "20608", - "metadataAccession": "SRR18189640", - "min": "113", - "mmTag": false, - "n25": "17745", - "n50": "20203", - "n75": "24446", - "notes": "bc1020 barcoded adapter", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613711", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.491499", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01934/raw_data/PacBio_HiFi/m64136_210725_054129.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17361", - "quartile50": "19176", - "quartile75": "23178", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-1_S13_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01934", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "26910655595", - "totalGbp": "26.91", - "totalReads": "1305820", + "title": "Illumina Sequencing of Omni-C Libraries of HG02280", + "totalBp": "26853858187", + "totalGbp": "26.85", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237498", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237498", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237505", + "ccsAlgorithm": "N/A", + "coverage": "8.68", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL013", - "filename": "m64136_210726_163800.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02280-46c-1_S13_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01934_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02280-46c-1-1_S13_L003_R1_001-1_S13_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56046", - "mean": "20623", - "metadataAccession": "SRR18189640", - "min": "182", - "mmTag": false, - "n25": "17759", - "n50": "20243", - "n75": "24461", - "notes": "bc1020 barcoded adapter", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613710", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.487675", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01934/raw_data/PacBio_HiFi/m64136_210726_163800.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17375", - "quartile50": "19204", - "quartile75": "23200", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-1_S13_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01934", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "21882737224", - "totalGbp": "21.88", - "totalReads": "1061051", + "title": "Illumina Sequencing of Omni-C Libraries of HG02280", + "totalBp": "26914104742", + "totalGbp": "26.91", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26237498", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26237498", - "ccsAlgorithm": "10.1.0.115913", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237505", + "ccsAlgorithm": "N/A", + "coverage": "8.68", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL013", - "filename": "m64136_210728_163638.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02280-46c-1_S13_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01934_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02280-46c-1-1_S13_L003_R1_001-1_S13_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56522", - "mean": "20574", - "metadataAccession": "SRR18189640", - "min": "98", - "mmTag": false, - "n25": "17728", - "n50": "20148", - "n75": "24392", - "notes": "bc1020 barcoded adapter", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613710", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.463409", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01934/raw_data/PacBio_HiFi/m64136_210728_163638.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR2", - "quartile25": "17350", - "quartile50": "19145", - "quartile75": "23129", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-1_S13_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01934", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "27145864716", - "totalGbp": "27.15", - "totalReads": "1319382", + "title": "Illumina Sequencing of Omni-C Libraries of HG02280", + "totalBp": "26912776798", + "totalGbp": "26.91", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621946", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621946", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237505", + "ccsAlgorithm": "N/A", + "coverage": "8.33", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM17", - "filename": "m64136_211105_181124-bc1001.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02280-46c-1_S13_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01261_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02280-46c-1-1_S13_L004_R1_001-1_S13_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58704", - "mean": "20987", - "metadataAccession": "SRR23732278", - "min": "986", - "mmTag": false, - "n25": "18395", - "n50": "20237", - "n75": "24263", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613709", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.49002", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/m64136_211105_181124-bc1001.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18104", - "quartile50": "19655", - "quartile75": "22562", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-1_S13_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01261", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "30182743796", - "totalGbp": "30.18", - "totalReads": "1438147", + "title": "Illumina Sequencing of Omni-C Libraries of HG02280", + "totalBp": "25813218097", + "totalGbp": "25.81", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621946", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621946", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237505", + "ccsAlgorithm": "N/A", + "coverage": "8.33", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM17", - "filename": "m64136_211107_050725-bc1001.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02280-46c-1_S13_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01261_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02280-46c-1-1_S13_L004_R1_001-1_S13_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "64761", - "mean": "21233", - "metadataAccession": "SRR23732278", - "min": "170", - "mmTag": false, - "n25": "18510", - "n50": "20474", - "n75": "24807", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613709", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.469492", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/m64136_211107_050725-bc1001.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18194", - "quartile50": "19824", - "quartile75": "23063", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-1_S13_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01261", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "32158315632", - "totalGbp": "32.16", - "totalReads": "1514497", + "title": "Illumina Sequencing of Omni-C Libraries of HG02280", + "totalBp": "25811731567", + "totalGbp": "25.81", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621946", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621946", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237505", + "ccsAlgorithm": "N/A", + "coverage": "7.63", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM17", - "filename": "m64136_211108_160613-bc1001.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02280-46c-2_S14_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG01261_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02280-46c-2-2_S14_L001_R1_001-2_S14_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "65223", - "mean": "21072", - "metadataAccession": "SRR23732278", - "min": "204", - "mmTag": false, - "n25": "18429", - "n50": "20313", - "n75": "24465", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613708", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.503248", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/m64136_211108_160613-bc1001.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18129", - "quartile50": "19707", - "quartile75": "22728", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-2_S14_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01261", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "32544026126", - "totalGbp": "32.54", - "totalReads": "1544394", + "title": "Illumina Sequencing of Omni-C Libraries of HG02280", + "totalBp": "23652581072", + "totalGbp": "23.65", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621943", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621943", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237505", + "ccsAlgorithm": "N/A", + "coverage": "7.63", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH002", - "filename": "m64136_211111_194404-bc1002.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02280-46c-2_S14_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00408_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02280-46c-2-2_S14_L001_R1_001-2_S14_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58108", - "mean": "19152", - "metadataAccession": "SRR23732283", - "min": "81", - "mmTag": false, - "n25": "16758", - "n50": "18490", - "n75": "22251", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613708", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.486619", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00408/raw_data/PacBio_HiFi/m64136_211111_194404-bc1002.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16477", - "quartile50": "17924", - "quartile75": "20859", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-2_S14_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00408", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "38355055565", - "totalGbp": "38.36", - "totalReads": "2002652", + "title": "Illumina Sequencing of Omni-C Libraries of HG02280", + "totalBp": "23651138413", + "totalGbp": "23.65", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621943", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621943", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237505", + "ccsAlgorithm": "N/A", + "coverage": "7.59", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH002", - "filename": "m64136_211113_063830-bc1002.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02280-46c-2_S14_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00408_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02280-46c-2-2_S14_L002_R1_001-2_S14_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59031", - "mean": "19250", - "metadataAccession": "SRR23732283", - "min": "124", - "mmTag": false, - "n25": "16802", - "n50": "18580", - "n75": "22446", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613707", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.496361", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00408/raw_data/PacBio_HiFi/m64136_211113_063830-bc1002.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16510", - "quartile50": "17982", - "quartile75": "21042", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-2_S14_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00408", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "38660030224", - "totalGbp": "38.66", - "totalReads": "2008291", + "title": "Illumina Sequencing of Omni-C Libraries of HG02280", + "totalBp": "23538435510", + "totalGbp": "23.54", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621943", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621943", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237505", + "ccsAlgorithm": "N/A", + "coverage": "7.59", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH002", - "filename": "m64136_211114_164241-bc1002.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02280-46c-2_S14_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00408_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02280-46c-2-2_S14_L002_R1_001-2_S14_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53377", - "mean": "19185", - "metadataAccession": "SRR23732283", - "min": "139", - "mmTag": false, - "n25": "16770", - "n50": "18510", - "n75": "22318", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613707", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.478321", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00408/raw_data/PacBio_HiFi/m64136_211114_164241-bc1002.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16486", - "quartile50": "17935", - "quartile75": "20910", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-2_S14_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00408", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "38730219265", - "totalGbp": "38.73", - "totalReads": "2018757", + "title": "Illumina Sequencing of Omni-C Libraries of HG02280", + "totalBp": "23536952548", + "totalGbp": "23.54", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621949", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621949", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237505", + "ccsAlgorithm": "N/A", + "coverage": "7.6", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN060", - "filename": "m64136_211118_185339-bc1009.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02280-46c-2_S14_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02056_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02280-46c-2-2_S14_L003_R1_001-2_S14_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "51507", - "mean": "19854", - "metadataAccession": "SRR23732275", - "min": "122", - "mmTag": false, - "n25": "18083", - "n50": "19712", - "n75": "22301", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613649", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.513924", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/m64136_211118_185339-bc1009.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17756", - "quartile50": "19247", - "quartile75": "21406", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-2_S14_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02056", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "29158250441", - "totalGbp": "29.16", - "totalReads": "1468626", + "title": "Illumina Sequencing of Omni-C Libraries of HG02280", + "totalBp": "23557222252", + "totalGbp": "23.56", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621949", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621949", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237505", + "ccsAlgorithm": "N/A", + "coverage": "7.6", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN060", - "filename": "m64136_211120_043838-bc1009.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02280-46c-2_S14_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02056_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02280-46c-2-2_S14_L003_R1_001-2_S14_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50015", - "mean": "19815", - "metadataAccession": "SRR23732275", - "min": "116", - "mmTag": false, - "n25": "18068", - "n50": "19682", - "n75": "22217", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613649", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.474581", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/m64136_211120_043838-bc1009.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17748", - "quartile50": "19225", - "quartile75": "21357", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-2_S14_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02056", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "27141258277", - "totalGbp": "27.14", - "totalReads": "1369700", + "title": "Illumina Sequencing of Omni-C Libraries of HG02280", + "totalBp": "23555669892", + "totalGbp": "23.56", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621949", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621949", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237505", + "ccsAlgorithm": "N/A", + "coverage": "7.24", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN060", - "filename": "m64136_211121_153454-bc1009.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02280-46c-2_S14_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02056_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02280-46c-2-2_S14_L004_R1_001-2_S14_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55264", - "mean": "19862", - "metadataAccession": "SRR23732275", - "min": "199", - "mmTag": false, - "n25": "18090", - "n50": "19721", - "n75": "22333", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613698", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.524621", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/m64136_211121_153454-bc1009.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17760", - "quartile50": "19254", - "quartile75": "21430", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-2_S14_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02056", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "28490874747", - "totalGbp": "28.49", - "totalReads": "1434407", + "title": "Illumina Sequencing of Omni-C Libraries of HG02280", + "totalBp": "22452549290", + "totalGbp": "22.45", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621950", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621950", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237505", + "ccsAlgorithm": "N/A", + "coverage": "7.24", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN079", - "filename": "m64136_220422_181133-bc1001.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02280-46c-2_S14_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02129_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02280-46c-2-2_S14_L004_R1_001-2_S14_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "65275", - "mean": "19191", - "metadataAccession": "SRR23732274", - "min": "139", - "mmTag": false, - "n25": "16939", - "n50": "19334", - "n75": "21674", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613698", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.471718", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02129/raw_data/PacBio_HiFi/m64136_220422_181133-bc1001.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16313", - "quartile50": "18805", - "quartile75": "20933", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/hic/HG02280-46c-2_S14_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02129", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "37306593554", - "totalGbp": "37.31", - "totalReads": "1943961", + "title": "Illumina Sequencing of Omni-C Libraries of HG02280", + "totalBp": "22450881162", + "totalGbp": "22.45", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621950", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621950", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267394", + "ccsAlgorithm": "N/A", + "coverage": "11.47", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN079", - "filename": "m64136_220424_050632-bc1001.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02293-54d-1_S7_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02129_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02293-54d-1-1_S7_L001_R1_001-1_S7_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56783", - "mean": "19216", - "metadataAccession": "SRR23732274", - "min": "95", - "mmTag": false, - "n25": "16979", - "n50": "19358", - "n75": "21704", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613700", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.507875", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02129/raw_data/PacBio_HiFi/m64136_220424_050632-bc1001.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16330", - "quartile50": "18825", - "quartile75": "20955", + "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-1_S7_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02129", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "32061676319", - "totalGbp": "32.06", - "totalReads": "1668439", + "title": "Illumina Sequencing of Omni-C Libraries of HG02293", + "totalBp": "35544148086", + "totalGbp": "35.54", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621950", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621950", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", - "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN079", - "filename": "m64136_220426_155627-bc1001.5mc.hifi_reads.bam", - "filetype": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267394", + "ccsAlgorithm": "N/A", + "coverage": "11.47", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02293-54d-1_S7_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02129_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02293-54d-1-1_S7_L001_R1_001-1_S7_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61990", - "mean": "19272", - "metadataAccession": "SRR23732274", - "min": "61", - "mmTag": false, - "n25": "17036", - "n50": "19403", - "n75": "21791", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613700", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.397108", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02129/raw_data/PacBio_HiFi/m64136_220426_155627-bc1001.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16361", - "quartile50": "18861", - "quartile75": "21022", + "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-1_S7_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02129", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "42004596679", - "totalGbp": "42", - "totalReads": "2179533", + "title": "Illumina Sequencing of Omni-C Libraries of HG02293", + "totalBp": "35543050827", + "totalGbp": "35.54", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621957", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621957", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267394", + "ccsAlgorithm": "N/A", + "coverage": "11.52", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64136_220518_004520-bc1008.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02293-54d-1_S7_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03225_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02293-54d-1-1_S7_L002_R1_001-1_S7_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56904", - "mean": "21381", - "metadataAccession": "SRR23732287", - "min": "83", - "mmTag": false, - "n25": "19083", - "n50": "21321", - "n75": "24508", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613701", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.494828", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/PacBio_HiFi/m64136_220518_004520-bc1008.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18637", - "quartile50": "20656", - "quartile75": "23529", + "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-1_S7_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03225", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "26980532443", - "totalGbp": "26.98", - "totalReads": "1261872", + "title": "Illumina Sequencing of Omni-C Libraries of HG02293", + "totalBp": "35698096103", + "totalGbp": "35.7", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267394", + "ccsAlgorithm": "N/A", + "coverage": "11.52", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "NG58", - "filename": "m64136_220617_195203-bc1010.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02293-54d-1_S7_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03195_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02293-54d-1-1_S7_L002_R1_001-1_S7_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "68687", - "mean": "20729", - "metadataAccession": "SRR23732288", - "min": "54", - "mmTag": false, - "n25": "17921", - "n50": "20557", - "n75": "24463", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613701", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.37701", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/m64136_220617_195203-bc1010.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17481", - "quartile50": "19529", - "quartile75": "23196", + "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-1_S7_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "38391026616", - "totalGbp": "38.39", - "totalReads": "1851955", + "title": "Illumina Sequencing of Omni-C Libraries of HG02293", + "totalBp": "35697002817", + "totalGbp": "35.7", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267394", + "ccsAlgorithm": "N/A", + "coverage": "10.96", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "NG58", - "filename": "m64136_220619_164654-bc1010.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02293-54d-1_S7_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03195_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02293-54d-1-1_S7_L003_R1_001-1_S7_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "64535", - "mean": "20666", - "metadataAccession": "SRR23732288", - "min": "52", - "mmTag": false, - "n25": "17895", - "n50": "20471", - "n75": "24342", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613702", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.501216", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/m64136_220619_164654-bc1010.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17464", - "quartile50": "19472", - "quartile75": "23096", + "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-1_S7_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "34900743310", - "totalGbp": "34.9", - "totalReads": "1688750", + "title": "Illumina Sequencing of Omni-C Libraries of HG02293", + "totalBp": "33986673544", + "totalGbp": "33.99", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267394", + "ccsAlgorithm": "N/A", + "coverage": "10.96", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "NG58", - "filename": "m64136_220621_134558-bc1010.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02293-54d-1_S7_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG03195_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02293-54d-1-1_S7_L003_R1_001-1_S7_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "69884", - "mean": "20880", - "metadataAccession": "SRR23732288", - "min": "139", - "mmTag": false, - "n25": "18042", - "n50": "20781", - "n75": "24628", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613702", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.404327", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/m64136_220621_134558-bc1010.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "17587", - "quartile50": "19710", - "quartile75": "23384", + "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-1_S7_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "32834403528", - "totalGbp": "32.83", - "totalReads": "1572497", + "title": "Illumina Sequencing of Omni-C Libraries of HG02293", + "totalBp": "33985769634", + "totalGbp": "33.99", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621951", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621951", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267394", + "ccsAlgorithm": "N/A", + "coverage": "10.72", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64136_220701_181202-bc1012.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02293-54d-1_S7_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02155_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02293-54d-1-1_S7_L004_R1_001-1_S7_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "63056", - "mean": "19653", - "metadataAccession": "SRR23732293", - "min": "69", - "mmTag": false, - "n25": "17224", - "n50": "19369", - "n75": "22944", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613703", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.517978", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/m64136_220701_181202-bc1012.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16848", - "quartile50": "18635", - "quartile75": "21767", + "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-1_S7_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02155", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "34332255688", - "totalGbp": "34.33", - "totalReads": "1746882", + "title": "Illumina Sequencing of Omni-C Libraries of HG02293", + "totalBp": "33242936617", + "totalGbp": "33.24", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621951", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621951", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267394", + "ccsAlgorithm": "N/A", + "coverage": "10.72", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64136_220703_150713-bc1012.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02293-54d-1_S7_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02155_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02293-54d-1-1_S7_L004_R1_001-1_S7_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56609", - "mean": "19601", - "metadataAccession": "SRR23732293", - "min": "61", - "mmTag": false, - "n25": "17196", - "n50": "19308", - "n75": "22847", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613703", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.402871", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/m64136_220703_150713-bc1012.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16826", - "quartile50": "18592", - "quartile75": "21674", + "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-1_S7_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02155", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "31298698030", - "totalGbp": "31.3", - "totalReads": "1596721", + "title": "Illumina Sequencing of Omni-C Libraries of HG02293", + "totalBp": "33241716084", + "totalGbp": "33.24", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621951", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621951", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267394", + "ccsAlgorithm": "N/A", + "coverage": "9.8", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64136_220705_120453-bc1012.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02293-54d-2_S8_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG02155_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02293-54d-2-2_S8_L001_R1_001-2_S8_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "64074", - "mean": "19740", - "metadataAccession": "SRR23732293", - "min": "219", - "mmTag": false, - "n25": "17269", - "n50": "19476", - "n75": "23090", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613704", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.530094", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/m64136_220705_120453-bc1012.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16881", - "quartile50": "18713", - "quartile75": "21906", + "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-2_S8_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02155", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "31584932406", - "totalGbp": "31.58", - "totalReads": "1599995", + "title": "Illumina Sequencing of Omni-C Libraries of HG02293", + "totalBp": "30389466772", + "totalGbp": "30.39", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621942", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621942", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267394", + "ccsAlgorithm": "N/A", + "coverage": "9.8", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64136_220708_205611-bc1016.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02293-54d-2_S8_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00323_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02293-54d-2-2_S8_L001_R1_001-2_S8_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61839", - "mean": "19187", - "metadataAccession": "SRR23732294", - "min": "61", - "mmTag": false, - "n25": "16743", - "n50": "19365", - "n75": "22473", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613704", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.35135", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/m64136_220708_205611-bc1016.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16250", - "quartile50": "18478", - "quartile75": "21546", + "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-2_S8_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00323", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "33478490857", - "totalGbp": "33.48", - "totalReads": "1744844", + "title": "Illumina Sequencing of Omni-C Libraries of HG02293", + "totalBp": "30390117754", + "totalGbp": "30.39", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621942", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621942", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267394", + "ccsAlgorithm": "N/A", + "coverage": "9.84", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64136_220710_175208-bc1016.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02293-54d-2_S8_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00323_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02293-54d-2-2_S8_L002_R1_001-2_S8_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "62063", - "mean": "19118", - "metadataAccession": "SRR23732294", - "min": "52", - "mmTag": false, - "n25": "16692", - "n50": "19270", - "n75": "22381", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613632", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.513867", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/m64136_220710_175208-bc1016.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16209", - "quartile50": "18393", - "quartile75": "21456", + "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-2_S8_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00323", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "33941426923", - "totalGbp": "33.94", - "totalReads": "1775333", + "title": "Illumina Sequencing of Omni-C Libraries of HG02293", + "totalBp": "30496612405", + "totalGbp": "30.5", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621942", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621942", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267394", + "ccsAlgorithm": "N/A", + "coverage": "9.84", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64136_220712_144943-bc1016.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02293-54d-2_S8_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00323_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02293-54d-2-2_S8_L002_R1_001-2_S8_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59292", - "mean": "19145", - "metadataAccession": "SRR23732294", - "min": "61", - "mmTag": false, - "n25": "16716", - "n50": "19311", - "n75": "22414", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613632", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.366042", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/m64136_220712_144943-bc1016.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "16227", - "quartile50": "18433", - "quartile75": "21488", + "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-2_S8_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00323", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "34715893912", - "totalGbp": "34.72", - "totalReads": "1813262", + "title": "Illumina Sequencing of Omni-C Libraries of HG02293", + "totalBp": "30497273150", + "totalGbp": "30.5", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621941", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621941", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267394", + "ccsAlgorithm": "N/A", + "coverage": "9.28", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64136_220715_182717-bc1018.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02293-54d-2_S8_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00140_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02293-54d-2-2_S8_L003_R1_001-2_S8_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "72755", - "mean": "21967", - "metadataAccession": "SRR23732295", - "min": "199", - "mmTag": false, - "n25": "19094", - "n50": "21721", - "n75": "25959", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613633", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.523132", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/m64136_220715_182717-bc1018.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18553", - "quartile50": "20771", - "quartile75": "24326", + "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-2_S8_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00140", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "32183433807", - "totalGbp": "32.18", - "totalReads": "1465069", + "title": "Illumina Sequencing of Omni-C Libraries of HG02293", + "totalBp": "28759993663", + "totalGbp": "28.76", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621941", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621941", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267394", + "ccsAlgorithm": "N/A", + "coverage": "9.28", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64136_220717_152248-bc1018.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02293-54d-2_S8_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00140_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02293-54d-2-2_S8_L003_R1_001-2_S8_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "68045", - "mean": "21979", - "metadataAccession": "SRR23732295", - "min": "51", - "mmTag": false, - "n25": "19100", - "n50": "21722", - "n75": "25987", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613633", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.331801", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/m64136_220717_152248-bc1018.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18559", - "quartile50": "20771", - "quartile75": "24336", + "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-2_S8_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00140", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "34068521767", - "totalGbp": "34.07", - "totalReads": "1550035", + "title": "Illumina Sequencing of Omni-C Libraries of HG02293", + "totalBp": "28761038569", + "totalGbp": "28.76", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621941", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621941", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267394", + "ccsAlgorithm": "N/A", + "coverage": "9.03", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64136_220719_122056-bc1018.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02293-54d-2_S8_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "HG00140_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02293-54d-2-2_S8_L004_R1_001-2_S8_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "73370", - "mean": "21889", - "metadataAccession": "SRR23732295", - "min": "137", - "mmTag": false, - "n25": "19047", - "n50": "21631", - "n75": "25828", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613634", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.534206", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/m64136_220719_122056-bc1018.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18518", - "quartile50": "20699", - "quartile75": "24213", + "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-2_S8_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00140", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "33866031514", - "totalGbp": "33.87", - "totalReads": "1547133", + "title": "Illumina Sequencing of Omni-C Libraries of HG02293", + "totalBp": "27985291020", + "totalGbp": "27.99", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621962", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621962", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267394", + "ccsAlgorithm": "N/A", + "coverage": "9.03", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64136_220726_203708-bc1020.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02293-54d-2_S8_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "NA20805_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02293-54d-2-2_S8_L004_R1_001-2_S8_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "66827", - "mean": "20660", - "metadataAccession": "SRR23732281", - "min": "133", - "mmTag": false, - "n25": "19189", - "n50": "20755", - "n75": "22563", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613634", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.364695", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/m64136_220726_203708-bc1020.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18923", - "quartile50": "20455", - "quartile75": "22209", + "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/hic/HG02293-54d-2_S8_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20805", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "37967752313", - "totalGbp": "37.97", - "totalReads": "1837659", + "title": "Illumina Sequencing of Omni-C Libraries of HG02293", + "totalBp": "27985846212", + "totalGbp": "27.99", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621962", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621962", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267395", + "ccsAlgorithm": "N/A", + "coverage": "4.77", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64136_220728_160902-bc1020.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02300-42a-1_S21_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "NA20805_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02300-42a-1-1_S21_L001_R1_001-1_S21_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "69098", - "mean": "20686", - "metadataAccession": "SRR23732281", - "min": "139", - "mmTag": false, - "n25": "19207", - "n50": "20776", - "n75": "22588", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613705", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.54504", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/m64136_220728_160902-bc1020.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18940", - "quartile50": "20477", - "quartile75": "22231", + "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-1_S21_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20805", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "41329526305", - "totalGbp": "41.33", - "totalReads": "1997924", + "title": "Illumina Sequencing of Omni-C Libraries of HG02300", + "totalBp": "14799769543", + "totalGbp": "14.8", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621962", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621962", - "ccsAlgorithm": "6.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267395", + "ccsAlgorithm": "N/A", + "coverage": "4.77", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64136_220730_113921-bc1020.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02300-42a-1_S21_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "NA20805_lib1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02300-42a-1-1_S21_L001_R1_001-1_S21_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "72987", - "mean": "20683", - "metadataAccession": "SRR23732281", - "min": "61", - "mmTag": false, - "n25": "19203", - "n50": "20770", - "n75": "22581", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613705", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.534988", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/m64136_220730_113921-bc1020.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2.2", - "productionYear": "YR3", - "quartile25": "18939", - "quartile50": "20471", - "quartile75": "22226", + "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-1_S21_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20805", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "41078853991", - "totalGbp": "41.08", - "totalReads": "1986077", + "title": "Illumina Sequencing of Omni-C Libraries of HG02300", + "totalBp": "14799529918", + "totalGbp": "14.8", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758779", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758779", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267395", + "ccsAlgorithm": "N/A", + "coverage": "3.91", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64457e_220825_195635-bc2051.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02300-42a-1_S21_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG00280.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02300-42a-1-1_S21_L002_R1_001-1_S21_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60934", - "mean": "20575", - "metadataAccession": "SRR23922658", - "min": "89", - "mmTag": false, - "n25": "18089", - "n50": "20753", - "n75": "24064", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613706", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.586909", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/PacBio_HiFi/m64457e_220825_195635-bc2051.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17523", - "quartile50": "19914", - "quartile75": "23058", + "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-1_S21_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00280", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "45904022245", - "totalGbp": "45.9", - "totalReads": "2231036", + "title": "Illumina Sequencing of Omni-C Libraries of HG02300", + "totalBp": "12119560720", + "totalGbp": "12.12", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267395", + "ccsAlgorithm": "N/A", + "coverage": "3.91", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64457e_220827_152226-bc2052.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02300-42a-1_S21_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG20752.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02300-42a-1-1_S21_L002_R1_001-1_S21_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57993", - "mean": "21252", - "metadataAccession": "SRR23922641", - "min": "88", - "mmTag": false, - "n25": "18633", - "n50": "21476", - "n75": "25034", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613706", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.540573", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/m64457e_220827_152226-bc2052.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "18001", - "quartile50": "20542", - "quartile75": "23905", + "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-1_S21_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "48188048219", - "totalGbp": "48.19", - "totalReads": "2267416", + "title": "Illumina Sequencing of Omni-C Libraries of HG02300", + "totalBp": "12119543983", + "totalGbp": "12.12", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267395", + "ccsAlgorithm": "N/A", + "coverage": "3.96", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64457e_220829_104034-bc2052.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02300-42a-1_S21_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG20752.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02300-42a-1-1_S21_L003_R1_001-1_S21_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "62512", - "mean": "21051", - "metadataAccession": "SRR23922641", - "min": "71", - "mmTag": false, - "n25": "18457", - "n50": "21225", - "n75": "24757", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613638", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.561484", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/m64457e_220829_104034-bc2052.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17851", - "quartile50": "20320", - "quartile75": "23631", + "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-1_S21_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "46944843952", - "totalGbp": "46.94", - "totalReads": "2229963", + "title": "Illumina Sequencing of Omni-C Libraries of HG02300", + "totalBp": "12272889488", + "totalGbp": "12.27", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267395", + "ccsAlgorithm": "N/A", + "coverage": "3.96", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64457e_220831_195843-bc2052.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02300-42a-1_S21_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG20752.HFSS", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02300-42a-1-1_S21_L003_R1_001-1_S21_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59695", - "mean": "20957", - "metadataAccession": "SRR23922641", - "min": "88", - "mmTag": false, - "n25": "18403", - "n50": "21119", - "n75": "24581", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613638", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.561617", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/m64457e_220831_195843-bc2052.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17815", - "quartile50": "20236", - "quartile75": "23481", + "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-1_S21_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "42154577403", - "totalGbp": "42.15", - "totalReads": "2011426", + "title": "Illumina Sequencing of Omni-C Libraries of HG02300", + "totalBp": "12272585778", + "totalGbp": "12.27", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267395", + "ccsAlgorithm": "N/A", + "coverage": "4.73", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "NG06", - "filename": "m64457e_220902_165459-bc2053.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02300-42a-1_S21_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG02922.HFSS2", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02300-42a-1-1_S21_L004_R1_001-1_S21_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "41854", - "mean": "20570", - "metadataAccession": "SRR23922663", - "min": "1212", - "mmTag": false, - "n25": "18780", - "n50": "22731", - "n75": "27224", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613639", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.581403", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m64457e_220902_165459-bc2053.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "16402", - "quartile50": "20700", - "quartile75": "25116", + "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-1_S21_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "195361726", - "totalGbp": "0.2", - "totalReads": "9497", + "title": "Illumina Sequencing of Omni-C Libraries of HG02300", + "totalBp": "14677091989", + "totalGbp": "14.68", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267395", + "ccsAlgorithm": "N/A", + "coverage": "4.73", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64457e_220902_165459-bc2055.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02300-42a-1_S21_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG18983.HFSS2", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02300-42a-1-1_S21_L004_R1_001-1_S21_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "76383", - "mean": "21122", - "metadataAccession": "SRR23922649", - "min": "79", - "mmTag": false, - "n25": "18608", - "n50": "21371", - "n75": "24756", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613639", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.549398", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m64457e_220902_165459-bc2055.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17996", - "quartile50": "20489", - "quartile75": "23724", + "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-1_S21_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "43050138465", - "totalGbp": "43.05", - "totalReads": "2038086", + "title": "Illumina Sequencing of Omni-C Libraries of HG02300", + "totalBp": "14676854580", + "totalGbp": "14.68", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267395", + "ccsAlgorithm": "N/A", + "coverage": "6.9", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "NG06", - "filename": "m64457e_220904_135104-bc2053.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02300-42a-2_S22_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG02922.HFSS2", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02300-42a-2-2_S22_L001_R1_001-2_S22_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "43604", - "mean": "21152", - "metadataAccession": "SRR23922663", - "min": "1163", - "mmTag": false, - "n25": "19118", - "n50": "23139", - "n75": "27684", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613640", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.539397", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m64457e_220904_135104-bc2053.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "16859", - "quartile50": "21228", - "quartile75": "25652", + "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-2_S22_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "194353188", - "totalGbp": "0.19", - "totalReads": "9188", + "title": "Illumina Sequencing of Omni-C Libraries of HG02300", + "totalBp": "21376618743", + "totalGbp": "21.38", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267395", + "ccsAlgorithm": "N/A", + "coverage": "6.9", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64457e_220904_135104-bc2055.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02300-42a-2_S22_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG18983.HFSS2", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02300-42a-2-2_S22_L001_R1_001-2_S22_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "66528", - "mean": "21337", - "metadataAccession": "SRR23922649", - "min": "82", - "mmTag": false, - "n25": "18786", - "n50": "21640", - "n75": "25068", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613640", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.50402", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m64457e_220904_135104-bc2055.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "18140", - "quartile50": "20727", - "quartile75": "24026", + "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-2_S22_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "42152212914", - "totalGbp": "42.15", - "totalReads": "1975484", + "title": "Illumina Sequencing of Omni-C Libraries of HG02300", + "totalBp": "21376118049", + "totalGbp": "21.38", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267395", + "ccsAlgorithm": "N/A", + "coverage": "5.56", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "NG06", - "filename": "m64457e_220906_104717-bc2053.5mc.hifi_reads.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02300-42a-2_S22_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG02922.HFSS2", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02300-42a-2-2_S22_L002_R1_001-2_S22_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "42061", - "mean": "19880", - "metadataAccession": "SRR23922663", - "min": "1321", - "mmTag": false, - "n25": "18159", - "n50": "22312", - "n75": "26640", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613641", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.530698", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m64457e_220906_104717-bc2053.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "15374", - "quartile50": "20075", - "quartile75": "24486", + "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-2_S22_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "200809444", - "totalGbp": "0.2", - "totalReads": "10101", + "title": "Illumina Sequencing of Omni-C Libraries of HG02300", + "totalBp": "17244890394", + "totalGbp": "17.24", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "6.3.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267395", + "ccsAlgorithm": "N/A", + "coverage": "5.56", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m64457e_220906_104717-bc2055.5mc.hifi_reads.bam", - "filetype": "N/A", + "filename": "HG02300-42a-2_S22_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG18983.HFSS2", - "libraryLayout": "single", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02300-42a-2-2_S22_L002_R1_001-2_S22_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58895", - "mean": "20897", - "metadataAccession": "SRR23922649", - "min": "88", - "mmTag": false, - "n25": "18385", - "n50": "21100", - "n75": "24496", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613641", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.496218", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m64457e_220906_104717-bc2055.5mc.hifi_reads.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P3.2", - "productionYear": "YR3", - "quartile25": "17794", - "quartile50": "20225", - "quartile75": "23449", + "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-2_S22_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "PippinHT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "42794312016", - "totalGbp": "42.79", - "totalReads": "2047793", + "title": "Illumina Sequencing of Omni-C Libraries of HG02300", + "totalBp": "17244701908", + "totalGbp": "17.24", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021612", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021612", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267395", + "ccsAlgorithm": "N/A", + "coverage": "5.68", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230428_224315_s2.hifi_reads.bc2091.bam", - "filetype": "N/A", + "filename": "HG02300-42a-2_S22_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19700.HFSS_m84046_230428_224315_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02300-42a-2-2_S22_L003_R1_001-2_S22_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57226", - "mean": "20222", - "metadataAccession": "SRR29483268", - "min": "84", - "mmTag": false, - "n25": "17815", - "n50": "20299", - "n75": "23660", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613642", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.548393", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19700/raw_data/PacBio_HiFi/m84046_230428_224315_s2.hifi_reads.bc2091.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17282", - "quartile50": "19474", - "quartile75": "22536", + "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-2_S22_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19700", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "43118953859", - "totalGbp": "43.12", - "totalReads": "2132234", + "title": "Illumina Sequencing of Omni-C Libraries of HG02300", + "totalBp": "17609457473", + "totalGbp": "17.61", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021628", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021628", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267395", + "ccsAlgorithm": "N/A", + "coverage": "5.68", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 27kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230428_224315_s2.hifi_reads.bc2095.bam", - "filetype": "N/A", + "filename": "HG02300-42a-2_S22_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG03611.HFSS_m84046_230428_224315_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02300-42a-2-2_S22_L003_R1_001-2_S22_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "70469", - "mean": "21240", - "metadataAccession": "SRR29483192", - "min": "97", - "mmTag": false, - "n25": "18844", - "n50": "21346", - "n75": "24661", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613642", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.507868", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03611/raw_data/PacBio_HiFi/m84046_230428_224315_s2.hifi_reads.bc2095.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "18299", - "quartile50": "20564", - "quartile75": "23620", + "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-2_S22_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03611", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "50725357081", - "totalGbp": "50.73", - "totalReads": "2388156", + "title": "Illumina Sequencing of Omni-C Libraries of HG02300", + "totalBp": "17608804712", + "totalGbp": "17.61", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021611", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021611", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267395", + "ccsAlgorithm": "N/A", + "coverage": "6.75", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230428_231421_s3.hifi_reads.bc2090.bam", - "filetype": "N/A", + "filename": "HG02300-42a-2_S22_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19682.HFSS_m84046_230428_231421_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02300-42a-2-2_S22_L004_R1_001-2_S22_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58162", - "mean": "21146", - "metadataAccession": "SRR29483097", - "min": "150", - "mmTag": false, - "n25": "18490", - "n50": "21366", - "n75": "25101", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613643", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.521605", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19682/raw_data/PacBio_HiFi/m84046_230428_231421_s3.hifi_reads.bc2090.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17804", - "quartile50": "20356", - "quartile75": "23795", + "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-2_S22_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19682", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MXL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "48098225913", - "totalGbp": "48.1", - "totalReads": "2274532", + "title": "Illumina Sequencing of Omni-C Libraries of HG02300", + "totalBp": "20918755729", + "totalGbp": "20.92", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021627", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021627", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267395", + "ccsAlgorithm": "N/A", + "coverage": "6.75", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230428_231421_s3.hifi_reads.bc2094.bam", - "filetype": "N/A", + "filename": "HG02300-42a-2_S22_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG21093.HFSS_m84046_230428_231421_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02300-42a-2-2_S22_L004_R1_001-2_S22_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "69875", - "mean": "19543", - "metadataAccession": "SRR29483130", - "min": "110", - "mmTag": false, - "n25": "17581", - "n50": "19752", - "n75": "22399", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613643", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.498707", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA21093/raw_data/PacBio_HiFi/m84046_230428_231421_s3.hifi_reads.bc2094.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17112", - "quartile50": "19145", - "quartile75": "21685", + "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/hic/HG02300-42a-2_S22_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21093", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "60257689766", - "totalGbp": "60.26", - "totalReads": "3083311", + "title": "Illumina Sequencing of Omni-C Libraries of HG02300", + "totalBp": "20918279897", + "totalGbp": "20.92", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021629", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021629", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797104", + "ccsAlgorithm": "N/A", + "coverage": "3.5", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230501_151821_s4.hifi_reads.bc2089.bam", - "filetype": "N/A", + "filename": "HG02391-1_S5_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG21106.HFSS_m84046_230501_151821_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02391-1_S5_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61270", - "mean": "20353", - "metadataAccession": "SRR29483079", - "min": "160", - "mmTag": false, - "n25": "17858", - "n50": "20434", - "n75": "23892", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242458", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.606866", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA21106/raw_data/PacBio_HiFi/m84046_230501_151821_s4.hifi_reads.bc2089.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17335", - "quartile50": "19580", - "quartile75": "22772", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-1_S5_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21106", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "62992755287", - "totalGbp": "62.99", - "totalReads": "3094861", + "title": "Illumina Sequencing of Omni-C Libraries of HG02391", + "totalBp": "10853036509", + "totalGbp": "10.85", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021613", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021613", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797104", + "ccsAlgorithm": "N/A", + "coverage": "3.5", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230501_151821_s4.hifi_reads.bc2092.bam", - "filetype": "N/A", + "filename": "HG02391-1_S5_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19390.HFSS_m84046_230501_151821_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02391-1_S5_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56423", - "mean": "19784", - "metadataAccession": "SRR29483235", - "min": "68", - "mmTag": false, - "n25": "17537", - "n50": "19855", - "n75": "22896", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242458", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.563404", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19390/raw_data/PacBio_HiFi/m84046_230501_151821_s4.hifi_reads.bc2092.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17066", - "quartile50": "19145", - "quartile75": "21977", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-1_S5_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19390", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "53643124518", - "totalGbp": "53.64", - "totalReads": "2711404", + "title": "Illumina Sequencing of Omni-C Libraries of HG02391", + "totalBp": "10852127037", + "totalGbp": "10.85", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021612", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021612", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797104", + "ccsAlgorithm": "N/A", + "coverage": "3.81", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230502_203455_s3.hifi_reads.bc2091.bam", - "filetype": "N/A", + "filename": "HG02391-1_S5_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19700.HFSS_m84046_230502_203455_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02391-1_S5_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60828", - "mean": "20519", - "metadataAccession": "SRR29483251", - "min": "308", - "mmTag": false, - "n25": "18012", - "n50": "20626", - "n75": "24141", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242457", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.6135", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19700/raw_data/PacBio_HiFi/m84046_230502_203455_s3.hifi_reads.bc2091.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17441", - "quartile50": "19741", - "quartile75": "22948", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-1_S5_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19700", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "49604792343", - "totalGbp": "49.6", - "totalReads": "2417394", + "title": "Illumina Sequencing of Omni-C Libraries of HG02391", + "totalBp": "11815698653", + "totalGbp": "11.82", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021628", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021628", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797104", + "ccsAlgorithm": "N/A", + "coverage": "3.81", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 27kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230502_203455_s3.hifi_reads.bc2095.bam", - "filetype": "N/A", + "filename": "HG02391-1_S5_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG03611.HFSS_m84046_230502_203455_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02391-1_S5_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61936", - "mean": "21530", - "metadataAccession": "SRR29483193", - "min": "90", - "mmTag": false, - "n25": "19051", - "n50": "21666", - "n75": "25125", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242457", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.58974", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03611/raw_data/PacBio_HiFi/m84046_230502_203455_s3.hifi_reads.bc2095.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "18474", - "quartile50": "20832", - "quartile75": "24030", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-1_S5_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03611", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "55038711682", - "totalGbp": "55.04", - "totalReads": "2556363", + "title": "Illumina Sequencing of Omni-C Libraries of HG02391", + "totalBp": "11815059895", + "totalGbp": "11.82", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021612", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021612", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797104", + "ccsAlgorithm": "N/A", + "coverage": "3.81", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230502_210601_s4.hifi_reads.bc2091.bam", - "filetype": "N/A", + "filename": "HG02391-1_S5_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19700.HFSS_m84046_230502_210601_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02391-1_S5_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "68960", - "mean": "20514", - "metadataAccession": "SRR29483269", - "min": "78", - "mmTag": false, - "n25": "18014", - "n50": "20622", - "n75": "24114", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242191", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.601405", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19700/raw_data/PacBio_HiFi/m84046_230502_210601_s4.hifi_reads.bc2091.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17443", - "quartile50": "19743", - "quartile75": "22936", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-1_S5_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19700", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "45253526042", - "totalGbp": "45.25", - "totalReads": "2205939", + "title": "Illumina Sequencing of Omni-C Libraries of HG02391", + "totalBp": "11814658427", + "totalGbp": "11.81", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021628", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021628", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797104", + "ccsAlgorithm": "N/A", + "coverage": "3.81", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 27kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230502_210601_s4.hifi_reads.bc2095.bam", - "filetype": "N/A", + "filename": "HG02391-1_S5_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG03611.HFSS_m84046_230502_210601_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02391-1_S5_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "64183", - "mean": "21525", - "metadataAccession": "SRR29483194", - "min": "163", - "mmTag": false, - "n25": "19055", - "n50": "21657", - "n75": "25096", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242191", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.584097", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03611/raw_data/PacBio_HiFi/m84046_230502_210601_s4.hifi_reads.bc2095.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "18482", - "quartile50": "20831", - "quartile75": "24004", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-1_S5_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03611", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "50186456480", - "totalGbp": "50.19", - "totalReads": "2331526", + "title": "Illumina Sequencing of Omni-C Libraries of HG02391", + "totalBp": "11813973287", + "totalGbp": "11.81", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021611", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021611", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797104", + "ccsAlgorithm": "N/A", + "coverage": "3.77", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230504_195327_s1.hifi_reads.bc2090.bam", - "filetype": "N/A", + "filename": "HG02391-1_S5_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19682.HFSS_m84046_230504_195327_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02391-1_S5_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60900", - "mean": "20862", - "metadataAccession": "SRR29483077", - "min": "111", - "mmTag": false, - "n25": "18285", - "n50": "21045", - "n75": "24676", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242190", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.620551", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19682/raw_data/PacBio_HiFi/m84046_230504_195327_s1.hifi_reads.bc2090.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17638", - "quartile50": "20087", - "quartile75": "23410", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-1_S5_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19682", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MXL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "52882168551", - "totalGbp": "52.88", - "totalReads": "2534850", + "title": "Illumina Sequencing of Omni-C Libraries of HG02391", + "totalBp": "11675066505", + "totalGbp": "11.68", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021627", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021627", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797104", + "ccsAlgorithm": "N/A", + "coverage": "3.77", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230504_195327_s1.hifi_reads.bc2094.bam", - "filetype": "N/A", + "filename": "HG02391-1_S5_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG21093.HFSS_m84046_230504_195327_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02391-1_S5_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55799", - "mean": "19393", - "metadataAccession": "SRR29483199", - "min": "124", - "mmTag": false, - "n25": "17466", - "n50": "19584", - "n75": "22193", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242190", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.590675", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA21093/raw_data/PacBio_HiFi/m84046_230504_195327_s1.hifi_reads.bc2094.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17008", - "quartile50": "18995", - "quartile75": "21488", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-1_S5_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21093", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "53155443118", - "totalGbp": "53.16", - "totalReads": "2740877", + "title": "Illumina Sequencing of Omni-C Libraries of HG02391", + "totalBp": "11674424204", + "totalGbp": "11.67", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021611", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021611", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797104", + "ccsAlgorithm": "N/A", + "coverage": "4.95", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230504_202347_s2.hifi_reads.bc2090.bam", - "filetype": "N/A", + "filename": "HG02391-2_S13_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19682.HFSS_m84046_230504_202347_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02391-2_S13_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57024", - "mean": "20838", - "metadataAccession": "SRR29483096", - "min": "172", - "mmTag": false, - "n25": "18264", - "n50": "21023", - "n75": "24652", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242189", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.577079", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19682/raw_data/PacBio_HiFi/m84046_230504_202347_s2.hifi_reads.bc2090.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17619", - "quartile50": "20059", - "quartile75": "23384", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-2_S13_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19682", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MXL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "53845834322", - "totalGbp": "53.85", - "totalReads": "2583948", + "title": "Illumina Sequencing of Omni-C Libraries of HG02391", + "totalBp": "15353640937", + "totalGbp": "15.35", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021627", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021627", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797104", + "ccsAlgorithm": "N/A", + "coverage": "4.95", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230504_202347_s2.hifi_reads.bc2094.bam", - "filetype": "N/A", + "filename": "HG02391-2_S13_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG21093.HFSS_m84046_230504_202347_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02391-2_S13_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56026", - "mean": "19376", - "metadataAccession": "SRR29483129", - "min": "123", - "mmTag": false, - "n25": "17449", - "n50": "19567", - "n75": "22172", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242189", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.549027", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA21093/raw_data/PacBio_HiFi/m84046_230504_202347_s2.hifi_reads.bc2094.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16991", - "quartile50": "18980", - "quartile75": "21470", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-2_S13_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21093", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "54112612451", - "totalGbp": "54.11", - "totalReads": "2792692", + "title": "Illumina Sequencing of Omni-C Libraries of HG02391", + "totalBp": "15352495826", + "totalGbp": "15.35", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021629", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021629", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797104", + "ccsAlgorithm": "N/A", + "coverage": "5.36", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230504_205453_s3.hifi_reads.bc2089.bam", - "filetype": "N/A", + "filename": "HG02391-2_S13_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG21106.HFSS_m84046_230504_205453_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02391-2_S13_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "62176", - "mean": "19950", - "metadataAccession": "SRR29483080", - "min": "120", - "mmTag": false, - "n25": "17581", - "n50": "19979", - "n75": "23306", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242188", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.565604", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA21106/raw_data/PacBio_HiFi/m84046_230504_205453_s3.hifi_reads.bc2089.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17104", - "quartile50": "19191", - "quartile75": "22218", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-2_S13_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21106", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "59248862130", - "totalGbp": "59.25", - "totalReads": "2969815", + "title": "Illumina Sequencing of Omni-C Libraries of HG02391", + "totalBp": "16613036709", + "totalGbp": "16.61", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021613", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021613", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797104", + "ccsAlgorithm": "N/A", + "coverage": "5.36", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230504_205453_s3.hifi_reads.bc2092.bam", - "filetype": "N/A", + "filename": "HG02391-2_S13_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19390.HFSS_m84046_230504_205453_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02391-2_S13_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53621", - "mean": "19446", - "metadataAccession": "SRR29483234", - "min": "102", - "mmTag": false, - "n25": "17278", - "n50": "19458", - "n75": "22398", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242188", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.521443", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19390/raw_data/PacBio_HiFi/m84046_230504_205453_s3.hifi_reads.bc2092.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16842", - "quartile50": "18801", - "quartile75": "21507", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-2_S13_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19390", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "55572902869", - "totalGbp": "55.57", - "totalReads": "2857712", + "title": "Illumina Sequencing of Omni-C Libraries of HG02391", + "totalBp": "16612259508", + "totalGbp": "16.61", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021629", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021629", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797104", + "ccsAlgorithm": "N/A", + "coverage": "5.36", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230504_212559_s4.hifi_reads.bc2089.bam", - "filetype": "N/A", + "filename": "HG02391-2_S13_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG21106.HFSS_m84046_230504_212559_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02391-2_S13_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "64740", - "mean": "20063", - "metadataAccession": "SRR29483078", - "min": "103", - "mmTag": false, - "n25": "17651", - "n50": "20094", - "n75": "23456", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242187", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.549475", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA21106/raw_data/PacBio_HiFi/m84046_230504_212559_s4.hifi_reads.bc2089.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17166", - "quartile50": "19289", - "quartile75": "22361", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-2_S13_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21106", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "58748127302", - "totalGbp": "58.75", - "totalReads": "2928042", + "title": "Illumina Sequencing of Omni-C Libraries of HG02391", + "totalBp": "16614538681", + "totalGbp": "16.61", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021613", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021613", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797104", + "ccsAlgorithm": "N/A", + "coverage": "5.36", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230504_212559_s4.hifi_reads.bc2092.bam", - "filetype": "N/A", + "filename": "HG02391-2_S13_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19390.HFSS_m84046_230504_212559_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02391-2_S13_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "54239", - "mean": "19527", - "metadataAccession": "SRR29483232", - "min": "150", - "mmTag": false, - "n25": "17341", - "n50": "19551", - "n75": "22514", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242187", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.563252", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19390/raw_data/PacBio_HiFi/m84046_230504_212559_s4.hifi_reads.bc2092.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16899", - "quartile50": "18884", - "quartile75": "21620", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-2_S13_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19390", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "55002385545", - "totalGbp": "55", - "totalReads": "2816659", + "title": "Illumina Sequencing of Omni-C Libraries of HG02391", + "totalBp": "16613671783", + "totalGbp": "16.61", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021611", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021611", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797104", + "ccsAlgorithm": "N/A", + "coverage": "5.29", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230508_193709_s3.hifi_reads.bc2090.bam", - "filetype": "N/A", + "filename": "HG02391-2_S13_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19682.HFSS_m84046_230508_193709_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02391-2_S13_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "67233", - "mean": "21052", - "metadataAccession": "SRR29483095", - "min": "166", - "mmTag": false, - "n25": "18421", - "n50": "21254", - "n75": "24954", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242186", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.584754", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19682/raw_data/PacBio_HiFi/m84046_230508_193709_s3.hifi_reads.bc2090.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17751", - "quartile50": "20266", - "quartile75": "23659", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-2_S13_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19682", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MXL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "39111213756", - "totalGbp": "39.11", - "totalReads": "1857772", + "title": "Illumina Sequencing of Omni-C Libraries of HG02391", + "totalBp": "16407373892", + "totalGbp": "16.41", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021627", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021627", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797104", + "ccsAlgorithm": "N/A", + "coverage": "5.29", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230508_193709_s3.hifi_reads.bc2094.bam", - "filetype": "N/A", + "filename": "HG02391-2_S13_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG21093.HFSS_m84046_230508_193709_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02391-2_S13_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53286", - "mean": "19496", - "metadataAccession": "SRR29483128", - "min": "440", - "mmTag": false, - "n25": "17551", - "n50": "19704", - "n75": "22326", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242186", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.555217", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA21093/raw_data/PacBio_HiFi/m84046_230508_193709_s3.hifi_reads.bc2094.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17081", - "quartile50": "19108", - "quartile75": "21617", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/hic/HG02391-2_S13_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21093", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "26413339853", - "totalGbp": "26.41", - "totalReads": "1354780", + "title": "Illumina Sequencing of Omni-C Libraries of HG02391", + "totalBp": "16406573130", + "totalGbp": "16.41", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021628", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021628", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021615", + "ccsAlgorithm": "N/A", + "coverage": "7.6", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 27kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230508_193709_s3.hifi_reads.bc2095.bam", - "filetype": "N/A", + "filename": "HG02392-1_FC1_S5_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG03611.HFSS_m84046_230508_193709_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02392-1_FC1_S5_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "65660", - "mean": "21373", - "metadataAccession": "SRR29483191", - "min": "87", - "mmTag": false, - "n25": "18945", - "n50": "21483", - "n75": "24862", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310883", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.518886", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03611/raw_data/PacBio_HiFi/m84046_230508_193709_s3.hifi_reads.bc2095.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "18387", - "quartile50": "20681", - "quartile75": "23796", + "path": "s3://human-pangenomics/working/HPRC/HG02392/raw_data/hic/HG02392-1_FC1_S5_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03611", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "36610166478", - "totalGbp": "36.61", - "totalReads": "1712887", + "title": "Illumina Sequencing of Omni-C Libraries of HG02392", + "totalBp": "23554018125", + "totalGbp": "23.55", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021629", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021629", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021615", + "ccsAlgorithm": "N/A", + "coverage": "7.6", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230508_200815_s4.hifi_reads.bc2089.bam", - "filetype": "N/A", + "filename": "HG02392-1_FC1_S5_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG21106.HFSS_m84046_230508_200815_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02392-1_FC1_S5_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "49086", - "mean": "20088", - "metadataAccession": "SRR29483081", - "min": "96", - "mmTag": false, - "n25": "17670", - "n50": "20133", - "n75": "23491", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310883", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.518886", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA21106/raw_data/PacBio_HiFi/m84046_230508_200815_s4.hifi_reads.bc2089.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17180", - "quartile50": "19327", - "quartile75": "22403", + "path": "s3://human-pangenomics/working/HPRC/HG02392/raw_data/hic/HG02392-1_FC1_S5_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21106", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "14313923906", - "totalGbp": "14.31", - "totalReads": "712531", + "title": "Illumina Sequencing of Omni-C Libraries of HG02392", + "totalBp": "23554018125", + "totalGbp": "23.55", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021612", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021612", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021615", + "ccsAlgorithm": "N/A", + "coverage": "7.5", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230508_200815_s4.hifi_reads.bc2091.bam", - "filetype": "N/A", + "filename": "HG02392-1_FC2_S5_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19700.HFSS_m84046_230508_200815_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02392-1_FC2_S5_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61204", - "mean": "20292", - "metadataAccession": "SRR29483250", - "min": "276", - "mmTag": false, - "n25": "17862", - "n50": "20373", - "n75": "23769", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310858", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.496335", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19700/raw_data/PacBio_HiFi/m84046_230508_200815_s4.hifi_reads.bc2091.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17320", - "quartile50": "19533", - "quartile75": "22629", + "path": "s3://human-pangenomics/working/HPRC/HG02392/raw_data/hic/HG02392-1_FC2_S5_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19700", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "49918934430", - "totalGbp": "49.92", - "totalReads": "2459967", + "title": "Illumina Sequencing of Omni-C Libraries of HG02392", + "totalBp": "23252301099", + "totalGbp": "23.25", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021613", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021613", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021615", + "ccsAlgorithm": "N/A", + "coverage": "7.5", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230508_200815_s4.hifi_reads.bc2092.bam", - "filetype": "N/A", + "filename": "HG02392-1_FC2_S5_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19390.HFSS_m84046_230508_200815_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02392-1_FC2_S5_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53448", - "mean": "19547", - "metadataAccession": "SRR29483233", - "min": "82", - "mmTag": false, - "n25": "17357", - "n50": "19579", - "n75": "22543", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310858", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.496335", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19390/raw_data/PacBio_HiFi/m84046_230508_200815_s4.hifi_reads.bc2092.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16911", - "quartile50": "18907", - "quartile75": "21651", + "path": "s3://human-pangenomics/working/HPRC/HG02392/raw_data/hic/HG02392-1_FC2_S5_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19390", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "32758719626", - "totalGbp": "32.76", - "totalReads": "1675885", + "title": "Illumina Sequencing of Omni-C Libraries of HG02392", + "totalBp": "23252301099", + "totalGbp": "23.25", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021626", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021626", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021615", + "ccsAlgorithm": "N/A", + "coverage": "5.04", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230513_215634_s1.hifi_reads.bc2001.bam", - "filetype": "N/A", + "filename": "HG02392-2_FC1_S6_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG18508.HFSS2_m84046_230513_215634_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02392-2_FC1_S6_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59160", - "mean": "21369", - "metadataAccession": "SRR29483061", - "min": "154", - "mmTag": false, - "n25": "18566", - "n50": "21565", - "n75": "25434", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310857", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.531586", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18508/raw_data/PacBio_HiFi/m84046_230513_215634_s1.hifi_reads.bc2001.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17884", - "quartile50": "20503", - "quartile75": "24079", + "path": "s3://human-pangenomics/working/HPRC/HG02392/raw_data/hic/HG02392-2_FC1_S6_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18508", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "65503405021", - "totalGbp": "65.5", - "totalReads": "3065312", + "title": "Illumina Sequencing of Omni-C Libraries of HG02392", + "totalBp": "15616342990", + "totalGbp": "15.62", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021610", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021610", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021615", + "ccsAlgorithm": "N/A", + "coverage": "5.04", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230513_215634_s1.hifi_reads.bc2014.bam", - "filetype": "N/A", + "filename": "HG02392-2_FC1_S6_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19776.HFSS_m84046_230513_215634_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02392-2_FC1_S6_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53733", - "mean": "18152", - "metadataAccession": "SRR29483245", - "min": "92", - "mmTag": false, - "n25": "15949", - "n50": "18213", - "n75": "21280", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310857", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.531586", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19776/raw_data/PacBio_HiFi/m84046_230513_215634_s1.hifi_reads.bc2014.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15498", - "quartile50": "17471", - "quartile75": "20321", + "path": "s3://human-pangenomics/working/HPRC/HG02392/raw_data/hic/HG02392-2_FC1_S6_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19776", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MXL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "64583935206", - "totalGbp": "64.58", - "totalReads": "3557844", + "title": "Illumina Sequencing of Omni-C Libraries of HG02392", + "totalBp": "15616342990", + "totalGbp": "15.62", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021626", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021626", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021615", + "ccsAlgorithm": "N/A", + "coverage": "4.95", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230516_205603_s2.hifi_reads.bc2001.bam", - "filetype": "N/A", + "filename": "HG02392-2_FC2_S6_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG18508.HFSS2_m84046_230516_205603_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02392-2_FC2_S6_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "63991", - "mean": "21225", - "metadataAccession": "SRR29483060", - "min": "106", - "mmTag": false, - "n25": "18440", - "n50": "21398", - "n75": "25254", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310856", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.552625", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18508/raw_data/PacBio_HiFi/m84046_230516_205603_s2.hifi_reads.bc2001.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17783", - "quartile50": "20349", - "quartile75": "23902", + "path": "s3://human-pangenomics/working/HPRC/HG02392/raw_data/hic/HG02392-2_FC2_S6_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18508", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "62040051803", - "totalGbp": "62.04", - "totalReads": "2922965", + "title": "Illumina Sequencing of Omni-C Libraries of HG02392", + "totalBp": "15330246008", + "totalGbp": "15.33", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021610", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021610", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021615", + "ccsAlgorithm": "N/A", + "coverage": "4.95", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230516_205603_s2.hifi_reads.bc2014.bam", - "filetype": "N/A", + "filename": "HG02392-2_FC2_S6_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19776.HFSS_m84046_230516_205603_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02392-2_FC2_S6_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "51132", - "mean": "18033", - "metadataAccession": "SRR29483246", - "min": "351", - "mmTag": false, - "n25": "15856", - "n50": "18070", - "n75": "21108", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310856", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.552625", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19776/raw_data/PacBio_HiFi/m84046_230516_205603_s2.hifi_reads.bc2014.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15421", - "quartile50": "17346", - "quartile75": "20151", + "path": "s3://human-pangenomics/working/HPRC/HG02392/raw_data/hic/HG02392-2_FC2_S6_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19776", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MXL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "64385618990", - "totalGbp": "64.39", - "totalReads": "3570399", + "title": "Illumina Sequencing of Omni-C Libraries of HG02392", + "totalBp": "15330246008", + "totalGbp": "15.33", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021626", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021626", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758786", + "ccsAlgorithm": "N/A", + "coverage": "12.65", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230516_212709_s3.hifi_reads.bc2001.bam", - "filetype": "N/A", + "filename": "HG02451-1_S2_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG18508.HFSS2_m84046_230516_212709_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02451-1_S2_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "71331", - "mean": "21275", - "metadataAccession": "SRR29483075", - "min": "72", - "mmTag": false, - "n25": "18476", - "n50": "21459", - "n75": "25360", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310855", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.40241", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18508/raw_data/PacBio_HiFi/m84046_230516_212709_s3.hifi_reads.bc2001.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17801", - "quartile50": "20391", - "quartile75": "23993", + "path": "s3://human-pangenomics/working/HPRC/HG02451/raw_data/hic/HG02451-1_S2_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18508", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "62737808226", - "totalGbp": "62.74", - "totalReads": "2948816", + "title": "Illumina Sequencing of Omni-C Libraries of HG02451", + "totalBp": "39210516394", + "totalGbp": "39.21", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021610", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021610", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758786", + "ccsAlgorithm": "N/A", + "coverage": "12.65", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230516_212709_s3.hifi_reads.bc2014.bam", - "filetype": "N/A", + "filename": "HG02451-1_S2_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19776.HFSS_m84046_230516_212709_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02451-1_S2_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "49787", - "mean": "18046", - "metadataAccession": "SRR29483265", - "min": "108", - "mmTag": false, - "n25": "15860", - "n50": "18087", - "n75": "21145", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310855", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.40241", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19776/raw_data/PacBio_HiFi/m84046_230516_212709_s3.hifi_reads.bc2014.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15422", - "quartile50": "17354", - "quartile75": "20179", + "path": "s3://human-pangenomics/working/HPRC/HG02451/raw_data/hic/HG02451-1_S2_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19776", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MXL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "64584192632", - "totalGbp": "64.58", - "totalReads": "3578712", + "title": "Illumina Sequencing of Omni-C Libraries of HG02451", + "totalBp": "39210516394", + "totalGbp": "39.21", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758778", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758778", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758786", + "ccsAlgorithm": "N/A", + "coverage": "11.75", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230517_211630_s4.hifi_reads.bc2012.bam", - "filetype": "N/A", + "filename": "HG02451-2_S8_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00099_1.HFSS_m84046_230517_211630_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02451-2_S8_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "54368", - "mean": "20651", - "metadataAccession": "SRR29483176", - "min": "331", - "mmTag": false, - "n25": "18153", - "n50": "20772", - "n75": "24191", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310854", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.389143", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/PacBio_HiFi/m84046_230517_211630_s4.hifi_reads.bc2012.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "17597", - "quartile50": "19914", - "quartile75": "23094", + "path": "s3://human-pangenomics/working/HPRC/HG02451/raw_data/hic/HG02451-2_S8_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00099", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "61484744616", - "totalGbp": "61.48", - "totalReads": "2977212", + "title": "Illumina Sequencing of Omni-C Libraries of HG02451", + "totalBp": "36412020257", + "totalGbp": "36.41", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758786", + "ccsAlgorithm": "N/A", + "coverage": "11.75", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230517_211630_s4.hifi_reads.bc2052.bam", - "filetype": "N/A", + "filename": "HG02451-2_S8_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG20752.HFSS_m84046_230517_211630_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02451-2_S8_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59161", - "mean": "20759", - "metadataAccession": "SRR29483087", - "min": "295", - "mmTag": false, - "n25": "18178", - "n50": "20893", - "n75": "24415", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310854", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.389143", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/m84046_230517_211630_s4.hifi_reads.bc2052.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "17598", - "quartile50": "19991", - "quartile75": "23277", + "path": "s3://human-pangenomics/working/HPRC/HG02451/raw_data/hic/HG02451-2_S8_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "66145642174", - "totalGbp": "66.15", - "totalReads": "3186209", + "title": "Illumina Sequencing of Omni-C Libraries of HG02451", + "totalBp": "36412020257", + "totalGbp": "36.41", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758780", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758780", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797105", + "ccsAlgorithm": "N/A", + "coverage": "33.27", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "SH045", - "filename": "m84046_230519_231055_s2.hifi_reads.bc1016.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02514-1_S5_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG00558.HFSS_m84046_230519_231055_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02514-1_S5_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55399", - "mean": "20498", - "metadataAccession": "SRR29483184", - "min": "142", - "mmTag": false, - "n25": "17480", - "n50": "21094", - "n75": "25469", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310853", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.425097", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m84046_230519_231055_s2.hifi_reads.bc1016.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "16361", - "quartile50": "19597", - "quartile75": "23660", + "path": "s3://human-pangenomics/working/HPRC/HG02514/raw_data/hic/HG02514-1_S5_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00558", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "25488070000", - "totalGbp": "25.49", - "totalReads": "1243430", + "title": "Illumina Sequencing of Omni-C Libraries of HG02514", + "totalBp": "103145633415", + "totalGbp": "103.15", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797105", + "ccsAlgorithm": "N/A", + "coverage": "33.27", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230519_231055_s2.hifi_reads.bc2061.bam", - "filetype": "N/A", + "filename": "HG02514-1_S5_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19043.HFSS_m84046_230519_231055_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02514-1_S5_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53274", - "mean": "20453", - "metadataAccession": "SRR29483132", - "min": "208", - "mmTag": false, - "n25": "17898", - "n50": "20663", - "n75": "24260", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310853", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.425097", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/m84046_230519_231055_s2.hifi_reads.bc2061.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "17235", - "quartile50": "19694", - "quartile75": "23011", + "path": "s3://human-pangenomics/working/HPRC/HG02514/raw_data/hic/HG02514-1_S5_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "27852231438", - "totalGbp": "27.85", - "totalReads": "1361729", + "title": "Illumina Sequencing of Omni-C Libraries of HG02514", + "totalBp": "103145633415", + "totalGbp": "103.15", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267395", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267395", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797105", + "ccsAlgorithm": "N/A", + "coverage": "25.89", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "PEL52", - "filename": "m84046_230519_231055_s2.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02514-2_S6_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02300.HFSS_m84046_230519_231055_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02514-2_S6_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53764", - "mean": "17649", - "metadataAccession": "SRR29483139", - "min": "175", - "mmTag": false, - "n25": "15297", - "n50": "17906", - "n75": "21212", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310852", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.393691", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/PacBio_HiFi/m84046_230519_231055_s2.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "14640", - "quartile50": "16956", - "quartile75": "20011", + "path": "s3://human-pangenomics/working/HPRC/HG02514/raw_data/hic/HG02514-2_S6_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02300", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "39698841965", - "totalGbp": "39.7", - "totalReads": "2249313", + "title": "Illumina Sequencing of Omni-C Libraries of HG02514", + "totalBp": "80256080824", + "totalGbp": "80.26", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797105", + "ccsAlgorithm": "N/A", + "coverage": "25.89", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230522_234602_s2.hifi_reads.bc2060.bam", - "filetype": "N/A", + "filename": "HG02514-2_S6_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG20905.HFSS_m84046_230522_234602_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02514-2_S6_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60727", - "mean": "19184", - "metadataAccession": "SRR29483135", - "min": "185", - "mmTag": false, - "n25": "16722", - "n50": "19366", - "n75": "22770", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310852", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.393691", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/m84046_230522_234602_s2.hifi_reads.bc2060.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "16112", - "quartile50": "18448", - "quartile75": "21605", + "path": "s3://human-pangenomics/working/HPRC/HG02514/raw_data/hic/HG02514-2_S6_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "21887464498", - "totalGbp": "21.89", - "totalReads": "1140898", + "title": "Illumina Sequencing of Omni-C Libraries of HG02514", + "totalBp": "80256080824", + "totalGbp": "80.26", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267384", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267384", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021657", + "ccsAlgorithm": "N/A", + "coverage": "7.88", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "PK16", - "filename": "m84046_230522_234602_s2.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02583-1_FC1_S15_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02683.HFSS_m84046_230522_234602_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02583-1_FC1_S15_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52194", - "mean": "18549", - "metadataAccession": "SRR29483140", - "min": "181", - "mmTag": false, - "n25": "16242", - "n50": "18658", - "n75": "21835", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310851", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.52969", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/PacBio_HiFi/m84046_230522_234602_s2.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "15716", - "quartile50": "17848", - "quartile75": "20774", + "path": "s3://human-pangenomics/working/HPRC/HG02583/raw_data/hic/HG02583-1_FC1_S15_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02683", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "83440743489", - "totalGbp": "83.44", - "totalReads": "4498174", + "title": "Illumina Sequencing of Omni-C Libraries of HG02583", + "totalBp": "24428567694", + "totalGbp": "24.43", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758790", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758790", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021657", + "ccsAlgorithm": "N/A", + "coverage": "7.88", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "GB110", - "filename": "m84046_230523_001708_s3.hifi_reads.bc1009.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02583-1_FC1_S15_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG03041.HFSS_m84046_230523_001708_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02583-1_FC1_S15_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58882", - "mean": "18583", - "metadataAccession": "SRR29483238", - "min": "167", - "mmTag": false, - "n25": "16090", - "n50": "18765", - "n75": "22221", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310851", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.52969", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m84046_230523_001708_s3.hifi_reads.bc1009.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "15448", - "quartile50": "17795", - "quartile75": "20967", + "path": "s3://human-pangenomics/working/HPRC/HG02583/raw_data/hic/HG02583-1_FC1_S15_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03041", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "38822969583", - "totalGbp": "38.82", - "totalReads": "2089108", + "title": "Illumina Sequencing of Omni-C Libraries of HG02583", + "totalBp": "24428567694", + "totalGbp": "24.43", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267397", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267397", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021657", + "ccsAlgorithm": "N/A", + "coverage": "8.04", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD61", - "filename": "m84046_230523_001708_s3.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02583-1_FC2_S15_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG04184.HFSS_m84046_230523_001708_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02583-1_FC2_S15_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52393", - "mean": "18495", - "metadataAccession": "SRR29483256", - "min": "281", - "mmTag": false, - "n25": "16174", - "n50": "18546", - "n75": "21687", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310850", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.528616", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m84046_230523_001708_s3.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "15678", - "quartile50": "17765", - "quartile75": "20650", + "path": "s3://human-pangenomics/working/HPRC/HG02583/raw_data/hic/HG02583-1_FC2_S15_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04184", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "44684878979", - "totalGbp": "44.68", - "totalReads": "2415981", + "title": "Illumina Sequencing of Omni-C Libraries of HG02583", + "totalBp": "24916814416", + "totalGbp": "24.92", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021657", + "ccsAlgorithm": "N/A", + "coverage": "8.04", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230531_214232_s2.hifi_reads.bc2011.bam", - "filetype": "N/A", + "filename": "HG02583-1_FC2_S15_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG18747_1.HFSS_m84046_230531_214232_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02583-1_FC2_S15_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50521", - "mean": "19634", - "metadataAccession": "SRR29483196", - "min": "342", - "mmTag": false, - "n25": "17420", - "n50": "19695", - "n75": "22725", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310850", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.528616", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/m84046_230531_214232_s2.hifi_reads.bc2011.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "16951", - "quartile50": "18998", - "quartile75": "21798", + "path": "s3://human-pangenomics/working/HPRC/HG02583/raw_data/hic/HG02583-1_FC2_S15_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "53004210316", - "totalGbp": "53", - "totalReads": "2699589", + "title": "Illumina Sequencing of Omni-C Libraries of HG02583", + "totalBp": "24916814416", + "totalGbp": "24.92", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021657", + "ccsAlgorithm": "N/A", + "coverage": "7.19", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "Y016", - "filename": "m84046_230531_214232_s2.hifi_reads.bc2021.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02583-2_FC1_S16_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "NA18522.HFSS_m84046_230531_214232_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02583-2_FC1_S16_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "47307", - "mean": "19649", - "metadataAccession": "SRR29483174", - "min": "262", - "mmTag": false, - "n25": "17082", - "n50": "19795", - "n75": "23308", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310848", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.493089", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/m84046_230531_214232_s2.hifi_reads.bc2021.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "16462", - "quartile50": "18854", - "quartile75": "22075", + "path": "s3://human-pangenomics/working/HPRC/HG02583/raw_data/hic/HG02583-2_FC1_S16_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "32010595867", - "totalGbp": "32.01", - "totalReads": "1629099", + "title": "Illumina Sequencing of Omni-C Libraries of HG02583", + "totalBp": "22281528139", + "totalGbp": "22.28", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758784", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758784", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021657", + "ccsAlgorithm": "N/A", + "coverage": "7.19", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230531_221339_s3.hifi_reads.bc2056.bam", - "filetype": "N/A", + "filename": "HG02583-2_FC1_S16_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG02040.HFSS2_m84046_230531_221339_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02583-2_FC1_S16_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58406", - "mean": "20593", - "metadataAccession": "SRR29483167", - "min": "310", - "mmTag": false, - "n25": "18188", - "n50": "20858", - "n75": "24325", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310848", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.493089", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/PacBio_HiFi/m84046_230531_221339_s3.hifi_reads.bc2056.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "17572", - "quartile50": "19939", - "quartile75": "23175", + "path": "s3://human-pangenomics/working/HPRC/HG02583/raw_data/hic/HG02583-2_FC1_S16_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02040", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "46891446851", - "totalGbp": "46.89", - "totalReads": "2277007", + "title": "Illumina Sequencing of Omni-C Libraries of HG02583", + "totalBp": "22281528139", + "totalGbp": "22.28", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267378", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267378", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021657", + "ccsAlgorithm": "N/A", + "coverage": "7.36", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "PR04", - "filename": "m84046_230531_221339_s3.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02583-2_FC2_S16_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG00642.HFSS_m84046_230531_221339_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02583-2_FC2_S16_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53665", - "mean": "18760", - "metadataAccession": "SRR29483231", - "min": "111", - "mmTag": false, - "n25": "16264", - "n50": "18927", - "n75": "22328", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310847", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.550728", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/PacBio_HiFi/m84046_230531_221339_s3.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "15656", - "quartile50": "17984", - "quartile75": "21135", + "path": "s3://human-pangenomics/working/HPRC/HG02583/raw_data/hic/HG02583-2_FC2_S16_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00642", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "52609914284", - "totalGbp": "52.61", - "totalReads": "2804349", + "title": "Illumina Sequencing of Omni-C Libraries of HG02583", + "totalBp": "22801913701", + "totalGbp": "22.8", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021637", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021637", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021657", + "ccsAlgorithm": "N/A", + "coverage": "7.36", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230602_203207_s4.hifi_reads.bc2043.bam", - "filetype": "N/A", + "filename": "HG02583-2_FC2_S16_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00126.HFSS_m84046_230602_203207_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02583-2_FC2_S16_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "72198", - "mean": "21838", - "metadataAccession": "SRR29483146", - "min": "114", - "mmTag": false, - "n25": "19339", - "n50": "21716", - "n75": "25155", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310847", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.550728", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00126/raw_data/PacBio_HiFi/m84046_230602_203207_s4.hifi_reads.bc2043.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "18891", - "quartile50": "20975", - "quartile75": "24050", + "path": "s3://human-pangenomics/working/HPRC/HG02583/raw_data/hic/HG02583-2_FC2_S16_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00126", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "31211081209", - "totalGbp": "31.21", - "totalReads": "1429169", + "title": "Illumina Sequencing of Omni-C Libraries of HG02583", + "totalBp": "22801913701", + "totalGbp": "22.8", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021641", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021641", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237507", + "ccsAlgorithm": "N/A", + "coverage": "9.47", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230602_203207_s4.hifi_reads.bc2044.bam", - "filetype": "N/A", + "filename": "HG02602-11a-1_S11_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00128.HFSS_m84046_230602_203207_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02602-11a-1-1_S11_L001_R1_001-1_S11_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56094", - "mean": "18972", - "metadataAccession": "SRR29483093", - "min": "146", - "mmTag": false, - "n25": "17354", - "n50": "18894", - "n75": "20960", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613644", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.464317", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00128/raw_data/PacBio_HiFi/m84046_230602_203207_s4.hifi_reads.bc2044.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17118", - "quartile50": "18544", - "quartile75": "20490", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-1_S11_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00128", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "33229202038", - "totalGbp": "33.23", - "totalReads": "1751436", + "title": "Illumina Sequencing of Omni-C Libraries of HG02602", + "totalBp": "29365153887", + "totalGbp": "29.37", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021638", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021638", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237507", + "ccsAlgorithm": "N/A", + "coverage": "9.47", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 29kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230602_203207_s4.hifi_reads.bc2045.bam", - "filetype": "N/A", + "filename": "HG02602-11a-1_S11_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00133.HFSS_m84046_230602_203207_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02602-11a-1-1_S11_L001_R1_001-1_S11_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "72239", - "mean": "24306", - "metadataAccession": "SRR29483106", - "min": "355", - "mmTag": false, - "n25": "21625", - "n50": "24531", - "n75": "28292", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613644", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.475527", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230602_203207_s4.hifi_reads.bc2045.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "20931", - "quartile50": "23631", - "quartile75": "27114", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-1_S11_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00133", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "31577829326", - "totalGbp": "31.58", - "totalReads": "1299153", + "title": "Illumina Sequencing of Omni-C Libraries of HG02602", + "totalBp": "29362515484", + "totalGbp": "29.36", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758790", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758790", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237507", + "ccsAlgorithm": "N/A", + "coverage": "9.34", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "GB110", - "filename": "m84046_230602_213334_s2.hifi_reads.bc1009.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02602-11a-1_S11_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG03041.HFSS_m84046_230602_213334_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02602-11a-1-1_S11_L002_R1_001-1_S11_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "44858", - "mean": "18547", - "metadataAccession": "SRR29483240", - "min": "51", - "mmTag": false, - "n25": "16061", - "n50": "18732", - "n75": "22169", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613645", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.515296", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m84046_230602_213334_s2.hifi_reads.bc1009.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "15426", - "quartile50": "17761", - "quartile75": "20918", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-1_S11_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03041", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "2054888434", - "totalGbp": "2.05", - "totalReads": "110788", + "title": "Illumina Sequencing of Omni-C Libraries of HG02602", + "totalBp": "28958425127", + "totalGbp": "28.96", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758780", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758780", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237507", + "ccsAlgorithm": "N/A", + "coverage": "9.34", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "SH045", - "filename": "m84046_230602_213334_s2.hifi_reads.bc1016.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02602-11a-1_S11_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG00558.HFSS_m84046_230602_213334_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02602-11a-1-1_S11_L002_R1_001-1_S11_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "51616", - "mean": "20238", - "metadataAccession": "SRR29483117", - "min": "293", - "mmTag": false, - "n25": "17264", - "n50": "20787", - "n75": "25096", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613645", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.492046", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m84046_230602_213334_s2.hifi_reads.bc1016.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "16196", - "quartile50": "19339", - "quartile75": "23325", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-1_S11_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00558", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "12401182090", - "totalGbp": "12.4", - "totalReads": "612757", + "title": "Illumina Sequencing of Omni-C Libraries of HG02602", + "totalBp": "28955656142", + "totalGbp": "28.96", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758791", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758791", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237507", + "ccsAlgorithm": "N/A", + "coverage": "9.18", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", - "familyId": "NG36", - "filename": "m84046_230602_213334_s2.hifi_reads.bc2018.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02602-11a-1_S11_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG03130.HFSS_m84046_230602_213334_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02602-11a-1-1_S11_L003_R1_001-1_S11_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "47072", - "mean": "19024", - "metadataAccession": "SRR29483150", - "min": "227", - "mmTag": false, - "n25": "16444", - "n50": "19248", - "n75": "22814", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613646", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.502609", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/PacBio_HiFi/m84046_230602_213334_s2.hifi_reads.bc2018.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "15757", - "quartile50": "18235", - "quartile75": "21520", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-1_S11_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03130", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "59153812312", - "totalGbp": "59.15", - "totalReads": "3109314", + "title": "Illumina Sequencing of Omni-C Libraries of HG02602", + "totalBp": "28457708516", + "totalGbp": "28.46", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267397", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267397", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237507", + "ccsAlgorithm": "N/A", + "coverage": "9.18", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD61", - "filename": "m84046_230602_213334_s2.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02602-11a-1_S11_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG04184.HFSS_m84046_230602_213334_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02602-11a-1-1_S11_L003_R1_001-1_S11_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "51573", - "mean": "18472", - "metadataAccession": "SRR29483255", - "min": "167", - "mmTag": false, - "n25": "16162", - "n50": "18517", - "n75": "21641", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613646", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.514056", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m84046_230602_213334_s2.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "15669", - "quartile50": "17747", - "quartile75": "20619", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-1_S11_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04184", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "16633605568", - "totalGbp": "16.63", - "totalReads": "900456", + "title": "Illumina Sequencing of Omni-C Libraries of HG02602", + "totalBp": "28454619073", + "totalGbp": "28.45", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758792", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758792", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237507", + "ccsAlgorithm": "N/A", + "coverage": "9.15", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230602_220440_s3.hifi_reads.bc2019.bam", - "filetype": "N/A", + "filename": "HG02602-11a-1_S11_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG03139.HFSS_m84046_230602_220440_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02602-11a-1-1_S11_L004_R1_001-1_S11_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "65959", - "mean": "20902", - "metadataAccession": "SRR29483267", - "min": "373", - "mmTag": false, - "n25": "17994", - "n50": "21265", - "n75": "25337", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613647", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.49621", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/m84046_230602_220440_s3.hifi_reads.bc2019.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "17129", - "quartile50": "20033", - "quartile75": "23812", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-1_S11_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03139", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "29658674895", - "totalGbp": "29.66", - "totalReads": "1418934", + "title": "Illumina Sequencing of Omni-C Libraries of HG02602", + "totalBp": "28354737124", + "totalGbp": "28.35", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267392", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267392", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237507", + "ccsAlgorithm": "N/A", + "coverage": "9.15", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "VN081", - "filename": "m84046_230602_220440_s3.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02602-11a-1_S11_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02135.HFSS3_m84046_230602_220440_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02602-11a-1-1_S11_L004_R1_001-1_S11_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53510", - "mean": "17594", - "metadataAccession": "SRR29483221", - "min": "183", - "mmTag": false, - "n25": "15520", - "n50": "17497", - "n75": "20254", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613647", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.472321", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m84046_230602_220440_s3.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "15163", - "quartile50": "16892", - "quartile75": "19394", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-1_S11_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02135", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "24443364448", - "totalGbp": "24.44", - "totalReads": "1389290", + "title": "Illumina Sequencing of Omni-C Libraries of HG02602", + "totalBp": "28352533479", + "totalGbp": "28.35", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237507", + "ccsAlgorithm": "N/A", + "coverage": "12.18", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "Y016", - "filename": "m84046_230603_204152_s4.hifi_reads.bc2021.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02602-11a-2_S12_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "NA18522.HFSS_m84046_230603_204152_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02602-11a-2-2_S12_L001_R1_001-2_S12_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "54099", - "mean": "19590", - "metadataAccession": "SRR29483104", - "min": "544", - "mmTag": false, - "n25": "17035", - "n50": "19715", - "n75": "23227", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613636", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.476914", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/m84046_230603_204152_s4.hifi_reads.bc2021.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "16418", - "quartile50": "18792", - "quartile75": "22005", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-2_S12_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "26512228758", - "totalGbp": "26.51", - "totalReads": "1353337", + "title": "Illumina Sequencing of Omni-C Libraries of HG02602", + "totalBp": "37744699467", + "totalGbp": "37.74", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267382", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267382", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237507", + "ccsAlgorithm": "N/A", + "coverage": "12.17", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 26kb fractionated gDNA", - "familyId": "VN080", - "filename": "m84046_230603_204152_s4.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02602-11a-2_S12_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02132.HFSSc_m84046_230603_204152_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02602-11a-2-2_S12_L001_R1_001-2_S12_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57148", - "mean": "19635", - "metadataAccession": "SRR29483254", - "min": "276", - "mmTag": false, - "n25": "17318", - "n50": "19591", - "n75": "22726", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613636", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.44853", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/PacBio_HiFi/m84046_230603_204152_s4.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "16890", - "quartile50": "18876", - "quartile75": "21735", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-2_S12_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02132", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "67412093607", - "totalGbp": "67.41", - "totalReads": "3433233", + "title": "Illumina Sequencing of Omni-C Libraries of HG02602", + "totalBp": "37741342030", + "totalGbp": "37.74", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758793", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758793", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237507", + "ccsAlgorithm": "N/A", + "coverage": "12.03", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230617_033126_s1.hifi_reads.bc2020.bam", - "filetype": "N/A", + "filename": "HG02602-11a-2_S12_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG03209.HFSS_m84046_230617_033126_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02602-11a-2-2_S12_L002_R1_001-2_S12_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53665", - "mean": "18251", - "metadataAccession": "SRR29483244", - "min": "171", - "mmTag": false, - "n25": "15993", - "n50": "18281", - "n75": "21360", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613635", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.495613", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/m84046_230617_033126_s1.hifi_reads.bc2020.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "15518", - "quartile50": "17532", - "quartile75": "20352", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-2_S12_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03209", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "54844107587", - "totalGbp": "54.84", - "totalReads": "3004908", + "title": "Illumina Sequencing of Omni-C Libraries of HG02602", + "totalBp": "37281863189", + "totalGbp": "37.28", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267391", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267391", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237507", + "ccsAlgorithm": "N/A", + "coverage": "12.03", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 19kb fractionated gDNA", - "familyId": "ST232", - "filename": "m84046_230617_033126_s1.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02602-11a-2_S12_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG04228.HFSS_D_m84046_230617_033126_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02602-11a-2-2_S12_L002_R1_001-2_S12_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59410", - "mean": "18494", - "metadataAccession": "SRR29483062", - "min": "279", - "mmTag": false, - "n25": "16138", - "n50": "18527", - "n75": "21669", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613635", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.497718", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/PacBio_HiFi/m84046_230617_033126_s1.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "15649", - "quartile50": "17739", - "quartile75": "20634", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-2_S12_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04228", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "STU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "47771626922", - "totalGbp": "47.77", - "totalReads": "2583006", + "title": "Illumina Sequencing of Omni-C Libraries of HG02602", + "totalBp": "37278326244", + "totalGbp": "37.28", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758795", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758795", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237507", + "ccsAlgorithm": "N/A", + "coverage": "11.85", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": "PK60", - "filename": "m84046_230617_040148_s2.hifi_reads.bc1001.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02602-11a-2_S12_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG03704.HFSS3_m84046_230617_040148_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02602-11a-2-2_S12_L003_R1_001-2_S12_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56891", - "mean": "19344", - "metadataAccession": "SRR29483160", - "min": "238", - "mmTag": false, - "n25": "16602", - "n50": "19545", - "n75": "23299", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613631", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.486889", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m84046_230617_040148_s2.hifi_reads.bc1001.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "15892", - "quartile50": "18445", - "quartile75": "21886", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-2_S12_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03704", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "13378951859", - "totalGbp": "13.38", - "totalReads": "691613", + "title": "Illumina Sequencing of Omni-C Libraries of HG02602", + "totalBp": "36730245703", + "totalGbp": "36.73", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237507", + "ccsAlgorithm": "N/A", + "coverage": "11.85", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "NG06", - "filename": "m84046_230617_040148_s2.hifi_reads.bc2053.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02602-11a-2_S12_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG02922.HFSS2_m84046_230617_040148_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02602-11a-2-2_S12_L003_R1_001-2_S12_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57502", - "mean": "20935", - "metadataAccession": "SRR29483121", - "min": "172", - "mmTag": false, - "n25": "18042", - "n50": "21259", - "n75": "25330", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613631", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.487179", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m84046_230617_040148_s2.hifi_reads.bc2053.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "17209", - "quartile50": "20041", - "quartile75": "23790", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-2_S12_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "20206254963", - "totalGbp": "20.21", - "totalReads": "965182", + "title": "Illumina Sequencing of Omni-C Libraries of HG02602", + "totalBp": "36726240469", + "totalGbp": "36.73", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758785", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758785", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237507", + "ccsAlgorithm": "N/A", + "coverage": "11.83", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230617_040148_s2.hifi_reads.bc2054.bam", - "filetype": "N/A", + "filename": "HG02602-11a-2_S12_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG02165.HFSS2_m84046_230617_040148_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02602-11a-2-2_S12_L004_R1_001-2_S12_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "54140", - "mean": "19386", - "metadataAccession": "SRR29483247", - "min": "279", - "mmTag": false, - "n25": "17301", - "n50": "19484", - "n75": "22463", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", - "oneHundredkbPlus": "N/A", - "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/PacBio_HiFi/m84046_230617_040148_s2.hifi_reads.bc2054.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "16852", - "quartile50": "18792", - "quartile75": "21539", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613629", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.475962", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-2_S12_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02165", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "45376049257", - "totalGbp": "45.38", - "totalReads": "2340645", + "title": "Illumina Sequencing of Omni-C Libraries of HG02602", + "totalBp": "36677215873", + "totalGbp": "36.68", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267395", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267395", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237507", + "ccsAlgorithm": "N/A", + "coverage": "11.83", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "PEL52", - "filename": "m84046_230617_040148_s2.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02602-11a-2_S12_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02300.HFSS_m84046_230617_040148_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02602-11a-2-2_S12_L004_R1_001-2_S12_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50401", - "mean": "17448", - "metadataAccession": "SRR29483187", - "min": "181", - "mmTag": false, - "n25": "15145", - "n50": "17663", - "n75": "20886", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613629", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.482189", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/PacBio_HiFi/m84046_230617_040148_s2.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "14524", - "quartile50": "16754", - "quartile75": "19719", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/hic/HG02602-11a-2_S12_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02300", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "32052364911", - "totalGbp": "32.05", - "totalReads": "1837009", + "title": "Illumina Sequencing of Omni-C Libraries of HG02602", + "totalBp": "36674379870", + "totalGbp": "36.67", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021637", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021637", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237508", + "ccsAlgorithm": "N/A", + "coverage": "6.74", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230617_043254_s3.hifi_reads.bc2043.bam", - "filetype": "N/A", + "filename": "HG02615-25b-1_S3_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00126.HFSS_m84046_230617_043254_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02615-25b-1-1_S3_L001_R1_001-1_S3_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "65475", - "mean": "21250", - "metadataAccession": "SRR29483144", - "min": "221", - "mmTag": false, - "n25": "19001", - "n50": "21095", - "n75": "24190", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613628", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.43481", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00126/raw_data/PacBio_HiFi/m84046_230617_043254_s3.hifi_reads.bc2043.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "18611", - "quartile50": "20482", - "quartile75": "23230", + "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-1_S3_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00126", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "24387352695", - "totalGbp": "24.39", - "totalReads": "1147622", + "title": "Illumina Sequencing of Omni-C Libraries of HG02615", + "totalBp": "20903231032", + "totalGbp": "20.9", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021641", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021641", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237508", + "ccsAlgorithm": "N/A", + "coverage": "6.74", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230617_043254_s3.hifi_reads.bc2044.bam", - "filetype": "N/A", + "filename": "HG02615-25b-1_S3_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00128.HFSS_m84046_230617_043254_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02615-25b-1-1_S3_L001_R1_001-1_S3_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "54809", - "mean": "18733", - "metadataAccession": "SRR29483094", - "min": "124", - "mmTag": false, - "n25": "17205", - "n50": "18656", - "n75": "20611", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613628", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.445679", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00128/raw_data/PacBio_HiFi/m84046_230617_043254_s3.hifi_reads.bc2044.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16984", - "quartile50": "18337", - "quartile75": "20173", + "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-1_S3_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00128", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "43116301374", - "totalGbp": "43.12", - "totalReads": "2301584", + "title": "Illumina Sequencing of Omni-C Libraries of HG02615", + "totalBp": "20894328415", + "totalGbp": "20.89", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021638", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021638", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237508", + "ccsAlgorithm": "N/A", + "coverage": "6.59", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 29kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230617_043254_s3.hifi_reads.bc2045.bam", - "filetype": "N/A", + "filename": "HG02615-25b-1_S3_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00133.HFSS_m84046_230617_043254_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02615-25b-1-1_S3_L002_R1_001-1_S3_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "63763", - "mean": "23515", - "metadataAccession": "SRR29483109", - "min": "204", - "mmTag": false, - "n25": "21024", - "n50": "23704", - "n75": "27160", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613627", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.468579", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230617_043254_s3.hifi_reads.bc2045.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "20391", - "quartile50": "22908", - "quartile75": "26092", + "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-1_S3_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00133", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "26568174953", - "totalGbp": "26.57", - "totalReads": "1129803", + "title": "Illumina Sequencing of Omni-C Libraries of HG02615", + "totalBp": "20422981930", + "totalGbp": "20.42", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021637", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021637", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237508", + "ccsAlgorithm": "N/A", + "coverage": "6.59", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230617_050400_s4.hifi_reads.bc2043.bam", - "filetype": "N/A", + "filename": "HG02615-25b-1_S3_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00126.HFSS_m84046_230617_050400_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02615-25b-1-1_S3_L002_R1_001-1_S3_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "66961", - "mean": "21345", - "metadataAccession": "SRR29483148", - "min": "441", - "mmTag": false, - "n25": "19050", - "n50": "21192", - "n75": "24330", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613627", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.493184", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00126/raw_data/PacBio_HiFi/m84046_230617_050400_s4.hifi_reads.bc2043.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "18650", - "quartile50": "20561", - "quartile75": "23358", + "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-1_S3_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00126", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "27014561078", - "totalGbp": "27.01", - "totalReads": "1265571", + "title": "Illumina Sequencing of Omni-C Libraries of HG02615", + "totalBp": "20413987000", + "totalGbp": "20.41", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021641", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021641", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237508", + "ccsAlgorithm": "N/A", + "coverage": "6.53", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230617_050400_s4.hifi_reads.bc2044.bam", - "filetype": "N/A", + "filename": "HG02615-25b-1_S3_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00128.HFSS_m84046_230617_050400_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02615-25b-1-1_S3_L003_R1_001-1_S3_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55452", - "mean": "18766", - "metadataAccession": "SRR29483092", - "min": "67", - "mmTag": false, - "n25": "17223", - "n50": "18688", - "n75": "20659", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613626", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.442761", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00128/raw_data/PacBio_HiFi/m84046_230617_050400_s4.hifi_reads.bc2044.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17002", - "quartile50": "18364", - "quartile75": "20215", + "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-1_S3_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00128", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "46970020324", - "totalGbp": "46.97", - "totalReads": "2502838", + "title": "Illumina Sequencing of Omni-C Libraries of HG02615", + "totalBp": "20254836767", + "totalGbp": "20.25", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021638", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021638", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237508", + "ccsAlgorithm": "N/A", + "coverage": "6.53", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 29kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230617_050400_s4.hifi_reads.bc2045.bam", - "filetype": "N/A", + "filename": "HG02615-25b-1_S3_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00133.HFSS_m84046_230617_050400_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02615-25b-1-1_S3_L003_R1_001-1_S3_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "71360", - "mean": "23674", - "metadataAccession": "SRR29483108", - "min": "496", - "mmTag": false, - "n25": "21132", - "n50": "23874", - "n75": "27395", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613626", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.461418", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230617_050400_s4.hifi_reads.bc2045.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "20482", - "quartile50": "23047", - "quartile75": "26301", + "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-1_S3_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00133", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "30053356453", - "totalGbp": "30.05", - "totalReads": "1269426", + "title": "Illumina Sequencing of Omni-C Libraries of HG02615", + "totalBp": "20245909857", + "totalGbp": "20.25", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021637", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021637", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237508", + "ccsAlgorithm": "N/A", + "coverage": "6.44", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230621_231827_s1.hifi_reads.bc2043.bam", - "filetype": "N/A", + "filename": "HG02615-25b-1_S3_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00126.HFSS_m84046_230621_231827_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02615-25b-1-1_S3_L004_R1_001-1_S3_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61779", - "mean": "21377", - "metadataAccession": "SRR29483149", - "min": "101", - "mmTag": false, - "n25": "19066", - "n50": "21223", - "n75": "24390", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613902", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.430394", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00126/raw_data/PacBio_HiFi/m84046_230621_231827_s1.hifi_reads.bc2043.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "18665", - "quartile50": "20584", - "quartile75": "23411", + "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-1_S3_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00126", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "55422349206", - "totalGbp": "55.42", - "totalReads": "2592602", + "title": "Illumina Sequencing of Omni-C Libraries of HG02615", + "totalBp": "19961900162", + "totalGbp": "19.96", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021638", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021638", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237508", + "ccsAlgorithm": "N/A", + "coverage": "6.44", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 29kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230621_231827_s1.hifi_reads.bc2045.bam", - "filetype": "N/A", + "filename": "HG02615-25b-1_S3_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00133.HFSS_m84046_230621_231827_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02615-25b-1-1_S3_L004_R1_001-1_S3_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "66619", - "mean": "23673", - "metadataAccession": "SRR29483110", - "min": "129", - "mmTag": false, - "n25": "21149", - "n50": "23887", - "n75": "27366", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613902", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.472073", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230621_231827_s1.hifi_reads.bc2045.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "20500", - "quartile50": "23070", - "quartile75": "26294", + "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-1_S3_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00133", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "44444296421", - "totalGbp": "44.44", - "totalReads": "1877396", + "title": "Illumina Sequencing of Omni-C Libraries of HG02615", + "totalBp": "19952830466", + "totalGbp": "19.95", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021637", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021637", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237508", + "ccsAlgorithm": "N/A", + "coverage": "5.17", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230621_234848_s2.hifi_reads.bc2043.bam", - "filetype": "N/A", + "filename": "HG02615-25b-2_S4_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00126.HFSS_m84046_230621_234848_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02615-25b-2-2_S4_L001_R1_001-2_S4_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61977", - "mean": "21432", - "metadataAccession": "SRR29483145", - "min": "87", - "mmTag": false, - "n25": "19090", - "n50": "21277", - "n75": "24496", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613781", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.468902", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00126/raw_data/PacBio_HiFi/m84046_230621_234848_s2.hifi_reads.bc2043.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "18681", - "quartile50": "20624", - "quartile75": "23493", + "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-2_S4_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00126", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "59614431287", - "totalGbp": "59.61", - "totalReads": "2781508", + "title": "Illumina Sequencing of Omni-C Libraries of HG02615", + "totalBp": "16028993362", + "totalGbp": "16.03", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021638", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021638", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237508", + "ccsAlgorithm": "N/A", + "coverage": "5.17", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 29kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230621_234848_s2.hifi_reads.bc2045.bam", - "filetype": "N/A", + "filename": "HG02615-25b-2_S4_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00133.HFSS_m84046_230621_234848_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02615-25b-2-2_S4_L001_R1_001-2_S4_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "66274", - "mean": "23765", - "metadataAccession": "SRR29483105", - "min": "131", - "mmTag": false, - "n25": "21210", - "n50": "23986", - "n75": "27519", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613781", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.526642", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230621_234848_s2.hifi_reads.bc2045.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "20553", - "quartile50": "23142", - "quartile75": "26421", + "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-2_S4_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00133", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "48277281549", - "totalGbp": "48.28", - "totalReads": "2031393", + "title": "Illumina Sequencing of Omni-C Libraries of HG02615", + "totalBp": "16022687684", + "totalGbp": "16.02", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021639", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021639", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237508", + "ccsAlgorithm": "N/A", + "coverage": "5.06", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 30kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230623_203534_s4.hifi_reads.bc2052.bam", - "filetype": "N/A", + "filename": "HG02615-25b-2_S4_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00290.HFSS_m84046_230623_203534_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02615-25b-2-2_S4_L002_R1_001-2_S4_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "76067", - "mean": "23190", - "metadataAccession": "SRR29483165", - "min": "81", - "mmTag": false, - "n25": "20100", - "n50": "23348", - "n75": "27768", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613780", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.490831", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00290/raw_data/PacBio_HiFi/m84046_230623_203534_s4.hifi_reads.bc2052.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "19302", - "quartile50": "22141", - "quartile75": "26079", + "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-2_S4_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00290", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "48925804619", - "totalGbp": "48.93", - "totalReads": "2109741", + "title": "Illumina Sequencing of Omni-C Libraries of HG02615", + "totalBp": "15683795932", + "totalGbp": "15.68", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021640", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021640", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237508", + "ccsAlgorithm": "N/A", + "coverage": "5.06", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 31kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230623_203534_s4.hifi_reads.bc2053.bam", - "filetype": "N/A", + "filename": "HG02615-25b-2_S4_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19443.HFSS_m84046_230623_203534_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02615-25b-2-2_S4_L002_R1_001-2_S4_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "65167", - "mean": "24043", - "metadataAccession": "SRR29483069", - "min": "395", - "mmTag": false, - "n25": "20589", - "n50": "24374", - "n75": "29576", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613780", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.515238", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19443/raw_data/PacBio_HiFi/m84046_230623_203534_s4.hifi_reads.bc2053.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "19576", - "quartile50": "22812", - "quartile75": "27402", + "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-2_S4_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19443", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "56713043234", - "totalGbp": "56.71", - "totalReads": "2358793", + "title": "Illumina Sequencing of Omni-C Libraries of HG02615", + "totalBp": "15677433707", + "totalGbp": "15.68", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758780", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758780", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237508", + "ccsAlgorithm": "N/A", + "coverage": "5.06", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "SH045", - "filename": "m84046_230623_210640_s1.hifi_reads.bc1016.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02615-25b-2_S4_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG00558.HFSS_m84046_230623_210640_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02615-25b-2-2_S4_L003_R1_001-2_S4_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60697", - "mean": "20024", - "metadataAccession": "SRR29483183", - "min": "257", - "mmTag": false, - "n25": "17054", - "n50": "20519", - "n75": "24782", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613898", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.491961", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m84046_230623_210640_s1.hifi_reads.bc1016.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "16028", - "quartile50": "19093", - "quartile75": "23018", + "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-2_S4_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00558", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "8815084955", - "totalGbp": "8.82", - "totalReads": "440223", + "title": "Illumina Sequencing of Omni-C Libraries of HG02615", + "totalBp": "15692482227", + "totalGbp": "15.69", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758792", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758792", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237508", + "ccsAlgorithm": "N/A", + "coverage": "5.06", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230623_210640_s1.hifi_reads.bc2019.bam", - "filetype": "N/A", + "filename": "HG02615-25b-2_S4_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG03139.HFSS_m84046_230623_210640_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02615-25b-2-2_S4_L003_R1_001-2_S4_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53529", - "mean": "20305", - "metadataAccession": "SRR29483073", - "min": "576", - "mmTag": false, - "n25": "17513", - "n50": "20548", - "n75": "24391", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613898", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.519644", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/m84046_230623_210640_s1.hifi_reads.bc2019.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "16759", - "quartile50": "19438", - "quartile75": "22972", + "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-2_S4_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03139", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "9203503033", - "totalGbp": "9.2", - "totalReads": "453258", + "title": "Illumina Sequencing of Omni-C Libraries of HG02615", + "totalBp": "15686118294", + "totalGbp": "15.69", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237508", + "ccsAlgorithm": "N/A", + "coverage": "4.94", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230623_210640_s1.hifi_reads.bc2055.bam", - "filetype": "N/A", + "filename": "HG02615-25b-2_S4_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG18983.HFSS2_m84046_230623_210640_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02615-25b-2-2_S4_L004_R1_001-2_S4_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57247", - "mean": "19849", - "metadataAccession": "SRR29483151", - "min": "91", - "mmTag": false, - "n25": "17522", - "n50": "19854", - "n75": "23031", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613897", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.485509", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m84046_230623_210640_s1.hifi_reads.bc2055.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "17052", - "quartile50": "19115", - "quartile75": "22023", + "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-2_S4_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "54169299224", - "totalGbp": "54.17", - "totalReads": "2729065", + "title": "Illumina Sequencing of Omni-C Libraries of HG02615", + "totalBp": "15315698466", + "totalGbp": "15.32", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237508", + "ccsAlgorithm": "N/A", + "coverage": "4.94", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230623_210640_s1.hifi_reads.bc2060.bam", - "filetype": "N/A", + "filename": "HG02615-25b-2_S4_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG20905.HFSS_m84046_230623_210640_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02615-25b-2-2_S4_L004_R1_001-2_S4_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57118", - "mean": "18993", - "metadataAccession": "SRR29483134", - "min": "1118", - "mmTag": false, - "n25": "16564", - "n50": "19129", - "n75": "22502", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613897", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.528476", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/m84046_230623_210640_s1.hifi_reads.bc2060.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "15983", - "quartile50": "18240", - "quartile75": "21338", + "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/hic/HG02615-25b-2_S4_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "15990076578", - "totalGbp": "15.99", - "totalReads": "841852", + "title": "Illumina Sequencing of Omni-C Libraries of HG02615", + "totalBp": "15309287164", + "totalGbp": "15.31", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267392", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267392", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267383", + "ccsAlgorithm": "N/A", + "coverage": "6.35", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "VN081", - "filename": "m84046_230623_210640_s1.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02647-36b-1_S19_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02135.HFSS3_m84046_230623_210640_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02647-36b-1-1_S19_L001_R1_001-1_S19_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "46428", - "mean": "17215", - "metadataAccession": "SRR29483223", - "min": "239", - "mmTag": false, - "n25": "15285", - "n50": "17087", - "n75": "19621", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613896", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.487939", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m84046_230623_210640_s1.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "14976", - "quartile50": "16553", - "quartile75": "18852", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-1_S19_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02135", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "6757940288", - "totalGbp": "6.76", - "totalReads": "392552", + "title": "Illumina Sequencing of Omni-C Libraries of HG02647", + "totalBp": "19699514527", + "totalGbp": "19.7", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267390", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267390", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267383", + "ccsAlgorithm": "N/A", + "coverage": "6.35", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "ST006", - "filename": "m84046_230623_213746_s2.hifi_reads.bc1003.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02647-36b-1_S19_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG04204.HFSS_m84046_230623_213746_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02647-36b-1-1_S19_L001_R1_001-1_S19_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60239", - "mean": "18830", - "metadataAccession": "SRR29483198", - "min": "232", - "mmTag": false, - "n25": "16521", - "n50": "18831", - "n75": "21925", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613896", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.527906", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/PacBio_HiFi/m84046_230623_213746_s2.hifi_reads.bc1003.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "16070", - "quartile50": "18088", - "quartile75": "20933", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-1_S19_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04204", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "STU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "62394610705", - "totalGbp": "62.39", - "totalReads": "3313451", + "title": "Illumina Sequencing of Omni-C Libraries of HG02647", + "totalBp": "19693914032", + "totalGbp": "19.69", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267396", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267396", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267383", + "ccsAlgorithm": "N/A", + "coverage": "6.22", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", - "familyId": "PK27", - "filename": "m84046_230623_213746_s2.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02647-36b-1_S19_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02738.HFSS_m84046_230623_213746_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02647-36b-1-1_S19_L002_R1_001-1_S19_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57240", - "mean": "18574", - "metadataAccession": "SRR29483190", - "min": "217", - "mmTag": false, - "n25": "16217", - "n50": "18680", - "n75": "21920", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613895", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.522316", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m84046_230623_213746_s2.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "15671", - "quartile50": "17839", - "quartile75": "20803", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-1_S19_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02738", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "49064316698", - "totalGbp": "49.06", - "totalReads": "2641558", + "title": "Illumina Sequencing of Omni-C Libraries of HG02647", + "totalBp": "19282854093", + "totalGbp": "19.28", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267388", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267388", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267383", + "ccsAlgorithm": "N/A", + "coverage": "6.22", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "ST111", - "filename": "m84046_230624_201459_s3.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02647-36b-1_S19_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG04115.HFSS_m84046_230624_201459_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02647-36b-1-1_S19_L002_R1_001-1_S19_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61259", - "mean": "18289", - "metadataAccession": "SRR29483220", - "min": "185", - "mmTag": false, - "n25": "15689", - "n50": "18817", - "n75": "22648", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613895", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.543797", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/PacBio_HiFi/m84046_230624_201459_s3.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "14713", - "quartile50": "17534", - "quartile75": "21059", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-1_S19_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04115", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "STU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "102791304261", - "totalGbp": "102.79", - "totalReads": "5620099", + "title": "Illumina Sequencing of Omni-C Libraries of HG02647", + "totalBp": "19277241850", + "totalGbp": "19.28", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267381", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267381", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267383", + "ccsAlgorithm": "N/A", + "coverage": "6.3", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "VN066", - "filename": "m84046_230624_204605_s4.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02647-36b-1_S19_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02074.HFSSb_m84046_230624_204605_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02647-36b-1-1_S19_L003_R1_001-1_S19_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56155", - "mean": "18938", - "metadataAccession": "SRR29483182", - "min": "150", - "mmTag": false, - "n25": "16883", - "n50": "18741", - "n75": "21445", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613894", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.482972", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/PacBio_HiFi/m84046_230624_204605_s4.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "16591", - "quartile50": "18220", - "quartile75": "20663", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-1_S19_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02074", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "110611791731", - "totalGbp": "110.61", - "totalReads": "5840667", + "title": "Illumina Sequencing of Omni-C Libraries of HG02647", + "totalBp": "19524552019", + "totalGbp": "19.52", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021639", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021639", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267383", + "ccsAlgorithm": "N/A", + "coverage": "6.3", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 30kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230627_201017_s1.hifi_reads.bc2052.bam", - "filetype": "N/A", + "filename": "HG02647-36b-1_S19_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00290.HFSS_m84046_230627_201017_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02647-36b-1-1_S19_L003_R1_001-1_S19_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "65547", - "mean": "23319", - "metadataAccession": "SRR29483113", - "min": "95", - "mmTag": false, - "n25": "20231", - "n50": "23502", - "n75": "27916", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613894", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.512521", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00290/raw_data/PacBio_HiFi/m84046_230627_201017_s1.hifi_reads.bc2052.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "19421", - "quartile50": "22295", - "quartile75": "26247", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-1_S19_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00290", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "52132844954", - "totalGbp": "52.13", - "totalReads": "2235593", + "title": "Illumina Sequencing of Omni-C Libraries of HG02647", + "totalBp": "19518860016", + "totalGbp": "19.52", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021640", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021640", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267383", + "ccsAlgorithm": "N/A", + "coverage": "6.08", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 31kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230627_201017_s1.hifi_reads.bc2053.bam", - "filetype": "N/A", + "filename": "HG02647-36b-1_S19_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19443.HFSS_m84046_230627_201017_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02647-36b-1-1_S19_L004_R1_001-1_S19_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "69047", - "mean": "24154", - "metadataAccession": "SRR29483067", - "min": "284", - "mmTag": false, - "n25": "20719", - "n50": "24513", - "n75": "29644", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613893", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.462602", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19443/raw_data/PacBio_HiFi/m84046_230627_201017_s1.hifi_reads.bc2053.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "19705", - "quartile50": "22975", - "quartile75": "27549", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-1_S19_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19443", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "45568679596", - "totalGbp": "45.57", - "totalReads": "1886575", + "title": "Illumina Sequencing of Omni-C Libraries of HG02647", + "totalBp": "18850891579", + "totalGbp": "18.85", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021639", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021639", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267383", + "ccsAlgorithm": "N/A", + "coverage": "6.08", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 30kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230627_204123_s2.hifi_reads.bc2052.bam", - "filetype": "N/A", + "filename": "HG02647-36b-1_S19_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00290.HFSS_m84046_230627_204123_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02647-36b-1-1_S19_L004_R1_001-1_S19_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "70791", - "mean": "23446", - "metadataAccession": "SRR29483166", - "min": "71", - "mmTag": false, - "n25": "20301", - "n50": "23645", - "n75": "28142", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613893", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.525568", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00290/raw_data/PacBio_HiFi/m84046_230627_204123_s2.hifi_reads.bc2052.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "19471", - "quartile50": "22398", - "quartile75": "26424", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-1_S19_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00290", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "59212119276", - "totalGbp": "59.21", - "totalReads": "2525417", + "title": "Illumina Sequencing of Omni-C Libraries of HG02647", + "totalBp": "18845139952", + "totalGbp": "18.85", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021640", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021640", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267383", + "ccsAlgorithm": "N/A", + "coverage": "8.3", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 31kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230627_204123_s2.hifi_reads.bc2053.bam", - "filetype": "N/A", + "filename": "HG02647-36b-2_S20_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19443.HFSS_m84046_230627_204123_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02647-36b-2-2_S20_L001_R1_001-2_S20_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "68598", - "mean": "24367", - "metadataAccession": "SRR29483068", - "min": "118", - "mmTag": false, - "n25": "20845", - "n50": "24761", - "n75": "30036", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613892", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.459788", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19443/raw_data/PacBio_HiFi/m84046_230627_204123_s2.hifi_reads.bc2053.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "19785", - "quartile50": "23141", - "quartile75": "27839", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-2_S20_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19443", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "52195530984", - "totalGbp": "52.2", - "totalReads": "2142052", + "title": "Illumina Sequencing of Omni-C Libraries of HG02647", + "totalBp": "25736108110", + "totalGbp": "25.74", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861239", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861239", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267383", + "ccsAlgorithm": "N/A", + "coverage": "8.3", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "BB68", - "filename": "m84046_230628_175536_s3.hifi_reads.bc2057.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02647-36b-2_S20_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02559.HFSS_m84046_230628_175536_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02647-36b-2-2_S20_L001_R1_001-2_S20_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "66441", - "mean": "20045", - "metadataAccession": "SRR29483119", - "min": "207", - "mmTag": false, - "n25": "17419", - "n50": "20184", - "n75": "23860", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613892", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.49437", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02559/raw_data/PacBio_HiFi/m84046_230628_175536_s3.hifi_reads.bc2057.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR1", - "quartile25": "16797", - "quartile50": "19190", - "quartile75": "22545", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-2_S20_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02559", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "48112123387", - "totalGbp": "48.11", - "totalReads": "2400146", + "title": "Illumina Sequencing of Omni-C Libraries of HG02647", + "totalBp": "25728408312", + "totalGbp": "25.73", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758787", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758787", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267383", + "ccsAlgorithm": "N/A", + "coverage": "8.12", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 27kb fractionated gDNA", - "familyId": "PK26", - "filename": "m84046_230628_175536_s3.hifi_reads.bc2062.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02647-36b-2_S20_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02735.HFSS_m84046_230628_175536_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02647-36b-2-2_S20_L002_R1_001-2_S20_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58136", - "mean": "19828", - "metadataAccession": "SRR29483203", - "min": "117", - "mmTag": false, - "n25": "17223", - "n50": "19884", - "n75": "23464", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613891", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.443205", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m84046_230628_175536_s3.hifi_reads.bc2062.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "16632", - "quartile50": "18951", - "quartile75": "22183", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-2_S20_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02735", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "35078406524", - "totalGbp": "35.08", - "totalReads": "1769118", + "title": "Illumina Sequencing of Omni-C Libraries of HG02647", + "totalBp": "25179964732", + "totalGbp": "25.18", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267392", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267392", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267383", + "ccsAlgorithm": "N/A", + "coverage": "8.12", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "VN081", - "filename": "m84046_230628_175536_s3.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02647-36b-2_S20_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02135.HFSS3_m84046_230628_175536_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02647-36b-2-2_S20_L002_R1_001-2_S20_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50299", - "mean": "17326", - "metadataAccession": "SRR29483222", - "min": "162", - "mmTag": false, - "n25": "15345", - "n50": "17194", - "n75": "19817", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613891", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.459316", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m84046_230628_175536_s3.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "15024", - "quartile50": "16644", - "quartile75": "19006", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-2_S20_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02135", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "9496849118", - "totalGbp": "9.5", - "totalReads": "548099", + "title": "Illumina Sequencing of Omni-C Libraries of HG02647", + "totalBp": "25172153085", + "totalGbp": "25.17", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861237", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861237", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267383", + "ccsAlgorithm": "N/A", + "coverage": "8.16", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", - "familyId": "BB21", - "filename": "m84046_230628_182559_s4.hifi_reads.bc2064.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02647-36b-2_S20_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02257.HFSS_m84046_230628_182559_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02647-36b-2-2_S20_L003_R1_001-2_S20_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "63975", - "mean": "19265", - "metadataAccession": "SRR29483131", - "min": "77", - "mmTag": false, - "n25": "17339", - "n50": "19332", - "n75": "22074", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613890", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.442448", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02257/raw_data/PacBio_HiFi/m84046_230628_182559_s4.hifi_reads.bc2064.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR1", - "quartile25": "16922", - "quartile50": "18740", - "quartile75": "21259", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-2_S20_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02257", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "76465650128", - "totalGbp": "76.47", - "totalReads": "3968964", + "title": "Illumina Sequencing of Omni-C Libraries of HG02647", + "totalBp": "25283674048", + "totalGbp": "25.28", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267396", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267396", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267383", + "ccsAlgorithm": "N/A", + "coverage": "8.15", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", - "familyId": "PK27", - "filename": "m84046_230628_182559_s4.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02647-36b-2_S20_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02738.HFSS_m84046_230628_182559_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02647-36b-2-2_S20_L003_R1_001-2_S20_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53905", - "mean": "18746", - "metadataAccession": "SRR29483189", - "min": "267", - "mmTag": false, - "n25": "16333", - "n50": "18868", - "n75": "22206", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613890", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.4828", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m84046_230628_182559_s4.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "15759", - "quartile50": "17990", - "quartile75": "21044", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-2_S20_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02738", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "36782838182", - "totalGbp": "36.78", - "totalReads": "1962110", + "title": "Illumina Sequencing of Omni-C Libraries of HG02647", + "totalBp": "25275830400", + "totalGbp": "25.28", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758794", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758794", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267383", + "ccsAlgorithm": "N/A", + "coverage": "7.94", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": "PK41", - "filename": "m84046_230628_210130_s1.bc2063--bc2063.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02647-36b-2_S20_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG03239.HFSS2_m84046_230628_210130_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02647-36b-2-2_S20_L004_R1_001-2_S20_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "54941", - "mean": "21468", - "metadataAccession": "SRR29483236", - "min": "74", - "mmTag": false, - "n25": "19138", - "n50": "21453", - "n75": "24638", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613889", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.456591", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/m84046_230628_210130_s1.bc2063--bc2063.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "18668", - "quartile50": "20762", - "quartile75": "23665", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-2_S20_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03239", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "42746369705", - "totalGbp": "42.75", - "totalReads": "1991153", + "title": "Illumina Sequencing of Omni-C Libraries of HG02647", + "totalBp": "24619843972", + "totalGbp": "24.62", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758783", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758783", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267383", + "ccsAlgorithm": "N/A", + "coverage": "7.94", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 30kb fractionated gDNA", - "familyId": "PR21", - "filename": "m84046_230628_210130_s1.bc2065--bc2065.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02647-36b-2_S20_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG01081.HFSS2_m84046_230628_210130_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02647-36b-2-2_S20_L004_R1_001-2_S20_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59312", - "mean": "20555", - "metadataAccession": "SRR29483122", - "min": "103", - "mmTag": false, - "n25": "17382", - "n50": "21006", - "n75": "25610", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613889", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.509505", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/m84046_230628_210130_s1.bc2065--bc2065.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "16320", - "quartile50": "19465", - "quartile75": "23603", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/hic/HG02647-36b-2_S20_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01081", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "41547174663", - "totalGbp": "41.55", - "totalReads": "2021262", + "title": "Illumina Sequencing of Omni-C Libraries of HG02647", + "totalBp": "24611897082", + "totalGbp": "24.61", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267395", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267395", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267384", + "ccsAlgorithm": "N/A", + "coverage": "4.75", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "PEL52", - "filename": "m84046_230628_210130_s1.default--default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02683-44a-1_S15_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02300.HFSS_m84046_230628_210130_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02683-44a-1-1_S15_L001_R1_001-1_S15_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52469", - "mean": "17467", - "metadataAccession": "SRR29483188", - "min": "381", - "mmTag": false, - "n25": "15155", - "n50": "17676", - "n75": "20913", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613886", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.584515", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/PacBio_HiFi/m84046_230628_210130_s1.default--default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "14533", - "quartile50": "16767", - "quartile75": "19744", + "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-1_S15_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02300", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "17104030297", - "totalGbp": "17.1", - "totalReads": "979167", + "title": "Illumina Sequencing of Omni-C Libraries of HG02683", + "totalBp": "14724594713", + "totalGbp": "14.72", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758779", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758779", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267384", + "ccsAlgorithm": "N/A", + "coverage": "4.75", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230628_213236_s2.hifi_reads.bc2051.bam", - "filetype": "N/A", + "filename": "HG02683-44a-1_S15_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00280.HFSS_m84046_230628_213236_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02683-44a-1-1_S15_L001_R1_001-1_S15_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "54674", - "mean": "19728", - "metadataAccession": "SRR29483120", - "min": "165", - "mmTag": false, - "n25": "17352", - "n50": "19722", - "n75": "22899", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613886", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.524019", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/PacBio_HiFi/m84046_230628_213236_s2.hifi_reads.bc2051.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "16892", - "quartile50": "18978", - "quartile75": "21911", + "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-1_S15_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00280", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "55575840201", - "totalGbp": "55.58", - "totalReads": "2816967", + "title": "Illumina Sequencing of Omni-C Libraries of HG02683", + "totalBp": "14724277427", + "totalGbp": "14.72", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267386", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267386", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267384", + "ccsAlgorithm": "N/A", + "coverage": "3.69", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", - "familyId": "BD37", - "filename": "m84046_230628_213236_s2.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02683-44a-1_S15_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG03927.HFSS_m84046_230628_213236_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02683-44a-1-1_S15_L002_R1_001-1_S15_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "49598", - "mean": "18609", - "metadataAccession": "SRR29483177", - "min": "155", - "mmTag": false, - "n25": "16352", - "n50": "18744", - "n75": "21771", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613885", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.591489", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/PacBio_HiFi/m84046_230628_213236_s2.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "15901", - "quartile50": "17968", - "quartile75": "20842", + "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-1_S15_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03927", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "49648184579", - "totalGbp": "49.65", - "totalReads": "2667914", + "title": "Illumina Sequencing of Omni-C Libraries of HG02683", + "totalBp": "11432705966", + "totalGbp": "11.43", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021639", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021639", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267384", + "ccsAlgorithm": "N/A", + "coverage": "3.69", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 30kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230630_233157_s3.bc2052--bc2052.bam", - "filetype": "N/A", + "filename": "HG02683-44a-1_S15_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00290.HFSS_m84046_230630_233157_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02683-44a-1-1_S15_L002_R1_001-1_S15_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61418", - "mean": "22851", - "metadataAccession": "SRR29483112", - "min": "248", - "mmTag": false, - "n25": "19901", - "n50": "23010", - "n75": "27163", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613885", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.525608", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00290/raw_data/PacBio_HiFi/m84046_230630_233157_s3.bc2052--bc2052.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "19152", - "quartile50": "21892", - "quartile75": "25649", + "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-1_S15_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00290", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "24710313352", - "totalGbp": "24.71", - "totalReads": "1081336", + "title": "Illumina Sequencing of Omni-C Libraries of HG02683", + "totalBp": "11432591604", + "totalGbp": "11.43", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021641", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021641", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267384", + "ccsAlgorithm": "N/A", + "coverage": "3.8", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230630_233157_s3.bc2069--bc2069.bam", - "filetype": "N/A", + "filename": "HG02683-44a-1_S15_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00128.HFSS2_m84046_230630_233157_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02683-44a-1-1_S15_L003_R1_001-1_S15_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "51374", - "mean": "17276", - "metadataAccession": "SRR29483091", - "min": "120", - "mmTag": false, - "n25": "15407", - "n50": "17139", - "n75": "19609", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613884", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.585145", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00128/raw_data/PacBio_HiFi/m84046_230630_233157_s3.bc2069--bc2069.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15138", - "quartile50": "16658", - "quartile75": "18930", + "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-1_S15_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00128", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "82225293457", - "totalGbp": "82.23", - "totalReads": "4759375", + "title": "Illumina Sequencing of Omni-C Libraries of HG02683", + "totalBp": "11780052826", + "totalGbp": "11.78", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021654", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021654", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267384", + "ccsAlgorithm": "N/A", + "coverage": "3.8", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230701_000218_s4.hifi_reads.bc2048.bam", - "filetype": "N/A", + "filename": "HG02683-44a-1_S15_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00350.HFSS_m84046_230701_000218_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02683-44a-1-1_S15_L003_R1_001-1_S15_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "66787", - "mean": "18297", - "metadataAccession": "SRR29483126", - "min": "78", - "mmTag": false, - "n25": "16087", - "n50": "18236", - "n75": "21243", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613884", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.56278", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00350/raw_data/PacBio_HiFi/m84046_230701_000218_s4.hifi_reads.bc2048.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15669", - "quartile50": "17546", - "quartile75": "20257", + "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-1_S15_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00350", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "65979378041", - "totalGbp": "65.98", - "totalReads": "3605979", + "title": "Illumina Sequencing of Omni-C Libraries of HG02683", + "totalBp": "11779678581", + "totalGbp": "11.78", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021640", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021640", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267384", + "ccsAlgorithm": "N/A", + "coverage": "4.61", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 31kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230701_000218_s4.hifi_reads.bc2053.bam", - "filetype": "N/A", + "filename": "HG02683-44a-1_S15_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19443.HFSS_m84046_230701_000218_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02683-44a-1-1_S15_L004_R1_001-1_S15_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "63048", - "mean": "23566", - "metadataAccession": "SRR29483066", - "min": "283", - "mmTag": false, - "n25": "20294", - "n50": "23869", - "n75": "28673", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613883", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.578335", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19443/raw_data/PacBio_HiFi/m84046_230701_000218_s4.hifi_reads.bc2053.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "19361", - "quartile50": "22443", - "quartile75": "26745", + "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-1_S15_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19443", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "26416408863", - "totalGbp": "26.42", - "totalReads": "1120935", + "title": "Illumina Sequencing of Omni-C Libraries of HG02683", + "totalBp": "14303426953", + "totalGbp": "14.3", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758789", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758789", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267384", + "ccsAlgorithm": "N/A", + "coverage": "4.61", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "PK35", - "filename": "m84046_230701_003325_s1.hifi_reads.bc2058.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02683-44a-1_S15_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG03017.HFSS2_m84046_230701_003325_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02683-44a-1-1_S15_L004_R1_001-1_S15_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53663", - "mean": "20647", - "metadataAccession": "SRR29483141", - "min": "86", - "mmTag": false, - "n25": "18003", - "n50": "20636", - "n75": "24265", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613883", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.557337", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m84046_230701_003325_s1.hifi_reads.bc2058.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "17449", - "quartile50": "19740", - "quartile75": "22995", + "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-1_S15_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03017", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "27229904923", - "totalGbp": "27.23", - "totalReads": "1318825", + "title": "Illumina Sequencing of Omni-C Libraries of HG02683", + "totalBp": "14303146146", + "totalGbp": "14.3", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267393", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267393", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267384", + "ccsAlgorithm": "N/A", + "coverage": "5.43", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 18kb fractionated gDNA", - "familyId": "BB03", - "filename": "m84046_230701_003325_s1.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02683-44a-2_S16_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG01884.HFSS_m84046_230701_003325_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02683-44a-2-2_S16_L001_R1_001-2_S16_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58056", - "mean": "17381", - "metadataAccession": "SRR29483163", - "min": "169", - "mmTag": false, - "n25": "15360", - "n50": "17295", - "n75": "19991", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613630", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.566428", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/PacBio_HiFi/m84046_230701_003325_s1.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "14997", - "quartile50": "16702", - "quartile75": "19146", + "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-2_S16_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01884", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "42656028040", - "totalGbp": "42.66", - "totalReads": "2454075", + "title": "Illumina Sequencing of Omni-C Libraries of HG02683", + "totalBp": "16835958252", + "totalGbp": "16.84", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021654", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021654", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267384", + "ccsAlgorithm": "N/A", + "coverage": "5.43", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230703_222200_s3.hifi_reads.bc2048.bam", - "filetype": "N/A", + "filename": "HG02683-44a-2_S16_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00350.HFSS_m84046_230703_222200_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02683-44a-2-2_S16_L001_R1_001-2_S16_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "54183", - "mean": "18308", - "metadataAccession": "SRR29483185", - "min": "101", - "mmTag": false, - "n25": "16096", - "n50": "18257", - "n75": "21259", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613630", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.517295", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00350/raw_data/PacBio_HiFi/m84046_230703_222200_s3.hifi_reads.bc2048.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15675", - "quartile50": "17565", - "quartile75": "20287", + "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-2_S16_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00350", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "117048570883", - "totalGbp": "117.05", - "totalReads": "6393106", + "title": "Illumina Sequencing of Omni-C Libraries of HG02683", + "totalBp": "16835558874", + "totalGbp": "16.84", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758787", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758787", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267384", + "ccsAlgorithm": "N/A", + "coverage": "4.24", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 27kb fractionated gDNA", - "familyId": "PK26", - "filename": "m84046_230703_225306_s4.hifi_reads.bc2062.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02683-44a-2_S16_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02735.HFSS_m84046_230703_225306_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02683-44a-2-2_S16_L002_R1_001-2_S16_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "68232", - "mean": "19634", - "metadataAccession": "SRR29483204", - "min": "80", - "mmTag": false, - "n25": "17093", - "n50": "19661", - "n75": "23147", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613882", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.580342", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m84046_230703_225306_s4.hifi_reads.bc2062.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "16531", - "quartile50": "18772", - "quartile75": "21903", + "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-2_S16_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02735", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "7992405067", - "totalGbp": "7.99", - "totalReads": "407052", + "title": "Illumina Sequencing of Omni-C Libraries of HG02683", + "totalBp": "13143433747", + "totalGbp": "13.14", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758794", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758794", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267384", + "ccsAlgorithm": "N/A", + "coverage": "4.24", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": "PK41", - "filename": "m84046_230703_225306_s4.hifi_reads.bc2063.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02683-44a-2_S16_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG03239.HFSS2_m84046_230703_225306_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02683-44a-2-2_S16_L002_R1_001-2_S16_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60287", - "mean": "21430", - "metadataAccession": "SRR29483237", - "min": "195", - "mmTag": false, - "n25": "19102", - "n50": "21406", - "n75": "24603", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613882", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.554659", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/m84046_230703_225306_s4.hifi_reads.bc2063.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "18634", - "quartile50": "20721", - "quartile75": "23619", + "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-2_S16_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03239", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "13194840551", - "totalGbp": "13.19", - "totalReads": "615696", + "title": "Illumina Sequencing of Omni-C Libraries of HG02683", + "totalBp": "13143302143", + "totalGbp": "13.14", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267389", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267389", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267384", + "ccsAlgorithm": "N/A", + "coverage": "4.33", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", - "familyId": "ST203", - "filename": "m84046_230703_225306_s4.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02683-44a-2_S16_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG04199.HFSS_m84046_230703_225306_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02683-44a-2-2_S16_L003_R1_001-2_S16_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "64393", - "mean": "17690", - "metadataAccession": "SRR29483253", - "min": "122", - "mmTag": false, - "n25": "15156", - "n50": "18235", - "n75": "21988", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613881", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.599722", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/PacBio_HiFi/m84046_230703_225306_s4.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "14184", - "quartile50": "16954", - "quartile75": "20428", + "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-2_S16_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04199", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "STU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "93321357983", - "totalGbp": "93.32", - "totalReads": "5275176", + "title": "Illumina Sequencing of Omni-C Libraries of HG02683", + "totalBp": "13427045391", + "totalGbp": "13.43", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758781", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758781", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267384", + "ccsAlgorithm": "N/A", + "coverage": "4.33", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": "PR03", - "filename": "m84046_230707_192442_s1.hifi_reads.bc2059.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02683-44a-2_S16_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG00639.HFSS2_m84046_230707_192442_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02683-44a-2-2_S16_L003_R1_001-2_S16_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59856", - "mean": "20556", - "metadataAccession": "SRR29483089", - "min": "92", - "mmTag": false, - "n25": "18180", - "n50": "20509", - "n75": "23778", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613881", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.563412", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/m84046_230707_192442_s1.hifi_reads.bc2059.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "17709", - "quartile50": "19769", - "quartile75": "22709", + "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-2_S16_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00639", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "69026709448", - "totalGbp": "69.03", - "totalReads": "3357938", + "title": "Illumina Sequencing of Omni-C Libraries of HG02683", + "totalBp": "13426617380", + "totalGbp": "13.43", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758787", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758787", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267384", + "ccsAlgorithm": "N/A", + "coverage": "5.25", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 27kb fractionated gDNA", - "familyId": "PK26", - "filename": "m84046_230707_192442_s1.hifi_reads.bc2062.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02683-44a-2_S16_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02735.HFSS_m84046_230707_192442_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02683-44a-2-2_S16_L004_R1_001-2_S16_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57257", - "mean": "19528", - "metadataAccession": "SRR29483201", - "min": "121", - "mmTag": false, - "n25": "17018", - "n50": "19561", - "n75": "22975", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613880", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.576922", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m84046_230707_192442_s1.hifi_reads.bc2062.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "16472", - "quartile50": "18685", - "quartile75": "21775", + "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-2_S16_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02735", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "8797263927", - "totalGbp": "8.8", - "totalReads": "450494", + "title": "Illumina Sequencing of Omni-C Libraries of HG02683", + "totalBp": "16275750862", + "totalGbp": "16.28", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267393", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267393", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267384", + "ccsAlgorithm": "N/A", + "coverage": "5.25", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 18kb fractionated gDNA", - "familyId": "BB03", - "filename": "m84046_230707_192442_s1.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02683-44a-2_S16_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG01884.HFSS_m84046_230707_192442_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02683-44a-2-2_S16_L004_R1_001-2_S16_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "48493", - "mean": "17266", - "metadataAccession": "SRR29483099", - "min": "326", - "mmTag": false, - "n25": "15291", - "n50": "17180", - "n75": "19819", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613880", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.527558", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/PacBio_HiFi/m84046_230707_192442_s1.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "14941", - "quartile50": "16599", - "quartile75": "18996", + "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/hic/HG02683-44a-2_S16_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01884", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "8216138148", - "totalGbp": "8.22", - "totalReads": "475838", + "title": "Illumina Sequencing of Omni-C Libraries of HG02683", + "totalBp": "16275400010", + "totalGbp": "16.28", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861238", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861238", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237509", + "ccsAlgorithm": "N/A", + "coverage": "3.3", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 37kb fractionated gDNA", - "familyId": "BB55", - "filename": "m84046_230707_195504_s2.hifi_reads.bc2067.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02698-18b-1_S19_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02486.HFSS_m84046_230707_195504_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02698-18b-1-1_S19_L001_R1_001-1_S19_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "72036", - "mean": "20969", - "metadataAccession": "SRR29483249", - "min": "85", - "mmTag": false, - "n25": "17268", - "n50": "21072", - "n75": "26697", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613879", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.579203", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02486/raw_data/PacBio_HiFi/m84046_230707_195504_s2.hifi_reads.bc2067.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR1", - "quartile25": "16342", - "quartile50": "19259", - "quartile75": "23914", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-1_S19_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02486", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "26347065832", - "totalGbp": "26.35", - "totalReads": "1256460", + "title": "Illumina Sequencing of Omni-C Libraries of HG02698", + "totalBp": "10228693169", + "totalGbp": "10.23", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267385", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267385", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237509", + "ccsAlgorithm": "N/A", + "coverage": "3.3", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 18kb fractionated gDNA", - "familyId": "ST016", - "filename": "m84046_230707_195504_s2.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02698-18b-1_S19_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG03688.HFSS_b2_m84046_230707_195504_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02698-18b-1-1_S19_L001_R1_001-1_S19_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "51499", - "mean": "17566", - "metadataAccession": "SRR29483118", - "min": "101", - "mmTag": false, - "n25": "15558", - "n50": "17449", - "n75": "20094", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613879", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.567836", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03688/raw_data/PacBio_HiFi/m84046_230707_195504_s2.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "15240", - "quartile50": "16894", - "quartile75": "19318", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-1_S19_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03688", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "STU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "60723310391", - "totalGbp": "60.72", - "totalReads": "3456854", + "title": "Illumina Sequencing of Omni-C Libraries of HG02698", + "totalBp": "10227885165", + "totalGbp": "10.23", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758789", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758789", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237509", + "ccsAlgorithm": "N/A", + "coverage": "3.24", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "PK35", - "filename": "m84046_230707_202610_s3.hifi_reads.bc2058.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02698-18b-1_S19_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG03017.HFSS2_m84046_230707_202610_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02698-18b-1-1_S19_L002_R1_001-1_S19_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "51971", - "mean": "20478", - "metadataAccession": "SRR29483143", - "min": "765", - "mmTag": false, - "n25": "17897", - "n50": "20470", - "n75": "23991", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613782", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.65523", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m84046_230707_202610_s3.hifi_reads.bc2058.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "17362", - "quartile50": "19599", - "quartile75": "22761", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-1_S19_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03017", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "8032535789", - "totalGbp": "8.03", - "totalReads": "392243", + "title": "Illumina Sequencing of Omni-C Libraries of HG02698", + "totalBp": "10051664745", + "totalGbp": "10.05", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267383", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267383", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237509", + "ccsAlgorithm": "N/A", + "coverage": "3.24", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "GB38", - "filename": "m84046_230707_202610_s3.hifi_reads.bc2060.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02698-18b-1_S19_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02647.HFSS_m84046_230707_202610_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02698-18b-1-1_S19_L002_R1_001-1_S19_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55836", - "mean": "19602", - "metadataAccession": "SRR29483162", - "min": "150", - "mmTag": false, - "n25": "17505", - "n50": "19487", - "n75": "22369", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613782", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.614983", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/PacBio_HiFi/m84046_230707_202610_s3.hifi_reads.bc2060.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "17151", - "quartile50": "18903", - "quartile75": "21502", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-1_S19_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02647", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "46225303347", - "totalGbp": "46.23", - "totalReads": "2358113", + "title": "Illumina Sequencing of Omni-C Libraries of HG02698", + "totalBp": "10050827317", + "totalGbp": "10.05", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861238", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861238", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237509", + "ccsAlgorithm": "N/A", + "coverage": "3.15", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 37kb fractionated gDNA", - "familyId": "BB55", - "filename": "m84046_230707_202610_s3.hifi_reads.bc2067.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02698-18b-1_S19_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02486.HFSS_m84046_230707_202610_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02698-18b-1-1_S19_L003_R1_001-1_S19_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "69861", - "mean": "20515", - "metadataAccession": "SRR29483248", - "min": "268", - "mmTag": false, - "n25": "17015", - "n50": "20540", - "n75": "25788", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613900", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.636875", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02486/raw_data/PacBio_HiFi/m84046_230707_202610_s3.hifi_reads.bc2067.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR1", - "quartile25": "16188", - "quartile50": "18919", - "quartile75": "23266", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-1_S19_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02486", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "25537218642", - "totalGbp": "25.54", - "totalReads": "1244789", + "title": "Illumina Sequencing of Omni-C Libraries of HG02698", + "totalBp": "9750032846", + "totalGbp": "9.75", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267392", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267392", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237509", + "ccsAlgorithm": "N/A", + "coverage": "3.14", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "VN081", - "filename": "m84046_230707_202610_s3.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02698-18b-1_S19_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02135.HFSS3_m84046_230707_202610_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02698-18b-1-1_S19_L003_R1_001-1_S19_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "43275", - "mean": "17162", - "metadataAccession": "SRR29483225", - "min": "422", - "mmTag": false, - "n25": "15258", - "n50": "17040", - "n75": "19561", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613900", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.587885", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m84046_230707_202610_s3.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "14949", - "quartile50": "16511", - "quartile75": "18799", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-1_S19_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02135", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "7376184912", - "totalGbp": "7.38", - "totalReads": "429774", + "title": "Illumina Sequencing of Omni-C Libraries of HG02698", + "totalBp": "9749067984", + "totalGbp": "9.75", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758783", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758783", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237509", + "ccsAlgorithm": "N/A", + "coverage": "3.11", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 30kb fractionated gDNA", - "familyId": "PR21", - "filename": "m84046_230707_205716_s4.bc2065--bc2065.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02698-18b-1_S19_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG01081.HFSS2_m84046_230707_205716_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02698-18b-1-1_S19_L004_R1_001-1_S19_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "65603", - "mean": "20767", - "metadataAccession": "SRR29483123", - "min": "353", - "mmTag": false, - "n25": "17533", - "n50": "21259", - "n75": "26015", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613899", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.635795", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/m84046_230707_205716_s4.bc2065--bc2065.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "16417", - "quartile50": "19643", - "quartile75": "23928", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-1_S19_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01081", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "15545477788", - "totalGbp": "15.55", - "totalReads": "748539", + "title": "Illumina Sequencing of Omni-C Libraries of HG02698", + "totalBp": "9637417088", + "totalGbp": "9.64", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267394", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267394", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237509", + "ccsAlgorithm": "N/A", + "coverage": "3.11", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "PEL51", - "filename": "m84046_230707_205716_s4.default--default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02698-18b-1_S19_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02293.HFSS_m84046_230707_205716_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02698-18b-1-1_S19_L004_R1_001-1_S19_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58469", - "mean": "18288", - "metadataAccession": "SRR29483072", - "min": "224", - "mmTag": false, - "n25": "16133", - "n50": "18179", - "n75": "21038", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613899", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.598377", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/PacBio_HiFi/m84046_230707_205716_s4.default--default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "15762", - "quartile50": "17545", - "quartile75": "20132", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-1_S19_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02293", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "46858961814", - "totalGbp": "46.86", - "totalReads": "2562243", + "title": "Illumina Sequencing of Omni-C Libraries of HG02698", + "totalBp": "9636748289", + "totalGbp": "9.64", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758787", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758787", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237509", + "ccsAlgorithm": "N/A", + "coverage": "1.99", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 27kb fractionated gDNA", - "familyId": "PK26", - "filename": "m84046_230711_230656_s2.hifi_reads.bc2062.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02698-18b-2_S20_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02735.HFSS_m84046_230711_230656_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02698-18b-2-2_S20_L001_R1_001-2_S20_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58940", - "mean": "19604", - "metadataAccession": "SRR29483202", - "min": "131", - "mmTag": false, - "n25": "17067", - "n50": "19632", - "n75": "23110", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613779", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.682254", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m84046_230711_230656_s2.hifi_reads.bc2062.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "16508", - "quartile50": "18748", - "quartile75": "21880", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-2_S20_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02735", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "19620926536", - "totalGbp": "19.62", - "totalReads": "1000841", + "title": "Illumina Sequencing of Omni-C Libraries of HG02698", + "totalBp": "6182153402", + "totalGbp": "6.18", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267387", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267387", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237509", + "ccsAlgorithm": "N/A", + "coverage": "1.99", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 18kb fractionated gDNA", - "familyId": "BD42", - "filename": "m84046_230711_230656_s2.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02698-18b-2_S20_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG03942.HFSS_C_m84046_230711_230656_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02698-18b-2-2_S20_L001_R1_001-2_S20_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52486", - "mean": "17688", - "metadataAccession": "SRR29483090", - "min": "248", - "mmTag": false, - "n25": "15650", - "n50": "17624", - "n75": "20339", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613779", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.671863", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/PacBio_HiFi/m84046_230711_230656_s2.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "15281", - "quartile50": "17030", - "quartile75": "19512", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-2_S20_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03942", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "69465942701", - "totalGbp": "69.47", - "totalReads": "3927195", + "title": "Illumina Sequencing of Omni-C Libraries of HG02698", + "totalBp": "6181689003", + "totalGbp": "6.18", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758789", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758789", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237509", + "ccsAlgorithm": "N/A", + "coverage": "1.96", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "PK35", - "filename": "m84046_230711_233802_s3.hifi_reads.bc2058.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02698-18b-2_S20_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG03017.HFSS2_m84046_230711_233802_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02698-18b-2-2_S20_L002_R1_001-2_S20_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56905", - "mean": "20598", - "metadataAccession": "SRR29483142", - "min": "196", - "mmTag": false, - "n25": "17976", - "n50": "20585", - "n75": "24154", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613777", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.668335", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m84046_230711_233802_s3.hifi_reads.bc2058.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "17426", - "quartile50": "19700", - "quartile75": "22903", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-2_S20_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03017", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "17291182646", - "totalGbp": "17.29", - "totalReads": "839447", + "title": "Illumina Sequencing of Omni-C Libraries of HG02698", + "totalBp": "6071927153", + "totalGbp": "6.07", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861240", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861240", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237509", + "ccsAlgorithm": "N/A", + "coverage": "1.96", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB21", - "filename": "m84046_230711_233802_s3.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02698-18b-2_S20_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02572.HFSS3_m84046_230711_233802_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02698-18b-2-2_S20_L002_R1_001-2_S20_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57097", - "mean": "16065", - "metadataAccession": "SRR29483252", - "min": "119", - "mmTag": false, - "n25": "13622", - "n50": "16734", - "n75": "20462", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613777", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.63965", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02572/raw_data/PacBio_HiFi/m84046_230711_233802_s3.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR1", - "quartile25": "12582", - "quartile50": "15327", - "quartile75": "18827", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-2_S20_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02572", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "70160006292", - "totalGbp": "70.16", - "totalReads": "4367119", + "title": "Illumina Sequencing of Omni-C Libraries of HG02698", + "totalBp": "6071461229", + "totalGbp": "6.07", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237509", + "ccsAlgorithm": "N/A", + "coverage": "1.9", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230712_000908_s4.hifi_reads.bc2061.bam", - "filetype": "N/A", + "filename": "HG02698-18b-2_S20_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19043.HFSS_m84046_230712_000908_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02698-18b-2-2_S20_L003_R1_001-2_S20_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52679", - "mean": "20399", - "metadataAccession": "SRR29483133", - "min": "703", - "mmTag": false, - "n25": "17843", - "n50": "20581", - "n75": "24187", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613776", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.656097", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/m84046_230712_000908_s4.hifi_reads.bc2061.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "17194", - "quartile50": "19625", - "quartile75": "22917", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-2_S20_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "9568200153", - "totalGbp": "9.57", - "totalReads": "469037", + "title": "Illumina Sequencing of Omni-C Libraries of HG02698", + "totalBp": "5895167671", + "totalGbp": "5.9", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267380", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267380", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237509", + "ccsAlgorithm": "N/A", + "coverage": "1.9", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 19kb fractionated gDNA", - "familyId": "VN065", - "filename": "m84046_230712_000908_s4.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02698-18b-2_S20_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02071.HFSS_A_m84046_230712_000908_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02698-18b-2-2_S20_L003_R1_001-2_S20_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61719", - "mean": "18039", - "metadataAccession": "SRR29483200", - "min": "224", - "mmTag": false, - "n25": "15821", - "n50": "17982", - "n75": "20929", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613776", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.635592", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/PacBio_HiFi/m84046_230712_000908_s4.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "15414", - "quartile50": "17295", - "quartile75": "19985", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-2_S20_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02071", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "76304506746", - "totalGbp": "76.3", - "totalReads": "4229810", + "title": "Illumina Sequencing of Omni-C Libraries of HG02698", + "totalBp": "5894670970", + "totalGbp": "5.89", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021639", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021639", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237509", + "ccsAlgorithm": "N/A", + "coverage": "1.88", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 30kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230712_224626_s1.hifi_reads.bc2052.bam", - "filetype": "N/A", + "filename": "HG02698-18b-2_S20_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00290.HFSS_m84046_230712_224626_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02698-18b-2-2_S20_L004_R1_001-2_S20_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "67558", - "mean": "22852", - "metadataAccession": "SRR29483111", - "min": "299", - "mmTag": false, - "n25": "19912", - "n50": "22984", - "n75": "27160", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613775", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.662322", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00290/raw_data/PacBio_HiFi/m84046_230712_224626_s1.hifi_reads.bc2052.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "19159", - "quartile50": "21877", - "quartile75": "25619", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-2_S20_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00290", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "11095310100", - "totalGbp": "11.1", - "totalReads": "485522", + "title": "Illumina Sequencing of Omni-C Libraries of HG02698", + "totalBp": "5825473271", + "totalGbp": "5.83", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861236", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861236", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237509", + "ccsAlgorithm": "N/A", + "coverage": "1.88", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "BB05", - "filename": "m84046_230712_224626_s1.hifi_reads.bc2066.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02698-18b-2_S20_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG01891.HFSS_m84046_230712_224626_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02698-18b-2-2_S20_L004_R1_001-2_S20_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59862", - "mean": "17719", - "metadataAccession": "SRR29483159", - "min": "96", - "mmTag": false, - "n25": "15417", - "n50": "17702", - "n75": "20896", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613775", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.640033", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01891/raw_data/PacBio_HiFi/m84046_230712_224626_s1.hifi_reads.bc2066.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR1", - "quartile25": "14944", - "quartile50": "16897", - "quartile75": "19756", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/hic/HG02698-18b-2_S20_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01891", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "65719771205", - "totalGbp": "65.72", - "totalReads": "3708847", + "title": "Illumina Sequencing of Omni-C Libraries of HG02698", + "totalBp": "5825114248", + "totalGbp": "5.83", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267392", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267392", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758787", + "ccsAlgorithm": "N/A", + "coverage": "3.38", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "VN081", - "filename": "m84046_230712_224626_s1.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02735-1_S1_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02135.HFSS3_m84046_230712_224626_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02735-1_S1_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "46258", - "mean": "17189", - "metadataAccession": "SRR29483224", - "min": "93", - "mmTag": false, - "n25": "15283", - "n50": "17064", - "n75": "19574", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310846", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.537195", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m84046_230712_224626_s1.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "14978", - "quartile50": "16540", - "quartile75": "18821", + "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/hic/HG02735-1_S1_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02135", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "8573437259", - "totalGbp": "8.57", - "totalReads": "498747", + "title": "Illumina Sequencing of Omni-C Libraries of HG02735", + "totalBp": "10480992446", + "totalGbp": "10.48", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021654", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021654", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758787", + "ccsAlgorithm": "N/A", + "coverage": "3.38", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230712_231732_s2.hifi_reads.bc2048.bam", - "filetype": "N/A", + "filename": "HG02735-1_S1_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00350.HFSS_m84046_230712_231732_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02735-1_S1_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52872", - "mean": "18551", - "metadataAccession": "SRR29483197", - "min": "102", - "mmTag": false, - "n25": "16260", - "n50": "18532", - "n75": "21668", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310846", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.537195", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00350/raw_data/PacBio_HiFi/m84046_230712_231732_s2.hifi_reads.bc2048.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15806", - "quartile50": "17792", - "quartile75": "20634", + "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/hic/HG02735-1_S1_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00350", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "20631179910", - "totalGbp": "20.63", - "totalReads": "1112115", + "title": "Illumina Sequencing of Omni-C Libraries of HG02735", + "totalBp": "10480992446", + "totalGbp": "10.48", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021640", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021640", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758787", + "ccsAlgorithm": "N/A", + "coverage": "10.76", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 31kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230712_231732_s2.hifi_reads.bc2053.bam", - "filetype": "N/A", + "filename": "HG02735-2_S7_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19443.HFSS_m84046_230712_231732_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02735-2_S7_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60102", - "mean": "24287", - "metadataAccession": "SRR29483070", - "min": "568", - "mmTag": false, - "n25": "20795", - "n50": "24663", - "n75": "29903", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310845", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.350536", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19443/raw_data/PacBio_HiFi/m84046_230712_231732_s2.hifi_reads.bc2053.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "19750", - "quartile50": "23071", - "quartile75": "27722", + "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/hic/HG02735-2_S7_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19443", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "13925497069", - "totalGbp": "13.93", - "totalReads": "573361", + "title": "Illumina Sequencing of Omni-C Libraries of HG02735", + "totalBp": "33352232512", + "totalGbp": "33.35", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758782", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758782", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758787", + "ccsAlgorithm": "N/A", + "coverage": "10.76", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 26kb fractionated gDNA", - "familyId": "PR18", - "filename": "m84046_230712_231732_s2.hifi_reads.bc2061.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02735-2_S7_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG01074.HFSS3_m84046_230712_231732_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02735-2_S7_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "62885", - "mean": "20441", - "metadataAccession": "SRR29483186", - "min": "73", - "mmTag": false, - "n25": "17727", - "n50": "20515", - "n75": "24254", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310845", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.350536", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m84046_230712_231732_s2.hifi_reads.bc2061.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "17105", - "quartile50": "19521", - "quartile75": "22903", + "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/hic/HG02735-2_S7_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01074", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "36576237795", - "totalGbp": "36.58", - "totalReads": "1789356", + "title": "Illumina Sequencing of Omni-C Libraries of HG02735", + "totalBp": "33352232512", + "totalGbp": "33.35", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267393", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267393", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267396", + "ccsAlgorithm": "N/A", + "coverage": "7.51", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 18kb fractionated gDNA", - "familyId": "BB03", - "filename": "m84046_230712_231732_s2.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02738-40a-1_S17_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG01884.HFSS_m84046_230712_231732_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02738-40a-1-1_S17_L001_R1_001-1_S17_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "47627", - "mean": "17498", - "metadataAccession": "SRR29483100", - "min": "421", - "mmTag": false, - "n25": "15438", - "n50": "17430", - "n75": "20183", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613774", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.483227", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/PacBio_HiFi/m84046_230712_231732_s2.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "15063", - "quartile50": "16809", - "quartile75": "19298", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-1_S17_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01884", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "6389710318", - "totalGbp": "6.39", - "totalReads": "365156", + "title": "Illumina Sequencing of Omni-C Libraries of HG02738", + "totalBp": "23276416168", + "totalGbp": "23.28", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021653", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021653", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267396", + "ccsAlgorithm": "N/A", + "coverage": "7.51", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230715_060901_s1.hifi_reads.bc2083.bam", - "filetype": "N/A", + "filename": "HG02738-40a-1_S17_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00344.HFSS2_m84046_230715_060901_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02738-40a-1-1_S17_L001_R1_001-1_S17_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56374", - "mean": "19344", - "metadataAccession": "SRR29483172", - "min": "122", - "mmTag": false, - "n25": "17300", - "n50": "19273", - "n75": "22021", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613774", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.480865", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00344/raw_data/PacBio_HiFi/m84046_230715_060901_s1.hifi_reads.bc2083.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16957", - "quartile50": "18716", - "quartile75": "21258", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-1_S17_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00344", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "60692182063", - "totalGbp": "60.69", - "totalReads": "3137497", + "title": "Illumina Sequencing of Omni-C Libraries of HG02738", + "totalBp": "23275990806", + "totalGbp": "23.28", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021651", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021651", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267396", + "ccsAlgorithm": "N/A", + "coverage": "5.96", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "NG109", - "filename": "m84046_230715_060901_s1.hifi_reads.bc2084.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02738-40a-1_S17_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG03521.HFSS2_m84046_230715_060901_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02738-40a-1-1_S17_L002_R1_001-1_S17_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58005", - "mean": "20640", - "metadataAccession": "SRR29483259", - "min": "66", - "mmTag": false, - "n25": "18408", - "n50": "20518", - "n75": "23530", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613773", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.505694", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03521/raw_data/PacBio_HiFi/m84046_230715_060901_s1.hifi_reads.bc2084.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "18025", - "quartile50": "19908", - "quartile75": "22635", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-1_S17_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03521", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "52350380501", - "totalGbp": "52.35", - "totalReads": "2536343", + "title": "Illumina Sequencing of Omni-C Libraries of HG02738", + "totalBp": "18461144017", + "totalGbp": "18.46", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021653", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021653", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267396", + "ccsAlgorithm": "N/A", + "coverage": "5.96", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230715_064007_s2.hifi_reads.bc2083.bam", - "filetype": "N/A", + "filename": "HG02738-40a-1_S17_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00344.HFSS2_m84046_230715_064007_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02738-40a-1-1_S17_L002_R1_001-1_S17_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56033", - "mean": "19456", - "metadataAccession": "SRR29483173", - "min": "85", - "mmTag": false, - "n25": "17374", - "n50": "19401", - "n75": "22208", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613773", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.485119", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00344/raw_data/PacBio_HiFi/m84046_230715_064007_s2.hifi_reads.bc2083.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17020", - "quartile50": "18821", - "quartile75": "21429", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-1_S17_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00344", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "63874723531", - "totalGbp": "63.87", - "totalReads": "3282883", + "title": "Illumina Sequencing of Omni-C Libraries of HG02738", + "totalBp": "18460990879", + "totalGbp": "18.46", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021651", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021651", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267396", + "ccsAlgorithm": "N/A", + "coverage": "6.04", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "NG109", - "filename": "m84046_230715_064007_s2.hifi_reads.bc2084.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02738-40a-1_S17_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG03521.HFSS2_m84046_230715_064007_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02738-40a-1-1_S17_L003_R1_001-1_S17_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57192", - "mean": "20784", - "metadataAccession": "SRR29483257", - "min": "61", - "mmTag": false, - "n25": "18499", - "n50": "20676", - "n75": "23771", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613772", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.522761", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03521/raw_data/PacBio_HiFi/m84046_230715_064007_s2.hifi_reads.bc2084.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "18099", - "quartile50": "20036", - "quartile75": "22840", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-1_S17_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03521", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "56036523269", - "totalGbp": "56.04", - "totalReads": "2696081", + "title": "Illumina Sequencing of Omni-C Libraries of HG02738", + "totalBp": "18722292408", + "totalGbp": "18.72", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021660", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021660", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267396", + "ccsAlgorithm": "N/A", + "coverage": "6.04", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230716_051716_s3.hifi_reads.bc2086.bam", - "filetype": "N/A", - "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00097.HFSS_m84046_230716_051716_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", - "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60165", - "mean": "20551", - "metadataAccession": "SRR29483082", - "min": "77", - "mmTag": false, - "n25": "18218", - "n50": "20516", - "n75": "23811", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "filename": "HG02738-40a-1_S17_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02738-40a-1-1_S17_L003_R1_001-1_S17_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613772", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.4831", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00097/raw_data/PacBio_HiFi/m84046_230716_051716_s3.hifi_reads.bc2086.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17766", - "quartile50": "19795", - "quartile75": "22777", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-1_S17_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00097", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "56111550391", - "totalGbp": "56.11", - "totalReads": "2730343", + "title": "Illumina Sequencing of Omni-C Libraries of HG02738", + "totalBp": "18721750685", + "totalGbp": "18.72", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021659", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021659", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267396", + "ccsAlgorithm": "N/A", + "coverage": "7.27", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 27kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230716_051716_s3.hifi_reads.bc2087.bam", - "filetype": "N/A", + "filename": "HG02738-40a-1_S17_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00272.HFSS_m84046_230716_051716_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02738-40a-1-1_S17_L004_R1_001-1_S17_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "62245", - "mean": "22209", - "metadataAccession": "SRR29483207", - "min": "70", - "mmTag": false, - "n25": "19469", - "n50": "22259", - "n75": "26112", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613771", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.508908", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00272/raw_data/PacBio_HiFi/m84046_230716_051716_s3.hifi_reads.bc2087.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "18841", - "quartile50": "21311", - "quartile75": "24765", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-1_S17_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00272", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "55893022230", - "totalGbp": "55.89", - "totalReads": "2516610", + "title": "Illumina Sequencing of Omni-C Libraries of HG02738", + "totalBp": "22541389657", + "totalGbp": "22.54", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021660", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021660", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267396", + "ccsAlgorithm": "N/A", + "coverage": "7.27", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230716_054822_s4.hifi_reads.bc2086.bam", - "filetype": "N/A", + "filename": "HG02738-40a-1_S17_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00097.HFSS_m84046_230716_054822_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02738-40a-1-1_S17_L004_R1_001-1_S17_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53858", - "mean": "20563", - "metadataAccession": "SRR29483083", - "min": "135", - "mmTag": false, - "n25": "18220", - "n50": "20531", - "n75": "23848", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613771", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.494649", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00097/raw_data/PacBio_HiFi/m84046_230716_054822_s4.hifi_reads.bc2086.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17766", - "quartile50": "19800", - "quartile75": "22810", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-1_S17_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00097", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "59475971630", - "totalGbp": "59.48", - "totalReads": "2892254", + "title": "Illumina Sequencing of Omni-C Libraries of HG02738", + "totalBp": "22541007397", + "totalGbp": "22.54", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021659", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021659", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267396", + "ccsAlgorithm": "N/A", + "coverage": "6.4", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 27kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230716_054822_s4.hifi_reads.bc2087.bam", - "filetype": "N/A", + "filename": "HG02738-40a-2_S18_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00272.HFSS_m84046_230716_054822_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02738-40a-2-2_S18_L001_R1_001-2_S18_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "71087", - "mean": "22239", - "metadataAccession": "SRR29483227", - "min": "146", - "mmTag": false, - "n25": "19487", - "n50": "22300", - "n75": "26169", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613768", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.525075", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00272/raw_data/PacBio_HiFi/m84046_230716_054822_s4.hifi_reads.bc2087.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "18854", - "quartile50": "21337", - "quartile75": "24814", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-2_S18_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00272", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "59280573492", - "totalGbp": "59.28", - "totalReads": "2665556", + "title": "Illumina Sequencing of Omni-C Libraries of HG02738", + "totalBp": "19829787341", + "totalGbp": "19.83", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021660", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021660", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267396", + "ccsAlgorithm": "N/A", + "coverage": "6.4", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230718_223822_s1.hifi_reads.bc2086.bam", - "filetype": "N/A", + "filename": "HG02738-40a-2_S18_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00097.HFSS_m84046_230718_223822_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02738-40a-2-2_S18_L001_R1_001-2_S18_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58103", - "mean": "20427", - "metadataAccession": "SRR29483084", - "min": "131", - "mmTag": false, - "n25": "18134", - "n50": "20372", - "n75": "23618", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613768", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.491658", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00097/raw_data/PacBio_HiFi/m84046_230718_223822_s1.hifi_reads.bc2086.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17693", - "quartile50": "19676", - "quartile75": "22592", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-2_S18_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00097", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "81988073357", - "totalGbp": "81.99", - "totalReads": "4013688", + "title": "Illumina Sequencing of Omni-C Libraries of HG02738", + "totalBp": "19829362922", + "totalGbp": "19.83", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021659", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021659", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267396", + "ccsAlgorithm": "N/A", + "coverage": "5.13", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 27kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230718_223822_s1.hifi_reads.bc2087.bam", - "filetype": "N/A", + "filename": "HG02738-40a-2_S18_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00272.HFSS_m84046_230718_223822_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02738-40a-2-2_S18_L002_R1_001-2_S18_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "54405", - "mean": "22049", - "metadataAccession": "SRR29483226", - "min": "201", - "mmTag": false, - "n25": "19353", - "n50": "22079", - "n75": "25872", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613767", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.504934", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00272/raw_data/PacBio_HiFi/m84046_230718_223822_s1.hifi_reads.bc2087.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "18745", - "quartile50": "21161", - "quartile75": "24545", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-2_S18_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00272", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "28648842428", - "totalGbp": "28.65", - "totalReads": "1299274", + "title": "Illumina Sequencing of Omni-C Libraries of HG02738", + "totalBp": "15908845443", + "totalGbp": "15.91", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021651", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021651", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267396", + "ccsAlgorithm": "N/A", + "coverage": "5.13", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "NG109", - "filename": "m84046_230718_230843_s2.hifi_reads.bc2084.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02738-40a-2_S18_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG03521.HFSS2_m84046_230718_230843_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02738-40a-2-2_S18_L002_R1_001-2_S18_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "63166", - "mean": "20671", - "metadataAccession": "SRR29483260", - "min": "96", - "mmTag": false, - "n25": "18419", - "n50": "20551", - "n75": "23601", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613767", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.512337", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03521/raw_data/PacBio_HiFi/m84046_230718_230843_s2.hifi_reads.bc2084.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "18030", - "quartile50": "19928", - "quartile75": "22685", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-2_S18_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03521", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "100261536810", - "totalGbp": "100.26", - "totalReads": "4850185", + "title": "Illumina Sequencing of Omni-C Libraries of HG02738", + "totalBp": "15908689119", + "totalGbp": "15.91", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267393", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267393", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267396", + "ccsAlgorithm": "N/A", + "coverage": "5.21", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 18kb fractionated gDNA", - "familyId": "BB03", - "filename": "m84046_230718_230843_s2.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02738-40a-2_S18_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG01884.HFSS_m84046_230718_230843_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02738-40a-2-2_S18_L003_R1_001-2_S18_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "51929", - "mean": "17476", - "metadataAccession": "SRR29483164", - "min": "724", - "mmTag": false, - "n25": "15428", - "n50": "17411", - "n75": "20136", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613766", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.583415", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/PacBio_HiFi/m84046_230718_230843_s2.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "15052", - "quartile50": "16796", - "quartile75": "19282", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-2_S18_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01884", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "9447051450", - "totalGbp": "9.45", - "totalReads": "540542", + "title": "Illumina Sequencing of Omni-C Libraries of HG02738", + "totalBp": "16158536856", + "totalGbp": "16.16", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021653", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021653", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267396", + "ccsAlgorithm": "N/A", + "coverage": "5.21", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230718_233949_s3.hifi_reads.bc2083.bam", - "filetype": "N/A", + "filename": "HG02738-40a-2_S18_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00344.HFSS2_m84046_230718_233949_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02738-40a-2-2_S18_L003_R1_001-2_S18_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60663", - "mean": "19406", - "metadataAccession": "SRR29483171", - "min": "103", - "mmTag": false, - "n25": "17342", - "n50": "19345", - "n75": "22120", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613766", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.507474", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00344/raw_data/PacBio_HiFi/m84046_230718_233949_s3.hifi_reads.bc2083.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16994", - "quartile50": "18777", - "quartile75": "21349", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-2_S18_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00344", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "77941329750", - "totalGbp": "77.94", - "totalReads": "4016176", + "title": "Illumina Sequencing of Omni-C Libraries of HG02738", + "totalBp": "16158035779", + "totalGbp": "16.16", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267394", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267394", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267396", + "ccsAlgorithm": "N/A", + "coverage": "6.24", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "PEL51", - "filename": "m84046_230718_233949_s3.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02738-40a-2_S18_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02293.HFSS_m84046_230718_233949_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02738-40a-2-2_S18_L004_R1_001-2_S18_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59398", - "mean": "18403", - "metadataAccession": "SRR29483074", - "min": "544", - "mmTag": false, - "n25": "16224", - "n50": "18309", - "n75": "21179", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613765", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.535358", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/PacBio_HiFi/m84046_230718_233949_s3.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "15843", - "quartile50": "17667", - "quartile75": "20276", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-2_S18_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02293", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "22143072197", - "totalGbp": "22.14", - "totalReads": "1203172", + "title": "Illumina Sequencing of Omni-C Libraries of HG02738", + "totalBp": "19344650439", + "totalGbp": "19.34", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758782", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758782", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267396", + "ccsAlgorithm": "N/A", + "coverage": "6.24", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 26kb fractionated gDNA", - "familyId": "PR18", - "filename": "m84046_230719_001055_s4.hifi_reads.bc2061.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02738-40a-2_S18_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG01074.HFSS3_m84046_230719_001055_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02738-40a-2-2_S18_L004_R1_001-2_S18_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56330", - "mean": "20450", - "metadataAccession": "SRR29483147", - "min": "270", - "mmTag": false, - "n25": "17745", - "n50": "20525", - "n75": "24244", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613765", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.52116", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m84046_230719_001055_s4.hifi_reads.bc2061.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "17126", - "quartile50": "19537", - "quartile75": "22909", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/hic/HG02738-40a-2_S18_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01074", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "18474875553", - "totalGbp": "18.47", - "totalReads": "903402", + "title": "Illumina Sequencing of Omni-C Libraries of HG02738", + "totalBp": "19344251814", + "totalGbp": "19.34", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021638", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021638", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237510", + "ccsAlgorithm": "N/A", + "coverage": "13.88", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 27kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230719_001055_s4.hifi_reads.bc2085.bam", - "filetype": "N/A", + "filename": "HG02809-52d-1_S3_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00133.HFSS2_m84046_230719_001055_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02809-52d-1-1_S3_L001_R1_001-1_S3_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "67080", - "mean": "21796", - "metadataAccession": "SRR29483107", - "min": "96", - "mmTag": false, - "n25": "19292", - "n50": "21676", - "n75": "25074", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613763", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.48962", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230719_001055_s4.hifi_reads.bc2085.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "18839", - "quartile50": "20947", - "quartile75": "24008", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-1_S3_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00133", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "23522900809", - "totalGbp": "23.52", - "totalReads": "1079223", + "title": "Illumina Sequencing of Omni-C Libraries of HG02809", + "totalBp": "43020035640", + "totalGbp": "43.02", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021659", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021659", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237510", + "ccsAlgorithm": "N/A", + "coverage": "13.88", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 27kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230719_001055_s4.hifi_reads.bc2087.bam", - "filetype": "N/A", + "filename": "HG02809-52d-1_S3_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00272.HFSS_m84046_230719_001055_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02809-52d-1-1_S3_L001_R1_001-1_S3_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60184", - "mean": "22165", - "metadataAccession": "SRR29483208", - "min": "86", - "mmTag": false, - "n25": "19451", - "n50": "22207", - "n75": "26022", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613763", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.395624", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00272/raw_data/PacBio_HiFi/m84046_230719_001055_s4.hifi_reads.bc2087.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "18831", - "quartile50": "21277", - "quartile75": "24693", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-1_S3_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00272", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "66535915752", - "totalGbp": "66.54", - "totalReads": "3001821", + "title": "Illumina Sequencing of Omni-C Libraries of HG02809", + "totalBp": "43017436361", + "totalGbp": "43.02", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758790", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758790", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237510", + "ccsAlgorithm": "N/A", + "coverage": "13.95", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "GB110", - "filename": "m84046_230720_182350_s1.hifi_reads.bc2003.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02809-52d-1_S3_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG03041.HFSS2_m84046_230720_182350_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02809-52d-1-1_S3_L002_R1_001-1_S3_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52881", - "mean": "18511", - "metadataAccession": "SRR29483241", - "min": "126", - "mmTag": false, - "n25": "16140", - "n50": "18528", - "n75": "21716", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613762", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.486153", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m84046_230720_182350_s1.hifi_reads.bc2003.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "15640", - "quartile50": "17728", - "quartile75": "20626", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-1_S3_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03041", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "10936928289", - "totalGbp": "10.94", - "totalReads": "590816", + "title": "Illumina Sequencing of Omni-C Libraries of HG02809", + "totalBp": "43245615112", + "totalGbp": "43.25", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758780", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758780", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237510", + "ccsAlgorithm": "N/A", + "coverage": "13.95", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 27kb fractionated gDNA", - "familyId": "SH045", - "filename": "m84046_230720_182350_s1.hifi_reads.bc2004.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02809-52d-1_S3_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG00558.HFSS2_m84046_230720_182350_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02809-52d-1-1_S3_L002_R1_001-1_S3_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60806", - "mean": "21085", - "metadataAccession": "SRR29483116", - "min": "151", - "mmTag": false, - "n25": "18187", - "n50": "21393", - "n75": "25429", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613762", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.377499", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m84046_230720_182350_s1.hifi_reads.bc2004.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "17361", - "quartile50": "20208", - "quartile75": "23908", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-1_S3_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00558", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "23136924177", - "totalGbp": "23.14", - "totalReads": "1097268", + "title": "Illumina Sequencing of Omni-C Libraries of HG02809", + "totalBp": "43243039753", + "totalGbp": "43.24", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267379", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267379", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237510", + "ccsAlgorithm": "N/A", + "coverage": "13.71", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", - "familyId": "CLM27", - "filename": "m84046_230720_182350_s1.hifi_reads.bc2005.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02809-52d-1_S3_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG01346.HFSS2_m84046_230720_182350_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02809-52d-1-1_S3_L003_R1_001-1_S3_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "68536", - "mean": "17967", - "metadataAccession": "SRR29483239", - "min": "76", - "mmTag": false, - "n25": "15796", - "n50": "18026", - "n75": "21068", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613761", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.47823", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/PacBio_HiFi/m84046_230720_182350_s1.hifi_reads.bc2005.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "15338", - "quartile50": "17299", - "quartile75": "20105", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-1_S3_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01346", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "67031281657", - "totalGbp": "67.03", - "totalReads": "3730708", + "title": "Illumina Sequencing of Omni-C Libraries of HG02809", + "totalBp": "42507010331", + "totalGbp": "42.51", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758795", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758795", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237510", + "ccsAlgorithm": "N/A", + "coverage": "13.71", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "PK60", - "filename": "m84046_230720_185410_s2.hifi_reads.bc2002.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02809-52d-1_S3_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG03704.HFSS5_m84046_230720_185410_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02809-52d-1-1_S3_L003_R1_001-1_S3_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55270", - "mean": "19506", - "metadataAccession": "SRR29483161", - "min": "94", - "mmTag": false, - "n25": "16773", - "n50": "19756", - "n75": "23569", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613761", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.381823", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m84046_230720_185410_s2.hifi_reads.bc2002.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "16019", - "quartile50": "18635", - "quartile75": "22124", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-1_S3_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03704", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "45275343137", - "totalGbp": "45.28", - "totalReads": "2321098", + "title": "Illumina Sequencing of Omni-C Libraries of HG02809", + "totalBp": "42504580321", + "totalGbp": "42.5", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758786", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758786", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237510", + "ccsAlgorithm": "N/A", + "coverage": "13.62", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", - "familyId": "BB46", - "filename": "m84046_230720_185410_s2.hifi_reads.bc2006.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02809-52d-1_S3_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02451.HFSS3_m84046_230720_185410_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02809-52d-1-1_S3_L004_R1_001-1_S3_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "49086", - "mean": "18780", - "metadataAccession": "SRR29483195", - "min": "175", - "mmTag": false, - "n25": "16545", - "n50": "18768", - "n75": "21880", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613760", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.472541", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/m84046_230720_185410_s2.hifi_reads.bc2006.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR3", - "quartile25": "16117", - "quartile50": "18053", - "quartile75": "20895", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-1_S3_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02451", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "49774606276", - "totalGbp": "49.77", - "totalReads": "2650321", + "title": "Illumina Sequencing of Omni-C Libraries of HG02809", + "totalBp": "42222483426", + "totalGbp": "42.22", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021663", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021663", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237510", + "ccsAlgorithm": "N/A", + "coverage": "13.62", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230721_175304_s3.hifi_reads.bc2091.bam", - "filetype": "N/A", + "filename": "HG02809-52d-1_S3_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG18871.HFSS_m84046_230721_175304_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02809-52d-1-1_S3_L004_R1_001-1_S3_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "47945", - "mean": "17734", - "metadataAccession": "SRR29483169", - "min": "69", - "mmTag": false, - "n25": "15957", - "n50": "17779", - "n75": "20153", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613760", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.38421", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18871/raw_data/PacBio_HiFi/m84046_230721_175304_s3.hifi_reads.bc2091.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15615", - "quartile50": "17288", - "quartile75": "19526", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-1_S3_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18871", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "66877137813", - "totalGbp": "66.88", - "totalReads": "3770954", + "title": "Illumina Sequencing of Omni-C Libraries of HG02809", + "totalBp": "42219773971", + "totalGbp": "42.22", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021664", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021664", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237510", + "ccsAlgorithm": "N/A", + "coverage": "13.67", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230721_175304_s3.hifi_reads.bc2092.bam", - "filetype": "N/A", + "filename": "HG02809-52d-2_S4_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG20850.HFSS_m84046_230721_175304_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02809-52d-2-2_S4_L001_R1_001-2_S4_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50125", - "mean": "18382", - "metadataAccession": "SRR29483085", - "min": "91", - "mmTag": false, - "n25": "16530", - "n50": "18391", - "n75": "20858", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613759", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.512187", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20850/raw_data/PacBio_HiFi/m84046_230721_175304_s3.hifi_reads.bc2092.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16194", - "quartile50": "17892", - "quartile75": "20208", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-2_S4_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20850", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "66234086448", - "totalGbp": "66.23", - "totalReads": "3603056", + "title": "Illumina Sequencing of Omni-C Libraries of HG02809", + "totalBp": "42374811401", + "totalGbp": "42.37", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021663", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021663", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237510", + "ccsAlgorithm": "N/A", + "coverage": "13.67", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230721_182333_s4.hifi_reads.bc2091.bam", - "filetype": "N/A", + "filename": "HG02809-52d-2_S4_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG18871.HFSS_m84046_230721_182333_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02809-52d-2-2_S4_L001_R1_001-2_S4_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "49600", - "mean": "17760", - "metadataAccession": "SRR29483170", - "min": "89", - "mmTag": false, - "n25": "15981", - "n50": "17809", - "n75": "20188", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613759", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.422987", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18871/raw_data/PacBio_HiFi/m84046_230721_182333_s4.hifi_reads.bc2091.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15636", - "quartile50": "17317", - "quartile75": "19561", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-2_S4_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18871", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "63934526697", - "totalGbp": "63.93", - "totalReads": "3599850", + "title": "Illumina Sequencing of Omni-C Libraries of HG02809", + "totalBp": "42372798232", + "totalGbp": "42.37", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021664", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021664", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237510", + "ccsAlgorithm": "N/A", + "coverage": "13.67", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230721_182333_s4.hifi_reads.bc2092.bam", - "filetype": "N/A", + "filename": "HG02809-52d-2_S4_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG20850.HFSS_m84046_230721_182333_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02809-52d-2-2_S4_L002_R1_001-2_S4_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "54426", - "mean": "18401", - "metadataAccession": "SRR29483088", - "min": "88", - "mmTag": false, - "n25": "16550", - "n50": "18414", - "n75": "20877", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613625", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.463354", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20850/raw_data/PacBio_HiFi/m84046_230721_182333_s4.hifi_reads.bc2092.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16213", - "quartile50": "17914", - "quartile75": "20230", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-2_S4_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20850", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "63327918484", - "totalGbp": "63.33", - "totalReads": "3441545", + "title": "Illumina Sequencing of Omni-C Libraries of HG02809", + "totalBp": "42380850731", + "totalGbp": "42.38", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021663", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021663", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237510", + "ccsAlgorithm": "N/A", + "coverage": "13.67", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230721_185439_s1.hifi_reads.bc2091.bam", - "filetype": "N/A", + "filename": "HG02809-52d-2_S4_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG18871.HFSS_m84046_230721_185439_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02809-52d-2-2_S4_L002_R1_001-2_S4_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56615", - "mean": "17659", - "metadataAccession": "SRR29483168", - "min": "83", - "mmTag": false, - "n25": "15902", - "n50": "17694", - "n75": "20041", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613625", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.415575", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18871/raw_data/PacBio_HiFi/m84046_230721_185439_s1.hifi_reads.bc2091.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15566", - "quartile50": "17216", - "quartile75": "19420", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-2_S4_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18871", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "59501427505", - "totalGbp": "59.5", - "totalReads": "3369453", + "title": "Illumina Sequencing of Omni-C Libraries of HG02809", + "totalBp": "42378974763", + "totalGbp": "42.38", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021664", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021664", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237510", + "ccsAlgorithm": "N/A", + "coverage": "13.4", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230721_185439_s1.hifi_reads.bc2092.bam", - "filetype": "N/A", + "filename": "HG02809-52d-2_S4_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG20850.HFSS_m84046_230721_185439_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02809-52d-2-2_S4_L003_R1_001-2_S4_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "49617", - "mean": "18297", - "metadataAccession": "SRR29483086", - "min": "118", - "mmTag": false, - "n25": "16467", - "n50": "18296", - "n75": "20733", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613623", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.492153", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20850/raw_data/PacBio_HiFi/m84046_230721_185439_s1.hifi_reads.bc2092.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16140", - "quartile50": "17808", - "quartile75": "20093", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-2_S4_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20850", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "58421144215", - "totalGbp": "58.42", - "totalReads": "3192817", + "title": "Illumina Sequencing of Omni-C Libraries of HG02809", + "totalBp": "41539194006", + "totalGbp": "41.54", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021677", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021677", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237510", + "ccsAlgorithm": "N/A", + "coverage": "13.4", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230721_192545_s2.hifi_reads.bc2080.bam", - "filetype": "N/A", + "filename": "HG02809-52d-2_S4_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG03136.HFSS_m84046_230721_192545_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02809-52d-2-2_S4_L003_R1_001-2_S4_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50586", - "mean": "18206", - "metadataAccession": "SRR29483136", - "min": "85", - "mmTag": false, - "n25": "16386", - "n50": "18383", - "n75": "20842", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613623", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.413717", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03136/raw_data/PacBio_HiFi/m84046_230721_192545_s2.hifi_reads.bc2080.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15959", - "quartile50": "17828", - "quartile75": "20169", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-2_S4_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03136", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "61280281634", - "totalGbp": "61.28", - "totalReads": "3365913", + "title": "Illumina Sequencing of Omni-C Libraries of HG02809", + "totalBp": "41537278294", + "totalGbp": "41.54", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021662", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021662", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237510", + "ccsAlgorithm": "N/A", + "coverage": "13.12", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230721_192545_s2.hifi_reads.bc2090.bam", - "filetype": "N/A", + "filename": "HG02809-52d-2_S4_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG01766.HFSS_m84046_230721_192545_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", - "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57480", - "mean": "19432", - "metadataAccession": "SRR29483155", - "min": "181", - "mmTag": false, - "n25": "17282", - "n50": "19417", - "n75": "22331", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02809-52d-2-2_S4_L004_R1_001-2_S4_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613622", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.493715", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01766/raw_data/PacBio_HiFi/m84046_230721_192545_s2.hifi_reads.bc2090.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16868", - "quartile50": "18775", - "quartile75": "21454", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-2_S4_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01766", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "53097306006", - "totalGbp": "53.1", - "totalReads": "2732398", + "title": "Illumina Sequencing of Omni-C Libraries of HG02809", + "totalBp": "40668316356", + "totalGbp": "40.67", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021677", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021677", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237510", + "ccsAlgorithm": "N/A", + "coverage": "13.12", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230722_180255_s3.hifi_reads.bc2080.bam", - "filetype": "N/A", + "filename": "HG02809-52d-2_S4_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG03136.HFSS_m84046_230722_180255_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02809-52d-2-2_S4_L004_R1_001-2_S4_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "49504", - "mean": "18263", - "metadataAccession": "SRR29483206", - "min": "84", - "mmTag": false, - "n25": "16433", - "n50": "18442", - "n75": "20924", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613622", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.405883", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03136/raw_data/PacBio_HiFi/m84046_230722_180255_s3.hifi_reads.bc2080.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15999", - "quartile50": "17881", - "quartile75": "20244", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/hic/HG02809-52d-2_S4_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03136", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "64399312194", - "totalGbp": "64.4", - "totalReads": "3526179", + "title": "Illumina Sequencing of Omni-C Libraries of HG02809", + "totalBp": "40666242486", + "totalGbp": "40.67", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021662", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021662", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797106", + "ccsAlgorithm": "N/A", + "coverage": "10.38", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230722_180255_s3.hifi_reads.bc2090.bam", - "filetype": "N/A", + "filename": "HG02841-1_S5_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG01766.HFSS_m84046_230722_180255_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02841-1_S5_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61514", - "mean": "19516", - "metadataAccession": "SRR29483158", - "min": "222", - "mmTag": false, - "n25": "17338", - "n50": "19506", - "n75": "22474", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310825", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.488242", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01766/raw_data/PacBio_HiFi/m84046_230722_180255_s3.hifi_reads.bc2090.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16913", - "quartile50": "18846", - "quartile75": "21569", + "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/hic/HG02841-1_S5_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01766", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "56312489585", - "totalGbp": "56.31", - "totalReads": "2885411", + "title": "Illumina Sequencing of Omni-C Libraries of HG02841", + "totalBp": "32175246855", + "totalGbp": "32.18", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021677", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021677", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797106", + "ccsAlgorithm": "N/A", + "coverage": "10.38", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230722_183401_s4.hifi_reads.bc2080.bam", - "filetype": "N/A", + "filename": "HG02841-1_S5_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG03136.HFSS_m84046_230722_183401_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02841-1_S5_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50197", - "mean": "18172", - "metadataAccession": "SRR29483217", - "min": "89", - "mmTag": false, - "n25": "16357", - "n50": "18349", - "n75": "20811", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310825", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.488242", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03136/raw_data/PacBio_HiFi/m84046_230722_183401_s4.hifi_reads.bc2080.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15927", - "quartile50": "17794", - "quartile75": "20134", + "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/hic/HG02841-1_S5_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03136", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "67421766467", - "totalGbp": "67.42", - "totalReads": "3710029", + "title": "Illumina Sequencing of Omni-C Libraries of HG02841", + "totalBp": "32175246855", + "totalGbp": "32.18", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021662", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021662", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797106", + "ccsAlgorithm": "N/A", + "coverage": "13.4", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230722_183401_s4.hifi_reads.bc2090.bam", - "filetype": "N/A", + "filename": "HG02841-2_S5_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG01766.HFSS_m84046_230722_183401_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02841-2_S5_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55690", - "mean": "19412", - "metadataAccession": "SRR29483156", - "min": "138", - "mmTag": false, - "n25": "17264", - "n50": "19392", - "n75": "22330", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310824", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.437549", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01766/raw_data/PacBio_HiFi/m84046_230722_183401_s4.hifi_reads.bc2090.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16847", - "quartile50": "18747", - "quartile75": "21431", + "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/hic/HG02841-2_S5_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01766", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "58353964607", - "totalGbp": "58.35", - "totalReads": "3005966", + "title": "Illumina Sequencing of Omni-C Libraries of HG02841", + "totalBp": "41551546102", + "totalGbp": "41.55", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021674", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021674", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797106", + "ccsAlgorithm": "N/A", + "coverage": "13.4", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230724_190043_s1.hifi_reads.bc2094.bam", - "filetype": "N/A", + "filename": "HG02841-2_S5_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG01028.HFSS_m84046_230724_190043_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02841-2_S5_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "49266", - "mean": "17784", - "metadataAccession": "SRR29483214", - "min": "97", - "mmTag": false, - "n25": "15849", - "n50": "17793", - "n75": "20438", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310824", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.437549", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01028/raw_data/PacBio_HiFi/m84046_230724_190043_s1.hifi_reads.bc2094.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15464", - "quartile50": "17217", - "quartile75": "19649", + "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/hic/HG02841-2_S5_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01028", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "58299850347", - "totalGbp": "58.3", - "totalReads": "3278083", + "title": "Illumina Sequencing of Omni-C Libraries of HG02841", + "totalBp": "41551546102", + "totalGbp": "41.55", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021676", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021676", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "5.06", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230724_190043_s1.hifi_reads.bc2096.bam", - "filetype": "N/A", + "filename": "HG02922-1_S18_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00258.HFSS_m84046_230724_190043_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-1_S18_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55371", - "mean": "18645", - "metadataAccession": "SRR29483180", - "min": "148", - "mmTag": false, - "n25": "16729", - "n50": "18691", - "n75": "21293", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242185", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.541485", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00258/raw_data/PacBio_HiFi/m84046_230724_190043_s1.hifi_reads.bc2096.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16344", - "quartile50": "18140", - "quartile75": "20558", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00258", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "51428204939", - "totalGbp": "51.43", - "totalReads": "2758278", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "15679484213", + "totalGbp": "15.68", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021674", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021674", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "5.06", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230724_193107_s2.hifi_reads.bc2094.bam", - "filetype": "N/A", + "filename": "HG02922-1_S18_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG01028.HFSS_m84046_230724_193107_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-1_S18_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "51678", - "mean": "17807", - "metadataAccession": "SRR29483211", - "min": "83", - "mmTag": false, - "n25": "15861", - "n50": "17819", - "n75": "20475", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242185", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.528025", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01028/raw_data/PacBio_HiFi/m84046_230724_193107_s2.hifi_reads.bc2094.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15475", - "quartile50": "17236", - "quartile75": "19684", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01028", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "60855170041", - "totalGbp": "60.86", - "totalReads": "3417421", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "15678477524", + "totalGbp": "15.68", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021676", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021676", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "5.12", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230724_193107_s2.hifi_reads.bc2096.bam", - "filetype": "N/A", + "filename": "HG02922-1_S18_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00258.HFSS_m84046_230724_193107_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-1_S18_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60525", - "mean": "18670", - "metadataAccession": "SRR29483179", - "min": "103", - "mmTag": false, - "n25": "16744", - "n50": "18719", - "n75": "21334", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242184", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.566459", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00258/raw_data/PacBio_HiFi/m84046_230724_193107_s2.hifi_reads.bc2096.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16353", - "quartile50": "18163", - "quartile75": "20593", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00258", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "53789021399", - "totalGbp": "53.79", - "totalReads": "2881022", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "15878378348", + "totalGbp": "15.88", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021674", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021674", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "5.12", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230724_200213_s3.hifi_reads.bc2094.bam", - "filetype": "N/A", + "filename": "HG02922-1_S18_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG01028.HFSS_m84046_230724_200213_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-1_S18_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "49951", - "mean": "17733", - "metadataAccession": "SRR29483212", - "min": "129", - "mmTag": false, - "n25": "15814", - "n50": "17739", - "n75": "20361", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242184", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.540985", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01028/raw_data/PacBio_HiFi/m84046_230724_200213_s3.hifi_reads.bc2094.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15432", - "quartile50": "17171", - "quartile75": "19582", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01028", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "57205768778", - "totalGbp": "57.21", - "totalReads": "3225797", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "15877680604", + "totalGbp": "15.88", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021676", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021676", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "4.95", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230724_200213_s3.hifi_reads.bc2096.bam", - "filetype": "N/A", + "filename": "HG02922-1_S18_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00258.HFSS_m84046_230724_200213_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-1_S18_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52749", - "mean": "18592", - "metadataAccession": "SRR29483178", - "min": "127", - "mmTag": false, - "n25": "16693", - "n50": "18637", - "n75": "21211", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242176", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.560546", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00258/raw_data/PacBio_HiFi/m84046_230724_200213_s3.hifi_reads.bc2096.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16308", - "quartile50": "18093", - "quartile75": "20489", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00258", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "50277136375", - "totalGbp": "50.28", - "totalReads": "2704234", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "15353893039", + "totalGbp": "15.35", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861232", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861232", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "4.95", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 16kb fractionated gDNA", - "familyId": "CLM02", - "filename": "m84046_230724_203319_s4.hifi_reads.bc2055.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02922-1_S18_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG01123.HFSS2_m84046_230724_203319_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-1_S18_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "47325", - "mean": "13826", - "metadataAccession": "SRR29483115", - "min": "158", - "mmTag": false, - "n25": "12065", - "n50": "13705", - "n75": "16221", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242176", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.569764", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01123/raw_data/PacBio_HiFi/m84046_230724_203319_s4.hifi_reads.bc2055.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR1", - "quartile25": "11740", - "quartile50": "13113", - "quartile75": "15274", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01123", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "36561691313", - "totalGbp": "36.56", - "totalReads": "2644354", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "15353059475", + "totalGbp": "15.35", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861235", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861235", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "4.86", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 18kb fractionated gDNA", - "familyId": "CLM32", - "filename": "m84046_230724_203319_s4.hifi_reads.bc2056.bam", - "filetype": "N/A", - "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG01361.HFSS2_m84046_230724_203319_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02922-1_S18_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-1_S18_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55368", - "mean": "14341", - "metadataAccession": "SRR29483175", - "min": "195", - "mmTag": false, - "n25": "12438", - "n50": "14133", - "n75": "16723", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242183", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.534743", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01361/raw_data/PacBio_HiFi/m84046_230724_203319_s4.hifi_reads.bc2056.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR1", - "quartile25": "12129", - "quartile50": "13541", - "quartile75": "15772", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01361", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "42045826152", - "totalGbp": "42.05", - "totalReads": "2931742", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "15058862575", + "totalGbp": "15.06", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN26267394", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN26267394", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "4.86", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", - "familyId": "PEL51", - "filename": "m84046_230724_203319_s4.hifi_reads.default.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02922-1_S18_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG02293.HFSS_m84046_230724_203319_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-1_S18_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "42508", - "mean": "18160", - "metadataAccession": "SRR29483071", - "min": "184", - "mmTag": false, - "n25": "16081", - "n50": "18053", - "n75": "20771", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242183", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.538057", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/PacBio_HiFi/m84046_230724_203319_s4.hifi_reads.default.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR2", - "quartile25": "15728", - "quartile50": "17464", - "quartile75": "19938", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02293", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "8717022835", - "totalGbp": "8.72", - "totalReads": "479989", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "15057987757", + "totalGbp": "15.06", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021661", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021661", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "11.12", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230727_225904_s1.hifi_reads.bc2089.bam", - "filetype": "N/A", + "filename": "HG02922-1_S18i_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG18879.HFSS_m84046_230727_225904_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-1_S18i_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53615", - "mean": "19311", - "metadataAccession": "SRR29483209", - "min": "122", - "mmTag": false, - "n25": "17158", - "n50": "19275", - "n75": "22219", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242404", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.45325", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18879/raw_data/PacBio_HiFi/m84046_230727_225904_s1.hifi_reads.bc2089.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16771", - "quartile50": "18638", - "quartile75": "21350", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18i_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18879", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "35952728466", - "totalGbp": "35.95", - "totalReads": "1861755", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "34473291574", + "totalGbp": "34.47", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021673", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021673", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "11.12", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230727_225904_s1.hifi_reads.bc2093.bam", - "filetype": "N/A", + "filename": "HG02922-1_S18i_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG03457.HFSS_m84046_230727_225904_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-1_S18i_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53305", - "mean": "20347", - "metadataAccession": "SRR29483102", - "min": "125", - "mmTag": false, - "n25": "18216", - "n50": "20376", - "n75": "23263", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242404", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.47633", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03457/raw_data/PacBio_HiFi/m84046_230727_225904_s1.hifi_reads.bc2093.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17800", - "quartile50": "19764", - "quartile75": "22452", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18i_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03457", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "40341169723", - "totalGbp": "40.34", - "totalReads": "1982643", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "34470837368", + "totalGbp": "34.47", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021675", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021675", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "11.83", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230727_225904_s1.hifi_reads.bc2095.bam", - "filetype": "N/A", + "filename": "HG02922-1_S18i_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG03778.HFSS_m84046_230727_225904_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-1_S18i_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53059", - "mean": "18327", - "metadataAccession": "SRR29483263", - "min": "91", - "mmTag": false, - "n25": "16558", - "n50": "18440", - "n75": "20733", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242403", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.497254", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03778/raw_data/PacBio_HiFi/m84046_230727_225904_s1.hifi_reads.bc2095.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16201", - "quartile50": "17959", - "quartile75": "20169", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18i_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03778", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "41851544501", - "totalGbp": "41.85", - "totalReads": "2283495", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "36674507291", + "totalGbp": "36.67", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021661", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021661", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "11.83", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230728_195023_s2.hifi_reads.bc2089.bam", - "filetype": "N/A", + "filename": "HG02922-1_S18i_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG18879.HFSS_m84046_230728_195023_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-1_S18i_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55640", - "mean": "19295", - "metadataAccession": "SRR29483138", - "min": "105", - "mmTag": false, - "n25": "17146", - "n50": "19254", - "n75": "22189", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242403", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.459331", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18879/raw_data/PacBio_HiFi/m84046_230728_195023_s2.hifi_reads.bc2089.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16762", - "quartile50": "18623", - "quartile75": "21322", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18i_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18879", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "35231680700", - "totalGbp": "35.23", - "totalReads": "1825888", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "36673265858", + "totalGbp": "36.67", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021673", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021673", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "10.13", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230728_195023_s2.hifi_reads.bc2093.bam", - "filetype": "N/A", + "filename": "HG02922-1_S18i_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG03457.HFSS_m84046_230728_195023_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-1_S18i_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "51457", - "mean": "20335", - "metadataAccession": "SRR29483153", - "min": "212", - "mmTag": false, - "n25": "18205", - "n50": "20365", - "n75": "23238", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242402", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.460186", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03457/raw_data/PacBio_HiFi/m84046_230728_195023_s2.hifi_reads.bc2093.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17791", - "quartile50": "19755", - "quartile75": "22429", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18i_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03457", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "39739563028", - "totalGbp": "39.74", - "totalReads": "1954186", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "31405734054", + "totalGbp": "31.41", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021675", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021675", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "10.13", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230728_195023_s2.hifi_reads.bc2095.bam", - "filetype": "N/A", + "filename": "HG02922-1_S18i_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG03778.HFSS_m84046_230728_195023_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-1_S18i_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53357", - "mean": "18321", - "metadataAccession": "SRR29483262", - "min": "67", - "mmTag": false, - "n25": "16551", - "n50": "18435", - "n75": "20725", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242402", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.451275", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03778/raw_data/PacBio_HiFi/m84046_230728_195023_s2.hifi_reads.bc2095.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16194", - "quartile50": "17951", - "quartile75": "20165", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18i_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03778", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "41213430190", - "totalGbp": "41.21", - "totalReads": "2249399", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "31404653189", + "totalGbp": "31.4", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021661", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021661", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "8.74", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230728_202047_s3.hifi_reads.bc2089.bam", - "filetype": "N/A", + "filename": "HG02922-1_S18i_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG18879.HFSS_m84046_230728_202047_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-1_S18i_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59168", - "mean": "19012", - "metadataAccession": "SRR29483137", - "min": "120", - "mmTag": false, - "n25": "16954", - "n50": "18930", - "n75": "21749", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242401", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.485954", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18879/raw_data/PacBio_HiFi/m84046_230728_202047_s3.hifi_reads.bc2089.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16597", - "quartile50": "18348", - "quartile75": "20912", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18i_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18879", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "33948783319", - "totalGbp": "33.95", - "totalReads": "1785585", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "27099399518", + "totalGbp": "27.1", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021673", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021673", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "8.74", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230728_202047_s3.hifi_reads.bc2093.bam", - "filetype": "N/A", + "filename": "HG02922-1_S18i_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG03457.HFSS_m84046_230728_202047_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-1_S18i_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "54776", - "mean": "20048", - "metadataAccession": "SRR29483101", - "min": "113", - "mmTag": false, - "n25": "17991", - "n50": "20036", - "n75": "22816", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242401", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.48088", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03457/raw_data/PacBio_HiFi/m84046_230728_202047_s3.hifi_reads.bc2093.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17602", - "quartile50": "19469", - "quartile75": "22028", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-1_S18i_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03457", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "32168165375", - "totalGbp": "32.17", - "totalReads": "1604550", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "27098330323", + "totalGbp": "27.1", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021675", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021675", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "4.67", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230728_202047_s3.hifi_reads.bc2095.bam", - "filetype": "N/A", + "filename": "HG02922-2_S20_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG03778.HFSS_m84046_230728_202047_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-2_S20_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53713", - "mean": "18101", - "metadataAccession": "SRR29483243", - "min": "106", - "mmTag": false, - "n25": "16373", - "n50": "18184", - "n75": "20428", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242400", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.559289", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03778/raw_data/PacBio_HiFi/m84046_230728_202047_s3.hifi_reads.bc2095.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16034", - "quartile50": "17726", - "quartile75": "19871", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03778", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "42363322281", - "totalGbp": "42.36", - "totalReads": "2340299", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "14475042591", + "totalGbp": "14.48", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021661", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021661", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "4.67", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230728_205153_s4.hifi_reads.bc2089.bam", - "filetype": "N/A", + "filename": "HG02922-2_S20_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG18879.HFSS_m84046_230728_205153_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-2_S20_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53708", - "mean": "18979", - "metadataAccession": "SRR29483210", - "min": "213", - "mmTag": false, - "n25": "16927", - "n50": "18885", - "n75": "21715", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242400", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.571817", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18879/raw_data/PacBio_HiFi/m84046_230728_205153_s4.hifi_reads.bc2089.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16571", - "quartile50": "18309", - "quartile75": "20873", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18879", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "33673965830", - "totalGbp": "33.67", - "totalReads": "1774191", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "14473925138", + "totalGbp": "14.47", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021673", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021673", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "4.73", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230728_205153_s4.hifi_reads.bc2093.bam", - "filetype": "N/A", + "filename": "HG02922-2_S20_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG03457.HFSS_m84046_230728_205153_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-2_S20_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "62363", - "mean": "20011", - "metadataAccession": "SRR29483103", - "min": "104", - "mmTag": false, - "n25": "17961", - "n50": "19997", - "n75": "22775", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242399", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.541696", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03457/raw_data/PacBio_HiFi/m84046_230728_205153_s4.hifi_reads.bc2093.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17574", - "quartile50": "19429", - "quartile75": "21990", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03457", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "31921561388", - "totalGbp": "31.92", - "totalReads": "1595159", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "14674740969", + "totalGbp": "14.67", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021675", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021675", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "4.73", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230728_205153_s4.hifi_reads.bc2095.bam", - "filetype": "N/A", + "filename": "HG02922-2_S20_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG03778.HFSS_m84046_230728_205153_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-2_S20_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58389", - "mean": "18065", - "metadataAccession": "SRR29483261", - "min": "163", - "mmTag": false, - "n25": "16342", - "n50": "18145", - "n75": "20384", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242399", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.527607", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03778/raw_data/PacBio_HiFi/m84046_230728_205153_s4.hifi_reads.bc2095.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16005", - "quartile50": "17688", - "quartile75": "19830", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03778", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "42162842373", - "totalGbp": "42.16", - "totalReads": "2333827", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "14673914780", + "totalGbp": "14.67", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021662", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021662", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "4.7", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230728_232723_s1.hifi_reads.bc2090.bam", - "filetype": "N/A", + "filename": "HG02922-2_S20_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG01766.HFSS_m84046_230728_232723_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-2_S20_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52137", - "mean": "19323", - "metadataAccession": "SRR29483157", - "min": "64", - "mmTag": false, - "n25": "17225", - "n50": "19299", - "n75": "22149", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242398", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.569154", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01766/raw_data/PacBio_HiFi/m84046_230728_232723_s1.hifi_reads.bc2090.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16820", - "quartile50": "18682", - "quartile75": "21289", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01766", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "27492756899", - "totalGbp": "27.49", - "totalReads": "1422746", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "14568201510", + "totalGbp": "14.57", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021674", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021674", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "4.7", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230728_232723_s1.hifi_reads.bc2094.bam", - "filetype": "N/A", + "filename": "HG02922-2_S20_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG01028.HFSS_m84046_230728_232723_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-2_S20_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "51477", - "mean": "17735", - "metadataAccession": "SRR29483213", - "min": "147", - "mmTag": false, - "n25": "15818", - "n50": "17739", - "n75": "20357", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242398", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.546273", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01028/raw_data/PacBio_HiFi/m84046_230728_232723_s1.hifi_reads.bc2094.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15438", - "quartile50": "17171", - "quartile75": "19579", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01028", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "28974810104", - "totalGbp": "28.97", - "totalReads": "1633726", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "14567183879", + "totalGbp": "14.57", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021676", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021676", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "4.52", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230728_232723_s1.hifi_reads.bc2096.bam", - "filetype": "N/A", + "filename": "HG02922-2_S20_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG00258.HFSS_m84046_230728_232723_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-2_S20_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56068", - "mean": "18590", - "metadataAccession": "SRR29483181", - "min": "135", - "mmTag": false, - "n25": "16692", - "n50": "18633", - "n75": "21200", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242397", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.54842", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00258/raw_data/PacBio_HiFi/m84046_230728_232723_s1.hifi_reads.bc2096.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16311", - "quartile50": "18091", - "quartile75": "20477", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00258", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "50381614416", - "totalGbp": "50.38", - "totalReads": "2710084", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "14013170961", + "totalGbp": "14.01", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021661", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021661", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "4.52", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230731_200859_s2.hifi_reads.bc2089.bam", - "filetype": "N/A", + "filename": "HG02922-2_S20_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG18879.HFSS_m84046_230731_200859_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-2_S20_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55809", - "mean": "18948", - "metadataAccession": "SRR29483205", - "min": "72", - "mmTag": false, - "n25": "16912", - "n50": "18864", - "n75": "21657", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242397", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.524473", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18879/raw_data/PacBio_HiFi/m84046_230731_200859_s2.hifi_reads.bc2089.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16560", - "quartile50": "18291", - "quartile75": "20831", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18879", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "58568710214", - "totalGbp": "58.57", - "totalReads": "3090957", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "14012189171", + "totalGbp": "14.01", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021673", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021673", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "9.23", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230731_200859_s2.hifi_reads.bc2093.bam", - "filetype": "N/A", + "filename": "HG02922-2_S20i_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG03457.HFSS_m84046_230731_200859_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-2_S20i_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53032", - "mean": "19977", - "metadataAccession": "SRR29483152", - "min": "65", - "mmTag": false, - "n25": "17939", - "n50": "19969", - "n75": "22719", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242396", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.448434", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03457/raw_data/PacBio_HiFi/m84046_230731_200859_s2.hifi_reads.bc2093.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17555", - "quartile50": "19406", - "quartile75": "21946", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20i_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03457", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "47333857834", - "totalGbp": "47.33", - "totalReads": "2369344", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "28606795597", + "totalGbp": "28.61", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021675", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021675", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "9.23", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230731_200859_s2.hifi_reads.bc2095.bam", - "filetype": "N/A", + "filename": "HG02922-2_S20i_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG03778.HFSS_m84046_230731_200859_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-2_S20i_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "48971", - "mean": "18038", - "metadataAccession": "SRR29483242", - "min": "332", - "mmTag": false, - "n25": "16321", - "n50": "18116", - "n75": "20351", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242396", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.472228", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03778/raw_data/PacBio_HiFi/m84046_230731_200859_s2.hifi_reads.bc2095.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15986", - "quartile50": "17660", - "quartile75": "19802", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20i_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03778", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "7492283139", - "totalGbp": "7.49", - "totalReads": "415348", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "28604467707", + "totalGbp": "28.6", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021686", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021686", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "9.67", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230831_231439_s1.hifi_reads.bc2033.bam", - "filetype": "N/A", + "filename": "HG02922-2_S20i_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG03103.HFSS_m84046_230831_231439_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-2_S20i_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58234", - "mean": "18443", - "metadataAccession": "SRR29483127", - "min": "64", - "mmTag": false, - "n25": "16267", - "n50": "18439", - "n75": "21420", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242395", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.495269", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03103/raw_data/PacBio_HiFi/m84046_230831_231439_s1.hifi_reads.bc2033.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15834", - "quartile50": "17755", - "quartile75": "20472", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20i_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03103", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "63888430038", - "totalGbp": "63.89", - "totalReads": "3464099", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "29969805791", + "totalGbp": "29.97", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021687", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021687", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "9.67", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230831_231439_s1.hifi_reads.bc2034.bam", - "filetype": "N/A", + "filename": "HG02922-2_S20i_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG01048.HFSS_m84046_230831_231439_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-2_S20i_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60075", - "mean": "19703", - "metadataAccession": "SRR29483229", - "min": "112", - "mmTag": false, - "n25": "17227", - "n50": "19817", - "n75": "23257", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242395", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.471149", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01048/raw_data/PacBio_HiFi/m84046_230831_231439_s1.hifi_reads.bc2034.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16642", - "quartile50": "18931", - "quartile75": "22072", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20i_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01048", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "56294891530", - "totalGbp": "56.29", - "totalReads": "2857155", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "29968611585", + "totalGbp": "29.97", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021686", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021686", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "8.65", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230831_234545_s2.hifi_reads.bc2033.bam", - "filetype": "N/A", + "filename": "HG02922-2_S20i_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG03103.HFSS_m84046_230831_234545_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-2_S20i_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56378", - "mean": "18585", - "metadataAccession": "SRR29483124", - "min": "85", - "mmTag": false, - "n25": "16387", - "n50": "18611", - "n75": "21617", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242393", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.516831", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03103/raw_data/PacBio_HiFi/m84046_230831_234545_s2.hifi_reads.bc2033.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15937", - "quartile50": "17907", - "quartile75": "20668", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20i_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03103", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "62604382554", - "totalGbp": "62.6", - "totalReads": "3368424", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "26806180472", + "totalGbp": "26.81", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021687", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021687", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "8.65", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230831_234545_s2.hifi_reads.bc2034.bam", - "filetype": "N/A", + "filename": "HG02922-2_S20i_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG01048.HFSS_m84046_230831_234545_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-2_S20i_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59663", - "mean": "19854", - "metadataAccession": "SRR29483230", - "min": "128", - "mmTag": false, - "n25": "17360", - "n50": "19992", - "n75": "23444", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", - "oneHundredkbPlus": "N/A", - "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01048/raw_data/PacBio_HiFi/m84046_230831_234545_s2.hifi_reads.bc2034.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16761", - "quartile50": "19095", - "quartile75": "22264", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242393", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.490183", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20i_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01048", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "56024496861", - "totalGbp": "56.02", - "totalReads": "2821770", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "26805199204", + "totalGbp": "26.81", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021689", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021689", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "7.55", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 19kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230901_223052_s3.hifi_reads.bc2036.bam", - "filetype": "N/A", + "filename": "HG02922-2_S20i_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG04225.HFSS_m84046_230901_223052_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-2_S20i_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53307", - "mean": "17422", - "metadataAccession": "SRR29483216", - "min": "82", - "mmTag": false, - "n25": "15544", - "n50": "17534", - "n75": "20094", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242392", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.504828", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04225/raw_data/PacBio_HiFi/m84046_230901_223052_s3.hifi_reads.bc2036.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15127", - "quartile50": "16947", - "quartile75": "19354", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20i_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04225", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "63736463295", - "totalGbp": "63.74", - "totalReads": "3658213", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "23402723198", + "totalGbp": "23.4", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021690", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021690", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "N/A", + "coverage": "7.55", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230901_223052_s3.hifi_reads.bc2037.bam", - "filetype": "N/A", + "filename": "HG02922-2_S20i_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19012.HFSS_m84046_230901_223052_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02922-2_S20i_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52097", - "mean": "17279", - "metadataAccession": "SRR29483064", - "min": "93", - "mmTag": false, - "n25": "14949", - "n50": "17641", - "n75": "21083", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242392", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.48997", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19012/raw_data/PacBio_HiFi/m84046_230901_223052_s3.hifi_reads.bc2037.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "14168", - "quartile50": "16610", - "quartile75": "19754", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/hic/HG02922-2_S20i_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19012", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "59685857099", - "totalGbp": "59.69", - "totalReads": "3454109", + "title": "Illumina Sequencing of Omni-C Libraries of HG02922", + "totalBp": "23401744757", + "totalGbp": "23.4", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021689", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021689", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621954", + "ccsAlgorithm": "N/A", + "coverage": "3.52", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 19kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230901_230230_s4.hifi_reads.bc2036.bam", - "filetype": "N/A", + "filename": "HG02965-1_S1_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG04225.HFSS_m84046_230901_230230_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02965-1_S1_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58413", - "mean": "17284", - "metadataAccession": "SRR29483215", - "min": "146", - "mmTag": false, - "n25": "15427", - "n50": "17375", - "n75": "19912", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242391", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.628871", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04225/raw_data/PacBio_HiFi/m84046_230901_230230_s4.hifi_reads.bc2036.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15019", - "quartile50": "16801", - "quartile75": "19173", + "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-1_S1_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04225", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "62627446083", - "totalGbp": "62.63", - "totalReads": "3623260", + "title": "Illumina Sequencing of Omni-C Libraries of HG02965", + "totalBp": "10909100017", + "totalGbp": "10.91", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021690", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021690", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621954", + "ccsAlgorithm": "N/A", + "coverage": "3.52", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230901_230230_s4.hifi_reads.bc2037.bam", - "filetype": "N/A", + "filename": "HG02965-1_S1_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19012.HFSS_m84046_230901_230230_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02965-1_S1_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59026", - "mean": "17041", - "metadataAccession": "SRR29483065", - "min": "259", - "mmTag": false, - "n25": "14729", - "n50": "17363", - "n75": "20769", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242391", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.611813", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19012/raw_data/PacBio_HiFi/m84046_230901_230230_s4.hifi_reads.bc2037.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "13973", - "quartile50": "16354", - "quartile75": "19436", + "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-1_S1_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19012", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "58892224761", - "totalGbp": "58.89", - "totalReads": "3455827", + "title": "Illumina Sequencing of Omni-C Libraries of HG02965", + "totalBp": "10908367237", + "totalGbp": "10.91", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021686", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021686", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621954", + "ccsAlgorithm": "N/A", + "coverage": "3.61", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230905_231311_s2.hifi_reads.bc2033.bam", - "filetype": "N/A", + "filename": "HG02965-1_S1_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG03103.HFSS_m84046_230905_231311_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02965-1_S1_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55667", - "mean": "18204", - "metadataAccession": "SRR29483125", - "min": "94", - "mmTag": false, - "n25": "16105", - "n50": "18160", - "n75": "21031", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242390", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.594433", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03103/raw_data/PacBio_HiFi/m84046_230905_231311_s2.hifi_reads.bc2033.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15703", - "quartile50": "17521", - "quartile75": "20126", + "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-1_S1_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03103", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "59498338298", - "totalGbp": "59.5", - "totalReads": "3268313", + "title": "Illumina Sequencing of Omni-C Libraries of HG02965", + "totalBp": "11188624282", + "totalGbp": "11.19", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021687", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021687", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621954", + "ccsAlgorithm": "N/A", + "coverage": "3.61", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230905_231311_s2.hifi_reads.bc2034.bam", - "filetype": "N/A", + "filename": "HG02965-1_S1_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG01048.HFSS_m84046_230905_231311_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02965-1_S1_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58044", - "mean": "19385", - "metadataAccession": "SRR29483228", - "min": "164", - "mmTag": false, - "n25": "17002", - "n50": "19452", - "n75": "22752", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242390", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.588381", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01048/raw_data/PacBio_HiFi/m84046_230905_231311_s2.hifi_reads.bc2034.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16464", - "quartile50": "18631", - "quartile75": "21631", + "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-1_S1_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01048", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "39578673831", - "totalGbp": "39.58", - "totalReads": "2041679", + "title": "Illumina Sequencing of Omni-C Libraries of HG02965", + "totalBp": "11187675916", + "totalGbp": "11.19", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021689", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021689", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621954", + "ccsAlgorithm": "N/A", + "coverage": "3.49", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 19kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230906_215022_s3.hifi_reads.bc2036.bam", - "filetype": "N/A", + "filename": "HG02965-1_S1_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG04225.HFSS_m84046_230906_215022_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02965-1_S1_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "48211", - "mean": "17132", - "metadataAccession": "SRR29483218", - "min": "176", - "mmTag": false, - "n25": "15313", - "n50": "17212", - "n75": "19687", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242389", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.613123", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04225/raw_data/PacBio_HiFi/m84046_230906_215022_s3.hifi_reads.bc2036.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "14918", - "quartile50": "16658", - "quartile75": "18967", + "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-1_S1_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04225", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "36205086640", - "totalGbp": "36.21", - "totalReads": "2113201", + "title": "Illumina Sequencing of Omni-C Libraries of HG02965", + "totalBp": "10804113739", + "totalGbp": "10.8", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021690", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021690", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621954", + "ccsAlgorithm": "N/A", + "coverage": "3.48", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230906_215022_s3.hifi_reads.bc2037.bam", - "filetype": "N/A", + "filename": "HG02965-1_S1_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19012.HFSS_m84046_230906_215022_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02965-1_S1_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58421", - "mean": "16774", - "metadataAccession": "SRR29483063", - "min": "115", - "mmTag": false, - "n25": "14509", - "n50": "17066", - "n75": "20350", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242389", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.519883", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19012/raw_data/PacBio_HiFi/m84046_230906_215022_s3.hifi_reads.bc2037.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "13779", - "quartile50": "16104", - "quartile75": "19070", + "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-1_S1_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19012", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "75460808834", - "totalGbp": "75.46", - "totalReads": "4498538", + "title": "Illumina Sequencing of Omni-C Libraries of HG02965", + "totalBp": "10803222671", + "totalGbp": "10.8", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021687", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021687", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621954", + "ccsAlgorithm": "N/A", + "coverage": "3.56", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230906_222128_s4.hifi_reads.bc2034.bam", - "filetype": "N/A", + "filename": "HG02965-1_S1_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG01048.HFSS_m84046_230906_222128_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02965-1_S1_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "63360", - "mean": "19991", - "metadataAccession": "SRR29483266", - "min": "359", - "mmTag": false, - "n25": "17468", - "n50": "20142", - "n75": "23647", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242388", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.601814", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01048/raw_data/PacBio_HiFi/m84046_230906_222128_s4.hifi_reads.bc2034.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "16853", - "quartile50": "19228", - "quartile75": "22437", + "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-1_S1_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01048", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "61822391486", - "totalGbp": "61.82", - "totalReads": "3092444", + "title": "Illumina Sequencing of Omni-C Libraries of HG02965", + "totalBp": "11042916113", + "totalGbp": "11.04", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021689", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021689", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621954", + "ccsAlgorithm": "N/A", + "coverage": "3.56", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 19kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230906_222128_s4.hifi_reads.bc2036.bam", - "filetype": "N/A", + "filename": "HG02965-1_S1_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG04225.HFSS_m84046_230906_222128_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02965-1_S1_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53953", - "mean": "17368", - "metadataAccession": "SRR29483219", - "min": "130", - "mmTag": false, - "n25": "15501", - "n50": "17477", - "n75": "20013", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242388", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.576679", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04225/raw_data/PacBio_HiFi/m84046_230906_222128_s4.hifi_reads.bc2036.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "15086", - "quartile50": "16893", - "quartile75": "19281", + "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-1_S1_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04225", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "44071477955", - "totalGbp": "44.07", - "totalReads": "2537506", + "title": "Illumina Sequencing of Omni-C Libraries of HG02965", + "totalBp": "11042022598", + "totalGbp": "11.04", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021688", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021688", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621954", + "ccsAlgorithm": "N/A", + "coverage": "3.1", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230909_231800_s4.hifi_reads.bc2035.bam", - "filetype": "N/A", + "filename": "HG02965-2_S9_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19190.HFSS_m84046_230909_231800_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02965-2_S9_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "73514", - "mean": "20606", - "metadataAccession": "SRR29483258", - "min": "118", - "mmTag": false, - "n25": "18062", - "n50": "20748", - "n75": "24325", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242387", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.617718", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19190/raw_data/PacBio_HiFi/m84046_230909_231800_s4.hifi_reads.bc2035.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17453", - "quartile50": "19823", - "quartile75": "23101", + "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-2_S9_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19190", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "108911448346", - "totalGbp": "108.91", - "totalReads": "5285173", + "title": "Illumina Sequencing of Omni-C Libraries of HG02965", + "totalBp": "9617944611", + "totalGbp": "9.62", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021688", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021688", - "ccsAlgorithm": "v7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621954", + "ccsAlgorithm": "N/A", + "coverage": "3.1", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84046_230913_204538_s3.hifi_reads.bc2035.bam", - "filetype": "N/A", + "filename": "HG02965-2_S9_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "PG19190.HFSS_m84046_230913_204538_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", - "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "65090", - "mean": "20563", - "metadataAccession": "SRR29483264", - "min": "122", - "mmTag": false, - "n25": "18034", - "n50": "20697", - "n75": "24253", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02965-2_S9_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242387", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.591012", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19190/raw_data/PacBio_HiFi/m84046_230913_204538_s3.hifi_reads.bc2035.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR4", - "quartile25": "17426", - "quartile50": "19786", - "quartile75": "23023", + "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-2_S9_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19190", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "112259504727", - "totalGbp": "112.26", - "totalReads": "5459074", + "title": "Illumina Sequencing of Omni-C Libraries of HG02965", + "totalBp": "9617317510", + "totalGbp": "9.62", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861235", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861235", - "ccsAlgorithm": "v8.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621954", + "ccsAlgorithm": "N/A", + "coverage": "3.18", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 27kb fractionated gDNA", - "familyId": "CLM32", - "filename": "m84046_231202_071034_s1.hifi_reads.bc2052.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02965-2_S9_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG01361.HFSS3_m84046_231202_071034_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02965-2_S9_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "72539", - "mean": "22058", - "metadataAccession": "SRR29483098", - "min": "51", - "mmTag": false, - "n25": "18986", - "n50": "22251", - "n75": "26513", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242386", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.576885", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01361/raw_data/PacBio_HiFi/m84046_231202_071034_s1.hifi_reads.bc2052.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR1", - "quartile25": "18204", - "quartile50": "21031", - "quartile75": "24921", + "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-2_S9_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01361", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "75651333730", - "totalGbp": "75.65", - "totalReads": "3429635", + "title": "Illumina Sequencing of Omni-C Libraries of HG02965", + "totalBp": "9855703706", + "totalGbp": "9.86", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861234", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861234", - "ccsAlgorithm": "v8.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621954", + "ccsAlgorithm": "N/A", + "coverage": "3.18", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 26kb fractionated gDNA", - "familyId": "CLM31", - "filename": "m84046_231202_071034_s1.hifi_reads.bc2053.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02965-2_S9_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG01358.HFSS2_m84046_231202_071034_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02965-2_S9_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "65908", - "mean": "21635", - "metadataAccession": "SRR29483271", - "min": "63", - "mmTag": false, - "n25": "18662", - "n50": "21906", - "n75": "26034", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242386", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.621251", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m84046_231202_071034_s1.hifi_reads.bc2053.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR1", - "quartile25": "17831", - "quartile50": "20701", - "quartile75": "24489", + "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-2_S9_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01358", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "23725857199", - "totalGbp": "23.73", - "totalReads": "1096627", + "title": "Illumina Sequencing of Omni-C Libraries of HG02965", + "totalBp": "9854880335", + "totalGbp": "9.85", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861233", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861233", - "ccsAlgorithm": "v8.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621954", + "ccsAlgorithm": "N/A", + "coverage": "3.06", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": "CLM16", - "filename": "m84046_231202_090949_s3.hifi_reads.bc2054.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02965-2_S9_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG01258.HFSS2_m84046_231202_090949_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02965-2_S9_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "65204", - "mean": "20494", - "metadataAccession": "SRR29483154", - "min": "74", - "mmTag": false, - "n25": "17826", - "n50": "20574", - "n75": "24233", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242385", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.606758", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01258/raw_data/PacBio_HiFi/m84046_231202_090949_s3.hifi_reads.bc2054.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR1", - "quartile25": "17228", - "quartile50": "19622", - "quartile75": "22959", + "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-2_S9_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01258", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "50288278175", - "totalGbp": "50.29", - "totalReads": "2453786", + "title": "Illumina Sequencing of Omni-C Libraries of HG02965", + "totalBp": "9483522303", + "totalGbp": "9.48", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861232", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861232", - "ccsAlgorithm": "v8.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621954", + "ccsAlgorithm": "N/A", + "coverage": "3.06", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 25kb fractionated gDNA", - "familyId": "CLM02", - "filename": "m84046_231202_090949_s3.hifi_reads.bc2055.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02965-2_S9_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG01123.HFSS3_m84046_231202_090949_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02965-2_S9_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60699", - "mean": "21612", - "metadataAccession": "SRR29483114", - "min": "106", - "mmTag": false, - "n25": "18721", - "n50": "21753", - "n75": "25731", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242385", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.581478", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01123/raw_data/PacBio_HiFi/m84046_231202_090949_s3.hifi_reads.bc2055.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR1", - "quartile25": "18022", - "quartile50": "20671", - "quartile75": "24294", + "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-2_S9_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01123", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "45092269241", - "totalGbp": "45.09", - "totalReads": "2086408", + "title": "Illumina Sequencing of Omni-C Libraries of HG02965", + "totalBp": "9482716711", + "totalGbp": "9.48", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861234", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861234", - "ccsAlgorithm": "v8.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621954", + "ccsAlgorithm": "N/A", + "coverage": "3.13", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 26kb fractionated gDNA", - "familyId": "CLM31", - "filename": "m84046_231202_110908_s4.hifi_reads.bc2053.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02965-2_S9_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG01358.HFSS2_m84046_231202_110908_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02965-2_S9_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61399", - "mean": "21541", - "metadataAccession": "SRR29483270", - "min": "97", - "mmTag": false, - "n25": "18580", - "n50": "21794", - "n75": "25898", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242384", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.606566", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m84046_231202_110908_s4.hifi_reads.bc2053.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR1", - "quartile25": "17767", - "quartile50": "20614", - "quartile75": "24354", + "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-2_S9_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01358", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "22537442552", - "totalGbp": "22.54", - "totalReads": "1046235", + "title": "Illumina Sequencing of Omni-C Libraries of HG02965", + "totalBp": "9692742184", + "totalGbp": "9.69", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN17861241", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN17861241", - "ccsAlgorithm": "v8.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621954", + "ccsAlgorithm": "N/A", + "coverage": "3.13", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 22kb fractionated gDNA", - "familyId": "NG107", - "filename": "m84046_231202_110908_s4.hifi_reads.bc2056.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02965-2_S9_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "kmiyamot@uw.edu", - "generatorFacility": "University of Washington", - "instrumentModel": "Revio", - "libraryId": "HG03516.HFSS_m84046_231202_110908_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02965-2_S9_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "68453", - "mean": "18230", - "metadataAccession": "SRR29483076", - "min": "72", - "mmTag": false, - "n25": "15849", - "n50": "18248", - "n75": "21503", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242384", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.59662", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03516/raw_data/PacBio_HiFi/m84046_231202_110908_s4.hifi_reads.bc2056.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P1", - "productionYear": "YR1", - "quartile25": "15348", - "quartile50": "17425", - "quartile75": "20374", + "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/hic/HG02965-2_S9_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03516", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "69896055959", - "totalGbp": "69.9", - "totalReads": "3833995", + "title": "Illumina Sequencing of Omni-C Libraries of HG02965", + "totalBp": "9691974613", + "totalGbp": "9.69", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "4.39", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230508_193526_s1.hifi_reads.bc2002.bam", - "filetype": "N/A", + "filename": "HG02976-1_S6_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA20858_lib1_m84081_230508_193526_s1_m84081_230508_193526_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-1_S6_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "64082", - "mean": "19195", - "metadataAccession": "SRR29396835", - "min": "78", - "mmTag": false, - "n25": "17189", - "n50": "19137", - "n75": "21757", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242382", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.5947", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/PacBio_HiFi/m84081_230508_193526_s1.hifi_reads.bc2002.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16558", - "quartile50": "18539", - "quartile75": "20779", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-1_S6_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "103680551157", - "totalGbp": "103.68", - "totalReads": "5401183", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "13615945405", + "totalGbp": "13.62", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "4.39", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", - "familyId": "Y060", - "filename": "m84081_230508_200546_s2.hifi_reads.bc2003.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02976-1_S6_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA19120_lib1_m84081_230508_200546_s2_m84081_230508_200546_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-1_S6_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55134", - "mean": "17886", - "metadataAccession": "SRR29396868", - "min": "141", - "mmTag": false, - "n25": "15850", - "n50": "18107", - "n75": "20460", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242382", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.592511", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/PacBio_HiFi/m84081_230508_200546_s2.hifi_reads.bc2003.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15453", - "quartile50": "17439", - "quartile75": "19846", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-1_S6_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "108117696397", - "totalGbp": "108.12", - "totalReads": "6044757", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "13615192282", + "totalGbp": "13.62", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "4.46", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230511_180835_s3.hifi_reads.bc2002.bam", - "filetype": "N/A", + "filename": "HG02976-1_S6_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA20858_lib1_m84081_230511_180835_s3_m84081_230511_180835_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-1_S6_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "63295", - "mean": "19757", - "metadataAccession": "SRR29396834", - "min": "161", - "mmTag": false, - "n25": "17530", - "n50": "19535", - "n75": "22627", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242381", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.571247", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/PacBio_HiFi/m84081_230511_180835_s3.hifi_reads.bc2002.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16967", - "quartile50": "18868", - "quartile75": "21313", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-1_S6_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "84879874354", - "totalGbp": "84.88", - "totalReads": "4296083", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "13833717712", + "totalGbp": "13.83", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "4.46", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", - "familyId": "Y060", - "filename": "m84081_230511_183900_s4.hifi_reads.bc2003.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG02976-1_S6_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA19120_lib1_m84081_230511_183900_s4_m84081_230511_183900_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-1_S6_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52931", - "mean": "17696", - "metadataAccession": "SRR29396869", - "min": "104", - "mmTag": false, - "n25": "15681", - "n50": "17843", - "n75": "20250", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242381", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.549554", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/PacBio_HiFi/m84081_230511_183900_s4.hifi_reads.bc2003.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15317", - "quartile50": "17177", - "quartile75": "19632", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-1_S6_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "110418103547", - "totalGbp": "110.42", - "totalReads": "6239650", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "13833181288", + "totalGbp": "13.83", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021608", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021608", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "4.24", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230516_191559_s1.hifi_reads.bc2004.bam", - "filetype": "N/A", + "filename": "HG02976-1_S6_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA20282_lib1_m84081_230516_191559_s1_m84081_230516_191559_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-1_S6_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59671", - "mean": "20325", - "metadataAccession": "SRR29396845", - "min": "80", - "mmTag": false, - "n25": "18437", - "n50": "20033", - "n75": "22430", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242380", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.54991", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20282/raw_data/PacBio_HiFi/m84081_230516_191559_s1.hifi_reads.bc2004.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18184", - "quartile50": "19636", - "quartile75": "21758", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-1_S6_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20282", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", - "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "110933334360", - "totalGbp": "110.93", - "totalReads": "5457889", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "13135668935", + "totalGbp": "13.14", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797112", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797112", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "4.24", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230516_194621_s2.hifi_reads.bc1019.bam", - "filetype": "N/A", + "filename": "HG02976-1_S6_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG03792_lib1_m84081_230516_194621_s2_m84081_230516_194621_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-1_S6_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57876", - "mean": "16097", - "metadataAccession": "SRR29396884", - "min": "272", - "mmTag": false, - "n25": "12883", - "n50": "16614", - "n75": "21492", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242380", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.568814", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/PacBio_HiFi/m84081_230516_194621_s2.hifi_reads.bc1019.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "12554", - "quartile50": "13686", - "quartile75": "19898", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-1_S6_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03792", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "96934869826", - "totalGbp": "96.93", - "totalReads": "6021669", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "13135049409", + "totalGbp": "13.14", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021608", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021608", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "4.2", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230519_180923_s3.hifi_reads.bc2004.bam", - "filetype": "N/A", + "filename": "HG02976-1_S6_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA20282_lib1_m84081_230519_180923_s3_m84081_230519_180923_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-1_S6_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "63641", - "mean": "20251", - "metadataAccession": "SRR29396844", - "min": "86", - "mmTag": false, - "n25": "18405", - "n50": "19965", - "n75": "22284", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242379", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.615965", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20282/raw_data/PacBio_HiFi/m84081_230519_180923_s3.hifi_reads.bc2004.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18160", - "quartile50": "19586", - "quartile75": "21648", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-1_S6_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20282", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "105471260068", - "totalGbp": "105.47", - "totalReads": "5208064", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "13006089425", + "totalGbp": "13.01", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797112", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797112", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "4.2", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230519_183943_s4.hifi_reads.bc1019.bam", - "filetype": "N/A", + "filename": "HG02976-1_S6_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG03792_lib1_m84081_230519_183943_s4_m84081_230519_183943_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-1_S6_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58126", - "mean": "17831", - "metadataAccession": "SRR29396883", - "min": "70", - "mmTag": false, - "n25": "15778", - "n50": "17596", - "n75": "20589", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242379", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.578165", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/PacBio_HiFi/m84081_230519_183943_s4.hifi_reads.bc1019.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15463", - "quartile50": "17021", - "quartile75": "19621", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-1_S6_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03792", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "104383006633", - "totalGbp": "104.38", - "totalReads": "5853810", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "13005431684", + "totalGbp": "13.01", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021607", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021607", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "3.94", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230523_180945_s1.hifi_reads.bc2005.bam", - "filetype": "N/A", + "filename": "HG02976-2_S14_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA19909_lib1_m84081_230523_180945_s1_m84081_230523_180945_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-2_S14_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57607", - "mean": "18430", - "metadataAccession": "SRR29396872", - "min": "106", - "mmTag": false, - "n25": "16483", - "n50": "18789", - "n75": "20901", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242378", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.587759", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_230523_180945_s1.hifi_reads.bc2005.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15942", - "quartile50": "18242", - "quartile75": "20340", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19909", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "96297665360", - "totalGbp": "96.3", - "totalReads": "5224855", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "12202402986", + "totalGbp": "12.2", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021609", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021609", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "3.94", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230523_184006_s2.hifi_reads.bc2006.bam", - "filetype": "N/A", + "filename": "HG02976-2_S14_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA20346_lib1_m84081_230523_184006_s2_m84081_230523_184006_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-2_S14_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "49406", - "mean": "18873", - "metadataAccession": "SRR29396843", - "min": "98", - "mmTag": false, - "n25": "17149", - "n50": "19520", - "n75": "21918", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242378", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.589188", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20346/raw_data/PacBio_HiFi/m84081_230523_184006_s2.hifi_reads.bc2006.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16365", - "quartile50": "18835", - "quartile75": "21147", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20346", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "87476288770", - "totalGbp": "87.48", - "totalReads": "4634901", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "12201618883", + "totalGbp": "12.2", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021607", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021607", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "4", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230525_172954_s3.hifi_reads.bc2005.bam", - "filetype": "N/A", + "filename": "HG02976-2_S14_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA19909_lib1_m84081_230525_172954_s3_m84081_230525_172954_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-2_S14_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61002", - "mean": "18665", - "metadataAccession": "SRR29396873", - "min": "147", - "mmTag": false, - "n25": "16837", - "n50": "19008", - "n75": "21069", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242377", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.611986", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_230525_172954_s3.hifi_reads.bc2005.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16265", - "quartile50": "18511", - "quartile75": "20525", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19909", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "101875080979", - "totalGbp": "101.88", - "totalReads": "5457862", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "12415186534", + "totalGbp": "12.42", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021609", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021609", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "4", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230525_180017_s4.hifi_reads.bc2006.bam", - "filetype": "N/A", + "filename": "HG02976-2_S14_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA20346_lib1_m84081_230525_180017_s4_m84081_230525_180017_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-2_S14_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57217", - "mean": "19342", - "metadataAccession": "SRR29396842", - "min": "86", - "mmTag": false, - "n25": "17649", - "n50": "19871", - "n75": "22305", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242377", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.572139", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20346/raw_data/PacBio_HiFi/m84081_230525_180017_s4.hifi_reads.bc2006.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16880", - "quartile50": "19243", - "quartile75": "21521", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20346", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "98945478632", - "totalGbp": "98.95", - "totalReads": "5115540", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "12414632826", + "totalGbp": "12.41", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021619", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021619", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "4", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230601_202307_s1.hifi_reads.bc2007.bam", - "filetype": "N/A", + "filename": "HG02976-2_S14_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA18608_lib1_m84081_230601_202307_s1_m84081_230601_202307_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-2_S14_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55691", - "mean": "18947", - "metadataAccession": "SRR29396852", - "min": "84", - "mmTag": false, - "n25": "16700", - "n50": "19282", - "n75": "21832", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242376", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.59877", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18608/raw_data/PacBio_HiFi/m84081_230601_202307_s1.hifi_reads.bc2007.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16136", - "quartile50": "18571", - "quartile75": "21088", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18608", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "38302395427", - "totalGbp": "38.3", - "totalReads": "2021458", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "12414356855", + "totalGbp": "12.41", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021619", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021619", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "4", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230601_210338_s2.hifi_reads.bc2007.bam", - "filetype": "N/A", + "filename": "HG02976-2_S14_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA18608_lib1_m84081_230601_210338_s2_m84081_230601_210338_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-2_S14_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59027", - "mean": "19576", - "metadataAccession": "SRR29396853", - "min": "102", - "mmTag": false, - "n25": "17367", - "n50": "19920", - "n75": "22570", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242376", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.575913", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18608/raw_data/PacBio_HiFi/m84081_230601_210338_s2.hifi_reads.bc2007.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16693", - "quartile50": "19229", - "quartile75": "21770", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18608", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "126144469880", - "totalGbp": "126.14", - "totalReads": "6443731", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "12413702363", + "totalGbp": "12.41", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021620", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021620", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "3.85", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230601_213444_s3.hifi_reads.bc2008.bam", - "filetype": "N/A", + "filename": "HG02976-2_S14_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA18974_lib1_m84081_230601_213444_s3_m84081_230601_213444_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-2_S14_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57105", - "mean": "20164", - "metadataAccession": "SRR29396859", - "min": "108", - "mmTag": false, - "n25": "18405", - "n50": "20084", - "n75": "22257", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242375", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.580856", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18974/raw_data/PacBio_HiFi/m84081_230601_213444_s3.hifi_reads.bc2008.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18100", - "quartile50": "19697", - "quartile75": "21703", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18974", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "122716117340", - "totalGbp": "122.72", - "totalReads": "6085854", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "11921734213", + "totalGbp": "11.92", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021620", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021620", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "3.85", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230601_220550_s4.hifi_reads.bc2008.bam", - "filetype": "N/A", + "filename": "HG02976-2_S14_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA18974_lib1_m84081_230601_220550_s4_m84081_230601_220550_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-2_S14_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59690", - "mean": "20232", - "metadataAccession": "SRR29396860", - "min": "110", - "mmTag": false, - "n25": "18446", - "n50": "20144", - "n75": "22355", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242375", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.574769", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18974/raw_data/PacBio_HiFi/m84081_230601_220550_s4.hifi_reads.bc2008.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18138", - "quartile50": "19749", - "quartile75": "21784", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18974", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "130053489701", - "totalGbp": "130.05", - "totalReads": "6428043", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "11921026808", + "totalGbp": "11.92", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021607", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021607", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "9.05", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230609_194256_s2.hifi_reads.bc2001.bam", - "filetype": "N/A", + "filename": "HG02976-2_S14i_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA19909_lib1_m84081_230609_194256_s2_m84081_230609_194256_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-2_S14i_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "68370", - "mean": "10935", - "metadataAccession": "SRR29396874", - "min": "103", - "mmTag": false, - "n25": "9208", - "n50": "16322", - "n75": "22107", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", - "oneHundredkbPlus": "N/A", - "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_230609_194256_s2.hifi_reads.bc2001.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "4569", - "quartile50": "8259", - "quartile75": "16194", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242374", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.49904", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14i_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19909", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "75084927598", - "totalGbp": "75.08", - "totalReads": "6866185", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "28058254078", + "totalGbp": "28.06", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021621", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021621", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "9.05", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230609_201402_s3.hifi_reads.bc2009.bam", - "filetype": "N/A", + "filename": "HG02976-2_S14i_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA18952_lib1_m84081_230609_201402_s3_m84081_230609_201402_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-2_S14i_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60825", - "mean": "18761", - "metadataAccession": "SRR29396857", - "min": "111", - "mmTag": false, - "n25": "16437", - "n50": "18517", - "n75": "21881", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242374", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.494608", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18952/raw_data/PacBio_HiFi/m84081_230609_201402_s3.hifi_reads.bc2009.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16068", - "quartile50": "17806", - "quartile75": "20751", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14i_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18952", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "114630102801", - "totalGbp": "114.63", - "totalReads": "6109785", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "28056392408", + "totalGbp": "28.06", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021621", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021621", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "9.2", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230609_204508_s4.hifi_reads.bc2009.bam", - "filetype": "N/A", + "filename": "HG02976-2_S14i_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA18952_lib1_m84081_230609_204508_s4_m84081_230609_204508_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-2_S14i_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59176", - "mean": "18813", - "metadataAccession": "SRR29396858", - "min": "88", - "mmTag": false, - "n25": "16463", - "n50": "18574", - "n75": "21974", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242373", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.495795", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18952/raw_data/PacBio_HiFi/m84081_230609_204508_s4.hifi_reads.bc2009.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16090", - "quartile50": "17847", - "quartile75": "20830", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14i_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18952", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "121866756120", - "totalGbp": "121.87", - "totalReads": "6477676", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "28508736738", + "totalGbp": "28.51", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021622", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021622", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "9.2", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230610_192218_s1.hifi_reads.bc2010.bam", - "filetype": "N/A", + "filename": "HG02976-2_S14i_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA18976_lib1_m84081_230610_192218_s1_m84081_230610_192218_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-2_S14i_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56767", - "mean": "19991", - "metadataAccession": "SRR29396861", - "min": "211", - "mmTag": false, - "n25": "18353", - "n50": "19960", - "n75": "21963", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242373", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.471465", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18976/raw_data/PacBio_HiFi/m84081_230610_192218_s1.hifi_reads.bc2010.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18064", - "quartile50": "19603", - "quartile75": "21493", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14i_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18976", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "111506398484", - "totalGbp": "111.51", - "totalReads": "5577778", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "28507899595", + "totalGbp": "28.51", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021622", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021622", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "8.01", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230610_195324_s2.hifi_reads.bc2010.bam", - "filetype": "N/A", + "filename": "HG02976-2_S14i_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA18976_lib1_m84081_230610_195324_s2_m84081_230610_195324_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-2_S14i_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57421", - "mean": "19905", - "metadataAccession": "SRR29396862", - "min": "124", - "mmTag": false, - "n25": "18294", - "n50": "19884", - "n75": "21860", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242371", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.513093", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18976/raw_data/PacBio_HiFi/m84081_230610_195324_s2.hifi_reads.bc2010.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18008", - "quartile50": "19535", - "quartile75": "21403", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14i_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18976", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "116006257856", - "totalGbp": "116.01", - "totalReads": "5827789", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "24826749519", + "totalGbp": "24.83", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021632", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021632", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "8.01", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230610_202430_s3.hifi_reads.bc2011.bam", - "filetype": "N/A", + "filename": "HG02976-2_S14i_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG00320_lib1_m84081_230610_202430_s3_m84081_230610_202430_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-2_S14i_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60709", - "mean": "19726", - "metadataAccession": "SRR29396921", - "min": "81", - "mmTag": false, - "n25": "17642", - "n50": "19342", - "n75": "21981", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242371", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.517213", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00320/raw_data/PacBio_HiFi/m84081_230610_202430_s3.hifi_reads.bc2011.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17326", - "quartile50": "18861", - "quartile75": "21063", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14i_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00320", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "89163244941", - "totalGbp": "89.16", - "totalReads": "4519882", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "24826011545", + "totalGbp": "24.83", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021632", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021632", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "6.8", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230610_205536_s4.hifi_reads.bc2011.bam", - "filetype": "N/A", + "filename": "HG02976-2_S14i_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG00320_lib1_m84081_230610_205536_s4_m84081_230610_205536_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-2_S14i_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "69079", - "mean": "19771", - "metadataAccession": "SRR29396920", - "min": "117", - "mmTag": false, - "n25": "17646", - "n50": "19363", - "n75": "22068", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242370", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.537468", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00320/raw_data/PacBio_HiFi/m84081_230610_205536_s4.hifi_reads.bc2011.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17324", - "quartile50": "18869", - "quartile75": "21103", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14i_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00320", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "122345830061", - "totalGbp": "122.35", - "totalReads": "6188084", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "21083832226", + "totalGbp": "21.08", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021633", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021633", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "N/A", + "coverage": "6.8", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230616_172650_s1.hifi_reads.bc2012.bam", - "filetype": "N/A", + "filename": "HG02976-2_S14i_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG01786_lib1_m84081_230616_172650_s1_m84081_230616_172650_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02976-2_S14i_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50578", - "mean": "17901", - "metadataAccession": "SRR29396901", - "min": "196", - "mmTag": false, - "n25": "16076", - "n50": "18208", - "n75": "20275", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242370", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.529189", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01786/raw_data/PacBio_HiFi/m84081_230616_172650_s1.hifi_reads.bc2012.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15623", - "quartile50": "17685", - "quartile75": "19754", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/hic/HG02976-2_S14i_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01786", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "112999869409", - "totalGbp": "113", - "totalReads": "6312457", + "title": "Illumina Sequencing of Omni-C Libraries of HG02976", + "totalBp": "21083129517", + "totalGbp": "21.08", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021633", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021633", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797107", + "ccsAlgorithm": "N/A", + "coverage": "10.84", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230616_175717_s2.hifi_reads.bc2012.bam", - "filetype": "N/A", + "filename": "HG02984-1_S6_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG01786_lib1_m84081_230616_175717_s2_m84081_230616_175717_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02984-1_S6_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59847", - "mean": "17946", - "metadataAccession": "SRR29396900", - "min": "67", - "mmTag": false, - "n25": "16115", - "n50": "18250", - "n75": "20321", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310823", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.450685", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01786/raw_data/PacBio_HiFi/m84081_230616_175717_s2.hifi_reads.bc2012.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15658", - "quartile50": "17729", - "quartile75": "19799", + "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/hic/HG02984-1_S6_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01786", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "114898048594", - "totalGbp": "114.9", - "totalReads": "6402094", + "title": "Illumina Sequencing of Omni-C Libraries of HG02984", + "totalBp": "33601463750", + "totalGbp": "33.6", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021634", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021634", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797107", + "ccsAlgorithm": "N/A", + "coverage": "10.84", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230616_182824_s3.hifi_reads.bc2013.bam", - "filetype": "N/A", + "filename": "HG02984-1_S6_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG00146_lib1_m84081_230616_182824_s3_m84081_230616_182824_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02984-1_S6_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60682", - "mean": "20383", - "metadataAccession": "SRR29396881", - "min": "104", - "mmTag": false, - "n25": "18565", - "n50": "20268", - "n75": "22546", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310823", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.450685", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00146/raw_data/PacBio_HiFi/m84081_230616_182824_s3.hifi_reads.bc2013.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18255", - "quartile50": "19863", - "quartile75": "21947", + "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/hic/HG02984-1_S6_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00146", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "113249664653", - "totalGbp": "113.25", - "totalReads": "5556039", + "title": "Illumina Sequencing of Omni-C Libraries of HG02984", + "totalBp": "33601463750", + "totalGbp": "33.6", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021634", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021634", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797107", + "ccsAlgorithm": "N/A", + "coverage": "9.71", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230616_185930_s4.hifi_reads.bc2013.bam", - "filetype": "N/A", + "filename": "HG02984-2_S6_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG00146_lib1_m84081_230616_185930_s4_m84081_230616_185930_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02984-2_S6_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58620", - "mean": "20349", - "metadataAccession": "SRR29396855", - "min": "67", - "mmTag": false, - "n25": "18538", - "n50": "20235", - "n75": "22498", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310822", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.466494", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00146/raw_data/PacBio_HiFi/m84081_230616_185930_s4.hifi_reads.bc2013.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18230", - "quartile50": "19832", - "quartile75": "21906", + "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/hic/HG02984-2_S6_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00146", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "112060886510", - "totalGbp": "112.06", - "totalReads": "5506717", + "title": "Illumina Sequencing of Omni-C Libraries of HG02984", + "totalBp": "30110076480", + "totalGbp": "30.11", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021619", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021619", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797107", + "ccsAlgorithm": "N/A", + "coverage": "9.71", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230623_202140_s1.hifi_reads.bc2007.bam", - "filetype": "N/A", + "filename": "HG02984-2_S6_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA18608_lib1_m84081_230623_202140_s1_m84081_230623_202140_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG02984-2_S6_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "37936", - "mean": "15785", - "metadataAccession": "SRR29396854", - "min": "222", - "mmTag": false, - "n25": "14946", - "n50": "15796", - "n75": "16779", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310822", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.466494", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18608/raw_data/PacBio_HiFi/m84081_230623_202140_s1.hifi_reads.bc2007.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "14852", - "quartile50": "15680", - "quartile75": "16650", + "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/hic/HG02984-2_S6_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18608", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "13512296010", - "totalGbp": "13.51", - "totalReads": "856010", + "title": "Illumina Sequencing of Omni-C Libraries of HG02984", + "totalBp": "30110076480", + "totalGbp": "30.11", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021635", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021635", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758789", + "ccsAlgorithm": "N/A", + "coverage": "28.12", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230623_202140_s1.hifi_reads.bc2014.bam", - "filetype": "N/A", + "filename": "HG03017-1_S3_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG00232_lib1_m84081_230623_202140_s1_m84081_230623_202140_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", - "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "49595", - "mean": "18385", - "metadataAccession": "SRR29396866", - "min": "98", - "mmTag": false, - "n25": "16572", - "n50": "18682", - "n75": "20737", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03017-1_S3_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310844", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.4146", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230623_202140_s1.hifi_reads.bc2014.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16076", - "quartile50": "18183", - "quartile75": "20208", + "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/hic/HG03017-1_S3_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00232", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "81313868165", - "totalGbp": "81.31", - "totalReads": "4422744", + "title": "Illumina Sequencing of Omni-C Libraries of HG03017", + "totalBp": "87156808155", + "totalGbp": "87.16", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021619", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021619", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758789", + "ccsAlgorithm": "N/A", + "coverage": "28.12", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230623_205201_s2.hifi_reads.bc2007.bam", - "filetype": "N/A", + "filename": "HG03017-1_S3_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA18608_lib1_m84081_230623_205201_s2_m84081_230623_205201_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03017-1_S3_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "35337", - "mean": "15815", - "metadataAccession": "SRR29396856", - "min": "106", - "mmTag": false, - "n25": "14970", - "n50": "15823", - "n75": "16816", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310844", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.4146", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18608/raw_data/PacBio_HiFi/m84081_230623_205201_s2.hifi_reads.bc2007.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "14877", - "quartile50": "15705", - "quartile75": "16685", + "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/hic/HG03017-1_S3_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18608", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "13001339007", - "totalGbp": "13", - "totalReads": "822059", + "title": "Illumina Sequencing of Omni-C Libraries of HG03017", + "totalBp": "87156808155", + "totalGbp": "87.16", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021635", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021635", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758789", + "ccsAlgorithm": "N/A", + "coverage": "27.86", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230623_205201_s2.hifi_reads.bc2014.bam", - "filetype": "N/A", + "filename": "HG03017-2_S4_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG00232_lib1_m84081_230623_205201_s2_m84081_230623_205201_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03017-2_S4_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53546", - "mean": "18530", - "metadataAccession": "SRR29396847", - "min": "110", - "mmTag": false, - "n25": "16716", - "n50": "18822", - "n75": "20895", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310843", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.37944", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230623_205201_s2.hifi_reads.bc2014.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16210", - "quartile50": "18325", - "quartile75": "20354", + "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/hic/HG03017-2_S4_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00232", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "82640938538", - "totalGbp": "82.64", - "totalReads": "4459695", + "title": "Illumina Sequencing of Omni-C Libraries of HG03017", + "totalBp": "86375269452", + "totalGbp": "86.38", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021636", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021636", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758789", + "ccsAlgorithm": "N/A", + "coverage": "27.86", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230623_212309_s3.hifi_reads.bc2015.bam", - "filetype": "N/A", + "filename": "HG03017-2_S4_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG00321_lib1_m84081_230623_212309_s3_m84081_230623_212309_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03017-2_S4_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "54945", - "mean": "19328", - "metadataAccession": "SRR29396919", - "min": "121", - "mmTag": false, - "n25": "17219", - "n50": "19652", - "n75": "22061", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310843", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.37944", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00321/raw_data/PacBio_HiFi/m84081_230623_212309_s3.hifi_reads.bc2015.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16644", - "quartile50": "19027", - "quartile75": "21383", + "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/hic/HG03017-2_S4_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00321", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "87765176697", - "totalGbp": "87.77", - "totalReads": "4540789", + "title": "Illumina Sequencing of Omni-C Libraries of HG03017", + "totalBp": "86375269452", + "totalGbp": "86.38", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021636", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021636", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758790", + "ccsAlgorithm": "N/A", + "coverage": "8.3", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230623_215414_s4.hifi_reads.bc2015.bam", - "filetype": "N/A", + "filename": "HG03041-1_S3_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG00321_lib1_m84081_230623_215414_s4_m84081_230623_215414_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03041-1_S3_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58041", - "mean": "19429", - "metadataAccession": "SRR29396918", - "min": "100", - "mmTag": false, - "n25": "17309", - "n50": "19749", - "n75": "22192", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310842", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.496384", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00321/raw_data/PacBio_HiFi/m84081_230623_215414_s4.hifi_reads.bc2015.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16717", - "quartile50": "19122", - "quartile75": "21494", + "path": "s3://human-pangenomics/working/HPRC/HG03041/raw_data/hic/HG03041-1_S3_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00321", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "87052360386", - "totalGbp": "87.05", - "totalReads": "4480452", + "title": "Illumina Sequencing of Omni-C Libraries of HG03041", + "totalBp": "25740160036", + "totalGbp": "25.74", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", "accession": null, - "assembly": "N/A", + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41708789", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758790", + "ccsAlgorithm": "N/A", + "coverage": "8.3", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230624_203119_s1.hifi_reads.bc2016.bam", - "filetype": "N/A", + "filename": "HG03041-1_S3_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG01248_lib1_m84081_230624_203119_s1_m84081_230624_203119_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03041-1_S3_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61976", - "mean": "17882", - "metadataAccession": "SRR29396910", - "min": "66", - "mmTag": false, - "n25": "16106", - "n50": "17401", - "n75": "19434", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310842", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.496384", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01248/raw_data/PacBio_HiFi/m84081_230624_203119_s1.hifi_reads.bc2016.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", + "path": "s3://human-pangenomics/working/HPRC/HG03041/raw_data/hic/HG03041-1_S3_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", "productionYear": null, - "quartile25": "15906", - "quartile50": "17070", - "quartile75": "18759", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01248", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", "subpopulation": null, "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "89192360395", - "totalGbp": "89.19", - "totalReads": "4987552", + "title": "Illumina Sequencing of Omni-C Libraries of HG03041", + "totalBp": "25740160036", + "totalGbp": "25.74", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", "accession": null, - "assembly": "N/A", + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41708789", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758790", + "ccsAlgorithm": "N/A", + "coverage": "8.75", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230624_210225_s2.hifi_reads.bc2016.bam", - "filetype": "N/A", + "filename": "HG03041-2_S7_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG01248_lib1_m84081_230624_210225_s2_m84081_230624_210225_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03041-2_S7_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60735", - "mean": "17854", - "metadataAccession": "SRR29396909", - "min": "111", - "mmTag": false, - "n25": "16091", - "n50": "17375", - "n75": "19381", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310841", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.492089", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01248/raw_data/PacBio_HiFi/m84081_230624_210225_s2.hifi_reads.bc2016.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", + "path": "s3://human-pangenomics/working/HPRC/HG03041/raw_data/hic/HG03041-2_S7_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", "productionYear": null, - "quartile25": "15893", - "quartile50": "17050", - "quartile75": "18723", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01248", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", "subpopulation": null, "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "94995476037", - "totalGbp": "95", - "totalReads": "5320601", + "title": "Illumina Sequencing of Omni-C Libraries of HG03041", + "totalBp": "27119442356", + "totalGbp": "27.12", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021647", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021647", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758790", + "ccsAlgorithm": "N/A", + "coverage": "8.75", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230624_213331_s3.hifi_reads.bc2017.bam", - "filetype": "N/A", + "filename": "HG03041-2_S7_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG03784_lib1_m84081_230624_213331_s3_m84081_230624_213331_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03041-2_S7_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52498", - "mean": "19740", - "metadataAccession": "SRR29396886", - "min": "112", - "mmTag": false, - "n25": "18183", - "n50": "19680", - "n75": "21584", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310841", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.492089", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03784/raw_data/PacBio_HiFi/m84081_230624_213331_s3.hifi_reads.bc2017.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17942", - "quartile50": "19367", - "quartile75": "21164", + "path": "s3://human-pangenomics/working/HPRC/HG03041/raw_data/hic/HG03041-2_S7_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03784", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "101373501273", - "totalGbp": "101.37", - "totalReads": "5135431", + "title": "Illumina Sequencing of Omni-C Libraries of HG03041", + "totalBp": "27119442356", + "totalGbp": "27.12", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021647", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021647", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797108", + "ccsAlgorithm": "N/A", + "coverage": "60.68", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230624_220437_s4.hifi_reads.bc2017.bam", - "filetype": "N/A", + "filename": "HG03050-1_S2_L001_R1_001.fastq.gz", + "filetype": "bam", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG03784_lib1_m84081_230624_220437_s4_m84081_230624_220437_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03050-1_S2_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52968", - "mean": "19759", - "metadataAccession": "SRR29396885", - "min": "109", - "mmTag": false, - "n25": "18197", - "n50": "19700", - "n75": "21609", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310840", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.423403", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03784/raw_data/PacBio_HiFi/m84081_230624_220437_s4.hifi_reads.bc2017.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17955", - "quartile50": "19386", - "quartile75": "21188", + "path": "s3://human-pangenomics/working/HPRC/HG03050/raw_data/hic/HG03050-1_S2_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03784", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "92325346149", - "totalGbp": "92.33", - "totalReads": "4672355", + "title": "Illumina Sequencing of Omni-C Libraries of HG03050", + "totalBp": "188117962773", + "totalGbp": "188.12", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", "accession": null, - "assembly": "N/A", + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41708789", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797108", + "ccsAlgorithm": "N/A", + "coverage": "60.68", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230628_183924_s1.hifi_reads.bc2016.bam", - "filetype": "N/A", + "filename": "HG03050-1_S2_L001_R2_001.fastq.gz", + "filetype": "bam", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG01248_lib1_m84081_230628_183924_s1_m84081_230628_183924_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03050-1_S2_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "32129", - "mean": "16750", - "metadataAccession": "SRR29396908", - "min": "386", - "mmTag": false, - "n25": "15793", - "n50": "16767", - "n75": "17911", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310840", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.423403", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01248/raw_data/PacBio_HiFi/m84081_230628_183924_s1.hifi_reads.bc2016.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", + "path": "s3://human-pangenomics/working/HPRC/HG03050/raw_data/hic/HG03050-1_S2_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", "productionYear": null, - "quartile25": "15675", - "quartile50": "16622", - "quartile75": "17744", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01248", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", "subpopulation": null, "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "3946167499", - "totalGbp": "3.95", - "totalReads": "235592", + "title": "Illumina Sequencing of Omni-C Libraries of HG03050", + "totalBp": "188117962773", + "totalGbp": "188.12", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", "accession": null, - "assembly": "N/A", + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41708789", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797108", + "ccsAlgorithm": "N/A", + "coverage": "11.69", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230628_190945_s2.hifi_reads.bc2016.bam", - "filetype": "N/A", + "filename": "HG03050-2_S6_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG01248_lib1_m84081_230628_190945_s2_m84081_230628_190945_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03050-2_S6_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "32308", - "mean": "16767", - "metadataAccession": "SRR29396907", - "min": "166", - "mmTag": false, - "n25": "15805", - "n50": "16781", - "n75": "17940", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310839", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.476047", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01248/raw_data/PacBio_HiFi/m84081_230628_190945_s2.hifi_reads.bc2016.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", + "path": "s3://human-pangenomics/working/HPRC/HG03050/raw_data/hic/HG03050-2_S6_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", "productionYear": null, - "quartile25": "15689", - "quartile50": "16634", - "quartile75": "17769", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01248", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", "subpopulation": null, "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "4098992812", - "totalGbp": "4.1", - "totalReads": "244457", + "title": "Illumina Sequencing of Omni-C Libraries of HG03050", + "totalBp": "36254239904", + "totalGbp": "36.25", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021649", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021649", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797108", + "ccsAlgorithm": "N/A", + "coverage": "11.69", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230629_184915_s1.hifi_reads.bc2018.bam", - "filetype": "N/A", + "filename": "HG03050-2_S6_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA21144_lib1_m84081_230629_184915_s1_m84081_230629_184915_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03050-2_S6_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61642", - "mean": "18834", - "metadataAccession": "SRR29396830", - "min": "145", - "mmTag": false, - "n25": "17113", - "n50": "18560", - "n75": "20532", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310839", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.476047", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA21144/raw_data/PacBio_HiFi/m84081_230629_184915_s1.hifi_reads.bc2018.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16863", - "quartile50": "18213", - "quartile75": "19981", + "path": "s3://human-pangenomics/working/HPRC/HG03050/raw_data/hic/HG03050-2_S6_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21144", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "111840959974", - "totalGbp": "111.84", - "totalReads": "5937951", + "title": "Illumina Sequencing of Omni-C Libraries of HG03050", + "totalBp": "36254239904", + "totalGbp": "36.25", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021649", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021649", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758791", + "ccsAlgorithm": "N/A", + "coverage": "4.35", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230629_192021_s2.hifi_reads.bc2018.bam", - "filetype": "N/A", + "filename": "HG03130-1_S5_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA21144_lib1_m84081_230629_192021_s2_m84081_230629_192021_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03130-1_S5_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "71081", - "mean": "18977", - "metadataAccession": "SRR29396878", - "min": "83", - "mmTag": false, - "n25": "17173", - "n50": "18658", - "n75": "20720", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242369", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.574426", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA21144/raw_data/PacBio_HiFi/m84081_230629_192021_s2.hifi_reads.bc2018.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16915", - "quartile50": "18291", - "quartile75": "20114", + "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-1_S5_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21144", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "128161101481", - "totalGbp": "128.16", - "totalReads": "6753492", + "title": "Illumina Sequencing of Omni-C Libraries of HG03130", + "totalBp": "13499572647", + "totalGbp": "13.5", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021636", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021636", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758791", + "ccsAlgorithm": "N/A", + "coverage": "4.35", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230630_190803_s1.hifi_reads.bc2015.bam", - "filetype": "N/A", + "filename": "HG03130-1_S5_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG00321_lib1_m84081_230630_190803_s1_m84081_230630_190803_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03130-1_S5_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "49486", - "mean": "20762", - "metadataAccession": "SRR29396917", - "min": "182", - "mmTag": false, - "n25": "19023", - "n50": "20701", - "n75": "22882", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242369", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.513182", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00321/raw_data/PacBio_HiFi/m84081_230630_190803_s1.hifi_reads.bc2015.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18719", - "quartile50": "20324", - "quartile75": "22343", + "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-1_S5_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00321", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "6703217313", - "totalGbp": "6.7", - "totalReads": "322856", + "title": "Illumina Sequencing of Omni-C Libraries of HG03130", + "totalBp": "13498735238", + "totalGbp": "13.5", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021636", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021636", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758791", + "ccsAlgorithm": "N/A", + "coverage": "4.47", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230630_193909_s2.hifi_reads.bc2015.bam", - "filetype": "N/A", + "filename": "HG03130-1_S5_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG00321_lib1_m84081_230630_193909_s2_m84081_230630_193909_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03130-1_S5_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "49979", - "mean": "20812", - "metadataAccession": "SRR29396916", - "min": "389", - "mmTag": false, - "n25": "19059", - "n50": "20746", - "n75": "22950", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242368", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.569608", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00321/raw_data/PacBio_HiFi/m84081_230630_193909_s2.hifi_reads.bc2015.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18755", - "quartile50": "20362", - "quartile75": "22397", + "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-1_S5_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00321", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "7946873289", - "totalGbp": "7.95", - "totalReads": "381838", + "title": "Illumina Sequencing of Omni-C Libraries of HG03130", + "totalBp": "13860885604", + "totalGbp": "13.86", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021635", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021635", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758791", + "ccsAlgorithm": "N/A", + "coverage": "4.47", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230714_201817_s1.hifi_reads.bc2014.bam", - "filetype": "N/A", + "filename": "HG03130-1_S5_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG00232_lib1_m84081_230714_201817_s1_m84081_230714_201817_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03130-1_S5_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "70267", - "mean": "19860", - "metadataAccession": "SRR29396836", - "min": "431", - "mmTag": false, - "n25": "18323", - "n50": "19799", - "n75": "21713", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242368", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.541266", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230714_201817_s1.hifi_reads.bc2014.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18065", - "quartile50": "19484", - "quartile75": "21267", + "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-1_S5_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00232", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "6302465374", - "totalGbp": "6.3", - "totalReads": "317329", + "title": "Illumina Sequencing of Omni-C Libraries of HG03130", + "totalBp": "13859849667", + "totalGbp": "13.86", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021669", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021669", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758791", + "ccsAlgorithm": "N/A", + "coverage": "4.25", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230714_201817_s1.hifi_reads.bc2020.bam", - "filetype": "N/A", + "filename": "HG03130-1_S5_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA18565_lib1_m84081_230714_201817_s1_m84081_230714_201817_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03130-1_S5_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61109", - "mean": "18377", - "metadataAccession": "SRR29396875", - "min": "69", - "mmTag": false, - "n25": "16374", - "n50": "17931", - "n75": "20599", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242367", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.573949", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18565/raw_data/PacBio_HiFi/m84081_230714_201817_s1.hifi_reads.bc2020.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16103", - "quartile50": "17487", - "quartile75": "19619", + "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-1_S5_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18565", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "80173317654", - "totalGbp": "80.17", - "totalReads": "4362524", + "title": "Illumina Sequencing of Omni-C Libraries of HG03130", + "totalBp": "13167995623", + "totalGbp": "13.17", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021635", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021635", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758791", + "ccsAlgorithm": "N/A", + "coverage": "4.25", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230714_205519_s2.hifi_reads.bc2014.bam", - "filetype": "N/A", + "filename": "HG03130-1_S5_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG00232_lib1_m84081_230714_205519_s2_m84081_230714_205519_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03130-1_S5_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52961", - "mean": "19856", - "metadataAccession": "SRR29396924", - "min": "405", - "mmTag": false, - "n25": "18313", - "n50": "19795", - "n75": "21716", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242367", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.512745", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230714_205519_s2.hifi_reads.bc2014.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18063", - "quartile50": "19476", - "quartile75": "21260", + "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-1_S5_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00232", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "7010861592", - "totalGbp": "7.01", - "totalReads": "353075", + "title": "Illumina Sequencing of Omni-C Libraries of HG03130", + "totalBp": "13167045749", + "totalGbp": "13.17", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021669", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021669", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758791", + "ccsAlgorithm": "N/A", + "coverage": "4.36", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230714_205519_s2.hifi_reads.bc2020.bam", - "filetype": "N/A", + "filename": "HG03130-1_S5_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA18565_lib1_m84081_230714_205519_s2_m84081_230714_205519_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03130-1_S5_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "62662", - "mean": "18381", - "metadataAccession": "SRR29396850", - "min": "127", - "mmTag": false, - "n25": "16369", - "n50": "17921", - "n75": "20603", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242359", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.557848", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18565/raw_data/PacBio_HiFi/m84081_230714_205519_s2.hifi_reads.bc2020.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16099", - "quartile50": "17478", - "quartile75": "19611", + "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-1_S5_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18565", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "89433355582", - "totalGbp": "89.43", - "totalReads": "4865353", + "title": "Illumina Sequencing of Omni-C Libraries of HG03130", + "totalBp": "13524884287", + "totalGbp": "13.52", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021635", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021635", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758791", + "ccsAlgorithm": "N/A", + "coverage": "4.36", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230714_212624_s3.hifi_reads.bc2014.bam", - "filetype": "N/A", + "filename": "HG03130-1_S5_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG00232_lib1_m84081_230714_212624_s3_m84081_230714_212624_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03130-1_S5_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52520", - "mean": "19843", - "metadataAccession": "SRR29396923", - "min": "503", - "mmTag": false, - "n25": "18300", - "n50": "19779", - "n75": "21693", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242359", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.559787", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230714_212624_s3.hifi_reads.bc2014.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18046", - "quartile50": "19460", - "quartile75": "21241", + "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-1_S5_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00232", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "7637421327", - "totalGbp": "7.64", - "totalReads": "384888", + "title": "Illumina Sequencing of Omni-C Libraries of HG03130", + "totalBp": "13523916317", + "totalGbp": "13.52", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", "accession": null, - "assembly": "N/A", + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41708788", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758791", + "ccsAlgorithm": "N/A", + "coverage": "3.71", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230714_212624_s3.hifi_reads.bc2021.bam", - "filetype": "N/A", + "filename": "HG03130-2_S13_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG00384_lib1_m84081_230714_212624_s3_m84081_230714_212624_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03130-2_S13_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "65604", - "mean": "20514", - "metadataAccession": "SRR29396915", - "min": "125", - "mmTag": false, - "n25": "18631", - "n50": "20539", - "n75": "23013", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242360", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.605598", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00384/raw_data/PacBio_HiFi/m84081_230714_212624_s3.hifi_reads.bc2021.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", + "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-2_S13_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", "productionYear": null, - "quartile25": "18246", - "quartile50": "20053", - "quartile75": "22342", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00384", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", "subpopulation": null, "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "87240672013", - "totalGbp": "87.24", - "totalReads": "4252735", + "title": "Illumina Sequencing of Omni-C Libraries of HG03130", + "totalBp": "11497934604", + "totalGbp": "11.5", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021635", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021635", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758791", + "ccsAlgorithm": "N/A", + "coverage": "3.71", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230714_215730_s4.hifi_reads.bc2014.bam", - "filetype": "N/A", + "filename": "HG03130-2_S13_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG00232_lib1_m84081_230714_215730_s4_m84081_230714_215730_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03130-2_S13_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "51376", - "mean": "19943", - "metadataAccession": "SRR29396922", - "min": "169", - "mmTag": false, - "n25": "18366", - "n50": "19870", - "n75": "21834", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242360", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.577007", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230714_215730_s4.hifi_reads.bc2014.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18108", - "quartile50": "19543", - "quartile75": "21367", + "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-2_S13_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00232", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "7956857338", - "totalGbp": "7.96", - "totalReads": "398971", + "title": "Illumina Sequencing of Omni-C Libraries of HG03130", + "totalBp": "11497300137", + "totalGbp": "11.5", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", "accession": null, - "assembly": "N/A", + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41708788", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758791", + "ccsAlgorithm": "N/A", + "coverage": "3.8", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230714_215730_s4.hifi_reads.bc2021.bam", - "filetype": "N/A", + "filename": "HG03130-2_S13_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG00384_lib1_m84081_230714_215730_s4_m84081_230714_215730_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03130-2_S13_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "68989", - "mean": "20643", - "metadataAccession": "SRR29396913", - "min": "168", - "mmTag": false, - "n25": "18726", - "n50": "20664", - "n75": "23182", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242361", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.605748", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00384/raw_data/PacBio_HiFi/m84081_230714_215730_s4.hifi_reads.bc2021.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", + "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-2_S13_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", "productionYear": null, - "quartile25": "18337", - "quartile50": "20167", - "quartile75": "22494", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00384", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", "subpopulation": null, "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "91298102319", - "totalGbp": "91.3", - "totalReads": "4422543", + "title": "Illumina Sequencing of Omni-C Libraries of HG03130", + "totalBp": "11785363728", + "totalGbp": "11.79", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021671", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021671", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758791", + "ccsAlgorithm": "N/A", + "coverage": "3.8", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230715_203436_s1.hifi_reads.bc2022.bam", - "filetype": "N/A", + "filename": "HG03130-2_S13_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA20809_lib1_m84081_230715_203436_s1_m84081_230715_203436_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03130-2_S13_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52070", - "mean": "18703", - "metadataAccession": "SRR29396841", - "min": "95", - "mmTag": false, - "n25": "17402", - "n50": "18694", - "n75": "20298", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242361", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.55918", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20809/raw_data/PacBio_HiFi/m84081_230715_203436_s1.hifi_reads.bc2022.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17209", - "quartile50": "18451", - "quartile75": "19993", + "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-2_S13_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20809", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "87078143934", - "totalGbp": "87.08", - "totalReads": "4655640", + "title": "Illumina Sequencing of Omni-C Libraries of HG03130", + "totalBp": "11784559031", + "totalGbp": "11.78", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021671", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021671", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758791", + "ccsAlgorithm": "N/A", + "coverage": "3.59", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230715_210542_s2.hifi_reads.bc2022.bam", - "filetype": "N/A", + "filename": "HG03130-2_S13_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA20809_lib1_m84081_230715_210542_s2_m84081_230715_210542_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03130-2_S13_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60584", - "mean": "18628", - "metadataAccession": "SRR29396840", - "min": "103", - "mmTag": false, - "n25": "17345", - "n50": "18621", - "n75": "20208", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242362", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.588376", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20809/raw_data/PacBio_HiFi/m84081_230715_210542_s2.hifi_reads.bc2022.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17154", - "quartile50": "18382", - "quartile75": "19906", + "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-2_S13_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20809", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "85378958115", - "totalGbp": "85.38", - "totalReads": "4583245", + "title": "Illumina Sequencing of Omni-C Libraries of HG03130", + "totalBp": "11135847597", + "totalGbp": "11.14", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021672", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021672", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758791", + "ccsAlgorithm": "N/A", + "coverage": "3.59", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230715_213648_s3.hifi_reads.bc2023.bam", - "filetype": "N/A", + "filename": "HG03130-2_S13_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA21102_lib1_m84081_230715_213648_s3_m84081_230715_213648_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03130-2_S13_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56564", - "mean": "18240", - "metadataAccession": "SRR29396833", - "min": "101", - "mmTag": false, - "n25": "16045", - "n50": "18323", - "n75": "21128", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242362", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.537702", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA21102/raw_data/PacBio_HiFi/m84081_230715_213648_s3.hifi_reads.bc2023.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15620", - "quartile50": "17597", - "quartile75": "20316", + "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-2_S13_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21102", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "88572942257", - "totalGbp": "88.57", - "totalReads": "4855740", + "title": "Illumina Sequencing of Omni-C Libraries of HG03130", + "totalBp": "11135087450", + "totalGbp": "11.14", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021672", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021672", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758791", + "ccsAlgorithm": "N/A", + "coverage": "3.7", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230715_220754_s4.hifi_reads.bc2023.bam", - "filetype": "N/A", + "filename": "HG03130-2_S13_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA21102_lib1_m84081_230715_220754_s4_m84081_230715_220754_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03130-2_S13_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59189", - "mean": "18335", - "metadataAccession": "SRR29396832", - "min": "64", - "mmTag": false, - "n25": "16117", - "n50": "18440", - "n75": "21256", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242363", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.630068", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA21102/raw_data/PacBio_HiFi/m84081_230715_220754_s4.hifi_reads.bc2023.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15677", - "quartile50": "17696", - "quartile75": "20435", + "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-2_S13_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21102", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "90093303392", - "totalGbp": "90.09", - "totalReads": "4913513", + "title": "Illumina Sequencing of Omni-C Libraries of HG03130", + "totalBp": "11475577542", + "totalGbp": "11.48", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", "accession": null, - "assembly": "N/A", + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41708788", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758791", + "ccsAlgorithm": "N/A", + "coverage": "3.7", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230721_175633_s1.hifi_reads.bc2021.bam", - "filetype": "N/A", + "filename": "HG03130-2_S13_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG00384_lib1_m84081_230721_175633_s1_m84081_230721_175633_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03130-2_S13_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58703", - "mean": "20120", - "metadataAccession": "SRR29396912", - "min": "317", - "mmTag": false, - "n25": "18377", - "n50": "20134", - "n75": "22352", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242363", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.567845", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00384/raw_data/PacBio_HiFi/m84081_230721_175633_s1.hifi_reads.bc2021.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", + "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/hic/HG03130-2_S13_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", "productionYear": null, - "quartile25": "18030", - "quartile50": "19719", - "quartile75": "21788", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00384", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", "subpopulation": null, "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "5580145860", - "totalGbp": "5.58", - "totalReads": "277337", + "title": "Illumina Sequencing of Omni-C Libraries of HG03130", + "totalBp": "11474815636", + "totalGbp": "11.47", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", "accession": null, - "assembly": "N/A", + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41708788", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758792", + "ccsAlgorithm": "N/A", + "coverage": "3.86", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230721_182654_s2.hifi_reads.bc2021.bam", - "filetype": "N/A", + "filename": "HG03139-1_S6_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG00384_lib1_m84081_230721_182654_s2_m84081_230721_182654_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03139-1_S6_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "47639", - "mean": "20151", - "metadataAccession": "SRR29396911", - "min": "117", - "mmTag": false, - "n25": "18398", - "n50": "20167", - "n75": "22384", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242365", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.600621", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00384/raw_data/PacBio_HiFi/m84081_230721_182654_s2.hifi_reads.bc2021.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-1_S6_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", "productionYear": null, - "quartile25": "18055", - "quartile50": "19753", - "quartile75": "21815", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00384", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", "subpopulation": null, "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "5787641754", - "totalGbp": "5.79", - "totalReads": "287210", + "title": "Illumina Sequencing of Omni-C Libraries of HG03139", + "totalBp": "11952931713", + "totalGbp": "11.95", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021670", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021670", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758792", + "ccsAlgorithm": "N/A", + "coverage": "3.86", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230727_200855_s3.hifi_reads.bc2028.bam", - "filetype": "N/A", + "filename": "HG03139-1_S6_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA20818_lib1_m84081_230727_200855_s3_m84081_230727_200855_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03139-1_S6_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "64756", - "mean": "18870", - "metadataAccession": "SRR29396838", - "min": "102", - "mmTag": false, - "n25": "17040", - "n50": "18491", - "n75": "20674", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242365", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.599319", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20818/raw_data/PacBio_HiFi/m84081_230727_200855_s3.hifi_reads.bc2028.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16809", - "quartile50": "18127", - "quartile75": "20004", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-1_S6_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20818", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "114656228354", - "totalGbp": "114.66", - "totalReads": "6076049", + "title": "Illumina Sequencing of Omni-C Libraries of HG03139", + "totalBp": "11952237057", + "totalGbp": "11.95", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021670", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021670", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758792", + "ccsAlgorithm": "N/A", + "coverage": "3.97", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230727_204001_s4.hifi_reads.bc2028.bam", - "filetype": "N/A", + "filename": "HG03139-1_S6_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA20818_lib1_m84081_230727_204001_s4_m84081_230727_204001_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03139-1_S6_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61009", - "mean": "18756", - "metadataAccession": "SRR29396837", - "min": "142", - "mmTag": false, - "n25": "16986", - "n50": "18401", - "n75": "20499", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242366", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.623442", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20818/raw_data/PacBio_HiFi/m84081_230727_204001_s4.hifi_reads.bc2028.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16763", - "quartile50": "18053", - "quartile75": "19875", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-1_S6_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20818", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "109290854662", - "totalGbp": "109.29", - "totalReads": "5826771", + "title": "Illumina Sequencing of Omni-C Libraries of HG03139", + "totalBp": "12303021339", + "totalGbp": "12.3", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021669", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021669", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758792", + "ccsAlgorithm": "N/A", + "coverage": "3.97", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230728_191731_s1.hifi_reads.bc2020.bam", - "filetype": "N/A", + "filename": "HG03139-1_S6_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA18565_lib1_m84081_230728_191731_s1_m84081_230728_191731_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03139-1_S6_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "40638", - "mean": "16954", - "metadataAccession": "SRR29396851", - "min": "115", - "mmTag": false, - "n25": "15896", - "n50": "16985", - "n75": "18239", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242366", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.58376", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18565/raw_data/PacBio_HiFi/m84081_230728_191731_s1.hifi_reads.bc2020.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15749", - "quartile50": "16808", - "quartile75": "18036", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-1_S6_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18565", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "25516860218", - "totalGbp": "25.52", - "totalReads": "1505035", + "title": "Illumina Sequencing of Omni-C Libraries of HG03139", + "totalBp": "12302107333", + "totalGbp": "12.3", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021671", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021671", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758792", + "ccsAlgorithm": "N/A", + "coverage": "3.75", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230728_191731_s1.hifi_reads.bc2022.bam", - "filetype": "N/A", + "filename": "HG03139-1_S6_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA20809_lib1_m84081_230728_191731_s1_m84081_230728_191731_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03139-1_S6_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "46117", - "mean": "18628", - "metadataAccession": "SRR29396839", - "min": "260", - "mmTag": false, - "n25": "17351", - "n50": "18625", - "n75": "20198", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242342", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.620107", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20809/raw_data/PacBio_HiFi/m84081_230728_191731_s1.hifi_reads.bc2022.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17161", - "quartile50": "18388", - "quartile75": "19904", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-1_S6_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20809", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "10969903547", - "totalGbp": "10.97", - "totalReads": "588891", + "title": "Illumina Sequencing of Omni-C Libraries of HG03139", + "totalBp": "11636777051", + "totalGbp": "11.64", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021672", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021672", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758792", + "ccsAlgorithm": "N/A", + "coverage": "3.75", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230728_191731_s1.hifi_reads.bc2023.bam", - "filetype": "N/A", + "filename": "HG03139-1_S6_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA21102_lib1_m84081_230728_191731_s1_m84081_230728_191731_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03139-1_S6_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55992", - "mean": "20178", - "metadataAccession": "SRR29396831", - "min": "134", - "mmTag": false, - "n25": "18436", - "n50": "20256", - "n75": "22462", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242342", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.583228", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA21102/raw_data/PacBio_HiFi/m84081_230728_191731_s1.hifi_reads.bc2023.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18071", - "quartile50": "19828", - "quartile75": "21900", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-1_S6_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21102", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "14411372514", - "totalGbp": "14.41", - "totalReads": "714199", + "title": "Illumina Sequencing of Omni-C Libraries of HG03139", + "totalBp": "11635941925", + "totalGbp": "11.64", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021607", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021607", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758792", + "ccsAlgorithm": "N/A", + "coverage": "3.88", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230728_194836_s2.hifi_reads.bc2029.bam", - "filetype": "N/A", + "filename": "HG03139-1_S6_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA19909_lib1_m84081_230728_194836_s2_m84081_230728_194836_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03139-1_S6_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59827", - "mean": "20203", - "metadataAccession": "SRR29396849", - "min": "81", - "mmTag": false, - "n25": "18349", - "n50": "20277", - "n75": "22620", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242343", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.581818", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_230728_194836_s2.hifi_reads.bc2029.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17957", - "quartile50": "19803", - "quartile75": "22006", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-1_S6_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19909", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "97319859213", - "totalGbp": "97.32", - "totalReads": "4817014", + "title": "Illumina Sequencing of Omni-C Libraries of HG03139", + "totalBp": "12029450790", + "totalGbp": "12.03", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021607", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021607", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758792", + "ccsAlgorithm": "N/A", + "coverage": "3.88", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_230728_201942_s3.hifi_reads.bc2029.bam", - "filetype": "N/A", + "filename": "HG03139-1_S6_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA19909_lib1_m84081_230728_201942_s3_m84081_230728_201942_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03139-1_S6_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "69516", - "mean": "20097", - "metadataAccession": "SRR29396848", - "min": "186", - "mmTag": false, - "n25": "18269", - "n50": "20173", - "n75": "22480", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242343", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.596229", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_230728_201942_s3.hifi_reads.bc2029.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17882", - "quartile50": "19709", - "quartile75": "21881", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-1_S6_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19909", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "99459938408", - "totalGbp": "99.46", - "totalReads": "4948799", + "title": "Illumina Sequencing of Omni-C Libraries of HG03139", + "totalBp": "12028614997", + "totalGbp": "12.03", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021682", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021682", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758792", + "ccsAlgorithm": "N/A", + "coverage": "4.11", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231027_192451_s1.hifi_reads.bc2066.bam", - "filetype": "N/A", + "filename": "HG03139-2_S14_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA19099_lib1_m84081_231027_192451_s1_m84081_231027_192451_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03139-2_S14_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "68354", - "mean": "19999", - "metadataAccession": "SRR29396863", - "min": "134", - "mmTag": false, - "n25": "17716", - "n50": "19923", - "n75": "23009", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242344", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.587956", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19099/raw_data/PacBio_HiFi/m84081_231027_192451_s1.hifi_reads.bc2066.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17304", - "quartile50": "19241", - "quartile75": "22055", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-2_S14_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19099", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "71420056983", - "totalGbp": "71.42", - "totalReads": "3571017", + "title": "Illumina Sequencing of Omni-C Libraries of HG03139", + "totalBp": "12748095306", + "totalGbp": "12.75", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021683", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021683", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758792", + "ccsAlgorithm": "N/A", + "coverage": "4.11", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231027_195514_s2.hifi_reads.bc2067.bam", - "filetype": "N/A", + "filename": "HG03139-2_S14_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG03343_lib1_m84081_231027_195514_s2_m84081_231027_195514_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03139-2_S14_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "65357", - "mean": "21823", - "metadataAccession": "SRR29396895", - "min": "93", - "mmTag": false, - "n25": "19131", - "n50": "21984", - "n75": "25894", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242344", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.552105", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231027_195514_s2.hifi_reads.bc2067.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18478", - "quartile50": "20971", - "quartile75": "24504", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-2_S14_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03343", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "80389909890", - "totalGbp": "80.39", - "totalReads": "3683635", + "title": "Illumina Sequencing of Omni-C Libraries of HG03139", + "totalBp": "12747435871", + "totalGbp": "12.75", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021696", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021696", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758792", + "ccsAlgorithm": "N/A", + "coverage": "4.23", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231027_202621_s3.hifi_reads.bc2070.bam", - "filetype": "N/A", + "filename": "HG03139-2_S14_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG00106_lib1_m84081_231027_202621_s3_m84081_231027_202621_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03139-2_S14_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "77433", - "mean": "21103", - "metadataAccession": "SRR29396926", - "min": "96", - "mmTag": false, - "n25": "18509", - "n50": "21228", - "n75": "24912", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242345", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.5655", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00106/raw_data/PacBio_HiFi/m84081_231027_202621_s3.hifi_reads.bc2070.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17907", - "quartile50": "20285", - "quartile75": "23650", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-2_S14_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00106", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "86515704685", - "totalGbp": "86.52", - "totalReads": "4099673", + "title": "Illumina Sequencing of Omni-C Libraries of HG03139", + "totalBp": "13102628356", + "totalGbp": "13.1", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", "accession": null, - "assembly": "N/A", + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41708787", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758792", + "ccsAlgorithm": "N/A", + "coverage": "4.23", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231027_205726_s4.hifi_reads.bc2068.bam", - "filetype": "N/A", + "filename": "HG03139-2_S14_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG01785_lib1_m84081_231027_205726_s4_m84081_231027_205726_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03139-2_S14_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55706", - "mean": "18463", - "metadataAccession": "SRR29396906", - "min": "154", - "mmTag": false, - "n25": "16603", - "n50": "18371", - "n75": "20789", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242345", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.581126", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01785/raw_data/PacBio_HiFi/m84081_231027_205726_s4.hifi_reads.bc2068.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-2_S14_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", "productionYear": null, - "quartile25": "16282", - "quartile50": "17891", - "quartile75": "20106", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01785", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", "subpopulation": null, "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "69132600711", - "totalGbp": "69.13", - "totalReads": "3744219", + "title": "Illumina Sequencing of Omni-C Libraries of HG03139", + "totalBp": "13101759299", + "totalGbp": "13.1", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021682", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021682", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758792", + "ccsAlgorithm": "N/A", + "coverage": "3.98", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231029_013437_s1.hifi_reads.bc2066.bam", - "filetype": "N/A", + "filename": "HG03139-2_S14_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA19099_lib1_m84081_231029_013437_s1_m84081_231029_013437_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03139-2_S14_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "64507", - "mean": "20214", - "metadataAccession": "SRR29396864", - "min": "88", - "mmTag": false, - "n25": "17859", - "n50": "20167", - "n75": "23322", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242346", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.60048", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19099/raw_data/PacBio_HiFi/m84081_231029_013437_s1.hifi_reads.bc2066.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17421", - "quartile50": "19447", - "quartile75": "22342", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-2_S14_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19099", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "67429698005", - "totalGbp": "67.43", - "totalReads": "3335768", + "title": "Illumina Sequencing of Omni-C Libraries of HG03139", + "totalBp": "12351349239", + "totalGbp": "12.35", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021683", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021683", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758792", + "ccsAlgorithm": "N/A", + "coverage": "3.98", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231029_020543_s2.hifi_reads.bc2067.bam", - "filetype": "N/A", + "filename": "HG03139-2_S14_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG03343_lib1_m84081_231029_020543_s2_m84081_231029_020543_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03139-2_S14_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "67011", - "mean": "21937", - "metadataAccession": "SRR29396894", - "min": "131", - "mmTag": false, - "n25": "19209", - "n50": "22113", - "n75": "26029", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242346", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.549756", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231029_020543_s2.hifi_reads.bc2067.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18542", - "quartile50": "21085", - "quartile75": "24644", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-2_S14_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03343", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "76377325201", - "totalGbp": "76.38", - "totalReads": "3481519", + "title": "Illumina Sequencing of Omni-C Libraries of HG03139", + "totalBp": "12350569304", + "totalGbp": "12.35", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021696", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021696", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758792", + "ccsAlgorithm": "N/A", + "coverage": "4.1", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231029_023649_s3.hifi_reads.bc2070.bam", - "filetype": "N/A", + "filename": "HG03139-2_S14_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG00106_lib1_m84081_231029_023649_s3_m84081_231029_023649_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03139-2_S14_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "67088", - "mean": "21638", - "metadataAccession": "SRR29396925", - "min": "120", - "mmTag": false, - "n25": "18829", - "n50": "21822", - "n75": "25832", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242347", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.572203", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00106/raw_data/PacBio_HiFi/m84081_231029_023649_s3.hifi_reads.bc2070.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18150", - "quartile50": "20737", - "quartile75": "24408", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-2_S14_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00106", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "86599346640", - "totalGbp": "86.6", - "totalReads": "4002067", + "title": "Illumina Sequencing of Omni-C Libraries of HG03139", + "totalBp": "12697988712", + "totalGbp": "12.7", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", "accession": null, - "assembly": "N/A", + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41708787", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758792", + "ccsAlgorithm": "N/A", + "coverage": "4.1", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231029_030755_s4.hifi_reads.bc2068.bam", - "filetype": "N/A", + "filename": "HG03139-2_S14_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG01785_lib1_m84081_231029_030755_s4_m84081_231029_030755_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03139-2_S14_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55915", - "mean": "18627", - "metadataAccession": "SRR29396905", - "min": "101", - "mmTag": false, - "n25": "16703", - "n50": "18530", - "n75": "21036", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242347", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.562295", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01785/raw_data/PacBio_HiFi/m84081_231029_030755_s4.hifi_reads.bc2068.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/hic/HG03139-2_S14_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", "productionYear": null, - "quartile25": "16370", - "quartile50": "18025", - "quartile75": "20317", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01785", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", "subpopulation": null, "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "62547368039", - "totalGbp": "62.55", - "totalReads": "3357874", + "title": "Illumina Sequencing of Omni-C Libraries of HG03139", + "totalBp": "12697196399", + "totalGbp": "12.7", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021684", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021684", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "4.78", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231103_210721_s4.hifi_reads.bc2069.bam", - "filetype": "N/A", + "filename": "HG03195-1_S7_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG01894_lib1_m84081_231103_210721_s4_m84081_231103_210721_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-1_S7_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "68862", - "mean": "19872", - "metadataAccession": "SRR29396897", - "min": "78", - "mmTag": false, - "n25": "18044", - "n50": "20025", - "n75": "22730", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242348", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.56484", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01894/raw_data/PacBio_HiFi/m84081_231103_210721_s4.hifi_reads.bc2069.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17619", - "quartile50": "19444", - "quartile75": "21948", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-1_S7_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01894", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "99237532921", - "totalGbp": "99.24", - "totalReads": "4993697", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "14832803612", + "totalGbp": "14.83", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021684", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021684", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "4.78", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231105_014442_s1.hifi_reads.bc2069.bam", - "filetype": "N/A", + "filename": "HG03195-1_S7_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG01894_lib1_m84081_231105_014442_s1_m84081_231105_014442_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-1_S7_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "66222", - "mean": "19978", - "metadataAccession": "SRR29396896", - "min": "112", - "mmTag": false, - "n25": "18104", - "n50": "20117", - "n75": "22844", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242348", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.538429", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01894/raw_data/PacBio_HiFi/m84081_231105_014442_s1.hifi_reads.bc2069.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17679", - "quartile50": "19531", - "quartile75": "22063", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-1_S7_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01894", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "102950156305", - "totalGbp": "102.95", - "totalReads": "5152973", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "14831815272", + "totalGbp": "14.83", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021697", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021697", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "4.85", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231110_195735_s1.hifi_reads.bc2071.bam", - "filetype": "N/A", + "filename": "HG03195-1_S7_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG00117_lib1_m84081_231110_195735_s1_m84081_231110_195735_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-1_S7_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58989", - "mean": "19490", - "metadataAccession": "SRR29396903", - "min": "141", - "mmTag": false, - "n25": "17714", - "n50": "19547", - "n75": "22192", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242349", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.570263", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00117/raw_data/PacBio_HiFi/m84081_231110_195735_s1.hifi_reads.bc2071.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17367", - "quartile50": "19007", - "quartile75": "21433", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-1_S7_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00117", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "92655924917", - "totalGbp": "92.66", - "totalReads": "4753908", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "15041853062", + "totalGbp": "15.04", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021697", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021697", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "4.85", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231112_020730_s1.hifi_reads.bc2071.bam", - "filetype": "N/A", + "filename": "HG03195-1_S7_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG00117_lib1_m84081_231112_020730_s1_m84081_231112_020730_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-1_S7_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60579", - "mean": "19696", - "metadataAccession": "SRR29396892", - "min": "95", - "mmTag": false, - "n25": "17795", - "n50": "19687", - "n75": "22372", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242349", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.533578", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00117/raw_data/PacBio_HiFi/m84081_231112_020730_s1.hifi_reads.bc2071.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17457", - "quartile50": "19143", - "quartile75": "21621", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-1_S7_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00117", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "104125394431", - "totalGbp": "104.13", - "totalReads": "5286393", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "15041101316", + "totalGbp": "15.04", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021683", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021683", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "4.53", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231112_023836_s2.hifi_reads.bc2067.bam", - "filetype": "N/A", + "filename": "HG03195-1_S7_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG03343_lib1_m84081_231112_023836_s2_m84081_231112_023836_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", - "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "64938", - "mean": "21611", - "metadataAccession": "SRR29396893", - "min": "96", - "mmTag": false, - "n25": "19006", - "n50": "21714", - "n75": "25367", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-1_S7_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242351", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.588908", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231112_023836_s2.hifi_reads.bc2067.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18408", - "quartile50": "20799", - "quartile75": "24117", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-1_S7_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03343", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "23811565860", - "totalGbp": "23.81", - "totalReads": "1101791", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "14040285498", + "totalGbp": "14.04", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021696", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021696", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "4.53", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231112_034048_s4.hifi_reads.bc2070.bam", - "filetype": "N/A", + "filename": "HG03195-1_S7_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG00106_lib1_m84081_231112_034048_s4_m84081_231112_034048_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-1_S7_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59221", - "mean": "21198", - "metadataAccession": "SRR29396914", - "min": "134", - "mmTag": false, - "n25": "18546", - "n50": "21296", - "n75": "25075", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242351", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.565042", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00106/raw_data/PacBio_HiFi/m84081_231112_034048_s4.hifi_reads.bc2070.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17936", - "quartile50": "20335", - "quartile75": "23756", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-1_S7_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00106", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "17464604937", - "totalGbp": "17.46", - "totalReads": "823862", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "14039451752", + "totalGbp": "14.04", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021683", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021683", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "4.51", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231119_015049_s1.hifi_reads.bc2067.bam", - "filetype": "N/A", + "filename": "HG03195-1_S7_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG03343_lib1_m84081_231119_015049_s1_m84081_231119_015049_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-1_S7_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58315", - "mean": "21759", - "metadataAccession": "SRR29396891", - "min": "236", - "mmTag": false, - "n25": "19100", - "n50": "21896", - "n75": "25690", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242352", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.550107", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231119_015049_s1.hifi_reads.bc2067.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18472", - "quartile50": "20925", - "quartile75": "24369", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-1_S7_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03343", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "3829545883", - "totalGbp": "3.83", - "totalReads": "175994", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "13982392584", + "totalGbp": "13.98", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021683", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021683", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "4.51", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231119_022155_s2.hifi_reads.bc2067.bam", - "filetype": "N/A", + "filename": "HG03195-1_S7_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG03343_lib1_m84081_231119_022155_s2_m84081_231119_022155_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-1_S7_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59141", - "mean": "21766", - "metadataAccession": "SRR29396890", - "min": "105", - "mmTag": false, - "n25": "19070", - "n50": "21916", - "n75": "25762", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242352", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.553076", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231119_022155_s2.hifi_reads.bc2067.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18430", - "quartile50": "20912", - "quartile75": "24406", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-1_S7_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03343", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "4116704775", - "totalGbp": "4.12", - "totalReads": "189126", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "13981512589", + "totalGbp": "13.98", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021683", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021683", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "4.61", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231119_025301_s3.hifi_reads.bc2067.bam", - "filetype": "N/A", + "filename": "HG03195-2_S15_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG03343_lib1_m84081_231119_025301_s3_m84081_231119_025301_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-2_S15_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "51526", - "mean": "21808", - "metadataAccession": "SRR29396889", - "min": "528", - "mmTag": false, - "n25": "19107", - "n50": "21952", - "n75": "25819", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242353", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.581302", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231119_025301_s3.hifi_reads.bc2067.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18462", - "quartile50": "20945", - "quartile75": "24475", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03343", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "3912424496", - "totalGbp": "3.91", - "totalReads": "179401", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "14303290679", + "totalGbp": "14.3", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021682", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021682", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "4.61", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231122_210358_s4.hifi_reads.bc2066.bam", - "filetype": "N/A", + "filename": "HG03195-2_S15_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA19099_lib1_m84081_231122_210358_s4_m84081_231122_210358_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-2_S15_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "67431", - "mean": "20194", - "metadataAccession": "SRR29396865", - "min": "109", - "mmTag": false, - "n25": "17827", - "n50": "20119", - "n75": "23306", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242353", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.526772", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19099/raw_data/PacBio_HiFi/m84081_231122_210358_s4.hifi_reads.bc2066.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17394", - "quartile50": "19399", - "quartile75": "22303", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19099", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "29875159090", - "totalGbp": "29.88", - "totalReads": "1479407", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "14302336909", + "totalGbp": "14.3", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", "accession": null, - "assembly": "N/A", + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41708787", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "4.68", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231122_210358_s4.hifi_reads.bc2068.bam", - "filetype": "N/A", + "filename": "HG03195-2_S15_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG01785_lib1_m84081_231122_210358_s4_m84081_231122_210358_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-2_S15_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60041", - "mean": "18654", - "metadataAccession": "SRR29396904", - "min": "129", - "mmTag": false, - "n25": "16721", - "n50": "18558", - "n75": "21059", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242354", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.544862", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01785/raw_data/PacBio_HiFi/m84081_231122_210358_s4.hifi_reads.bc2068.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", "productionYear": null, - "quartile25": "16385", - "quartile50": "18051", - "quartile75": "20338", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01785", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", "subpopulation": null, "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "37653152376", - "totalGbp": "37.65", - "totalReads": "2018483", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "14501402402", + "totalGbp": "14.5", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021682", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021682", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "4.68", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231124_031433_s4.hifi_reads.bc2066.bam", - "filetype": "N/A", + "filename": "HG03195-2_S15_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA19099_lib1_m84081_231124_031433_s4_m84081_231124_031433_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-2_S15_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58771", - "mean": "20121", - "metadataAccession": "SRR29396867", - "min": "159", - "mmTag": false, - "n25": "17785", - "n50": "20050", - "n75": "23188", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242354", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.510395", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19099/raw_data/PacBio_HiFi/m84081_231124_031433_s4.hifi_reads.bc2066.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17362", - "quartile50": "19344", - "quartile75": "22214", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19099", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "32997796125", - "totalGbp": "33", - "totalReads": "1639967", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "14500663032", + "totalGbp": "14.5", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", "accession": null, - "assembly": "N/A", + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41708787", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "4.36", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231124_031433_s4.hifi_reads.bc2068.bam", - "filetype": "N/A", + "filename": "HG03195-2_S15_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG01785_lib1_m84081_231124_031433_s4_m84081_231124_031433_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-2_S15_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60926", - "mean": "18608", - "metadataAccession": "SRR29396902", - "min": "96", - "mmTag": false, - "n25": "16693", - "n50": "18507", - "n75": "21003", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242355", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.57522", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01785/raw_data/PacBio_HiFi/m84081_231124_031433_s4.hifi_reads.bc2068.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", "productionYear": null, - "quartile25": "16363", - "quartile50": "18008", - "quartile75": "20291", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01785", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", "subpopulation": null, "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "41997271684", - "totalGbp": "42", - "totalReads": "2256941", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "13509928125", + "totalGbp": "13.51", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021607", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021607", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "4.36", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231207_200206_s1.hifi_reads.bc2008.bam", - "filetype": "N/A", + "filename": "HG03195-2_S15_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA19909_lib1_m84081_231207_200206_s1_m84081_231207_200206_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-2_S15_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "64325", - "mean": "18557", - "metadataAccession": "SRR29396846", - "min": "194", - "mmTag": false, - "n25": "16382", - "n50": "18616", - "n75": "21670", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242355", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.574072", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_231207_200206_s1.hifi_reads.bc2008.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15890", - "quartile50": "17884", - "quartile75": "20653", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19909", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "117981479384", - "totalGbp": "117.98", - "totalReads": "6357730", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "13509134049", + "totalGbp": "13.51", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021699", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021699", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "4.36", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231207_203234_s2.hifi_reads.bc2004.bam", - "filetype": "N/A", + "filename": "HG03195-2_S15_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG03919_lib1_m84081_231207_203234_s2_m84081_231207_203234_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-2_S15_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "72543", - "mean": "21199", - "metadataAccession": "SRR29396882", - "min": "76", - "mmTag": false, - "n25": "18620", - "n50": "21241", - "n75": "24890", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242356", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.56572", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03919/raw_data/PacBio_HiFi/m84081_231207_203234_s2.hifi_reads.bc2004.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18059", - "quartile50": "20357", - "quartile75": "23658", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03919", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "140544542753", - "totalGbp": "140.54", - "totalReads": "6629555", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "13501792797", + "totalGbp": "13.5", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021700", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021700", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "4.36", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231207_210341_s3.hifi_reads.bc2003.bam", - "filetype": "N/A", + "filename": "HG03195-2_S15_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG03388_lib1_m84081_231207_210341_s3_m84081_231207_210341_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-2_S15_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "72686", - "mean": "20836", - "metadataAccession": "SRR29396888", - "min": "162", - "mmTag": false, - "n25": "18380", - "n50": "20864", - "n75": "24295", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242356", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.543852", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03388/raw_data/PacBio_HiFi/m84081_231207_210341_s3.hifi_reads.bc2003.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17871", - "quartile50": "20053", - "quartile75": "23185", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03388", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "129702255571", - "totalGbp": "129.7", - "totalReads": "6224816", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "13500963017", + "totalGbp": "13.5", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021700", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021700", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "11.91", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231207_213447_s4.hifi_reads.bc2003.bam", - "filetype": "N/A", + "filename": "HG03195-2_S15i_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG03388_lib1_m84081_231207_213447_s4_m84081_231207_213447_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-2_S15i_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "73270", - "mean": "20845", - "metadataAccession": "SRR29396887", - "min": "69", - "mmTag": false, - "n25": "18383", - "n50": "20870", - "n75": "24306", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242357", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.469732", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03388/raw_data/PacBio_HiFi/m84081_231207_213447_s4.hifi_reads.bc2003.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17874", - "quartile50": "20060", - "quartile75": "23196", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15i_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03388", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "120724810545", - "totalGbp": "120.72", - "totalReads": "5791516", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "36917053749", + "totalGbp": "36.92", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021685", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021685", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "11.91", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231209_021158_s1.hifi_reads.bc2001.bam", - "filetype": "N/A", + "filename": "HG03195-2_S15i_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA19834_lib1_m84081_231209_021158_s1_m84081_231209_021158_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-2_S15i_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "74893", - "mean": "20177", - "metadataAccession": "SRR29396870", - "min": "121", - "mmTag": false, - "n25": "17383", - "n50": "20239", - "n75": "24086", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242357", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.441498", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19834/raw_data/PacBio_HiFi/m84081_231209_021158_s1.hifi_reads.bc2001.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16746", - "quartile50": "19185", - "quartile75": "22651", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15i_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19834", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "126557623344", - "totalGbp": "126.56", - "totalReads": "6272240", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "36914321619", + "totalGbp": "36.91", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021685", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021685", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "13.5", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231209_024304_s2.hifi_reads.bc2001.bam", - "filetype": "N/A", + "filename": "HG03195-2_S15i_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "NA19834_lib1_m84081_231209_024304_s2_m84081_231209_024304_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-2_S15i_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "75079", - "mean": "20104", - "metadataAccession": "SRR29396871", - "min": "71", - "mmTag": false, - "n25": "17317", - "n50": "20155", - "n75": "24001", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242358", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.485264", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19834/raw_data/PacBio_HiFi/m84081_231209_024304_s2.hifi_reads.bc2001.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16688", - "quartile50": "19103", - "quartile75": "22563", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15i_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19834", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "132283331917", - "totalGbp": "132.28", - "totalReads": "6579738", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "41838825896", + "totalGbp": "41.84", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021698", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021698", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "13.5", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231209_031410_s3.hifi_reads.bc2002.bam", - "filetype": "N/A", + "filename": "HG03195-2_S15i_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG01798_lib1_m84081_231209_031410_s3_m84081_231209_031410_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-2_S15i_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "72053", - "mean": "20511", - "metadataAccession": "SRR29396899", - "min": "88", - "mmTag": false, - "n25": "17915", - "n50": "20556", - "n75": "24118", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242358", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.44424", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01798/raw_data/PacBio_HiFi/m84081_231209_031410_s3.hifi_reads.bc2002.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17361", - "quartile50": "19647", - "quartile75": "22911", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15i_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01798", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "131487040767", - "totalGbp": "131.49", - "totalReads": "6410544", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "41837025639", + "totalGbp": "41.84", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021698", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021698", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "11.22", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231209_034516_s4.hifi_reads.bc2002.bam", - "filetype": "N/A", + "filename": "HG03195-2_S15i_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG01798_lib1_m84081_231209_034516_s4_m84081_231209_034516_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-2_S15i_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "71376", - "mean": "20431", - "metadataAccession": "SRR29396898", - "min": "152", - "mmTag": false, - "n25": "17859", - "n50": "20457", - "n75": "23995", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242341", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.51802", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01798/raw_data/PacBio_HiFi/m84081_231209_034516_s4.hifi_reads.bc2002.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17318", - "quartile50": "19570", - "quartile75": "22802", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15i_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01798", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "118994102370", - "totalGbp": "118.99", - "totalReads": "5823951", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "34794784186", + "totalGbp": "34.79", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021699", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021699", - "ccsAlgorithm": "8.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "11.22", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231222_081401_s1.hifi_reads.bc2004.bam", - "filetype": "N/A", + "filename": "HG03195-2_S15i_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG03919_lib1_m84081_231222_081401_s1_m84081_231222_081401_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-2_S15i_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "63119", - "mean": "21167", - "metadataAccession": "SRR29396880", - "min": "110", - "mmTag": false, - "n25": "18575", - "n50": "21188", - "n75": "24867", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242341", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.434257", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03919/raw_data/PacBio_HiFi/m84081_231222_081401_s1.hifi_reads.bc2004.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18019", - "quartile50": "20300", - "quartile75": "23614", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15i_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03919", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "13190463788", - "totalGbp": "13.19", - "totalReads": "623139", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "34793350416", + "totalGbp": "34.79", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021699", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021699", - "ccsAlgorithm": "8.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "9.65", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231222_101332_s2.hifi_reads.bc2004.bam", - "filetype": "N/A", + "filename": "HG03195-2_S15i_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG03919_lib1_m84081_231222_101332_s2_m84081_231222_101332_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-2_S15i_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "63775", - "mean": "21391", - "metadataAccession": "SRR29396879", - "min": "186", - "mmTag": false, - "n25": "18730", - "n50": "21474", - "n75": "25246", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242340", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.477419", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03919/raw_data/PacBio_HiFi/m84081_231222_101332_s2.hifi_reads.bc2004.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18140", - "quartile50": "20529", - "quartile75": "23965", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15i_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03919", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "17107725274", - "totalGbp": "17.11", - "totalReads": "799745", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "29901590068", + "totalGbp": "29.9", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021699", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021699", - "ccsAlgorithm": "8.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "N/A", + "coverage": "9.65", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231222_121301_s3.hifi_reads.bc2004.bam", - "filetype": "N/A", + "filename": "HG03195-2_S15i_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG03919_lib1_m84081_231222_121301_s3_m84081_231222_121301_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03195-2_S15i_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "68308", - "mean": "21488", - "metadataAccession": "SRR29396877", - "min": "153", - "mmTag": false, - "n25": "18799", - "n50": "21588", - "n75": "25372", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242340", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.458188", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03919/raw_data/PacBio_HiFi/m84081_231222_121301_s3.hifi_reads.bc2004.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18200", - "quartile50": "20624", - "quartile75": "24100", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/hic/HG03195-2_S15i_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03919", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "17390549679", - "totalGbp": "17.39", - "totalReads": "809277", + "title": "Illumina Sequencing of Omni-C Libraries of HG03195", + "totalBp": "29900251317", + "totalGbp": "29.9", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021699", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021699", - "ccsAlgorithm": "8.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758793", + "ccsAlgorithm": "N/A", + "coverage": "5", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "sequencing of 20 kb fractionated", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84081_231222_141231_s4.hifi_reads.bc2004.bam", - "filetype": "N/A", + "filename": "HG03209-1_S7_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University ", - "instrumentModel": "Revio", - "libraryId": "HG03919_lib1_m84081_231222_141231_s4_m84081_231222_141231_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03209-1_S7_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "73649", - "mean": "21367", - "metadataAccession": "SRR29396876", - "min": "170", - "mmTag": false, - "n25": "18709", - "n50": "21455", - "n75": "25198", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242338", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.527096", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03919/raw_data/PacBio_HiFi/m84081_231222_141231_s4.hifi_reads.bc2004.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18120", - "quartile50": "20509", - "quartile75": "23937", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-1_S7_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03919", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "17327703121", - "totalGbp": "17.33", - "totalReads": "810924", + "title": "Illumina Sequencing of Omni-C Libraries of HG03209", + "totalBp": "15485841647", + "totalGbp": "15.49", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021614", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021614", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758793", + "ccsAlgorithm": "N/A", + "coverage": "5", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "Y044", - "filename": "m84091_230629_173950_s1.hifi_reads.bc1001.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03209-1_S7_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA19175_PB1_m84091_230629_173950_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03209-1_S7_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56686", - "mean": "18886", - "metadataAccession": "SRR29405776", - "min": "98", - "mmTag": false, - "n25": "16141", - "n50": "18884", - "n75": "22668", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242338", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.522831", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19175/raw_data/PacBio_HiFi/m84091_230629_173950_s1.hifi_reads.bc1001.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15551", - "quartile50": "17839", - "quartile75": "21210", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-1_S7_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19175", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "105324853613", - "totalGbp": "105.32", - "totalReads": "5576589", + "title": "Illumina Sequencing of Omni-C Libraries of HG03209", + "totalBp": "15485160859", + "totalGbp": "15.49", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021615", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021615", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758793", + "ccsAlgorithm": "N/A", + "coverage": "5.13", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230629_181009_s2.hifi_reads.bc1002.bam", - "filetype": "N/A", + "filename": "HG03209-1_S7_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG02392_PB1_m84091_230629_181009_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03209-1_S7_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "66424", - "mean": "21170", - "metadataAccession": "SRR29405830", - "min": "77", - "mmTag": false, - "n25": "17909", - "n50": "21501", - "n75": "26127", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242337", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.553008", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02392/raw_data/PacBio_HiFi/m84091_230629_181009_s2.hifi_reads.bc1002.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16952", - "quartile50": "20015", - "quartile75": "24192", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-1_S7_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02392", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "66196250958", - "totalGbp": "66.2", - "totalReads": "3126764", + "title": "Illumina Sequencing of Omni-C Libraries of HG03209", + "totalBp": "15915046864", + "totalGbp": "15.92", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021616", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021616", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758793", + "ccsAlgorithm": "N/A", + "coverage": "5.13", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230629_184115_s3.hifi_reads.bc1003.bam", - "filetype": "N/A", + "filename": "HG03209-1_S7_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG00867_PB1_m84091_230629_184115_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03209-1_S7_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "79149", - "mean": "23587", - "metadataAccession": "SRR29405843", - "min": "112", - "mmTag": false, - "n25": "19918", - "n50": "24532", - "n75": "30189", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242337", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.518024", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00867/raw_data/PacBio_HiFi/m84091_230629_184115_s3.hifi_reads.bc1003.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18315", - "quartile50": "22418", - "quartile75": "27615", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-1_S7_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00867", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "84998026939", - "totalGbp": "85", - "totalReads": "3603557", + "title": "Illumina Sequencing of Omni-C Libraries of HG03209", + "totalBp": "15914161942", + "totalGbp": "15.91", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { - "Gb": "N/A", - "accession": "SAMN41021617", - "assembly": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021617", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758793", + "ccsAlgorithm": "N/A", + "coverage": "4.76", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230629_191221_s4.hifi_reads.bc1008.bam", - "filetype": "N/A", + "filename": "HG03209-1_S7_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG02178_PB1_m84091_230629_191221_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03209-1_S7_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "72017", - "mean": "21716", - "metadataAccession": "SRR29405833", - "min": "123", - "mmTag": false, - "n25": "18266", - "n50": "22326", - "n75": "27511", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242221", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.554386", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02178/raw_data/PacBio_HiFi/m84091_230629_191221_s4.hifi_reads.bc1008.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17032", - "quartile50": "20508", - "quartile75": "25157", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-1_S7_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02178", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "65018477593", - "totalGbp": "65.02", - "totalReads": "2993899", + "title": "Illumina Sequencing of Omni-C Libraries of HG03209", + "totalBp": "14757163472", + "totalGbp": "14.76", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021614", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021614", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758793", + "ccsAlgorithm": "N/A", + "coverage": "4.76", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "Y044", - "filename": "m84091_230703_162202_s1.hifi_reads.bc1001.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03209-1_S7_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA19175_PB1_m84091_230703_162202_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03209-1_S7_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58473", - "mean": "18590", - "metadataAccession": "SRR29405775", - "min": "89", - "mmTag": false, - "n25": "15949", - "n50": "18550", - "n75": "22189", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242221", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.532258", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19175/raw_data/PacBio_HiFi/m84091_230703_162202_s1.hifi_reads.bc1001.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15406", - "quartile50": "17576", - "quartile75": "20814", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-1_S7_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19175", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "99934802464", - "totalGbp": "99.93", - "totalReads": "5375516", + "title": "Illumina Sequencing of Omni-C Libraries of HG03209", + "totalBp": "14756398358", + "totalGbp": "14.76", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021616", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021616", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758793", + "ccsAlgorithm": "N/A", + "coverage": "4.94", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230703_165220_s2.hifi_reads.bc1003.bam", - "filetype": "N/A", + "filename": "HG03209-1_S7_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG00867_PB1_m84091_230703_165220_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03209-1_S7_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "68779", - "mean": "23285", - "metadataAccession": "SRR29405842", - "min": "68", - "mmTag": false, - "n25": "19684", - "n50": "24171", - "n75": "29657", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242220", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.588467", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00867/raw_data/PacBio_HiFi/m84091_230703_165220_s2.hifi_reads.bc1003.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18147", - "quartile50": "22142", - "quartile75": "27181", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-1_S7_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00867", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "90560178081", - "totalGbp": "90.56", - "totalReads": "3889058", + "title": "Illumina Sequencing of Omni-C Libraries of HG03209", + "totalBp": "15315851335", + "totalGbp": "15.32", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021618", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021618", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758793", + "ccsAlgorithm": "N/A", + "coverage": "4.94", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230703_172326_s3.hifi_reads.bc1009.bam", - "filetype": "N/A", + "filename": "HG03209-1_S7_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA18620_PB1_m84091_230703_172326_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03209-1_S7_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58609", - "mean": "19652", - "metadataAccession": "SRR29405784", - "min": "104", - "mmTag": false, - "n25": "16997", - "n50": "19747", - "n75": "23461", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242220", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.536059", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18620/raw_data/PacBio_HiFi/m84091_230703_172326_s3.hifi_reads.bc1009.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16365", - "quartile50": "18763", - "quartile75": "22098", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-1_S7_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18620", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "105136485130", - "totalGbp": "105.14", - "totalReads": "5349692", + "title": "Illumina Sequencing of Omni-C Libraries of HG03209", + "totalBp": "15315027568", + "totalGbp": "15.32", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021623", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021623", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758793", + "ccsAlgorithm": "N/A", + "coverage": "3.83", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230703_175432_s4.hifi_reads.bc1010.bam", - "filetype": "N/A", + "filename": "HG03209-2_S15_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA20870_PB1_m84091_230703_175432_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03209-2_S15_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "47805", - "mean": "16457", - "metadataAccession": "SRR29405761", - "min": "96", - "mmTag": false, - "n25": "14523", - "n50": "16416", - "n75": "18966", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242219", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.616049", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20870/raw_data/PacBio_HiFi/m84091_230703_175432_s4.hifi_reads.bc1010.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "14186", - "quartile50": "15844", - "quartile75": "18207", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-2_S15_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20870", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "110641518883", - "totalGbp": "110.64", - "totalReads": "6722715", + "title": "Illumina Sequencing of Omni-C Libraries of HG03209", + "totalBp": "11880470588", + "totalGbp": "11.88", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021615", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021615", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758793", + "ccsAlgorithm": "N/A", + "coverage": "3.83", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230705_171239_s1.hifi_reads.bc1002.bam", - "filetype": "N/A", + "filename": "HG03209-2_S15_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG02392_PB1_m84091_230705_171239_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03209-2_S15_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "64312", - "mean": "20679", - "metadataAccession": "SRR29405829", - "min": "80", - "mmTag": false, - "n25": "17517", - "n50": "20915", - "n75": "25377", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242219", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.538166", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02392/raw_data/PacBio_HiFi/m84091_230705_171239_s1.hifi_reads.bc1002.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16660", - "quartile50": "19524", - "quartile75": "23524", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-2_S15_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02392", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "70428529309", - "totalGbp": "70.43", - "totalReads": "3405708", + "title": "Illumina Sequencing of Omni-C Libraries of HG03209", + "totalBp": "11879927823", + "totalGbp": "11.88", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021617", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021617", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758793", + "ccsAlgorithm": "N/A", + "coverage": "3.94", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230705_181402_s3.hifi_reads.bc1008.bam", - "filetype": "N/A", + "filename": "HG03209-2_S15_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG02178_PB1_m84091_230705_181402_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03209-2_S15_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "68719", - "mean": "21517", - "metadataAccession": "SRR29405832", - "min": "115", - "mmTag": false, - "n25": "18143", - "n50": "22138", - "n75": "27182", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242336", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.593427", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02178/raw_data/PacBio_HiFi/m84091_230705_181402_s3.hifi_reads.bc1008.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16933", - "quartile50": "20355", - "quartile75": "24921", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-2_S15_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02178", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "90298507655", - "totalGbp": "90.3", - "totalReads": "4196539", + "title": "Illumina Sequencing of Omni-C Libraries of HG03209", + "totalBp": "12222747126", + "totalGbp": "12.22", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021618", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021618", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758793", + "ccsAlgorithm": "N/A", + "coverage": "3.94", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230707_165735_s1.hifi_reads.bc1009.bam", - "filetype": "N/A", + "filename": "HG03209-2_S15_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA18620_PB1_m84091_230707_165735_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03209-2_S15_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58414", - "mean": "19457", - "metadataAccession": "SRR29405783", - "min": "156", - "mmTag": false, - "n25": "16863", - "n50": "19517", - "n75": "23110", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242336", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.564085", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18620/raw_data/PacBio_HiFi/m84091_230707_165735_s1.hifi_reads.bc1009.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16264", - "quartile50": "18586", - "quartile75": "21805", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-2_S15_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18620", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "106349153661", - "totalGbp": "106.35", - "totalReads": "5465594", + "title": "Illumina Sequencing of Omni-C Libraries of HG03209", + "totalBp": "12222037317", + "totalGbp": "12.22", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021623", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021623", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758793", + "ccsAlgorithm": "N/A", + "coverage": "3.68", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230707_172800_s2.hifi_reads.bc1010.bam", - "filetype": "N/A", + "filename": "HG03209-2_S15_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA20870_PB1_m84091_230707_172800_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03209-2_S15_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50922", - "mean": "16401", - "metadataAccession": "SRR29405756", - "min": "64", - "mmTag": false, - "n25": "14491", - "n50": "16353", - "n75": "18869", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242239", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.599817", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20870/raw_data/PacBio_HiFi/m84091_230707_172800_s2.hifi_reads.bc1010.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "14159", - "quartile50": "15795", - "quartile75": "18128", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-2_S15_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20870", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "107230122262", - "totalGbp": "107.23", - "totalReads": "6537864", + "title": "Illumina Sequencing of Omni-C Libraries of HG03209", + "totalBp": "11395230541", + "totalGbp": "11.4", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021631", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021631", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758793", + "ccsAlgorithm": "N/A", + "coverage": "3.68", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230707_175906_s3.hifi_reads.bc1015.bam", - "filetype": "N/A", + "filename": "HG03209-2_S15_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03270_PB1_m84091_230707_175906_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03209-2_S15_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "62381", - "mean": "19740", - "metadataAccession": "SRR29405811", - "min": "75", - "mmTag": false, - "n25": "17041", - "n50": "19750", - "n75": "23558", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242239", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.51788", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03270/raw_data/PacBio_HiFi/m84091_230707_175906_s3.hifi_reads.bc1015.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16442", - "quartile50": "18758", - "quartile75": "22106", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-2_S15_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03270", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "112105606405", - "totalGbp": "112.11", - "totalReads": "5678941", + "title": "Illumina Sequencing of Omni-C Libraries of HG03209", + "totalBp": "11394635181", + "totalGbp": "11.39", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021657", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021657", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758793", + "ccsAlgorithm": "N/A", + "coverage": "3.8", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB23", - "filename": "m84091_230707_183012_s4.hifi_reads.bc1016.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03209-2_S15_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG02583_PB1_m84091_230707_183012_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03209-2_S15_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "63871", - "mean": "22668", - "metadataAccession": "SRR29405824", - "min": "62", - "mmTag": false, - "n25": "19124", - "n50": "23125", - "n75": "28327", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242238", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.587912", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02583/raw_data/PacBio_HiFi/m84091_230707_183012_s4.hifi_reads.bc1016.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17966", - "quartile50": "21407", - "quartile75": "26047", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-2_S15_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02583", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "97558541990", - "totalGbp": "97.56", - "totalReads": "4303764", + "title": "Illumina Sequencing of Omni-C Libraries of HG03209", + "totalBp": "11780225528", + "totalGbp": "11.78", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021624", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021624", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758793", + "ccsAlgorithm": "N/A", + "coverage": "3.8", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230710_165908_s1.hifi_reads.bc1011.bam", - "filetype": "N/A", + "filename": "HG03209-2_S15_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA21110_PB1_m84091_230710_165908_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03209-2_S15_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "69776", - "mean": "22741", - "metadataAccession": "SRR29405755", - "min": "80", - "mmTag": false, - "n25": "19235", - "n50": "23562", - "n75": "28989", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", - "oneHundredkbPlus": "N/A", - "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA21110/raw_data/PacBio_HiFi/m84091_230710_165908_s1.hifi_reads.bc1011.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17833", - "quartile50": "21576", - "quartile75": "26520", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242238", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.549943", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/hic/HG03209-2_S15_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21110", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "89314005933", - "totalGbp": "89.31", - "totalReads": "3927286", + "title": "Illumina Sequencing of Omni-C Libraries of HG03209", + "totalBp": "11779594297", + "totalGbp": "11.78", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021658", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021658", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621957", + "ccsAlgorithm": "N/A", + "coverage": "4.28", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "2470", - "filename": "m84091_230710_172927_s2.hifi_reads.bc1017.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03225-1_S4_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA20287_PB1_m84091_230710_172927_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03225-1_S4_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "74258", - "mean": "23076", - "metadataAccession": "SRR29405764", - "min": "57", - "mmTag": false, - "n25": "19469", - "n50": "23728", - "n75": "29119", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242237", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.618107", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20287/raw_data/PacBio_HiFi/m84091_230710_172927_s2.hifi_reads.bc1017.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18152", - "quartile50": "21843", - "quartile75": "26717", + "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-1_S4_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20287", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "88125973925", - "totalGbp": "88.13", - "totalReads": "3818829", + "title": "Illumina Sequencing of Omni-C Libraries of HG03225", + "totalBp": "13264492114", + "totalGbp": "13.26", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021615", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021615", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621957", + "ccsAlgorithm": "N/A", + "coverage": "4.28", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230710_180033_s3.hifi_reads.bc1002.bam", - "filetype": "N/A", + "filename": "HG03225-1_S4_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG02392_PB1_m84091_230710_180033_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03225-1_S4_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "69083", - "mean": "20509", - "metadataAccession": "SRR29405828", - "min": "110", - "mmTag": false, - "n25": "17383", - "n50": "20654", - "n75": "24998", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242237", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.562888", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02392/raw_data/PacBio_HiFi/m84091_230710_180033_s3.hifi_reads.bc1002.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16594", - "quartile50": "19347", - "quartile75": "23221", + "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-1_S4_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02392", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "37690426700", - "totalGbp": "37.69", - "totalReads": "1837746", + "title": "Illumina Sequencing of Omni-C Libraries of HG03225", + "totalBp": "13263638492", + "totalGbp": "13.26", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021617", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021617", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621957", + "ccsAlgorithm": "N/A", + "coverage": "4.37", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230710_180033_s3.hifi_reads.bc1008.bam", - "filetype": "N/A", + "filename": "HG03225-1_S4_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG02178_PB1_m84091_230710_180033_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03225-1_S4_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "69950", - "mean": "20825", - "metadataAccession": "SRR29405831", - "min": "173", - "mmTag": false, - "n25": "17477", - "n50": "21327", - "n75": "26181", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242236", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.57144", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02178/raw_data/PacBio_HiFi/m84091_230710_180033_s3.hifi_reads.bc1008.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16351", - "quartile50": "19640", - "quartile75": "24021", + "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-1_S4_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02178", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "40928479039", - "totalGbp": "40.93", - "totalReads": "1965273", + "title": "Illumina Sequencing of Omni-C Libraries of HG03225", + "totalBp": "13551937789", + "totalGbp": "13.55", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021616", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021616", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621957", + "ccsAlgorithm": "N/A", + "coverage": "4.37", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230710_183139_s4.hifi_reads.bc1003.bam", - "filetype": "N/A", + "filename": "HG03225-1_S4_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG00867_PB1_m84091_230710_183139_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03225-1_S4_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "70002", - "mean": "22983", - "metadataAccession": "SRR29405841", - "min": "522", - "mmTag": false, - "n25": "19482", - "n50": "23688", - "n75": "28873", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242236", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.566573", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00867/raw_data/PacBio_HiFi/m84091_230710_183139_s4.hifi_reads.bc1003.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18139", - "quartile50": "21864", - "quartile75": "26615", + "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-1_S4_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00867", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "18059259620", - "totalGbp": "18.06", - "totalReads": "785737", + "title": "Illumina Sequencing of Omni-C Libraries of HG03225", + "totalBp": "13550869907", + "totalGbp": "13.55", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021631", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021631", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621957", + "ccsAlgorithm": "N/A", + "coverage": "4.19", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230710_183139_s4.hifi_reads.bc1015.bam", - "filetype": "N/A", + "filename": "HG03225-1_S4_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03270_PB1_m84091_230710_183139_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03225-1_S4_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "63760", - "mean": "19750", - "metadataAccession": "SRR29405810", - "min": "102", - "mmTag": false, - "n25": "17028", - "n50": "19751", - "n75": "23619", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242234", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.580506", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03270/raw_data/PacBio_HiFi/m84091_230710_183139_s4.hifi_reads.bc1015.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16426", - "quartile50": "18741", - "quartile75": "22134", + "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-1_S4_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03270", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "87910720528", - "totalGbp": "87.91", - "totalReads": "4451148", + "title": "Illumina Sequencing of Omni-C Libraries of HG03225", + "totalBp": "12982900077", + "totalGbp": "12.98", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021625", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021625", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621957", + "ccsAlgorithm": "N/A", + "coverage": "4.19", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230712_163213_s1.hifi_reads.bc1012.bam", - "filetype": "N/A", + "filename": "HG03225-1_S4_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03874_PB1_m84091_230712_163213_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03225-1_S4_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "70251", - "mean": "22538", - "metadataAccession": "SRR29405794", - "min": "52", - "mmTag": false, - "n25": "19059", - "n50": "23308", - "n75": "28475", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242234", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.568687", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03874/raw_data/PacBio_HiFi/m84091_230712_163213_s1.hifi_reads.bc1012.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17686", - "quartile50": "21435", - "quartile75": "26186", + "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-1_S4_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03874", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "77942454192", - "totalGbp": "77.94", - "totalReads": "3458255", + "title": "Illumina Sequencing of Omni-C Libraries of HG03225", + "totalBp": "12981889183", + "totalGbp": "12.98", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021645", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021645", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621957", + "ccsAlgorithm": "N/A", + "coverage": "4.26", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SL73", - "filename": "m84091_230712_170232_s2.hifi_reads.bc1020.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03225-1_S4_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03583_PB1_m84091_230712_170232_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03225-1_S4_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "66232", - "mean": "22547", - "metadataAccession": "SRR29405786", - "min": "53", - "mmTag": false, - "n25": "19013", - "n50": "23261", - "n75": "28516", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242233", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.563984", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03583/raw_data/PacBio_HiFi/m84091_230712_170232_s2.hifi_reads.bc1020.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17663", - "quartile50": "21381", - "quartile75": "26167", + "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-1_S4_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03583", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "89601336260", - "totalGbp": "89.6", - "totalReads": "3973911", + "title": "Illumina Sequencing of Omni-C Libraries of HG03225", + "totalBp": "13208233630", + "totalGbp": "13.21", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021646", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021646", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621957", + "ccsAlgorithm": "N/A", + "coverage": "4.26", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230712_173338_s3.hifi_reads.bc1019.bam", - "filetype": "N/A", + "filename": "HG03225-1_S4_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG00329_PB1_m84091_230712_173338_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03225-1_S4_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "69777", - "mean": "22730", - "metadataAccession": "SRR29405793", - "min": "73", - "mmTag": false, - "n25": "19281", - "n50": "23397", - "n75": "28564", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242233", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.530182", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00329/raw_data/PacBio_HiFi/m84091_230712_173338_s3.hifi_reads.bc1019.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17994", - "quartile50": "21606", - "quartile75": "26308", + "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-1_S4_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00329", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "106146859292", - "totalGbp": "106.15", - "totalReads": "4669840", + "title": "Illumina Sequencing of Omni-C Libraries of HG03225", + "totalBp": "13207245038", + "totalGbp": "13.21", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021644", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021644", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621957", + "ccsAlgorithm": "N/A", + "coverage": "4.44", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230712_180444_s4.hifi_reads.bc1018.bam", - "filetype": "N/A", + "filename": "HG03225-2_S12_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG00243_PB1_m84091_230712_180444_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03225-2_S12_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "73045", - "mean": "21774", - "metadataAccession": "SRR29405837", - "min": "93", - "mmTag": false, - "n25": "18433", - "n50": "22452", - "n75": "27372", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242232", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.589349", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00243/raw_data/PacBio_HiFi/m84091_230712_180444_s4.hifi_reads.bc1018.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17180", - "quartile50": "20708", - "quartile75": "25231", + "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-2_S12_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00243", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "94319711832", - "totalGbp": "94.32", - "totalReads": "4331650", + "title": "Illumina Sequencing of Omni-C Libraries of HG03225", + "totalBp": "13753800959", + "totalGbp": "13.75", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021658", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021658", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621957", + "ccsAlgorithm": "N/A", + "coverage": "4.44", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "2470", - "filename": "m84091_230714_130822_s1.hifi_reads.bc1017.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03225-2_S12_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA20287_PB1_m84091_230714_130822_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03225-2_S12_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "67766", - "mean": "22598", - "metadataAccession": "SRR29405762", - "min": "56", - "mmTag": false, - "n25": "19009", - "n50": "23557", - "n75": "29066", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242232", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.578433", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20287/raw_data/PacBio_HiFi/m84091_230714_130822_s1.hifi_reads.bc1017.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17419", - "quartile50": "21447", - "quartile75": "26500", + "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-2_S12_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20287", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "98106485796", - "totalGbp": "98.11", - "totalReads": "4341325", + "title": "Illumina Sequencing of Omni-C Libraries of HG03225", + "totalBp": "13753000600", + "totalGbp": "13.75", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021624", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021624", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621957", + "ccsAlgorithm": "N/A", + "coverage": "4.54", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230714_133843_s2.hifi_reads.bc1011.bam", - "filetype": "N/A", + "filename": "HG03225-2_S12_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA21110_PB1_m84091_230714_133843_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03225-2_S12_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "70255", - "mean": "22684", - "metadataAccession": "SRR29405754", - "min": "105", - "mmTag": false, - "n25": "19169", - "n50": "23455", - "n75": "28779", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242231", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.568515", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA21110/raw_data/PacBio_HiFi/m84091_230714_133843_s2.hifi_reads.bc1011.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17806", - "quartile50": "21529", - "quartile75": "26390", + "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-2_S12_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21110", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "88288802421", - "totalGbp": "88.29", - "totalReads": "3892054", + "title": "Illumina Sequencing of Omni-C Libraries of HG03225", + "totalBp": "14081546800", + "totalGbp": "14.08", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021657", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021657", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621957", + "ccsAlgorithm": "N/A", + "coverage": "4.54", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB23", - "filename": "m84091_230714_140949_s3.hifi_reads.bc1016.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03225-2_S12_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG02583_PB1_m84091_230714_140949_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03225-2_S12_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "74239", - "mean": "22446", - "metadataAccession": "SRR29405823", - "min": "70", - "mmTag": false, - "n25": "18888", - "n50": "23089", - "n75": "28314", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242231", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.550283", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02583/raw_data/PacBio_HiFi/m84091_230714_140949_s3.hifi_reads.bc1016.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17588", - "quartile50": "21245", - "quartile75": "25972", + "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-2_S12_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02583", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "103636997807", - "totalGbp": "103.64", - "totalReads": "4617113", + "title": "Illumina Sequencing of Omni-C Libraries of HG03225", + "totalBp": "14080492078", + "totalGbp": "14.08", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021643", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021643", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621957", + "ccsAlgorithm": "N/A", + "coverage": "4.33", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "Y005", - "filename": "m84091_230718_154039_s1.hifi_reads.bc1021.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03225-2_S12_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA18505_PB1_m84091_230718_154039_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03225-2_S12_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "64859", - "mean": "19688", - "metadataAccession": "SRR29405799", - "min": "82", - "mmTag": false, - "n25": "16866", - "n50": "19935", - "n75": "23961", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242230", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.569739", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18505/raw_data/PacBio_HiFi/m84091_230718_154039_s1.hifi_reads.bc1021.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16070", - "quartile50": "18745", - "quartile75": "22367", + "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-2_S12_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18505", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "92320421358", - "totalGbp": "92.32", - "totalReads": "4689114", + "title": "Illumina Sequencing of Omni-C Libraries of HG03225", + "totalBp": "13415679158", + "totalGbp": "13.42", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021642", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021642", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621957", + "ccsAlgorithm": "N/A", + "coverage": "4.33", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230718_161058_s2.hifi_reads.bc1022.bam", - "filetype": "N/A", + "filename": "HG03225-2_S12_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA19036_PB1_m84091_230718_161058_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03225-2_S12_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56042", - "mean": "17697", - "metadataAccession": "SRR29405781", - "min": "74", - "mmTag": false, - "n25": "15476", - "n50": "17676", - "n75": "20775", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242230", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.557953", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19036/raw_data/PacBio_HiFi/m84091_230718_161058_s2.hifi_reads.bc1022.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15044", - "quartile50": "16944", - "quartile75": "19750", + "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-2_S12_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19036", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "99306434215", - "totalGbp": "99.31", - "totalReads": "5611450", + "title": "Illumina Sequencing of Omni-C Libraries of HG03225", + "totalBp": "13414715840", + "totalGbp": "13.41", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021665", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021665", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621957", + "ccsAlgorithm": "N/A", + "coverage": "4.43", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230718_164204_s3.hifi_reads.bc1001.bam", - "filetype": "N/A", + "filename": "HG03225-2_S12_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA19835_PB1_m84091_230718_164204_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03225-2_S12_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "63615", - "mean": "19675", - "metadataAccession": "SRR29405767", - "min": "137", - "mmTag": false, - "n25": "17029", - "n50": "19741", - "n75": "23447", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242229", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.617625", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19835/raw_data/PacBio_HiFi/m84091_230718_164204_s3.hifi_reads.bc1001.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16408", - "quartile50": "18760", - "quartile75": "22062", + "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-2_S12_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19835", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "90080817427", - "totalGbp": "90.08", - "totalReads": "4578439", + "title": "Illumina Sequencing of Omni-C Libraries of HG03225", + "totalBp": "13747816543", + "totalGbp": "13.75", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", "accession": null, - "assembly": "N/A", + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41708786", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621957", + "ccsAlgorithm": "N/A", + "coverage": "4.43", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230718_171310_s4.hifi_reads.bc1002.bam", - "filetype": "N/A", + "filename": "HG03225-2_S12_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA19377_PB1_m84091_230718_171310_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03225-2_S12_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58261", - "mean": "19679", - "metadataAccession": "SRR29405773", - "min": "66", - "mmTag": false, - "n25": "16989", - "n50": "19863", - "n75": "23633", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242229", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.566993", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19377/raw_data/PacBio_HiFi/m84091_230718_171310_s4.hifi_reads.bc1002.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", + "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/hic/HG03225-2_S12_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", "productionYear": null, - "quartile25": "16274", - "quartile50": "18797", - "quartile75": "22194", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19377", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", "subpopulation": null, "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "85178574461", - "totalGbp": "85.18", - "totalReads": "4328336", + "title": "Illumina Sequencing of Omni-C Libraries of HG03225", + "totalBp": "13746864304", + "totalGbp": "13.75", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021625", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021625", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758794", + "ccsAlgorithm": "N/A", + "coverage": "21.06", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230719_155016_s1.hifi_reads.bc1012.bam", - "filetype": "N/A", + "filename": "HG03239-1_S1_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03874_PB1_m84091_230719_155016_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03239-1_S1_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "64161", - "mean": "18984", - "metadataAccession": "SRR29405795", - "min": "89", - "mmTag": false, - "n25": "16431", - "n50": "19069", - "n75": "22707", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310837", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.418687", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03874/raw_data/PacBio_HiFi/m84091_230719_155016_s1.hifi_reads.bc1012.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15819", - "quartile50": "18096", - "quartile75": "21335", + "path": "s3://human-pangenomics/working/HPRC/HG03239/raw_data/hic/HG03239-1_S1_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03874", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "101158627114", - "totalGbp": "101.16", - "totalReads": "5328539", + "title": "Illumina Sequencing of Omni-C Libraries of HG03239", + "totalBp": "65277299547", + "totalGbp": "65.28", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021644", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021644", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758794", + "ccsAlgorithm": "N/A", + "coverage": "21.06", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230719_162122_s2.hifi_reads.bc1018.bam", - "filetype": "N/A", + "filename": "HG03239-1_S1_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG00243_PB1_m84091_230719_162122_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03239-1_S1_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "65354", - "mean": "21615", - "metadataAccession": "SRR29405826", - "min": "97", - "mmTag": false, - "n25": "18295", - "n50": "22278", - "n75": "27119", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310837", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.418687", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00243/raw_data/PacBio_HiFi/m84091_230719_162122_s2.hifi_reads.bc1018.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17075", - "quartile50": "20547", - "quartile75": "25031", + "path": "s3://human-pangenomics/working/HPRC/HG03239/raw_data/hic/HG03239-1_S1_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00243", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "91462784918", - "totalGbp": "91.46", - "totalReads": "4231327", + "title": "Illumina Sequencing of Omni-C Libraries of HG03239", + "totalBp": "65277299547", + "totalGbp": "65.28", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021624", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021624", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758794", + "ccsAlgorithm": "N/A", + "coverage": "6.3", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230719_165228_s3.hifi_reads.bc1011.bam", - "filetype": "N/A", + "filename": "HG03239-2_S2_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA21110_PB1_m84091_230719_165228_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03239-2_S2_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "72474", - "mean": "22503", - "metadataAccession": "SRR29405757", - "min": "396", - "mmTag": false, - "n25": "19023", - "n50": "23287", - "n75": "28673", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310836", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.505738", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA21110/raw_data/PacBio_HiFi/m84091_230719_165228_s3.hifi_reads.bc1011.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17661", - "quartile50": "21320", - "quartile75": "26182", + "path": "s3://human-pangenomics/working/HPRC/HG03239/raw_data/hic/HG03239-2_S2_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21110", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "14404999640", - "totalGbp": "14.4", - "totalReads": "640120", + "title": "Illumina Sequencing of Omni-C Libraries of HG03239", + "totalBp": "19542904861", + "totalGbp": "19.54", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021646", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021646", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758794", + "ccsAlgorithm": "N/A", + "coverage": "6.3", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230719_165228_s3.hifi_reads.bc1019.bam", - "filetype": "N/A", + "filename": "HG03239-2_S2_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG00329_PB1_m84091_230719_165228_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03239-2_S2_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "67743", - "mean": "22844", - "metadataAccession": "SRR29405782", - "min": "112", - "mmTag": false, - "n25": "19371", - "n50": "23557", - "n75": "28733", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310836", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.505738", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00329/raw_data/PacBio_HiFi/m84091_230719_165228_s3.hifi_reads.bc1019.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "18054", - "quartile50": "21732", - "quartile75": "26465", + "path": "s3://human-pangenomics/working/HPRC/HG03239/raw_data/hic/HG03239-2_S2_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00329", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "86567137663", - "totalGbp": "86.57", - "totalReads": "3789333", + "title": "Illumina Sequencing of Omni-C Libraries of HG03239", + "totalBp": "19542904861", + "totalGbp": "19.54", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021645", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021645", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021631", + "ccsAlgorithm": "N/A", + "coverage": "7", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SL73", - "filename": "m84091_230719_172335_s4.hifi_reads.bc1020.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03270-1_FC1_S1_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03583_PB1_m84091_230719_172335_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03270-1_FC1_S1_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "4840", - "mean": "2542", - "metadataAccession": "SRR29405787", - "min": "129", - "mmTag": false, - "n25": "2251", - "n50": "2798", - "n75": "3414", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310835", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.489839", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03583/raw_data/PacBio_HiFi/m84091_230719_172335_s4.hifi_reads.bc1020.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "1974", - "quartile50": "2512", - "quartile75": "3146", + "path": "s3://human-pangenomics/working/HPRC/HG03270/raw_data/hic/HG03270-1_FC1_S1_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03583", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "617846", - "totalGbp": "0", - "totalReads": "243", + "title": "Illumina Sequencing of Omni-C Libraries of HG03270", + "totalBp": "21691936257", + "totalGbp": "21.69", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021666", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021666", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021631", + "ccsAlgorithm": "N/A", + "coverage": "7", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230721_134835_s1.hifi_reads.bc1003.bam", - "filetype": "N/A", + "filename": "HG03270-1_FC1_S1_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG00253_PB1_m84091_230721_134835_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03270-1_FC1_S1_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "62447", - "mean": "20277", - "metadataAccession": "SRR29405815", - "min": "55", - "mmTag": false, - "n25": "17382", - "n50": "20786", - "n75": "25025", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310835", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.489839", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00253/raw_data/PacBio_HiFi/m84091_230721_134835_s1.hifi_reads.bc1003.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16355", - "quartile50": "19411", - "quartile75": "23287", + "path": "s3://human-pangenomics/working/HPRC/HG03270/raw_data/hic/HG03270-1_FC1_S1_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00253", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "111727151213", - "totalGbp": "111.73", - "totalReads": "5510036", + "title": "Illumina Sequencing of Omni-C Libraries of HG03270", + "totalBp": "21691936257", + "totalGbp": "21.69", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021667", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021667", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021631", + "ccsAlgorithm": "N/A", + "coverage": "7.15", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230721_141900_s2.hifi_reads.bc1008.bam", - "filetype": "N/A", + "filename": "HG03270-1_FC2_S1_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG00235_PB1_m84091_230721_141900_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03270-1_FC2_S1_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "64006", - "mean": "19972", - "metadataAccession": "SRR29405849", - "min": "60", - "mmTag": false, - "n25": "17093", - "n50": "20339", - "n75": "24494", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310810", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.456019", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00235/raw_data/PacBio_HiFi/m84091_230721_141900_s2.hifi_reads.bc1008.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16198", - "quartile50": "19048", - "quartile75": "22813", + "path": "s3://human-pangenomics/working/HPRC/HG03270/raw_data/hic/HG03270-1_FC2_S1_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00235", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "90629295210", - "totalGbp": "90.63", - "totalReads": "4537603", + "title": "Illumina Sequencing of Omni-C Libraries of HG03270", + "totalBp": "22171447478", + "totalGbp": "22.17", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021668", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021668", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021631", + "ccsAlgorithm": "N/A", + "coverage": "7.15", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230721_145006_s3.hifi_reads.bc1009.bam", - "filetype": "N/A", + "filename": "HG03270-1_FC2_S1_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03369_PB1_m84091_230721_145006_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03270-1_FC2_S1_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "62946", - "mean": "19379", - "metadataAccession": "SRR29405802", - "min": "109", - "mmTag": false, - "n25": "16681", - "n50": "19722", - "n75": "23552", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310810", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.456019", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03369/raw_data/PacBio_HiFi/m84091_230721_145006_s3.hifi_reads.bc1009.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15812", - "quartile50": "18566", - "quartile75": "22028", + "path": "s3://human-pangenomics/working/HPRC/HG03270/raw_data/hic/HG03270-1_FC2_S1_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03369", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "91700590557", - "totalGbp": "91.7", - "totalReads": "4731803", + "title": "Illumina Sequencing of Omni-C Libraries of HG03270", + "totalBp": "22171447478", + "totalGbp": "22.17", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021643", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021643", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021631", + "ccsAlgorithm": "N/A", + "coverage": "10.26", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "Y005", - "filename": "m84091_230721_152112_s4.hifi_reads.bc1021.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03270-2_FC1_S2_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA18505_PB1_m84091_230721_152112_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03270-2_FC1_S2_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "69044", - "mean": "19493", - "metadataAccession": "SRR29405800", - "min": "69", - "mmTag": false, - "n25": "16725", - "n50": "19706", - "n75": "23620", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310809", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.4784", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18505/raw_data/PacBio_HiFi/m84091_230721_152112_s4.hifi_reads.bc1021.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15964", - "quartile50": "18567", - "quartile75": "22079", + "path": "s3://human-pangenomics/working/HPRC/HG03270/raw_data/hic/HG03270-2_FC1_S2_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18505", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "92337453249", - "totalGbp": "92.34", - "totalReads": "4736916", + "title": "Illumina Sequencing of Omni-C Libraries of HG03270", + "totalBp": "31810967811", + "totalGbp": "31.81", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021643", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021643", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021631", + "ccsAlgorithm": "N/A", + "coverage": "10.26", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "Y005", - "filename": "m84091_230724_152950_s1.hifi_reads.bc1021.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03270-2_FC1_S2_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA18505_PB1_m84091_230724_152950_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03270-2_FC1_S2_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "49844", - "mean": "19765", - "metadataAccession": "SRR29405801", - "min": "751", - "mmTag": false, - "n25": "16949", - "n50": "20034", - "n75": "24033", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310809", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.4784", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18505/raw_data/PacBio_HiFi/m84091_230724_152950_s1.hifi_reads.bc1021.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16137", - "quartile50": "18838", - "quartile75": "22460", + "path": "s3://human-pangenomics/working/HPRC/HG03270/raw_data/hic/HG03270-2_FC1_S2_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18505", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "5696115693", - "totalGbp": "5.7", - "totalReads": "288191", + "title": "Illumina Sequencing of Omni-C Libraries of HG03270", + "totalBp": "31810967811", + "totalGbp": "31.81", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021642", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021642", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021631", + "ccsAlgorithm": "N/A", + "coverage": "10.57", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230724_152950_s1.hifi_reads.bc1022.bam", - "filetype": "N/A", + "filename": "HG03270-2_FC2_S2_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA19036_PB1_m84091_230724_152950_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03270-2_FC2_S2_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53891", - "mean": "17706", - "metadataAccession": "SRR29405780", - "min": "71", - "mmTag": false, - "n25": "15488", - "n50": "17695", - "n75": "20781", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310808", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.494294", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19036/raw_data/PacBio_HiFi/m84091_230724_152950_s1.hifi_reads.bc1022.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15053", - "quartile50": "16960", - "quartile75": "19764", + "path": "s3://human-pangenomics/working/HPRC/HG03270/raw_data/hic/HG03270-2_FC2_S2_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19036", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "100139779782", - "totalGbp": "100.14", - "totalReads": "5655541", + "title": "Illumina Sequencing of Omni-C Libraries of HG03270", + "totalBp": "32756866692", + "totalGbp": "32.76", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021665", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021665", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021631", + "ccsAlgorithm": "N/A", + "coverage": "10.57", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230724_160010_s2.hifi_reads.bc1001.bam", - "filetype": "N/A", + "filename": "HG03270-2_FC2_S2_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA19835_PB1_m84091_230724_160010_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03270-2_FC2_S2_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "66428", - "mean": "19704", - "metadataAccession": "SRR29405766", - "min": "66", - "mmTag": false, - "n25": "17053", - "n50": "19779", - "n75": "23499", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310808", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.494294", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19835/raw_data/PacBio_HiFi/m84091_230724_160010_s2.hifi_reads.bc1001.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16425", - "quartile50": "18793", - "quartile75": "22106", + "path": "s3://human-pangenomics/working/HPRC/HG03270/raw_data/hic/HG03270-2_FC2_S2_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19835", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "95502198267", - "totalGbp": "95.5", - "totalReads": "4846730", + "title": "Illumina Sequencing of Omni-C Libraries of HG03270", + "totalBp": "32756866692", + "totalGbp": "32.76", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", "accession": null, - "assembly": "N/A", + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41708786", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797109", + "ccsAlgorithm": "N/A", + "coverage": "2.37", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230724_163116_s3.hifi_reads.bc1002.bam", - "filetype": "N/A", + "filename": "HG03458-1_S17_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA19377_PB1_m84091_230724_163116_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03458-1_S17_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58231", - "mean": "19846", - "metadataAccession": "SRR29405772", - "min": "257", - "mmTag": false, - "n25": "17125", - "n50": "20052", - "n75": "23882", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242228", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.648711", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19377/raw_data/PacBio_HiFi/m84091_230724_163116_s3.hifi_reads.bc1002.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", + "path": "s3://human-pangenomics/working/HPRC/HG03458/raw_data/hic/HG03458-1_S17_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", "productionYear": null, - "quartile25": "16384", - "quartile50": "18965", - "quartile75": "22411", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19377", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", "subpopulation": null, "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "88839158485", - "totalGbp": "88.84", - "totalReads": "4476331", + "title": "Illumina Sequencing of Omni-C Libraries of HG03458", + "totalBp": "7342759890", + "totalGbp": "7.34", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021667", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021667", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797109", + "ccsAlgorithm": "N/A", + "coverage": "2.37", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230724_170222_s4.hifi_reads.bc1008.bam", - "filetype": "N/A", + "filename": "HG03458-1_S17_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG00235_PB1_m84091_230724_170222_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03458-1_S17_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "63978", - "mean": "20525", - "metadataAccession": "SRR29405848", - "min": "141", - "mmTag": false, - "n25": "17561", - "n50": "20992", - "n75": "25350", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242228", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.657246", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00235/raw_data/PacBio_HiFi/m84091_230724_170222_s4.hifi_reads.bc1008.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16568", - "quartile50": "19607", - "quartile75": "23582", + "path": "s3://human-pangenomics/working/HPRC/HG03458/raw_data/hic/HG03458-1_S17_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00235", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "100350407151", - "totalGbp": "100.35", - "totalReads": "4889018", + "title": "Illumina Sequencing of Omni-C Libraries of HG03458", + "totalBp": "7342347586", + "totalGbp": "7.34", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", "accession": null, - "assembly": "N/A", + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41708785", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797109", + "ccsAlgorithm": "N/A", + "coverage": "2.43", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230725_153931_s1.hifi_reads.bc1010.bam", - "filetype": "N/A", + "filename": "HG03458-1_S17_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG01626_PB1_m84091_230725_153931_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03458-1_S17_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57714", - "mean": "19058", - "metadataAccession": "SRR29405836", - "min": "82", - "mmTag": false, - "n25": "16616", - "n50": "18983", - "n75": "22408", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242227", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.631313", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01626/raw_data/PacBio_HiFi/m84091_230725_153931_s1.hifi_reads.bc1010.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", + "path": "s3://human-pangenomics/working/HPRC/HG03458/raw_data/hic/HG03458-1_S17_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", "productionYear": null, - "quartile25": "16153", - "quartile50": "18178", - "quartile75": "21220", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01626", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", "subpopulation": null, "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "107287914023", - "totalGbp": "107.29", - "totalReads": "5629338", + "title": "Illumina Sequencing of Omni-C Libraries of HG03458", + "totalBp": "7541210310", + "totalGbp": "7.54", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021678", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021678", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797109", + "ccsAlgorithm": "N/A", + "coverage": "2.43", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230725_161037_s2.hifi_reads.bc1011.bam", - "filetype": "N/A", + "filename": "HG03458-1_S17_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG00662_PB1_m84091_230725_161037_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03458-1_S17_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "72343", - "mean": "20323", - "metadataAccession": "SRR29405774", - "min": "88", - "mmTag": false, - "n25": "17454", - "n50": "20596", - "n75": "24763", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242227", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.664157", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00662/raw_data/PacBio_HiFi/m84091_230725_161037_s2.hifi_reads.bc1011.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16608", - "quartile50": "19366", - "quartile75": "23090", + "path": "s3://human-pangenomics/working/HPRC/HG03458/raw_data/hic/HG03458-1_S17_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00662", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "106478216787", - "totalGbp": "106.48", - "totalReads": "5239143", + "title": "Illumina Sequencing of Omni-C Libraries of HG03458", + "totalBp": "7540661411", + "totalGbp": "7.54", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021679", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021679", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797109", + "ccsAlgorithm": "N/A", + "coverage": "2.32", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230725_164143_s3.hifi_reads.bc1012.bam", - "filetype": "N/A", + "filename": "HG03458-1_S17_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG01167_PB1_m84091_230725_164143_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03458-1_S17_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "70236", - "mean": "20540", - "metadataAccession": "SRR29405840", - "min": "78", - "mmTag": false, - "n25": "17779", - "n50": "20606", - "n75": "24544", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242226", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.637325", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01167/raw_data/PacBio_HiFi/m84091_230725_164143_s3.hifi_reads.bc1012.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17135", - "quartile50": "19573", - "quartile75": "23082", + "path": "s3://human-pangenomics/working/HPRC/HG03458/raw_data/hic/HG03458-1_S17_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01167", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "105402106362", - "totalGbp": "105.4", - "totalReads": "5131466", + "title": "Illumina Sequencing of Omni-C Libraries of HG03458", + "totalBp": "7184535005", + "totalGbp": "7.18", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021680", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021680", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797109", + "ccsAlgorithm": "N/A", + "coverage": "2.32", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230725_171249_s4.hifi_reads.bc1015.bam", - "filetype": "N/A", + "filename": "HG03458-1_S17_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA19131_PB1_m84091_230725_171249_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03458-1_S17_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "63090", - "mean": "20690", - "metadataAccession": "SRR29405779", - "min": "66", - "mmTag": false, - "n25": "17956", - "n50": "20781", - "n75": "24644", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242226", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.634673", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19131/raw_data/PacBio_HiFi/m84091_230725_171249_s4.hifi_reads.bc1015.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17305", - "quartile50": "19769", - "quartile75": "23236", + "path": "s3://human-pangenomics/working/HPRC/HG03458/raw_data/hic/HG03458-1_S17_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19131", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "107950313295", - "totalGbp": "107.95", - "totalReads": "5217376", + "title": "Illumina Sequencing of Omni-C Libraries of HG03458", + "totalBp": "7184028769", + "totalGbp": "7.18", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021681", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021681", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797109", + "ccsAlgorithm": "N/A", + "coverage": "2.37", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230727_125753_s1.hifi_reads.bc1016.bam", - "filetype": "N/A", + "filename": "HG03458-1_S17_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG04153_PB1_m84091_230727_125753_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03458-1_S17_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53122", - "mean": "18296", - "metadataAccession": "SRR29405797", - "min": "118", - "mmTag": false, - "n25": "15865", - "n50": "18364", - "n75": "21770", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242225", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.665429", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04153/raw_data/PacBio_HiFi/m84091_230727_125753_s1.hifi_reads.bc1016.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15297", - "quartile50": "17477", - "quartile75": "20533", + "path": "s3://human-pangenomics/working/HPRC/HG03458/raw_data/hic/HG03458-1_S17_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04153", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "99682975843", - "totalGbp": "99.68", - "totalReads": "5448151", + "title": "Illumina Sequencing of Omni-C Libraries of HG03458", + "totalBp": "7354789323", + "totalGbp": "7.35", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021645", - "assembly": "N/A", - "basecaller": "N/A", - "basecallerModel": "N/A", - "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021645", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797109", + "ccsAlgorithm": "N/A", + "coverage": "2.37", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SL73", - "filename": "m84091_230727_132817_s2.hifi_reads.bc1020.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03458-1_S17_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03583_PB1_m84091_230727_132817_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03458-1_S17_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "63881", - "mean": "22468", - "metadataAccession": "SRR29405788", - "min": "70", - "mmTag": false, - "n25": "18957", - "n50": "23160", - "n75": "28344", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242225", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.60862", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03583/raw_data/PacBio_HiFi/m84091_230727_132817_s2.hifi_reads.bc1020.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17637", - "quartile50": "21312", - "quartile75": "26030", + "path": "s3://human-pangenomics/working/HPRC/HG03458/raw_data/hic/HG03458-1_S17_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03583", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "73592673188", - "totalGbp": "73.59", - "totalReads": "3275414", + "title": "Illumina Sequencing of Omni-C Libraries of HG03458", + "totalBp": "7354296718", + "totalGbp": "7.35", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021668", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021668", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797110", + "ccsAlgorithm": "N/A", + "coverage": "3.82", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230727_135923_s3.hifi_reads.bc1009.bam", - "filetype": "N/A", + "filename": "HG03470-1_S18_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03369_PB1_m84091_230727_135923_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03470-1_S18_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "62797", - "mean": "19550", - "metadataAccession": "SRR29405803", - "min": "84", - "mmTag": false, - "n25": "16806", - "n50": "19695", - "n75": "23620", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242223", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.594815", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03369/raw_data/PacBio_HiFi/m84091_230727_135923_s3.hifi_reads.bc1009.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16081", - "quartile50": "18597", - "quartile75": "22062", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-1_S18_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03369", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "99031742869", - "totalGbp": "99.03", - "totalReads": "5065533", + "title": "Illumina Sequencing of Omni-C Libraries of HG03470", + "totalBp": "11849763503", + "totalGbp": "11.85", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021615", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021615", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797110", + "ccsAlgorithm": "N/A", + "coverage": "3.82", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230727_143029_s4.hifi_reads.bc1002.bam", - "filetype": "N/A", + "filename": "HG03470-1_S18_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG02392_PB1_m84091_230727_143029_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03470-1_S18_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52237", - "mean": "19939", - "metadataAccession": "SRR29405827", - "min": "448", - "mmTag": false, - "n25": "16974", - "n50": "19967", - "n75": "24015", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242223", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.577085", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02392/raw_data/PacBio_HiFi/m84091_230727_143029_s4.hifi_reads.bc1002.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16316", - "quartile50": "18819", - "quartile75": "22398", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-1_S18_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02392", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "5031138131", - "totalGbp": "5.03", - "totalReads": "252316", + "title": "Illumina Sequencing of Omni-C Libraries of HG03470", + "totalBp": "11849107556", + "totalGbp": "11.85", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021666", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021666", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797110", + "ccsAlgorithm": "N/A", + "coverage": "3.91", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230727_143029_s4.hifi_reads.bc1003.bam", - "filetype": "N/A", + "filename": "HG03470-1_S18_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG00253_PB1_m84091_230727_143029_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03470-1_S18_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61986", - "mean": "19838", - "metadataAccession": "SRR29405807", - "min": "129", - "mmTag": false, - "n25": "16985", - "n50": "20288", - "n75": "24409", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242222", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.600467", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00253/raw_data/PacBio_HiFi/m84091_230727_143029_s4.hifi_reads.bc1003.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16026", - "quartile50": "18955", - "quartile75": "22733", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-1_S18_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00253", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "89522377853", - "totalGbp": "89.52", - "totalReads": "4512540", + "title": "Illumina Sequencing of Omni-C Libraries of HG03470", + "totalBp": "12135092146", + "totalGbp": "12.14", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", "accession": null, - "assembly": "N/A", + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41708785", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797110", + "ccsAlgorithm": "N/A", + "coverage": "3.91", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230731_130312_s1.hifi_reads.bc1010.bam", - "filetype": "N/A", + "filename": "HG03470-1_S18_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG01626_PB1_m84091_230731_130312_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03470-1_S18_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55270", - "mean": "18925", - "metadataAccession": "SRR29405835", - "min": "80", - "mmTag": false, - "n25": "16541", - "n50": "18833", - "n75": "22147", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242222", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.552266", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01626/raw_data/PacBio_HiFi/m84091_230731_130312_s1.hifi_reads.bc1010.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-1_S18_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", "productionYear": null, - "quartile25": "16094", - "quartile50": "18068", - "quartile75": "21004", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01626", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", "subpopulation": null, "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "77655239427", - "totalGbp": "77.66", - "totalReads": "4103204", + "title": "Illumina Sequencing of Omni-C Libraries of HG03470", + "totalBp": "12134176924", + "totalGbp": "12.13", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021625", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021625", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797110", + "ccsAlgorithm": "N/A", + "coverage": "3.75", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230731_130312_s1.hifi_reads.bc1012.bam", - "filetype": "N/A", + "filename": "HG03470-1_S18_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03874_PB1_m84091_230731_130312_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03470-1_S18_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57091", - "mean": "22295", - "metadataAccession": "SRR29405796", - "min": "148", - "mmTag": false, - "n25": "18900", - "n50": "23025", - "n75": "28033", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242319", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.594667", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03874/raw_data/PacBio_HiFi/m84091_230731_130312_s1.hifi_reads.bc1012.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17588", - "quartile50": "21233", - "quartile75": "25872", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-1_S18_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03874", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "12022114455", - "totalGbp": "12.02", - "totalReads": "539213", + "title": "Illumina Sequencing of Omni-C Libraries of HG03470", + "totalBp": "11634327328", + "totalGbp": "11.63", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021665", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021665", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797110", + "ccsAlgorithm": "N/A", + "coverage": "3.75", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230731_133332_s2.hifi_reads.bc1001.bam", - "filetype": "N/A", + "filename": "HG03470-1_S18_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA19835_PB1_m84091_230731_133332_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03470-1_S18_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60316", - "mean": "19748", - "metadataAccession": "SRR29405765", - "min": "699", - "mmTag": false, - "n25": "17085", - "n50": "19828", - "n75": "23581", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242319", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.574864", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19835/raw_data/PacBio_HiFi/m84091_230731_133332_s2.hifi_reads.bc1001.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16451", - "quartile50": "18820", - "quartile75": "22170", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-1_S18_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19835", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "7796745438", - "totalGbp": "7.8", - "totalReads": "394796", + "title": "Illumina Sequencing of Omni-C Libraries of HG03470", + "totalBp": "11633456348", + "totalGbp": "11.63", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021678", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021678", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797110", + "ccsAlgorithm": "N/A", + "coverage": "3.83", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230731_133332_s2.hifi_reads.bc1011.bam", - "filetype": "N/A", + "filename": "HG03470-1_S18_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG00662_PB1_m84091_230731_133332_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03470-1_S18_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "67484", - "mean": "20466", - "metadataAccession": "SRR29405763", - "min": "111", - "mmTag": false, - "n25": "17587", - "n50": "20751", - "n75": "24962", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242318", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.6004", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00662/raw_data/PacBio_HiFi/m84091_230731_133332_s2.hifi_reads.bc1011.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16722", - "quartile50": "19517", - "quartile75": "23254", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-1_S18_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00662", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "78161532546", - "totalGbp": "78.16", - "totalReads": "3819037", + "title": "Illumina Sequencing of Omni-C Libraries of HG03470", + "totalBp": "11860368970", + "totalGbp": "11.86", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021679", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021679", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797110", + "ccsAlgorithm": "N/A", + "coverage": "3.83", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230731_140439_s3.hifi_reads.bc1012.bam", - "filetype": "N/A", + "filename": "HG03470-1_S18_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG01167_PB1_m84091_230731_140439_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03470-1_S18_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61397", - "mean": "20577", - "metadataAccession": "SRR29405839", - "min": "63", - "mmTag": false, - "n25": "17829", - "n50": "20652", - "n75": "24569", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242318", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.567967", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01167/raw_data/PacBio_HiFi/m84091_230731_140439_s3.hifi_reads.bc1012.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17176", - "quartile50": "19633", - "quartile75": "23104", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-1_S18_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01167", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "69660229902", - "totalGbp": "69.66", - "totalReads": "3385191", + "title": "Illumina Sequencing of Omni-C Libraries of HG03470", + "totalBp": "11859518640", + "totalGbp": "11.86", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", "accession": null, - "assembly": "N/A", + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41708786", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797110", + "ccsAlgorithm": "N/A", + "coverage": "3.09", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230731_143545_s4.hifi_reads.bc1002.bam", - "filetype": "N/A", + "filename": "HG03470-2_S26_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA19377_PB1_m84091_230731_143545_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03470-2_S26_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "63370", - "mean": "19726", - "metadataAccession": "SRR29405771", - "min": "548", - "mmTag": false, - "n25": "17022", - "n50": "19919", - "n75": "23714", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242317", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.620073", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19377/raw_data/PacBio_HiFi/m84091_230731_143545_s4.hifi_reads.bc1002.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-2_S26_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", "productionYear": null, - "quartile25": "16297", - "quartile50": "18847", - "quartile75": "22264", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19377", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", "subpopulation": null, "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "15291250872", - "totalGbp": "15.29", - "totalReads": "775152", + "title": "Illumina Sequencing of Omni-C Libraries of HG03470", + "totalBp": "9587897548", + "totalGbp": "9.59", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021680", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021680", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797110", + "ccsAlgorithm": "N/A", + "coverage": "3.09", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230731_143545_s4.hifi_reads.bc1015.bam", - "filetype": "N/A", + "filename": "HG03470-2_S26_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA19131_PB1_m84091_230731_143545_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03470-2_S26_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57669", - "mean": "20603", - "metadataAccession": "SRR29405778", - "min": "255", - "mmTag": false, - "n25": "17920", - "n50": "20683", - "n75": "24467", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242317", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.593232", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19131/raw_data/PacBio_HiFi/m84091_230731_143545_s4.hifi_reads.bc1015.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17281", - "quartile50": "19706", - "quartile75": "23082", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-2_S26_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19131", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "73614424293", - "totalGbp": "73.61", - "totalReads": "3572878", + "title": "Illumina Sequencing of Omni-C Libraries of HG03470", + "totalBp": "9587299787", + "totalGbp": "9.59", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021681", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021681", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797110", + "ccsAlgorithm": "N/A", + "coverage": "3.17", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230802_170158_s1.hifi_reads.bc1016.bam", - "filetype": "N/A", + "filename": "HG03470-2_S26_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG04153_PB1_m84091_230802_170158_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03470-2_S26_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57640", - "mean": "18123", - "metadataAccession": "SRR29405798", - "min": "58", - "mmTag": false, - "n25": "15734", - "n50": "18167", - "n75": "21488", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242218", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.572677", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04153/raw_data/PacBio_HiFi/m84091_230802_170158_s1.hifi_reads.bc1016.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15190", - "quartile50": "17310", - "quartile75": "20283", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-2_S26_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04153", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "104895724944", - "totalGbp": "104.9", - "totalReads": "5787787", + "title": "Illumina Sequencing of Omni-C Libraries of HG03470", + "totalBp": "9825240348", + "totalGbp": "9.83", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021615", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021615", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797110", + "ccsAlgorithm": "N/A", + "coverage": "3.17", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230817_153352_s4.hifi_reads.bc1002.bam", - "filetype": "N/A", + "filename": "HG03470-2_S26_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG02392_PB1_m84091_230817_153352_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03470-2_S26_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53098", - "mean": "18520", - "metadataAccession": "SRR29405825", - "min": "235", - "mmTag": false, - "n25": "16304", - "n50": "18487", - "n75": "21703", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242218", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.595658", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02392/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1002.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15842", - "quartile50": "17738", - "quartile75": "20544", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-2_S26_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02392", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "13184911846", - "totalGbp": "13.18", - "totalReads": "711902", + "title": "Illumina Sequencing of Omni-C Libraries of HG03470", + "totalBp": "9824464467", + "totalGbp": "9.82", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", "accession": null, - "assembly": "N/A", + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41708785", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797110", + "ccsAlgorithm": "N/A", + "coverage": "3.02", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230817_153352_s4.hifi_reads.bc1010.bam", - "filetype": "N/A", + "filename": "HG03470-2_S26_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG01626_PB1_m84091_230817_153352_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03470-2_S26_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52545", - "mean": "18641", - "metadataAccession": "SRR29405834", - "min": "598", - "mmTag": false, - "n25": "16362", - "n50": "18484", - "n75": "21658", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242217", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.598062", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01626/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1010.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-2_S26_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", "productionYear": null, - "quartile25": "15961", - "quartile50": "17790", - "quartile75": "20571", + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01626", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", "subpopulation": null, "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "12082980291", - "totalGbp": "12.08", - "totalReads": "648185", + "title": "Illumina Sequencing of Omni-C Libraries of HG03470", + "totalBp": "9358371465", + "totalGbp": "9.36", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021678", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021678", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797110", + "ccsAlgorithm": "N/A", + "coverage": "3.02", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230817_153352_s4.hifi_reads.bc1011.bam", - "filetype": "N/A", + "filename": "HG03470-2_S26_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG00662_PB1_m84091_230817_153352_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03470-2_S26_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57887", - "mean": "19833", - "metadataAccession": "SRR29405847", - "min": "695", - "mmTag": false, - "n25": "17080", - "n50": "20094", - "n75": "24019", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242217", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.572006", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00662/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1011.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16262", - "quartile50": "18952", - "quartile75": "22472", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-2_S26_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00662", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "6343032112", - "totalGbp": "6.34", - "totalReads": "319809", + "title": "Illumina Sequencing of Omni-C Libraries of HG03470", + "totalBp": "9357642820", + "totalGbp": "9.36", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021679", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021679", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797110", + "ccsAlgorithm": "N/A", + "coverage": "3.08", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230817_153352_s4.hifi_reads.bc1012.bam", - "filetype": "N/A", + "filename": "HG03470-2_S26_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG01167_PB1_m84091_230817_153352_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03470-2_S26_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53672", - "mean": "19896", - "metadataAccession": "SRR29405838", - "min": "325", - "mmTag": false, - "n25": "17361", - "n50": "19875", - "n75": "23415", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242216", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.603151", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01167/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1012.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16814", - "quartile50": "19006", - "quartile75": "22140", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-2_S26_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01167", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "18661653900", - "totalGbp": "18.66", - "totalReads": "937915", + "title": "Illumina Sequencing of Omni-C Libraries of HG03470", + "totalBp": "9560358443", + "totalGbp": "9.56", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021680", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021680", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797110", + "ccsAlgorithm": "N/A", + "coverage": "3.08", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_230817_153352_s4.hifi_reads.bc1015.bam", - "filetype": "N/A", + "filename": "HG03470-2_S26_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA19131_PB1_m84091_230817_153352_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03470-2_S26_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52957", - "mean": "20090", - "metadataAccession": "SRR29405777", - "min": "375", - "mmTag": false, - "n25": "17570", - "n50": "20107", - "n75": "23620", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242216", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.579355", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19131/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1015.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17010", - "quartile50": "19238", - "quartile75": "22376", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/hic/HG03470-2_S26_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19131", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "18028708953", - "totalGbp": "18.03", - "totalReads": "897397", + "title": "Illumina Sequencing of Omni-C Libraries of HG03470", + "totalBp": "9559639900", + "totalGbp": "9.56", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021645", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", + "bioprojectAccession": "PRJNA701308", "biosampleAccession": "SAMN41021645", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "ccsAlgorithm": "N/A", + "coverage": "3.31", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SL73", - "filename": "m84091_230817_153352_s4.hifi_reads.bc1020.bam", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03583-1_FC1_S15_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03583_PB1_m84091_230817_153352_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03583-1_FC1_S15_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58773", - "mean": "20982", - "metadataAccession": "SRR29405789", - "min": "374", - "mmTag": false, - "n25": "17589", - "n50": "21310", - "n75": "26145", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310807", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.587735", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03583/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1020.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16579", - "quartile50": "19701", - "quartile75": "24014", + "path": "s3://human-pangenomics/working/HPRC/HG03583/raw_data/hic/HG03583-1_FC1_S15_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03583", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "13823052723", - "totalGbp": "13.82", - "totalReads": "658801", + "title": "Illumina Sequencing of Omni-C Libraries of HG03583", + "totalBp": "10268000000", + "totalGbp": "10.27", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021691", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021691", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021645", + "ccsAlgorithm": "N/A", + "coverage": "3.31", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_231106_194835_s4.hifi_reads.bc1001.bam", - "filetype": "N/A", + "filename": "HG03583-1_FC1_S15_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG02624_PB1_m84091_231106_194835_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03583-1_FC1_S15_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61392", - "mean": "21215", - "metadataAccession": "SRR29405822", - "min": "126", - "mmTag": false, - "n25": "18152", - "n50": "21403", - "n75": "25741", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310807", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.587735", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02624/raw_data/PacBio_HiFi/m84091_231106_194835_s4.hifi_reads.bc1001.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17347", - "quartile50": "20121", - "quartile75": "24002", + "path": "s3://human-pangenomics/working/HPRC/HG03583/raw_data/hic/HG03583-1_FC1_S15_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02624", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "60423047644", - "totalGbp": "60.42", - "totalReads": "2848011", + "title": "Illumina Sequencing of Omni-C Libraries of HG03583", + "totalBp": "10268000000", + "totalGbp": "10.27", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021693", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021693", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021645", + "ccsAlgorithm": "N/A", + "coverage": "3.11", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_231106_201855_s1.hifi_reads.bc1003.bam", - "filetype": "N/A", + "filename": "HG03583-1_FC2_S15_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03372_PB1_m84091_231106_201855_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03583-1_FC2_S15_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61686", - "mean": "20025", - "metadataAccession": "SRR29405804", - "min": "124", - "mmTag": false, - "n25": "17280", - "n50": "19956", - "n75": "23721", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310806", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.555637", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03372/raw_data/PacBio_HiFi/m84091_231106_201855_s1.hifi_reads.bc1003.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16723", - "quartile50": "18985", - "quartile75": "22321", + "path": "s3://human-pangenomics/working/HPRC/HG03583/raw_data/hic/HG03583-1_FC2_S15_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03372", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "82654306669", - "totalGbp": "82.65", - "totalReads": "4127489", + "title": "Illumina Sequencing of Omni-C Libraries of HG03583", + "totalBp": "9656429011", + "totalGbp": "9.66", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021692", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021692", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021645", + "ccsAlgorithm": "N/A", + "coverage": "3.11", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_231106_212107_s3.hifi_reads.bc1021.bam", - "filetype": "N/A", + "filename": "HG03583-1_FC2_S15_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03672_PB1_m84091_231106_212107_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03583-1_FC2_S15_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "65187", - "mean": "20604", - "metadataAccession": "SRR29405790", - "min": "66", - "mmTag": false, - "n25": "17783", - "n50": "20616", - "n75": "24485", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310806", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.555637", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03672/raw_data/PacBio_HiFi/m84091_231106_212107_s3.hifi_reads.bc1021.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17161", - "quartile50": "19586", - "quartile75": "23056", + "path": "s3://human-pangenomics/working/HPRC/HG03583/raw_data/hic/HG03583-1_FC2_S15_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03672", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "STU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "74693823037", - "totalGbp": "74.69", - "totalReads": "3625163", + "title": "Illumina Sequencing of Omni-C Libraries of HG03583", + "totalBp": "9656429011", + "totalGbp": "9.66", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021695", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021695", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021645", + "ccsAlgorithm": "N/A", + "coverage": "3.91", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_231110_171321_s4.hifi_reads.bc1009.bam", - "filetype": "N/A", + "filename": "HG03583-2_FC1_S16_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA19703_PB1_m84091_231110_171321_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03583-2_FC1_S16_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "53725", - "mean": "18247", - "metadataAccession": "SRR29405770", - "min": "113", - "mmTag": false, - "n25": "15451", - "n50": "18436", - "n75": "22422", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310805", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.559499", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19703/raw_data/PacBio_HiFi/m84091_231110_171321_s4.hifi_reads.bc1009.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "14716", - "quartile50": "17191", - "quartile75": "20771", + "path": "s3://human-pangenomics/working/HPRC/HG03583/raw_data/hic/HG03583-2_FC1_S16_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19703", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "59926767647", - "totalGbp": "59.93", - "totalReads": "3284143", + "title": "Illumina Sequencing of Omni-C Libraries of HG03583", + "totalBp": "12121397556", + "totalGbp": "12.12", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021691", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021691", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021645", + "ccsAlgorithm": "N/A", + "coverage": "3.91", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_231113_162942_s4.hifi_reads.bc1001.bam", - "filetype": "N/A", + "filename": "HG03583-2_FC1_S16_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG02624_PB1_m84091_231113_162942_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03583-2_FC1_S16_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "72097", - "mean": "21567", - "metadataAccession": "SRR29405821", - "min": "80", - "mmTag": false, - "n25": "18409", - "n50": "21808", - "n75": "26342", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310805", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.559499", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02624/raw_data/PacBio_HiFi/m84091_231113_162942_s4.hifi_reads.bc1001.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17534", - "quartile50": "20443", - "quartile75": "24485", + "path": "s3://human-pangenomics/working/HPRC/HG03583/raw_data/hic/HG03583-2_FC1_S16_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02624", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "72407932208", - "totalGbp": "72.41", - "totalReads": "3357318", + "title": "Illumina Sequencing of Omni-C Libraries of HG03583", + "totalBp": "12121397556", + "totalGbp": "12.12", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021694", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021694", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021645", + "ccsAlgorithm": "N/A", + "coverage": "3.79", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_231113_170005_s1.hifi_reads.bc1008.bam", - "filetype": "N/A", + "filename": "HG03583-2_FC2_S16_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03108_PB1_m84091_231113_170005_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03583-2_FC2_S16_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "64350", - "mean": "21758", - "metadataAccession": "SRR29405814", - "min": "156", - "mmTag": false, - "n25": "18477", - "n50": "22138", - "n75": "26903", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310804", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.557892", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03108/raw_data/PacBio_HiFi/m84091_231113_170005_s1.hifi_reads.bc1008.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17455", - "quartile50": "20616", - "quartile75": "24894", + "path": "s3://human-pangenomics/working/HPRC/HG03583/raw_data/hic/HG03583-2_FC2_S16_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03108", - "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "49182307712", - "totalGbp": "49.18", - "totalReads": "2260373", + "title": "Illumina Sequencing of Omni-C Libraries of HG03583", + "totalBp": "11736739401", + "totalGbp": "11.74", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021692", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021692", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021645", + "ccsAlgorithm": "N/A", + "coverage": "3.79", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_231113_173111_s2.hifi_reads.bc1021.bam", - "filetype": "N/A", + "filename": "HG03583-2_FC2_S16_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03672_PB1_m84091_231113_173111_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03583-2_FC2_S16_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "54675", - "mean": "20297", - "metadataAccession": "SRR29405791", - "min": "55", - "mmTag": false, - "n25": "17592", - "n50": "20281", - "n75": "23965", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30310804", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.557892", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03672/raw_data/PacBio_HiFi/m84091_231113_173111_s2.hifi_reads.bc1021.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17020", - "quartile50": "19332", - "quartile75": "22627", + "path": "s3://human-pangenomics/working/HPRC/HG03583/raw_data/hic/HG03583-2_FC2_S16_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03672", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "STU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "69517456229", - "totalGbp": "69.52", - "totalReads": "3424955", + "title": "Illumina Sequencing of Omni-C Libraries of HG03583", + "totalBp": "11736739401", + "totalGbp": "11.74", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021695", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021695", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237512", + "ccsAlgorithm": "N/A", + "coverage": "6.41", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_231113_180217_s3.hifi_reads.bc1009.bam", - "filetype": "N/A", + "filename": "HG03669-26a-1_S3_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA19703_PB1_m84091_231113_180217_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03669-26a-1-1_S3_L001_R1_001-1_S3_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "62382", - "mean": "18767", - "metadataAccession": "SRR29405769", - "min": "114", - "mmTag": false, - "n25": "15784", - "n50": "19072", - "n75": "23370", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613877", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.528137", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19703/raw_data/PacBio_HiFi/m84091_231113_180217_s3.hifi_reads.bc1009.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "14929", - "quartile50": "17642", - "quartile75": "21523", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-1_S3_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19703", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "79305068847", - "totalGbp": "79.31", - "totalReads": "4225622", + "title": "Illumina Sequencing of Omni-C Libraries of HG03669", + "totalBp": "19869906911", + "totalGbp": "19.87", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021694", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021694", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237512", + "ccsAlgorithm": "N/A", + "coverage": "6.41", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_231214_200959_s1.hifi_reads.bc1008.bam", - "filetype": "N/A", + "filename": "HG03669-26a-1_S3_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03108_PB1_m84091_231214_200959_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03669-26a-1-1_S3_L001_R1_001-1_S3_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "65917", - "mean": "22030", - "metadataAccession": "SRR29405813", - "min": "163", - "mmTag": false, - "n25": "18635", - "n50": "22455", - "n75": "27452", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613877", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.507607", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03108/raw_data/PacBio_HiFi/m84091_231214_200959_s1.hifi_reads.bc1008.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17551", - "quartile50": "20828", - "quartile75": "25292", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-1_S3_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03108", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "61873183479", - "totalGbp": "61.87", - "totalReads": "2808537", + "title": "Illumina Sequencing of Omni-C Libraries of HG03669", + "totalBp": "19869171647", + "totalGbp": "19.87", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021693", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021693", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237512", + "ccsAlgorithm": "N/A", + "coverage": "6.07", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_231214_204105_s2.hifi_reads.bc1003.bam", - "filetype": "N/A", + "filename": "HG03669-26a-1_S3_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03372_PB1_m84091_231214_204105_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03669-26a-1-1_S3_L002_R1_001-1_S3_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56430", - "mean": "20339", - "metadataAccession": "SRR29405805", - "min": "163", - "mmTag": false, - "n25": "17441", - "n50": "20290", - "n75": "24317", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613876", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.561043", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03372/raw_data/PacBio_HiFi/m84091_231214_204105_s2.hifi_reads.bc1003.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16831", - "quartile50": "19214", - "quartile75": "22762", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-1_S3_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03372", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "36636856565", - "totalGbp": "36.64", - "totalReads": "1801269", + "title": "Illumina Sequencing of Omni-C Libraries of HG03669", + "totalBp": "18802834522", + "totalGbp": "18.8", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021691", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021691", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237512", + "ccsAlgorithm": "N/A", + "coverage": "6.07", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_231214_211211_s3.hifi_reads.bc1001.bam", - "filetype": "N/A", + "filename": "HG03669-26a-1_S3_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG02624_PB1_m84091_231214_211211_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03669-26a-1-1_S3_L002_R1_001-1_S3_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "66338", - "mean": "22035", - "metadataAccession": "SRR29405820", - "min": "146", - "mmTag": false, - "n25": "18713", - "n50": "22358", - "n75": "27192", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613876", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.499494", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02624/raw_data/PacBio_HiFi/m84091_231214_211211_s3.hifi_reads.bc1001.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "17740", - "quartile50": "20852", - "quartile75": "25145", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-1_S3_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02624", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "47928785289", - "totalGbp": "47.93", - "totalReads": "2175052", + "title": "Illumina Sequencing of Omni-C Libraries of HG03669", + "totalBp": "18802545695", + "totalGbp": "18.8", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021704", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021704", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237512", + "ccsAlgorithm": "N/A", + "coverage": "5.71", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_240110_204947_s3.hifi_reads.bc1015.bam", - "filetype": "N/A", + "filename": "HG03669-26a-1_S3_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03445_PB1_m84091_240110_204947_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03669-26a-1-1_S3_L003_R1_001-1_S3_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "67580", - "mean": "20874", - "metadataAccession": "SRR29405808", - "min": "87", - "mmTag": false, - "n25": "17553", - "n50": "21018", - "n75": "25786", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613778", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.569307", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03445/raw_data/PacBio_HiFi/m84091_240110_204947_s3.hifi_reads.bc1015.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16709", - "quartile50": "19547", - "quartile75": "23723", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-1_S3_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03445", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "65097127516", - "totalGbp": "65.1", - "totalReads": "3118474", + "title": "Illumina Sequencing of Omni-C Libraries of HG03669", + "totalBp": "17709235374", + "totalGbp": "17.71", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021703", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021703", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237512", + "ccsAlgorithm": "N/A", + "coverage": "5.71", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_240122_201558_s1.hifi_reads.bc1012.bam", - "filetype": "N/A", + "filename": "HG03669-26a-1_S3_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03072_PB1_m84091_240122_201558_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03669-26a-1-1_S3_L003_R1_001-1_S3_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "63436", - "mean": "20638", - "metadataAccession": "SRR29405818", - "min": "114", - "mmTag": false, - "n25": "17504", - "n50": "20673", - "n75": "25130", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613778", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.516357", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03072/raw_data/PacBio_HiFi/m84091_240122_201558_s1.hifi_reads.bc1012.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "16770", - "quartile50": "19387", - "quartile75": "23268", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-1_S3_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03072", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "72760626031", - "totalGbp": "72.76", - "totalReads": "3525553", + "title": "Illumina Sequencing of Omni-C Libraries of HG03669", + "totalBp": "17708385495", + "totalGbp": "17.71", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021701", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021701", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237512", + "ccsAlgorithm": "N/A", + "coverage": "6.31", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_240221_202725_s4.hifi_reads.bc1022.bam", - "filetype": "N/A", + "filename": "HG03669-26a-1_S3_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA19042_PB1_m84091_240221_202725_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03669-26a-1-1_S3_L004_R1_001-1_S3_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "61590", - "mean": "19663", - "metadataAccession": "SRR29405760", - "min": "99", - "mmTag": false, - "n25": "16758", - "n50": "20587", - "n75": "25172", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613620", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.563446", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19042/raw_data/PacBio_HiFi/m84091_240221_202725_s4.hifi_reads.bc1022.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15372", - "quartile50": "18829", - "quartile75": "23120", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-1_S3_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19042", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "65471433956", - "totalGbp": "65.47", - "totalReads": "3329518", + "title": "Illumina Sequencing of Omni-C Libraries of HG03669", + "totalBp": "19556889119", + "totalGbp": "19.56", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021695", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021695", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237512", + "ccsAlgorithm": "N/A", + "coverage": "6.31", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_240221_212852_s2.hifi_reads.bc1009.bam", - "filetype": "N/A", + "filename": "HG03669-26a-1_S3_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA19703_PB1_m84091_240221_212852_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03669-26a-1-1_S3_L004_R1_001-1_S3_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "58776", - "mean": "18286", - "metadataAccession": "SRR29405768", - "min": "91", - "mmTag": false, - "n25": "15307", - "n50": "19455", - "n75": "24562", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613620", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.521913", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19703/raw_data/PacBio_HiFi/m84091_240221_212852_s2.hifi_reads.bc1009.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "13621", - "quartile50": "17233", - "quartile75": "21908", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-1_S3_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19703", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "53768952232", - "totalGbp": "53.77", - "totalReads": "2940298", + "title": "Illumina Sequencing of Omni-C Libraries of HG03669", + "totalBp": "19556209542", + "totalGbp": "19.56", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021691", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021691", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237512", + "ccsAlgorithm": "N/A", + "coverage": "4.3", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_240221_215958_s3.hifi_reads.bc1001.bam", - "filetype": "N/A", + "filename": "HG03669-26a-2_S4_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG02624_PB1_m84091_240221_215958_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03669-26a-2-2_S4_L001_R1_001-2_S4_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "51714", - "mean": "16859", - "metadataAccession": "SRR29405819", - "min": "268", - "mmTag": false, - "n25": "14319", - "n50": "17514", - "n75": "21621", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613619", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.582132", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02624/raw_data/PacBio_HiFi/m84091_240221_215958_s3.hifi_reads.bc1001.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "13197", - "quartile50": "16006", - "quartile75": "19706", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-2_S4_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02624", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "9765699517", - "totalGbp": "9.77", - "totalReads": "579245", + "title": "Illumina Sequencing of Omni-C Libraries of HG03669", + "totalBp": "13324278089", + "totalGbp": "13.32", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021692", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021692", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237512", + "ccsAlgorithm": "N/A", + "coverage": "4.3", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_240221_215958_s3.hifi_reads.bc1021.bam", - "filetype": "N/A", + "filename": "HG03669-26a-2_S4_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03672_PB1_m84091_240221_215958_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03669-26a-2-2_S4_L001_R1_001-2_S4_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "54296", - "mean": "16009", - "metadataAccession": "SRR29405792", - "min": "123", - "mmTag": false, - "n25": "13591", - "n50": "16630", - "n75": "20613", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613619", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.573685", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03672/raw_data/PacBio_HiFi/m84091_240221_215958_s3.hifi_reads.bc1021.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "12485", - "quartile50": "15175", - "quartile75": "18679", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-2_S4_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03672", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "STU", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "55137884001", - "totalGbp": "55.14", - "totalReads": "3444164", + "title": "Illumina Sequencing of Omni-C Libraries of HG03669", + "totalBp": "13323696054", + "totalGbp": "13.32", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021701", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021701", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237512", + "ccsAlgorithm": "N/A", + "coverage": "4.33", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_240308_202615_s4.hifi_reads.bc1022.bam", - "filetype": "N/A", + "filename": "HG03669-26a-2_S4_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA19042_PB1_m84091_240308_202615_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03669-26a-2-2_S4_L002_R1_001-2_S4_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "52948", - "mean": "19242", - "metadataAccession": "SRR29405759", - "min": "103", - "mmTag": false, - "n25": "16368", - "n50": "20090", - "n75": "24633", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613618", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.538015", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19042/raw_data/PacBio_HiFi/m84091_240308_202615_s4.hifi_reads.bc1022.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15049", - "quartile50": "18376", - "quartile75": "22578", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-2_S4_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19042", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "61435006452", - "totalGbp": "61.44", - "totalReads": "3192672", + "title": "Illumina Sequencing of Omni-C Libraries of HG03669", + "totalBp": "13428824069", + "totalGbp": "13.43", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021701", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021701", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237512", + "ccsAlgorithm": "N/A", + "coverage": "4.33", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_240308_205633_s1.hifi_reads.bc1022.bam", - "filetype": "N/A", + "filename": "HG03669-26a-2_S4_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "NA19042_PB1_m84091_240308_205633_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", - "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "54725", - "mean": "19574", - "metadataAccession": "SRR29405758", - "min": "104", - "mmTag": false, - "n25": "16683", - "n50": "20488", - "n75": "25062", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03669-26a-2-2_S4_L002_R1_001-2_S4_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613618", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.545577", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19042/raw_data/PacBio_HiFi/m84091_240308_205633_s1.hifi_reads.bc1022.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15313", - "quartile50": "18745", - "quartile75": "23017", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-2_S4_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19042", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "60615596022", - "totalGbp": "60.62", - "totalReads": "3096650", + "title": "Illumina Sequencing of Omni-C Libraries of HG03669", + "totalBp": "13428542441", + "totalGbp": "13.43", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021693", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021693", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237512", + "ccsAlgorithm": "N/A", + "coverage": "4.12", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_240308_212739_s2.hifi_reads.bc1003.bam", - "filetype": "N/A", + "filename": "HG03669-26a-2_S4_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03372_PB1_m84091_240308_212739_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03669-26a-2-2_S4_L003_R1_001-2_S4_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "68454", - "mean": "21771", - "metadataAccession": "SRR29405806", - "min": "54", - "mmTag": false, - "n25": "18701", - "n50": "24138", - "n75": "30172", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613617", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.570245", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03372/raw_data/PacBio_HiFi/m84091_240308_212739_s2.hifi_reads.bc1003.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "15590", - "quartile50": "20986", - "quartile75": "26861", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-2_S4_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03372", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "85787605612", - "totalGbp": "85.79", - "totalReads": "3940309", + "title": "Illumina Sequencing of Omni-C Libraries of HG03669", + "totalBp": "12761568115", + "totalGbp": "12.76", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021694", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021694", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237512", + "ccsAlgorithm": "N/A", + "coverage": "4.12", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_240308_215845_s3.hifi_reads.bc1008.bam", - "filetype": "N/A", + "filename": "HG03669-26a-2_S4_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03108_PB1_m84091_240308_215845_s3", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03669-26a-2-2_S4_L003_R1_001-2_S4_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "59387", - "mean": "18325", - "metadataAccession": "SRR29405812", - "min": "138", - "mmTag": false, - "n25": "15702", - "n50": "19375", - "n75": "23712", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613617", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.561149", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03108/raw_data/PacBio_HiFi/m84091_240308_215845_s3.hifi_reads.bc1008.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "14205", - "quartile50": "17621", - "quartile75": "21682", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-2_S4_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03108", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "85735358906", - "totalGbp": "85.74", - "totalReads": "4678487", + "title": "Illumina Sequencing of Omni-C Libraries of HG03669", + "totalBp": "12760767711", + "totalGbp": "12.76", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021702", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021702", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237512", + "ccsAlgorithm": "N/A", + "coverage": "4.31", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_240311_155513_s4.hifi_reads.bc1011.bam", - "filetype": "N/A", + "filename": "HG03669-26a-2_S4_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG00701_PB1_m84091_240311_155513_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03669-26a-2-2_S4_L004_R1_001-2_S4_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "70077", - "mean": "13566", - "metadataAccession": "SRR29405846", - "min": "53", - "mmTag": false, - "n25": "11109", - "n50": "13905", - "n75": "18061", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613616", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.559565", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00701/raw_data/PacBio_HiFi/m84091_240311_155513_s4.hifi_reads.bc1011.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "10239", - "quartile50": "12385", - "quartile75": "15772", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-2_S4_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00701", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "66021634362", - "totalGbp": "66.02", - "totalReads": "4866441", + "title": "Illumina Sequencing of Omni-C Libraries of HG03669", + "totalBp": "13365275906", + "totalGbp": "13.37", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021704", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021704", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237512", + "ccsAlgorithm": "N/A", + "coverage": "4.31", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_240311_162534_s1.hifi_reads.bc1015.bam", - "filetype": "N/A", + "filename": "HG03669-26a-2_S4_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03445_PB1_m84091_240311_162534_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03669-26a-2-2_S4_L004_R1_001-2_S4_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "50409", - "mean": "17376", - "metadataAccession": "SRR29405809", - "min": "122", - "mmTag": false, - "n25": "14791", - "n50": "18152", - "n75": "22221", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613616", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.573031", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03445/raw_data/PacBio_HiFi/m84091_240311_162534_s1.hifi_reads.bc1015.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "13606", - "quartile50": "16599", - "quartile75": "20388", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/hic/HG03669-26a-2_S4_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03445", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "85916791479", - "totalGbp": "85.92", - "totalReads": "4944409", + "title": "Illumina Sequencing of Omni-C Libraries of HG03669", + "totalBp": "13364684174", + "totalGbp": "13.36", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021703", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021703", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237513", + "ccsAlgorithm": "N/A", + "coverage": "4.62", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_240311_165640_s2.hifi_reads.bc1012.bam", - "filetype": "N/A", + "filename": "HG03710-17a-1_S3_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03072_PB1_m84091_240311_165640_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03710-17a-1-1_S3_L001_R1_001-1_S3_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "77803", - "mean": "19233", - "metadataAccession": "SRR29405817", - "min": "86", - "mmTag": false, - "n25": "16266", - "n50": "20382", - "n75": "25318", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613614", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.552401", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03072/raw_data/PacBio_HiFi/m84091_240311_165640_s2.hifi_reads.bc1012.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "14598", - "quartile50": "18306", - "quartile75": "22883", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-1_S3_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03072", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "89666821979", - "totalGbp": "89.67", - "totalReads": "4661892", + "title": "Illumina Sequencing of Omni-C Libraries of HG03710", + "totalBp": "14327833989", + "totalGbp": "14.33", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021702", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021702", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237513", + "ccsAlgorithm": "N/A", + "coverage": "4.62", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_240315_183649_s4.hifi_reads.bc1011.bam", - "filetype": "N/A", + "filename": "HG03710-17a-1_S3_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG00701_PB1_m84091_240315_183649_s4", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03710-17a-1-1_S3_L001_R1_001-1_S3_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "65349", - "mean": "13918", - "metadataAccession": "SRR29405845", - "min": "76", - "mmTag": false, - "n25": "11339", - "n50": "14335", - "n75": "18745", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613614", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.529608", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00701/raw_data/PacBio_HiFi/m84091_240315_183649_s4.hifi_reads.bc1011.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "10386", - "quartile50": "12667", - "quartile75": "16260", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-1_S3_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00701", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "74683924191", - "totalGbp": "74.68", - "totalReads": "5365799", + "title": "Illumina Sequencing of Omni-C Libraries of HG03710", + "totalBp": "14327552723", + "totalGbp": "14.33", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021702", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021702", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237513", + "ccsAlgorithm": "N/A", + "coverage": "4.67", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_240315_190710_s1.hifi_reads.bc1011.bam", - "filetype": "N/A", + "filename": "HG03710-17a-1_S3_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG00701_PB1_m84091_240315_190710_s1", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03710-17a-1-1_S3_L002_R1_001-1_S3_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "60345", - "mean": "13594", - "metadataAccession": "SRR29405844", - "min": "74", - "mmTag": false, - "n25": "11122", - "n50": "13936", - "n75": "18136", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613770", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.536378", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00701/raw_data/PacBio_HiFi/m84091_240315_190710_s1.hifi_reads.bc1011.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "10238", - "quartile50": "12399", - "quartile75": "15802", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-1_S3_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00701", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "64553821368", - "totalGbp": "64.55", - "totalReads": "4748438", + "title": "Illumina Sequencing of Omni-C Libraries of HG03710", + "totalBp": "14475214817", + "totalGbp": "14.48", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021703", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021703", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237513", + "ccsAlgorithm": "N/A", + "coverage": "4.67", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_240315_193817_s2.hifi_reads.bc1012.bam", - "filetype": "N/A", + "filename": "HG03710-17a-1_S3_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03072_PB1_m84091_240315_193817_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03710-17a-1-1_S3_L002_R1_001-1_S3_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "57237", - "mean": "19655", - "metadataAccession": "SRR29405816", - "min": "115", - "mmTag": false, - "n25": "16627", - "n50": "20884", - "n75": "25858", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613770", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.525781", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03072/raw_data/PacBio_HiFi/m84091_240315_193817_s2.hifi_reads.bc1012.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "14915", - "quartile50": "18745", - "quartile75": "23432", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-1_S3_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03072", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "43084215319", - "totalGbp": "43.08", - "totalReads": "2191963", + "title": "Illumina Sequencing of Omni-C Libraries of HG03710", + "totalBp": "14475004769", + "totalGbp": "14.48", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021704", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN41021704", - "ccsAlgorithm": "7.0.0", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237513", + "ccsAlgorithm": "N/A", + "coverage": "4.75", "dataType": "unaligned reads", - "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "m84091_240315_193817_s2.hifi_reads.bc1015.bam", - "filetype": "N/A", + "filename": "HG03710-17a-1_S3_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Revio", - "libraryId": "HG03445_PB1_m84091_240315_193817_s2", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03710-17a-1-1_S3_L003_R1_001-1_S3_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "54186", - "mean": "17544", - "metadataAccession": "SRR29405785", - "min": "394", - "mmTag": false, - "n25": "14916", - "n50": "18324", - "n75": "22466", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613613", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.498094", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03445/raw_data/PacBio_HiFi/m84091_240315_193817_s2.hifi_reads.bc1015.bam", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "Revio P1", - "productionYear": "YR4", - "quartile25": "13717", - "quartile50": "16738", - "quartile75": "20594", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-1_S3_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03445", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "Revio C1", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "45311493139", - "totalGbp": "45.31", - "totalReads": "2582676", + "title": "Illumina Sequencing of Omni-C Libraries of HG03710", + "totalBp": "14731125331", + "totalGbp": "14.73", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237513", + "ccsAlgorithm": "N/A", + "coverage": "4.75", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", - "familyId": "Y016", - "filename": "NA18522.m54329U_220604_002013.dc.q20.fastq.gz", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03710-17a-1_S3_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "NA18522.HFSS_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03710-17a-1-1_S3_L003_R1_001-1_S3_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "62626", - "mean": "20463", - "metadataAccession": "SRR26545316", - "min": "171", - "mmTag": false, - "n25": "17726", - "n50": "20761", - "n75": "24609", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613613", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.510377", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18522.m54329U_220604_002013.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "16975", - "quartile50": "19663", - "quartile75": "23257", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-1_S3_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "47365852194", - "totalGbp": "47.37", - "totalReads": "2314654", + "title": "Illumina Sequencing of Omni-C Libraries of HG03710", + "totalBp": "14730710121", + "totalGbp": "14.73", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237513", + "ccsAlgorithm": "N/A", + "coverage": "4.85", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", - "familyId": "Y016", - "filename": "NA18522.m54329U_220605_194957.dc.q20.fastq.gz", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03710-17a-1_S3_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "NA18522.HFSS_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03710-17a-1-1_S3_L004_R1_001-1_S3_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "63653", - "mean": "20418", - "metadataAccession": "SRR26545316", - "min": "258", - "mmTag": false, - "n25": "17687", - "n50": "20710", - "n75": "24542", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613612", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.533036", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18522.m54329U_220605_194957.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "16944", - "quartile50": "19621", - "quartile75": "23198", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-1_S3_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "48379025716", - "totalGbp": "48.38", - "totalReads": "2369316", + "title": "Illumina Sequencing of Omni-C Libraries of HG03710", + "totalBp": "15048563124", + "totalGbp": "15.05", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237513", + "ccsAlgorithm": "N/A", + "coverage": "4.85", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", - "familyId": "Y016", - "filename": "NA18522.m54329U_220607_194753.dc.q20.fastq.gz", - "filetype": "N/A", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03710-17a-1_S3_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "NA18522.HFSS_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03710-17a-1-1_S3_L004_R1_001-1_S3_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "68821", - "mean": "20245", - "metadataAccession": "SRR26545316", - "min": "151", - "mmTag": false, - "n25": "17515", - "n50": "20503", - "n75": "24336", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613612", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.530384", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18522.m54329U_220607_194753.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "16787", - "quartile50": "19423", - "quartile75": "22963", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-1_S3_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", - "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "52778863034", - "totalGbp": "52.78", - "totalReads": "2606914", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03710", + "totalBp": "15048257469", + "totalGbp": "15.05", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621960", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621960", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237513", + "ccsAlgorithm": "N/A", + "coverage": "3.11", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA18612.m64043_220708_205637.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03710-17a-2_S4_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "NA18612_lib1_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03710-17a-2-2_S4_L001_R1_001-2_S4_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "69844", - "mean": "19241", - "metadataAccession": "SRR26545315", - "min": "216", - "mmTag": false, - "n25": "17142", - "n50": "19004", - "n75": "21971", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613611", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.564442", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18612.m64043_220708_205637.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "16790", - "quartile50": "18449", - "quartile75": "20987", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-2_S4_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18612", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "40178243656", - "totalGbp": "40.18", - "totalReads": "2088141", + "title": "Illumina Sequencing of Omni-C Libraries of HG03710", + "totalBp": "9638919964", + "totalGbp": "9.64", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621960", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621960", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237513", + "ccsAlgorithm": "N/A", + "coverage": "3.11", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA18612.m64043_220710_175250.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03710-17a-2_S4_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "NA18612_lib1_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03710-17a-2-2_S4_L001_R1_001-2_S4_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "62025", - "mean": "19289", - "metadataAccession": "SRR26545315", - "min": "94", - "mmTag": false, - "n25": "17177", - "n50": "19055", - "n75": "22042", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613611", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.554635", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18612.m64043_220710_175250.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "16821", - "quartile50": "18492", - "quartile75": "21053", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-2_S4_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18612", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "43921276073", - "totalGbp": "43.92", - "totalReads": "2276997", + "title": "Illumina Sequencing of Omni-C Libraries of HG03710", + "totalBp": "9638800438", + "totalGbp": "9.64", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621960", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621960", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237513", + "ccsAlgorithm": "N/A", + "coverage": "3.11", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA18612.m64043_220712_145025.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03710-17a-2_S4_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "NA18612_lib1_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03710-17a-2-2_S4_L002_R1_001-2_S4_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "55792", - "mean": "19144", - "metadataAccession": "SRR26545315", - "min": "61", - "mmTag": false, - "n25": "17086", - "n50": "18910", - "n75": "21802", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613610", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.558529", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18612.m64043_220712_145025.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "16740", - "quartile50": "18371", - "quartile75": "20844", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-2_S4_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18612", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "42026657293", - "totalGbp": "42.03", - "totalReads": "2195233", + "title": "Illumina Sequencing of Omni-C Libraries of HG03710", + "totalBp": "9646510596", + "totalGbp": "9.65", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237513", + "ccsAlgorithm": "N/A", + "coverage": "3.11", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA18747.m54329U_220823_191353.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03710-17a-2_S4_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG18747_1.HFSS_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03710-17a-2-2_S4_L002_R1_001-2_S4_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "79549", - "mean": "20088", - "metadataAccession": "SRR26545314", - "min": "33", - "mmTag": false, - "n25": "17784", - "n50": "20210", - "n75": "23363", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613610", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.534448", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18747.m54329U_220823_191353.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17275", - "quartile50": "19456", - "quartile75": "22407", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-2_S4_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "52249233160", - "totalGbp": "52.25", - "totalReads": "2600981", + "title": "Illumina Sequencing of Omni-C Libraries of HG03710", + "totalBp": "9646420196", + "totalGbp": "9.65", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237513", + "ccsAlgorithm": "N/A", + "coverage": "3.16", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA18747.m64076_220826_143529.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03710-17a-2_S4_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG18747_2.HFSS_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03710-17a-2-2_S4_L003_R1_001-2_S4_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "94866", - "mean": "21184", - "metadataAccession": "SRR26545314", - "min": "79", - "mmTag": false, - "n25": "18579", - "n50": "21490", - "n75": "24994", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613609", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.563055", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18747.m64076_220826_143529.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17908", - "quartile50": "20530", - "quartile75": "23895", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-2_S4_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "36384789825", - "totalGbp": "36.38", - "totalReads": "1717517", + "title": "Illumina Sequencing of Omni-C Libraries of HG03710", + "totalBp": "9783227583", + "totalGbp": "9.78", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237513", + "ccsAlgorithm": "N/A", + "coverage": "3.16", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA18747.m64076_220828_113336.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03710-17a-2_S4_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG18747_2.HFSS_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03710-17a-2-2_S4_L003_R1_001-2_S4_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "100381", - "mean": "20895", - "metadataAccession": "SRR26545314", - "min": "310", - "mmTag": false, - "n25": "18304", - "n50": "21151", - "n75": "24660", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613609", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.540463", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18747.m64076_220828_113336.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17663", - "quartile50": "20204", - "quartile75": "23537", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-2_S4_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "38267150734", - "totalGbp": "38.27", - "totalReads": "1831328", + "title": "Illumina Sequencing of Omni-C Libraries of HG03710", + "totalBp": "9783011566", + "totalGbp": "9.78", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237513", + "ccsAlgorithm": "N/A", + "coverage": "3.19", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA18747.m64076_221001_041132.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03710-17a-2_S4_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG18747_1.HFSS_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03710-17a-2-2_S4_L004_R1_001-2_S4_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "56150", - "mean": "20608", - "metadataAccession": "SRR26545314", - "min": "261", - "mmTag": false, - "n25": "18240", - "n50": "20845", - "n75": "24034", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613764", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.569135", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18747.m64076_221001_041132.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17679", - "quartile50": "20046", - "quartile75": "23100", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-2_S4_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "11045353698", - "totalGbp": "11.05", - "totalReads": "535967", + "title": "Illumina Sequencing of Omni-C Libraries of HG03710", + "totalBp": "9899677710", + "totalGbp": "9.9", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237513", + "ccsAlgorithm": "N/A", + "coverage": "3.19", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA18971.m64043_220701_181144.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03710-17a-2_S4_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "NA18971_lib1_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03710-17a-2-2_S4_L004_R1_001-2_S4_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "67714", - "mean": "20775", - "metadataAccession": "SRR26545312", - "min": "71", - "mmTag": false, - "n25": "18626", - "n50": "20996", - "n75": "23871", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30613764", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.580997", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18971.m64043_220701_181144.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "18056", - "quartile50": "20311", - "quartile75": "23018", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/hic/HG03710-17a-2_S4_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "39097735609", - "totalGbp": "39.1", - "totalReads": "1881896", + "title": "Illumina Sequencing of Omni-C Libraries of HG03710", + "totalBp": "9899545541", + "totalGbp": "9.9", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797111", + "ccsAlgorithm": "N/A", + "coverage": "2.18", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA18971.m64043_220703_150718.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03742-1_S24_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "NA18971_lib1_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03742-1_S24_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "66060", - "mean": "20730", - "metadataAccession": "SRR26545312", - "min": "268", - "mmTag": false, - "n25": "18584", - "n50": "20950", - "n75": "23829", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242335", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.650114", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18971.m64043_220703_150718.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "18009", - "quartile50": "20266", - "quartile75": "22971", + "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-1_S24_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "37513233912", - "totalGbp": "37.51", - "totalReads": "1809594", + "title": "Illumina Sequencing of Omni-C Libraries of HG03742", + "totalBp": "6754019188", + "totalGbp": "6.75", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797111", + "ccsAlgorithm": "N/A", + "coverage": "2.18", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA18971.m64043_220705_120954.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03742-1_S24_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "NA18971_lib1_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03742-1_S24_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "68021", - "mean": "20840", - "metadataAccession": "SRR26545312", - "min": "249", - "mmTag": false, - "n25": "18670", - "n50": "21059", - "n75": "23954", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242335", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.651477", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18971.m64043_220705_120954.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "18099", - "quartile50": "20367", - "quartile75": "23095", + "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-1_S24_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "38145066508", - "totalGbp": "38.15", - "totalReads": "1830361", + "title": "Illumina Sequencing of Omni-C Libraries of HG03742", + "totalBp": "6753334539", + "totalGbp": "6.75", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797111", + "ccsAlgorithm": "N/A", + "coverage": "2.28", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA18971.m64043_220728_173215.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03742-1_S24_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "NA18971_lib1_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03742-1_S24_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "41507", - "mean": "16074", - "metadataAccession": "SRR26545312", - "min": "852", - "mmTag": false, - "n25": "14930", - "n50": "16162", - "n75": "17526", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242334", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.612799", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18971.m64043_220728_173215.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "14717", - "quartile50": "15930", - "quartile75": "17261", + "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-1_S24_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "13417983575", - "totalGbp": "13.42", - "totalReads": "834762", + "title": "Illumina Sequencing of Omni-C Libraries of HG03742", + "totalBp": "7071031529", + "totalGbp": "7.07", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797111", + "ccsAlgorithm": "N/A", + "coverage": "2.28", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA18983.m64457e_220902_165459.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03742-1_S24_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG18983.HFSS2_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03742-1_S24_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "76258", - "mean": "21146", - "metadataAccession": "SRR26545311", - "min": "34", - "mmTag": false, - "n25": "18627", - "n50": "21417", - "n75": "24804", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242334", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.610281", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18983.m64457e_220902_165459.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "18005", - "quartile50": "20525", - "quartile75": "23772", + "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-1_S24_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "51186272600", - "totalGbp": "51.19", - "totalReads": "2420594", + "title": "Illumina Sequencing of Omni-C Libraries of HG03742", + "totalBp": "7070557687", + "totalGbp": "7.07", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797111", + "ccsAlgorithm": "N/A", + "coverage": "2.28", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA18983.m64457e_220904_135104.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03742-1_S24_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG18983.HFSS2_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03742-1_S24_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "81056", - "mean": "21361", - "metadataAccession": "SRR26545311", - "min": "306", - "mmTag": false, - "n25": "18810", - "n50": "21684", - "n75": "25111", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242332", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.633073", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18983.m64457e_220904_135104.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "18152", - "quartile50": "20764", - "quartile75": "24069", + "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-1_S24_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "49331386607", - "totalGbp": "49.33", - "totalReads": "2309378", + "title": "Illumina Sequencing of Omni-C Libraries of HG03742", + "totalBp": "7069840467", + "totalGbp": "7.07", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797111", + "ccsAlgorithm": "N/A", + "coverage": "2.28", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA18983.m64457e_220906_104717.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03742-1_S24_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG18983.HFSS2_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03742-1_S24_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "67640", - "mean": "20919", - "metadataAccession": "SRR26545311", - "min": "93", - "mmTag": false, - "n25": "18402", - "n50": "21142", - "n75": "24541", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242332", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.655928", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18983.m64457e_220906_104717.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17801", - "quartile50": "20258", - "quartile75": "23491", + "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-1_S24_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "50447860405", - "totalGbp": "50.45", - "totalReads": "2411520", + "title": "Illumina Sequencing of Omni-C Libraries of HG03742", + "totalBp": "7069350018", + "totalGbp": "7.07", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797111", + "ccsAlgorithm": "N/A", + "coverage": "2.26", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA19043.m54329U_220916_162216.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03742-1_S24_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG19043.HFSS_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03742-1_S24_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "69336", - "mean": "21310", - "metadataAccession": "SRR26545310", - "min": "87", - "mmTag": false, - "n25": "18574", - "n50": "21618", - "n75": "25465", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242331", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.632801", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA19043.m54329U_220916_162216.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17826", - "quartile50": "20542", - "quartile75": "24138", + "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-1_S24_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "50925680464", - "totalGbp": "50.93", - "totalReads": "2389655", + "title": "Illumina Sequencing of Omni-C Libraries of HG03742", + "totalBp": "7012952628", + "totalGbp": "7.01", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797111", + "ccsAlgorithm": "N/A", + "coverage": "2.26", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA19043.m54329U_220918_114340.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03742-1_S24_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG19043.HFSS_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03742-1_S24_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "69418", - "mean": "21029", - "metadataAccession": "SRR26545310", - "min": "91", - "mmTag": false, - "n25": "18330", - "n50": "21301", - "n75": "25103", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242331", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.636586", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA19043.m54329U_220918_114340.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17607", - "quartile50": "20246", - "quartile75": "23775", + "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-1_S24_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "48707102911", - "totalGbp": "48.71", - "totalReads": "2316125", + "title": "Illumina Sequencing of Omni-C Libraries of HG03742", + "totalBp": "7012492701", + "totalGbp": "7.01", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797111", + "ccsAlgorithm": "N/A", + "coverage": "6.09", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA19043.m54329U_220920_065703.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03742-2_S32_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG19043.HFSS_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03742-2_S32_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "87309", - "mean": "21115", - "metadataAccession": "SRR26545310", - "min": "210", - "mmTag": false, - "n25": "18394", - "n50": "21404", - "n75": "25224", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242330", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.500177", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA19043.m54329U_220920_065703.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17664", - "quartile50": "20329", - "quartile75": "23894", + "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-2_S32_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "50490598694", - "totalGbp": "50.49", - "totalReads": "2391163", + "title": "Illumina Sequencing of Omni-C Libraries of HG03742", + "totalBp": "18877366518", + "totalGbp": "18.88", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797111", + "ccsAlgorithm": "N/A", + "coverage": "6.09", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA20752.m64457e_220827_152226.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03742-2_S32_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG20752.HFSS_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03742-2_S32_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "69060", - "mean": "21285", - "metadataAccession": "SRR26545309", - "min": "118", - "mmTag": false, - "n25": "18658", - "n50": "21535", - "n75": "25099", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242330", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.510251", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20752.m64457e_220827_152226.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "18014", - "quartile50": "20585", - "quartile75": "23973", + "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-2_S32_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "56497537713", - "totalGbp": "56.5", - "totalReads": "2654227", + "title": "Illumina Sequencing of Omni-C Libraries of HG03742", + "totalBp": "18875657885", + "totalGbp": "18.88", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797111", + "ccsAlgorithm": "N/A", + "coverage": "6.63", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA20752.m64457e_220829_104034.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03742-2_S32_L002_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG20752.HFSS_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03742-2_S32_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "65854", - "mean": "21088", - "metadataAccession": "SRR26545309", - "min": "217", - "mmTag": false, - "n25": "18481", - "n50": "21288", - "n75": "24835", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242329", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.551993", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20752.m64457e_220829_104034.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17863", - "quartile50": "20364", - "quartile75": "23707", + "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-2_S32_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "55420791871", - "totalGbp": "55.42", - "totalReads": "2628030", + "title": "Illumina Sequencing of Omni-C Libraries of HG03742", + "totalBp": "20557546849", + "totalGbp": "20.56", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797111", + "ccsAlgorithm": "N/A", + "coverage": "6.63", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA20752.m64457e_220831_195843.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03742-2_S32_L002_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG20752.HFSS_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03742-2_S32_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "62925", - "mean": "20984", - "metadataAccession": "SRR26545309", - "min": "93", - "mmTag": false, - "n25": "18425", - "n50": "21166", - "n75": "24637", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242329", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.52019", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20752.m64457e_220831_195843.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17824", - "quartile50": "20273", - "quartile75": "23534", + "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-2_S32_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "50576730141", - "totalGbp": "50.58", - "totalReads": "2410165", + "title": "Illumina Sequencing of Omni-C Libraries of HG03742", + "totalBp": "20556396284", + "totalGbp": "20.56", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621962", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621962", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797111", + "ccsAlgorithm": "N/A", + "coverage": "6.63", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA20805.m64136_220726_203708.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03742-2_S32_L003_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "NA20805_lib1_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03742-2_S32_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "66651", - "mean": "20668", - "metadataAccession": "SRR26545308", - "min": "203", - "mmTag": false, - "n25": "19193", - "n50": "20760", - "n75": "22574", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242328", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.525506", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20805.m64136_220726_203708.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "18927", - "quartile50": "20459", - "quartile75": "22216", + "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-2_S32_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20805", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "43466891933", - "totalGbp": "43.47", - "totalReads": "2103074", + "title": "Illumina Sequencing of Omni-C Libraries of HG03742", + "totalBp": "20566876467", + "totalGbp": "20.57", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621962", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621962", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797111", + "ccsAlgorithm": "N/A", + "coverage": "6.63", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA20805.m64136_220728_160902.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03742-2_S32_L003_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "NA20805_lib1_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03742-2_S32_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "69125", - "mean": "20696", - "metadataAccession": "SRR26545308", - "min": "41", - "mmTag": false, - "n25": "19217", - "n50": "20787", - "n75": "22600", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242328", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.5459", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20805.m64136_220728_160902.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "18948", - "quartile50": "20486", - "quartile75": "22243", + "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-2_S32_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20805", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "45913998332", - "totalGbp": "45.91", - "totalReads": "2218413", + "title": "Illumina Sequencing of Omni-C Libraries of HG03742", + "totalBp": "20565643644", + "totalGbp": "20.57", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621962", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33621962", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797111", + "ccsAlgorithm": "N/A", + "coverage": "6.59", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA20805.m64136_220730_113921.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03742-2_S32_L004_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "NA20805_lib1_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03742-2_S32_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "73183", - "mean": "20694", - "metadataAccession": "SRR26545308", - "min": "61", - "mmTag": false, - "n25": "19214", - "n50": "20782", - "n75": "22595", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242327", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.508401", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20805.m64136_220730_113921.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "18948", - "quartile50": "20482", - "quartile75": "22238", + "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-2_S32_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20805", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "45800547928", - "totalGbp": "45.8", - "totalReads": "2213142", + "title": "Illumina Sequencing of Omni-C Libraries of HG03742", + "totalBp": "20431898061", + "totalGbp": "20.43", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797111", + "ccsAlgorithm": "N/A", + "coverage": "6.59", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA20905.m64076_220914_214248.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03742-2_S32_L004_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG20905.HFSS_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03742-2_S32_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "70280", - "mean": "20480", - "metadataAccession": "SRR26545307", - "min": "103", - "mmTag": false, - "n25": "17882", - "n50": "20905", - "n75": "24496", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242327", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.520253", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20905.m64076_220914_214248.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17106", - "quartile50": "19854", - "quartile75": "23313", + "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/hic/HG03742-2_S32_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "51048888164", - "totalGbp": "51.05", - "totalReads": "2492570", + "title": "Illumina Sequencing of Omni-C Libraries of HG03742", + "totalBp": "20430728922", + "totalGbp": "20.43", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { - "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797112", + "ccsAlgorithm": "N/A", + "coverage": "2.87", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA20905.m64076_220916_183810.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03792-1_S19_L001_R1_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG20905.HFSS_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03792-1_S19_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "65430", - "mean": "19788", - "metadataAccession": "SRR26545307", - "min": "31", - "mmTag": false, - "n25": "17218", - "n50": "20086", - "n75": "23663", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242326", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.652957", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20905.m64076_220916_183810.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "16519", - "quartile50": "19074", - "quartile75": "22434", + "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-1_S19_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "50138285736", - "totalGbp": "50.14", - "totalReads": "2533646", + "title": "Illumina Sequencing of Omni-C Libraries of HG03792", + "totalBp": "8894617797", + "totalGbp": "8.89", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": "N/A", + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "", - "coverage": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797112", + "ccsAlgorithm": "N/A", + "coverage": "2.87", "dataType": "unaligned reads", - "deepConsensusVersion": "1.2", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "NA20905.m64076_220918_143117.dc.q20.fastq.gz", - "filetype": "N/A", + "filename": "HG03792-1_S19_L001_R2_001.fastq.gz", + "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "tgraves@wustl.edu", - "generatorFacility": "Washington University", - "instrumentModel": "PacBio Sequel II", - "libraryId": "PG20905.HFSS_dc", - "libraryLayout": "single", - "librarySelection": "size fractionation", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03792-1_S19_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "69147", - "mean": "19826", - "metadataAccession": "SRR26545307", - "min": "76", - "mmTag": false, - "n25": "17251", - "n50": "20134", - "n75": "23719", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "N/A", + "libraryStrategy": "Hi-C", + "max": "N/A", + "mean": "N/A", + "metadataAccession": "SRR30242326", + "min": "N/A", + "mmTag": "N/A", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.620963", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20905.m64076_220918_143117.dc.q20.fastq.gz", - "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "16544", - "quartile50": "19114", - "quartile75": "22486", + "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-1_S19_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", + "polymeraseVersion": "N/A", + "productionYear": null, + "quartile25": "N/A", + "quartile50": "N/A", + "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "N/A", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 1", - "sizeSelection": "SageELF", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "N/A", - "totalBp": "50753646069", - "totalGbp": "50.75", - "totalReads": "2559946", + "title": "Illumina Sequencing of Omni-C Libraries of HG03792", + "totalBp": "8894046349", + "totalGbp": "8.89", + "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { - "Gb": "64.14", - "accession": "SAMN33758780", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797112", "ccsAlgorithm": "N/A", - "coverage": "19.44", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.15", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH045", - "filename": "02_08_22_R941_HG00558_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.07", - "fourHundredkbPlus": "0.18", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "02_08_22_R941_HG00558_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03792-1_S19_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03792-1_S19_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242325", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.312169", - "oneHundredkbPlus": "9.82", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/nanopore/guppy_6/02_08_22_R941_HG00558_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.647623", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-1_S19_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "100937", - "result": "Similar", - "sampleId": "HG00558", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.63", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03792", + "totalBp": "9758746396", + "totalGbp": "9.76", "totalReads": "N/A", - "twoHundredkbPlus": "2.77", - "whales": "10" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "50.46", - "accession": "SAMN33758780", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797112", "ccsAlgorithm": "N/A", - "coverage": "15.29", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.15", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH045", - "filename": "02_08_22_R941_HG00558_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.12", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "02_08_22_R941_HG00558_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03792-1_S19_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03792-1_S19_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242325", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.352575", - "oneHundredkbPlus": "7.29", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/nanopore/guppy_6/02_08_22_R941_HG00558_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.60376", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-1_S19_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "95821", - "result": "Similar", - "sampleId": "HG00558", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.43", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03792", + "totalBp": "9758351664", + "totalGbp": "9.76", "totalReads": "N/A", - "twoHundredkbPlus": "1.98", - "whales": "12" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "65", - "accession": "SAMN33758780", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797112", "ccsAlgorithm": "N/A", - "coverage": "19.7", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.15", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH045", - "filename": "02_08_22_R941_HG00558_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.06", - "fourHundredkbPlus": "0.15", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "02_08_22_R941_HG00558_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03792-1_S19_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03792-1_S19_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242324", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.374149", - "oneHundredkbPlus": "9.58", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/nanopore/guppy_6/02_08_22_R941_HG00558_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.636941", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-1_S19_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "97461", - "result": "Similar", - "sampleId": "HG00558", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.54", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03792", + "totalBp": "9768810382", + "totalGbp": "9.77", "totalReads": "N/A", - "twoHundredkbPlus": "2.55", - "whales": "13" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "46.52", - "accession": "SAMN37797098", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797112", "ccsAlgorithm": "N/A", - "coverage": "14.1", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.15", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "CLM14", - "filename": "02_08_22_R941_HG01252_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "02_08_22_R941_HG01252_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03792-1_S19_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03792-1_S19_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242324", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.331159", - "oneHundredkbPlus": "5.27", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01252/raw_data/nanopore/guppy_6/02_08_22_R941_HG01252_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.60274", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-1_S19_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "80723", - "result": "Similar", - "sampleId": "HG01252", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CLM", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.19", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03792", + "totalBp": "9768393628", + "totalGbp": "9.77", "totalReads": "N/A", - "twoHundredkbPlus": "0.89", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "49.73", - "accession": "SAMN37797098", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797112", "ccsAlgorithm": "N/A", - "coverage": "15.07", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.1", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "CLM14", - "filename": "02_08_22_R941_HG01252_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "02_08_22_R941_HG01252_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03792-1_S19_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03792-1_S19_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242323", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.339225", - "oneHundredkbPlus": "5.63", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01252/raw_data/nanopore/guppy_6/02_08_22_R941_HG01252_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.592393", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-1_S19_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "80454", - "result": "Similar", - "sampleId": "HG01252", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CLM", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.23", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03792", + "totalBp": "9615301263", + "totalGbp": "9.62", "totalReads": "N/A", - "twoHundredkbPlus": "1.02", - "whales": "4" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "60.58", - "accession": "SAMN37797098", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797112", "ccsAlgorithm": "N/A", - "coverage": "18.36", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.1", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "CLM14", - "filename": "02_08_22_R941_HG01252_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "02_08_22_R941_HG01252_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03792-1_S19_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03792-1_S19_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242323", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.310941", - "oneHundredkbPlus": "6.55", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01252/raw_data/nanopore/guppy_6/02_08_22_R941_HG01252_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.602769", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-1_S19_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "77916", - "result": "Similar", - "sampleId": "HG01252", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CLM", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.24", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03792", + "totalBp": "9614885527", + "totalGbp": "9.61", "totalReads": "N/A", - "twoHundredkbPlus": "1.11", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "70.78", - "accession": "SAMN33621952", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797112", "ccsAlgorithm": "N/A", - "coverage": "21.45", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.94", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BB22", - "filename": "02_08_22_R941_HG02258_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.12", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "02_08_22_R941_HG02258_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03792-2_S27_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03792-2_S27_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242320", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.348374", - "oneHundredkbPlus": "11.1", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02258/raw_data/nanopore/guppy_6/02_08_22_R941_HG02258_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.639005", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-2_S27_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "103269", - "result": "Similar", - "sampleId": "HG02258", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ACB", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.59", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03792", + "totalBp": "9122844278", + "totalGbp": "9.12", "totalReads": "N/A", - "twoHundredkbPlus": "3.03", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "47.83", - "accession": "SAMN33621952", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797112", "ccsAlgorithm": "N/A", - "coverage": "14.49", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.94", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BB22", - "filename": "02_08_22_R941_HG02258_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "02_08_22_R941_HG02258_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03792-2_S27_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03792-2_S27_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242320", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.359481", - "oneHundredkbPlus": "7.34", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02258/raw_data/nanopore/guppy_6/02_08_22_R941_HG02258_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.607542", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-2_S27_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "101187", - "result": "Similar", - "sampleId": "HG02258", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ACB", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.36", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03792", + "totalBp": "9122210111", + "totalGbp": "9.12", "totalReads": "N/A", - "twoHundredkbPlus": "1.92", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "25.92", - "accession": "SAMN33621952", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797112", "ccsAlgorithm": "N/A", - "coverage": "7.85", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.23", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BB22", - "filename": "02_08_22_R941_HG02258_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "02_08_22_R941_HG02258_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03792-2_S27_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03792-2_S27_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242316", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.442759", - "oneHundredkbPlus": "3.86", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02258/raw_data/nanopore/guppy_6/02_08_22_R941_HG02258_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.613655", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-2_S27_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "98290", - "result": "Similar", - "sampleId": "HG02258", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ACB", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.21", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03792", + "totalBp": "10004351060", + "totalGbp": "10", "totalReads": "N/A", - "twoHundredkbPlus": "1.08", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "19.61", - "accession": "SAMN33621952", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797112", "ccsAlgorithm": "N/A", - "coverage": "5.94", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.23", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BB22", - "filename": "02_08_22_R941_HG02258_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "02_08_22_R941_HG02258_4", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03792-2_S27_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03792-2_S27_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242316", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.429346", - "oneHundredkbPlus": "2.71", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02258/raw_data/nanopore/guppy_6/02_08_22_R941_HG02258_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.647329", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-2_S27_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "92608", - "result": "Similar", - "sampleId": "HG02258", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ACB", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.1", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03792", + "totalBp": "10003875652", + "totalGbp": "10", "totalReads": "N/A", - "twoHundredkbPlus": "0.59", - "whales": "0" - }, - { - "Gb": "54.02", - "accession": "SAMN33621958", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797112", "ccsAlgorithm": "N/A", - "coverage": "16.37", - "dataType": "", + "coverage": "3.23", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "BD28", - "filename": "02_08_22_R941_HG03834_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.21", - "fourHundredkbPlus": "0.47", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "02_08_22_R941_HG03834_1", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03792-2_S27_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03792-2_S27_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242172", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.358252", - "oneHundredkbPlus": "9.29", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG03834/raw_data/nanopore/guppy_6/02_08_22_R941_HG03834_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.6202", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-2_S27_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "113319", - "result": "Similar", - "sampleId": "HG03834", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "1.17", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03792", + "totalBp": "10008059210", + "totalGbp": "10.01", "totalReads": "N/A", - "twoHundredkbPlus": "3.25", - "whales": "28" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "55.11", - "accession": "SAMN33621958", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797112", "ccsAlgorithm": "N/A", - "coverage": "16.7", - "dataType": "", + "coverage": "3.23", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "BD28", - "filename": "02_08_22_R941_HG03834_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.23", - "fourHundredkbPlus": "0.47", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "02_08_22_R941_HG03834_2", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03792-2_S27_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03792-2_S27_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242172", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.366502", - "oneHundredkbPlus": "8.93", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG03834/raw_data/nanopore/guppy_6/02_08_22_R941_HG03834_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.620433", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-2_S27_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "106614", - "result": "Similar", - "sampleId": "HG03834", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "1.09", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03792", + "totalBp": "10007585293", + "totalGbp": "10.01", "totalReads": "N/A", - "twoHundredkbPlus": "3.02", - "whales": "39" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "51.91", - "accession": "SAMN33621958", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797112", "ccsAlgorithm": "N/A", - "coverage": "15.73", - "dataType": "", + "coverage": "3.17", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "BD28", - "filename": "02_08_22_R941_HG03834_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.2", - "fourHundredkbPlus": "0.41", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "02_08_22_R941_HG03834_3", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03792-2_S27_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03792-2_S27_L004", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242171", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.353039", - "oneHundredkbPlus": "8.11", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG03834/raw_data/nanopore/guppy_6/02_08_22_R941_HG03834_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.607695", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-2_S27_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "103009", - "result": "Similar", - "sampleId": "HG03834", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.97", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03792", + "totalBp": "9834207094", + "totalGbp": "9.83", "totalReads": "N/A", - "twoHundredkbPlus": "2.7", - "whales": "32" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "68.86", - "accession": "SAMN37797096", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797112", "ccsAlgorithm": "N/A", - "coverage": "20.87", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.17", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH074", - "filename": "02_15_22_R941_HG00658_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.13", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "02_15_22_R941_HG00658_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03792-2_S27_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03792-2_S27_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242171", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.301266", - "oneHundredkbPlus": "9.29", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/nanopore/guppy_6/02_15_22_R941_HG00658_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.605631", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/hic/HG03792-2_S27_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "89274", - "result": "Similar", - "sampleId": "HG00658", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.53", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03792", + "totalBp": "9833727946", + "totalGbp": "9.83", "totalReads": "N/A", - "twoHundredkbPlus": "2.5", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "86.75", - "accession": "SAMN37797096", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706907", "ccsAlgorithm": "N/A", - "coverage": "26.29", - "dataType": "unaligned reads with 5mC mods", + "coverage": "8.65", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH074", - "filename": "02_15_22_R941_HG00658_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.07", - "fourHundredkbPlus": "0.21", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "02_15_22_R941_HG00658_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03804-06b-1_S5_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03804-06b-1-1_S5_L001_R1_001-1_S5_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613608", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.302639", - "oneHundredkbPlus": "12.28", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/nanopore/guppy_6/02_15_22_R941_HG00658_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.538126", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-1_S5_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "93714", - "result": "Similar", - "sampleId": "HG00658", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.77", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03804", + "totalBp": "26822031094", + "totalGbp": "26.82", "totalReads": "N/A", - "twoHundredkbPlus": "3.38", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "69.61", - "accession": "SAMN37797096", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706907", "ccsAlgorithm": "N/A", - "coverage": "21.09", - "dataType": "unaligned reads with 5mC mods", + "coverage": "8.65", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH074", - "filename": "02_15_22_R941_HG00658_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.06", - "fourHundredkbPlus": "0.15", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "02_15_22_R941_HG00658_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03804-06b-1_S5_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03804-06b-1-1_S5_L001_R1_001-1_S5_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613608", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.342092", - "oneHundredkbPlus": "9.23", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/nanopore/guppy_6/02_15_22_R941_HG00658_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.546349", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-1_S5_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "87952", - "result": "Similar", - "sampleId": "HG00658", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.55", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03804", + "totalBp": "26819757868", + "totalGbp": "26.82", "totalReads": "N/A", - "twoHundredkbPlus": "2.49", - "whales": "12" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "70.91", - "accession": "SAMN37797105", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706907", "ccsAlgorithm": "N/A", - "coverage": "21.49", - "dataType": "unaligned reads with 5mC mods", + "coverage": "8.53", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN087", - "filename": "02_15_22_R941_HG02514_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.17", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "02_15_22_R941_HG02514_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03804-06b-1_S5_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03804-06b-1-1_S5_L002_R1_001-1_S5_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613607", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.334196", - "oneHundredkbPlus": "10.49", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02514/raw_data/nanopore/guppy_6/02_15_22_R941_HG02514_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.510434", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-1_S5_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "97579", - "result": "Similar", - "sampleId": "HG02514", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.76", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03804", + "totalBp": "26444221197", + "totalGbp": "26.44", "totalReads": "N/A", - "twoHundredkbPlus": "3.14", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "74.55", - "accession": "SAMN37797105", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706907", "ccsAlgorithm": "N/A", - "coverage": "22.59", - "dataType": "unaligned reads with 5mC mods", + "coverage": "8.53", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN087", - "filename": "02_15_22_R941_HG02514_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.19", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "02_15_22_R941_HG02514_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03804-06b-1_S5_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03804-06b-1-1_S5_L002_R1_001-1_S5_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613607", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.312431", - "oneHundredkbPlus": "10.86", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02514/raw_data/nanopore/guppy_6/02_15_22_R941_HG02514_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.537702", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-1_S5_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "96127", - "result": "Similar", - "sampleId": "HG02514", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.8", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03804", + "totalBp": "26441868051", + "totalGbp": "26.44", "totalReads": "N/A", - "twoHundredkbPlus": "3.3", - "whales": "4" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "65.96", - "accession": "SAMN37797105", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706907", "ccsAlgorithm": "N/A", - "coverage": "19.99", - "dataType": "unaligned reads with 5mC mods", + "coverage": "8.38", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN087", - "filename": "02_15_22_R941_HG02514_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.13", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "02_15_22_R941_HG02514_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03804-06b-1_S5_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03804-06b-1-1_S5_L003_R1_001-1_S5_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613605", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.293918", - "oneHundredkbPlus": "8.95", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02514/raw_data/nanopore/guppy_6/02_15_22_R941_HG02514_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.514055", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-1_S5_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "90028", - "result": "Similar", - "sampleId": "HG02514", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.57", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03804", + "totalBp": "25989593040", + "totalGbp": "25.99", "totalReads": "N/A", - "twoHundredkbPlus": "2.5", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "66.91", - "accession": "SAMN33758790", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706907", "ccsAlgorithm": "N/A", - "coverage": "20.27", - "dataType": "", + "coverage": "8.38", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "GB110", - "filename": "02_15_22_R941_HG03041_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.08", - "fourHundredkbPlus": "0.22", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "02_15_22_R941_HG03041_1", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03804-06b-1_S5_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03804-06b-1-1_S5_L003_R1_001-1_S5_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613605", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.338052", - "oneHundredkbPlus": "9.5", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03041/raw_data/nanopore/guppy_6/02_15_22_R941_HG03041_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.531756", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-1_S5_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "94132", - "result": "Similar", - "sampleId": "HG03041", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.72", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03804", + "totalBp": "25986948758", + "totalGbp": "25.99", "totalReads": "N/A", - "twoHundredkbPlus": "2.76", - "whales": "7" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "72.05", - "accession": "SAMN33758790", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706907", "ccsAlgorithm": "N/A", - "coverage": "21.83", - "dataType": "", + "coverage": "8.36", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "GB110", - "filename": "02_15_22_R941_HG03041_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.09", - "fourHundredkbPlus": "0.23", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "02_15_22_R941_HG03041_2", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03804-06b-1_S5_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03804-06b-1-1_S5_L004_R1_001-1_S5_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613604", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.339754", - "oneHundredkbPlus": "9.49", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03041/raw_data/nanopore/guppy_6/02_15_22_R941_HG03041_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.538214", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-1_S5_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "87337", - "result": "Similar", - "sampleId": "HG03041", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.72", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03804", + "totalBp": "25926228915", + "totalGbp": "25.93", "totalReads": "N/A", - "twoHundredkbPlus": "2.69", - "whales": "10" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "57.11", - "accession": "SAMN33758790", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706907", "ccsAlgorithm": "N/A", - "coverage": "17.31", - "dataType": "", + "coverage": "8.36", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "GB110", - "filename": "02_15_22_R941_HG03041_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.08", - "fourHundredkbPlus": "0.2", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "02_15_22_R941_HG03041_3", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03804-06b-1_S5_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03804-06b-1-1_S5_L004_R1_001-1_S5_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613604", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.315332", - "oneHundredkbPlus": "8.29", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG03041/raw_data/nanopore/guppy_6/02_15_22_R941_HG03041_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.530258", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-1_S5_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "95935", - "result": "Similar", - "sampleId": "HG03041", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.65", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03804", + "totalBp": "25924317485", + "totalGbp": "25.92", "totalReads": "N/A", - "twoHundredkbPlus": "2.44", - "whales": "15" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "76.7", - "accession": "SAMN37797108", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706907", "ccsAlgorithm": "N/A", - "coverage": "23.24", - "dataType": "", - "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "GB113", - "filename": "02_15_22_R941_HG03050_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.16", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "02_15_22_R941_HG03050_1", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "coverage": "6.65", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03804-06b-2_S6_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03804-06b-2-2_S6_L001_R1_001-2_S6_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613603", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.325861", - "oneHundredkbPlus": "11.14", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03050/raw_data/nanopore/guppy_6/02_15_22_R941_HG03050_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.558338", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-2_S6_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "96204", - "result": "Similar", - "sampleId": "HG03050", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.63", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03804", + "totalBp": "20599997413", + "totalGbp": "20.6", "totalReads": "N/A", - "twoHundredkbPlus": "2.91", - "whales": "4" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "51.87", - "accession": "SAMN37797108", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706907", "ccsAlgorithm": "N/A", - "coverage": "15.72", - "dataType": "", + "coverage": "6.64", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "GB113", - "filename": "02_15_22_R941_HG03050_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.1", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "02_15_22_R941_HG03050_2", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03804-06b-2_S6_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03804-06b-2-2_S6_L001_R1_001-2_S6_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613603", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.341999", - "oneHundredkbPlus": "6.89", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03050/raw_data/nanopore/guppy_6/02_15_22_R941_HG03050_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.506364", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-2_S6_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "88591", - "result": "Similar", - "sampleId": "HG03050", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.37", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03804", + "totalBp": "20598245280", + "totalGbp": "20.6", "totalReads": "N/A", - "twoHundredkbPlus": "1.72", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "71.23", - "accession": "SAMN37797108", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706907", "ccsAlgorithm": "N/A", - "coverage": "21.59", - "dataType": "", + "coverage": "6.55", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "GB113", - "filename": "02_15_22_R941_HG03050_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.14", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "02_15_22_R941_HG03050_3", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03804-06b-2_S6_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03804-06b-2-2_S6_L002_R1_001-2_S6_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613602", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.346017", - "oneHundredkbPlus": "9.85", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03050/raw_data/nanopore/guppy_6/02_15_22_R941_HG03050_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.563349", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-2_S6_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "92017", - "result": "Similar", - "sampleId": "HG03050", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.54", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03804", + "totalBp": "20298890067", + "totalGbp": "20.3", "totalReads": "N/A", - "twoHundredkbPlus": "2.51", - "whales": "8" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "74.38", - "accession": "SAMN33758794", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706907", "ccsAlgorithm": "N/A", - "coverage": "22.54", - "dataType": "", + "coverage": "6.55", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "PK41", - "filename": "02_15_22_R941_HG03239_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.1", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "02_15_22_R941_HG03239_1", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03804-06b-2_S6_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03804-06b-2-2_S6_L002_R1_001-2_S6_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613602", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.34711", - "oneHundredkbPlus": "9.29", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03239/raw_data/nanopore/guppy_6/02_15_22_R941_HG03239_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.532988", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-2_S6_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "84730", - "result": "Similar", - "sampleId": "HG03239", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.37", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03804", + "totalBp": "20297050591", + "totalGbp": "20.3", "totalReads": "N/A", - "twoHundredkbPlus": "1.99", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "78.16", - "accession": "SAMN33758794", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706907", "ccsAlgorithm": "N/A", - "coverage": "23.69", - "dataType": "", + "coverage": "6.42", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "PK41", - "filename": "02_15_22_R941_HG03239_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.11", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "02_15_22_R941_HG03239_2", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03804-06b-2_S6_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03804-06b-2-2_S6_L003_R1_001-2_S6_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613878", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.328338", - "oneHundredkbPlus": "9.26", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03239/raw_data/nanopore/guppy_6/02_15_22_R941_HG03239_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.574776", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-2_S6_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "80855", - "result": "Similar", - "sampleId": "HG03239", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.39", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03804", + "totalBp": "19904479372", + "totalGbp": "19.9", "totalReads": "N/A", - "twoHundredkbPlus": "1.98", - "whales": "6" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "58.69", - "accession": "SAMN33758794", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706907", "ccsAlgorithm": "N/A", - "coverage": "17.79", - "dataType": "", + "coverage": "6.42", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "PK41", - "filename": "02_15_22_R941_HG03239_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.08", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "02_15_22_R941_HG03239_3", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03804-06b-2_S6_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03804-06b-2-2_S6_L003_R1_001-2_S6_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613878", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.36187", - "oneHundredkbPlus": "6.93", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03239/raw_data/nanopore/guppy_6/02_15_22_R941_HG03239_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.586377", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-2_S6_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "80856", - "result": "Similar", - "sampleId": "HG03239", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.27", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03804", + "totalBp": "19902408458", + "totalGbp": "19.9", "totalReads": "N/A", - "twoHundredkbPlus": "1.42", - "whales": "7" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "85.01", - "accession": "SAMN33758782", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706907", "ccsAlgorithm": "N/A", - "coverage": "25.76", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.39", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PR18", - "filename": "02_17_22_R941_HG01074_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.06", - "fourHundredkbPlus": "0.18", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "02_17_22_R941_HG01074_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03804-06b-2_S6_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03804-06b-2-2_S6_L004_R1_001-2_S6_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613758", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.378887", - "oneHundredkbPlus": "11.93", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01074/raw_data/nanopore/guppy_6/02_17_22_R941_HG01074_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.540342", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-2_S6_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "93003", - "result": "Similar", - "sampleId": "HG01074", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PUR", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.68", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03804", + "totalBp": "19815203183", + "totalGbp": "19.82", "totalReads": "N/A", - "twoHundredkbPlus": "3.19", - "whales": "4" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "92.24", - "accession": "SAMN33758782", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706907", "ccsAlgorithm": "N/A", - "coverage": "27.95", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.39", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PR18", - "filename": "02_17_22_R941_HG01074_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.11", - "fourHundredkbPlus": "0.25", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "02_17_22_R941_HG01074_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03804-06b-2_S6_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03804-06b-2-2_S6_L004_R1_001-2_S6_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613758", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.370613", - "oneHundredkbPlus": "12.64", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG01074/raw_data/nanopore/guppy_6/02_17_22_R941_HG01074_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.540772", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/hic/HG03804-06b-2_S6_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "90778", - "result": "Similar", - "sampleId": "HG01074", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PUR", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.79", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03804", + "totalBp": "19813734808", + "totalGbp": "19.81", "totalReads": "N/A", - "twoHundredkbPlus": "3.4", - "whales": "22" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "77.56", - "accession": "SAMN33758782", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706908", "ccsAlgorithm": "N/A", - "coverage": "23.5", - "dataType": "unaligned reads with 5mC mods", + "coverage": "10.25", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PR18", - "filename": "02_17_22_R941_HG01074_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.06", - "fourHundredkbPlus": "0.17", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "02_17_22_R941_HG01074_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03816-01ab-1_S3_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03816-01ab-1-1_S3_L001_R1_001-1_S3_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613757", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.404218", - "oneHundredkbPlus": "10.44", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01074/raw_data/nanopore/guppy_6/02_17_22_R941_HG01074_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.501235", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-1_S3_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "89548", - "result": "Similar", - "sampleId": "HG01074", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PUR", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.58", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03816", + "totalBp": "31780307378", + "totalGbp": "31.78", "totalReads": "N/A", - "twoHundredkbPlus": "2.71", - "whales": "6" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "101.69", - "accession": "SAMN33758781", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706908", "ccsAlgorithm": "N/A", - "coverage": "30.82", - "dataType": "unaligned reads with 5mC mods", + "coverage": "10.25", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PR03", - "filename": "03_01_22_R941_HG00639_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.1", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "03_01_22_R941_HG00639_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03816-01ab-1_S3_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03816-01ab-1-1_S3_L001_R1_001-1_S3_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613757", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.338452", - "oneHundredkbPlus": "13.5", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00639/raw_data/nanopore/guppy_6/03_01_22_R941_HG00639_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.459029", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-1_S3_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "88735", - "result": "Similar", - "sampleId": "HG00639", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PUR", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.55", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03816", + "totalBp": "31778819544", + "totalGbp": "31.78", "totalReads": "N/A", - "twoHundredkbPlus": "3.21", - "whales": "4" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "97.09", - "accession": "SAMN33758781", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706908", "ccsAlgorithm": "N/A", - "coverage": "29.42", - "dataType": "unaligned reads with 5mC mods", + "coverage": "10.22", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PR03", - "filename": "03_01_22_R941_HG00639_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.09", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "03_01_22_R941_HG00639_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03816-01ab-1_S3_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03816-01ab-1-1_S3_L002_R1_001-1_S3_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613756", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.347786", - "oneHundredkbPlus": "12.8", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00639/raw_data/nanopore/guppy_6/03_01_22_R941_HG00639_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.506623", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-1_S3_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "88325", - "result": "Similar", - "sampleId": "HG00639", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PUR", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.54", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03816", + "totalBp": "31667371682", + "totalGbp": "31.67", "totalReads": "N/A", - "twoHundredkbPlus": "3", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "84.25", - "accession": "SAMN33758781", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706908", "ccsAlgorithm": "N/A", - "coverage": "25.53", - "dataType": "unaligned reads with 5mC mods", + "coverage": "10.21", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PR03", - "filename": "03_01_22_R941_HG00639_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.09", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "03_01_22_R941_HG00639_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03816-01ab-1_S3_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03816-01ab-1-1_S3_L002_R1_001-1_S3_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613756", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.345697", - "oneHundredkbPlus": "11.14", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00639/raw_data/nanopore/guppy_6/03_01_22_R941_HG00639_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.454087", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-1_S3_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "88377", - "result": "Similar", - "sampleId": "HG00639", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PUR", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.48", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03816", + "totalBp": "31665743155", + "totalGbp": "31.67", "totalReads": "N/A", - "twoHundredkbPlus": "2.69", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "44.57", - "accession": "SAMN33758783", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706908", "ccsAlgorithm": "N/A", - "coverage": "13.51", - "dataType": "unaligned reads with 5mC mods", + "coverage": "10.26", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PR21", - "filename": "03_01_22_R941_HG01081_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.03", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "03_01_22_R941_HG01081_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03816-01ab-1_S3_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03816-01ab-1-1_S3_L003_R1_001-1_S3_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613875", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.419744", - "oneHundredkbPlus": "5.51", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01081/raw_data/nanopore/guppy_6/03_01_22_R941_HG01081_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.502938", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-1_S3_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "82757", - "result": "Similar", - "sampleId": "HG01081", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PUR", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.2", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03816", + "totalBp": "31815414810", + "totalGbp": "31.82", "totalReads": "N/A", - "twoHundredkbPlus": "1.26", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "93.45", - "accession": "SAMN33758783", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706908", "ccsAlgorithm": "N/A", - "coverage": "28.32", - "dataType": "unaligned reads with 5mC mods", + "coverage": "10.26", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PR21", - "filename": "03_01_22_R941_HG01081_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.06", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "03_01_22_R941_HG01081_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03816-01ab-1_S3_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03816-01ab-1-1_S3_L003_R1_001-1_S3_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613875", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.354066", - "oneHundredkbPlus": "11", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01081/raw_data/nanopore/guppy_6/03_01_22_R941_HG01081_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.500328", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-1_S3_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "79502", - "result": "Similar", - "sampleId": "HG01081", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PUR", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.37", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03816", + "totalBp": "31813630376", + "totalGbp": "31.81", "totalReads": "N/A", - "twoHundredkbPlus": "2.38", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "94.66", - "accession": "SAMN33758783", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706908", "ccsAlgorithm": "N/A", - "coverage": "28.68", - "dataType": "unaligned reads with 5mC mods", + "coverage": "10.07", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PR21", - "filename": "03_01_22_R941_HG01081_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "03_01_22_R941_HG01081_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03816-01ab-1_S3_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03816-01ab-1-1_S3_L004_R1_001-1_S3_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613874", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.345031", - "oneHundredkbPlus": "11.47", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01081/raw_data/nanopore/guppy_6/03_01_22_R941_HG01081_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.495419", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-1_S3_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "81570", - "result": "Similar", - "sampleId": "HG01081", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PUR", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.4", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03816", + "totalBp": "31232187295", + "totalGbp": "31.23", "totalReads": "N/A", - "twoHundredkbPlus": "2.55", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "99.55", - "accession": "SAMN33758783", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706908", "ccsAlgorithm": "N/A", - "coverage": "30.17", - "dataType": "unaligned reads with 5mC mods", + "coverage": "10.07", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PR21", - "filename": "03_01_22_R941_HG01081_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "03_01_22_R941_HG01081_4", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03816-01ab-1_S3_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03816-01ab-1-1_S3_L004_R1_001-1_S3_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613874", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.364588", - "oneHundredkbPlus": "12.42", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01081/raw_data/nanopore/guppy_6/03_01_22_R941_HG01081_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.46382", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-1_S3_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "83915", - "result": "Similar", - "sampleId": "HG01081", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PUR", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.39", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03816", + "totalBp": "31230172299", + "totalGbp": "31.23", "totalReads": "N/A", - "twoHundredkbPlus": "2.68", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "97.29", - "accession": "SAMN37797097", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706908", "ccsAlgorithm": "N/A", - "coverage": "29.48", - "dataType": "unaligned reads with 5mC mods", + "coverage": "10.13", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "CLM12", - "filename": "03_01_22_R941_HG01150_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.14", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "03_01_22_R941_HG01150_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03816-01ab-2_S4_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03816-01ab-2-2_S4_L001_R1_001-2_S4_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613872", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.340795", - "oneHundredkbPlus": "13.6", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/nanopore/guppy_6/03_01_22_R941_HG01150_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.51494", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-2_S4_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "92449", - "result": "Similar", - "sampleId": "HG01150", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CLM", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.84", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03816", + "totalBp": "31397362078", + "totalGbp": "31.4", "totalReads": "N/A", - "twoHundredkbPlus": "3.92", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "92.38", - "accession": "SAMN37797097", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706908", "ccsAlgorithm": "N/A", - "coverage": "27.99", - "dataType": "unaligned reads with 5mC mods", + "coverage": "10.13", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "CLM12", - "filename": "03_01_22_R941_HG01150_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.1", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "03_01_22_R941_HG01150_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03816-01ab-2_S4_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03816-01ab-2-2_S4_L001_R1_001-2_S4_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613872", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.357692", - "oneHundredkbPlus": "11.79", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/nanopore/guppy_6/03_01_22_R941_HG01150_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.468232", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-2_S4_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "85044", - "result": "Similar", - "sampleId": "HG01150", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CLM", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.62", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03816", + "totalBp": "31396043051", + "totalGbp": "31.4", "totalReads": "N/A", - "twoHundredkbPlus": "3.1", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "88.26", - "accession": "SAMN37797097", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706908", "ccsAlgorithm": "N/A", - "coverage": "26.75", - "dataType": "unaligned reads with 5mC mods", + "coverage": "10.13", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "CLM12", - "filename": "03_01_22_R941_HG01150_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.13", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "03_01_22_R941_HG01150_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03816-01ab-2_S4_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03816-01ab-2-2_S4_L002_R1_001-2_S4_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613871", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.318516", - "oneHundredkbPlus": "11.94", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/nanopore/guppy_6/03_01_22_R941_HG01150_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.511242", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-2_S4_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "89619", - "result": "Similar", - "sampleId": "HG01150", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CLM", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.73", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03816", + "totalBp": "31399240762", + "totalGbp": "31.4", "totalReads": "N/A", - "twoHundredkbPlus": "3.36", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "92", - "accession": "SAMN37797101", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706908", "ccsAlgorithm": "N/A", - "coverage": "27.88", - "dataType": "unaligned reads with 5mC mods", + "coverage": "10.13", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL015", - "filename": "03_01_22_R941_HG01940_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.06", - "fourHundredkbPlus": "0.18", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "03_01_22_R941_HG01940_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03816-01ab-2_S4_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03816-01ab-2-2_S4_L002_R1_001-2_S4_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613871", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.329193", - "oneHundredkbPlus": "12.13", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01940/raw_data/nanopore/guppy_6/03_01_22_R941_HG01940_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.479397", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-2_S4_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "87902", - "result": "Similar", - "sampleId": "HG01940", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.66", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03816", + "totalBp": "31397723868", + "totalGbp": "31.4", "totalReads": "N/A", - "twoHundredkbPlus": "3.05", - "whales": "5" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "85.7", - "accession": "SAMN37797101", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706908", "ccsAlgorithm": "N/A", - "coverage": "25.97", - "dataType": "unaligned reads with 5mC mods", + "coverage": "10.17", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL015", - "filename": "03_01_22_R941_HG01940_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.15", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "03_01_22_R941_HG01940_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03816-01ab-2_S4_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03816-01ab-2-2_S4_L003_R1_001-2_S4_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613870", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.332433", - "oneHundredkbPlus": "11.09", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01940/raw_data/nanopore/guppy_6/03_01_22_R941_HG01940_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.495473", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-2_S4_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "86686", - "result": "Similar", - "sampleId": "HG01940", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.57", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03816", + "totalBp": "31521679216", + "totalGbp": "31.52", "totalReads": "N/A", - "twoHundredkbPlus": "2.7", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "71.28", - "accession": "SAMN37797101", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706908", "ccsAlgorithm": "N/A", - "coverage": "21.6", - "dataType": "unaligned reads with 5mC mods", + "coverage": "10.17", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL015", - "filename": "03_01_22_R941_HG01940_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.12", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "03_01_22_R941_HG01940_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03816-01ab-2_S4_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03816-01ab-2-2_S4_L003_R1_001-2_S4_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613870", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.311553", - "oneHundredkbPlus": "9.03", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01940/raw_data/nanopore/guppy_6/03_01_22_R941_HG01940_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.466131", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-2_S4_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "84815", - "result": "Similar", - "sampleId": "HG01940", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.47", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03816", + "totalBp": "31520032571", + "totalGbp": "31.52", "totalReads": "N/A", - "twoHundredkbPlus": "2.2", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "45.78", - "accession": "SAMN37797103", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706908", "ccsAlgorithm": "N/A", - "coverage": "13.87", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.98", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL023", - "filename": "03_01_22_R941_HG01969_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "03_01_22_R941_HG01969_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03816-01ab-2_S4_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03816-01ab-2-2_S4_L004_R1_001-2_S4_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613869", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.384367", - "oneHundredkbPlus": "6.16", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/nanopore/guppy_6/03_01_22_R941_HG01969_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.473115", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-2_S4_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "89548", - "result": "Similar", - "sampleId": "HG01969", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.33", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03816", + "totalBp": "30937315032", + "totalGbp": "30.94", "totalReads": "N/A", - "twoHundredkbPlus": "1.58", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "91.24", - "accession": "SAMN37797103", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706908", "ccsAlgorithm": "N/A", - "coverage": "27.65", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.98", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL023", - "filename": "03_01_22_R941_HG01969_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.14", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "03_01_22_R941_HG01969_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03816-01ab-2_S4_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03816-01ab-2-2_S4_L004_R1_001-2_S4_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613869", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.335214", - "oneHundredkbPlus": "12.38", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/nanopore/guppy_6/03_01_22_R941_HG01969_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.488907", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/hic/HG03816-01ab-2_S4_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "90251", - "result": "Similar", - "sampleId": "HG01969", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.68", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03816", + "totalBp": "30935396516", + "totalGbp": "30.94", "totalReads": "N/A", - "twoHundredkbPlus": "3.24", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "61.72", - "accession": "SAMN37797103", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237514", "ccsAlgorithm": "N/A", - "coverage": "18.7", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.02", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL023", - "filename": "03_01_22_R941_HG01969_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.11", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "03_01_22_R941_HG01969_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03831-37a-1_S15_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03831-37a-1-1_S15_L001_R1_001-1_S15_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613868", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.362328", - "oneHundredkbPlus": "8.2", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/nanopore/guppy_6/03_01_22_R941_HG01969_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.510115", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-1_S15_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "88378", - "result": "Similar", - "sampleId": "HG01969", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.49", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03831", + "totalBp": "18671577800", + "totalGbp": "18.67", "totalReads": "N/A", - "twoHundredkbPlus": "2.18", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "80.42", - "accession": "SAMN33758789", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237514", "ccsAlgorithm": "N/A", - "coverage": "24.37", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.02", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK35", - "filename": "03_01_22_R941_HG03017_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.09", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "03_01_22_R941_HG03017_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03831-37a-1_S15_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03831-37a-1-1_S15_L001_R1_001-1_S15_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613868", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.338232", - "oneHundredkbPlus": "10.45", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/nanopore/guppy_6/03_01_22_R941_HG03017_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.462677", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-1_S15_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "86206", - "result": "Similar", - "sampleId": "HG03017", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.52", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03831", + "totalBp": "18666958853", + "totalGbp": "18.67", "totalReads": "N/A", - "twoHundredkbPlus": "2.74", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "99.17", - "accession": "SAMN33758789", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237514", "ccsAlgorithm": "N/A", - "coverage": "30.05", - "dataType": "", + "coverage": "5.92", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "PK35", - "filename": "03_01_22_R941_HG03017_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.12", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "03_01_22_R941_HG03017_2", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03831-37a-1_S15_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03831-37a-1-1_S15_L002_R1_001-1_S15_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613866", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.350232", - "oneHundredkbPlus": "13.36", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/nanopore/guppy_6/03_01_22_R941_HG03017_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.498653", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-1_S15_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "89100", - "result": "Similar", - "sampleId": "HG03017", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.74", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03831", + "totalBp": "18363345183", + "totalGbp": "18.36", "totalReads": "N/A", - "twoHundredkbPlus": "3.68", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "76.92", - "accession": "SAMN33758789", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237514", "ccsAlgorithm": "N/A", - "coverage": "23.31", - "dataType": "", + "coverage": "5.92", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "PK35", - "filename": "03_01_22_R941_HG03017_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.09", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "03_01_22_R941_HG03017_3", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03831-37a-1_S15_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03831-37a-1-1_S15_L002_R1_001-1_S15_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613866", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.310042", - "oneHundredkbPlus": "10.33", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/nanopore/guppy_6/03_01_22_R941_HG03017_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.50791", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-1_S15_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "88874", - "result": "Similar", - "sampleId": "HG03017", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.54", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03831", + "totalBp": "18358679504", + "totalGbp": "18.36", "totalReads": "N/A", - "twoHundredkbPlus": "2.81", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "69.07", - "accession": "SAMN33621953", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237514", "ccsAlgorithm": "N/A", - "coverage": "20.93", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.07", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL46", - "filename": "04_12_22_R941_HG02273_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.18", - "fourHundredkbPlus": "0.36", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "04_12_22_R941_HG02273_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03831-37a-1_S15_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03831-37a-1-1_S15_L003_R1_001-1_S15_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613865", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.306329", - "oneHundredkbPlus": "9.62", - "oneMbPlus": "0.02", - "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/nanopore/guppy_6/04_12_22_R941_HG02273_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.496633", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-1_S15_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "91973", - "result": "Similar", - "sampleId": "HG02273", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.91", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03831", + "totalBp": "18826943298", + "totalGbp": "18.83", "totalReads": "N/A", - "twoHundredkbPlus": "2.94", - "whales": "50" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "84", - "accession": "SAMN33621953", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237514", "ccsAlgorithm": "N/A", - "coverage": "25.46", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.07", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL46", - "filename": "04_12_22_R941_HG02273_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.14", - "fourHundredkbPlus": "0.31", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "04_12_22_R941_HG02273_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03831-37a-1_S15_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03831-37a-1-1_S15_L003_R1_001-1_S15_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613865", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.336303", - "oneHundredkbPlus": "11", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/nanopore/guppy_6/04_12_22_R941_HG02273_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.493563", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-1_S15_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "87115", - "result": "Similar", - "sampleId": "HG02273", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.88", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03831", + "totalBp": "18822363722", + "totalGbp": "18.82", "totalReads": "N/A", - "twoHundredkbPlus": "3.12", - "whales": "21" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "71.3", - "accession": "SAMN33621953", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237514", "ccsAlgorithm": "N/A", - "coverage": "21.61", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.77", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL46", - "filename": "04_12_22_R941_HG02273_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.14", - "fourHundredkbPlus": "0.31", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "04_12_22_R941_HG02273_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03831-37a-1_S15_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03831-37a-1-1_S15_L004_R1_001-1_S15_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613863", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.322979", - "oneHundredkbPlus": "9.93", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/nanopore/guppy_6/04_12_22_R941_HG02273_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.494824", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-1_S15_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "92212", - "result": "Similar", - "sampleId": "HG02273", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.86", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03831", + "totalBp": "17877544503", + "totalGbp": "17.88", "totalReads": "N/A", - "twoHundredkbPlus": "2.96", - "whales": "26" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "66.34", - "accession": "SAMN33621954", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237514", "ccsAlgorithm": "N/A", - "coverage": "20.1", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.77", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "NG20", - "filename": "04_12_22_R941_HG02965_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.06", - "fourHundredkbPlus": "0.22", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "04_12_22_R941_HG02965_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03831-37a-1_S15_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03831-37a-1-1_S15_L004_R1_001-1_S15_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613863", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.348437", - "oneHundredkbPlus": "9.87", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/nanopore/guppy_6/04_12_22_R941_HG02965_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.476437", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-1_S15_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "98065", - "result": "Similar", - "sampleId": "HG02965", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ESN", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.91", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03831", + "totalBp": "17872814838", + "totalGbp": "17.87", "totalReads": "N/A", - "twoHundredkbPlus": "3.31", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "81.02", - "accession": "SAMN33621954", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237514", "ccsAlgorithm": "N/A", - "coverage": "24.55", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.69", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "NG20", - "filename": "04_12_22_R941_HG02965_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.08", - "fourHundredkbPlus": "0.34", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "04_12_22_R941_HG02965_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03831-37a-2_S16_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03831-37a-2-2_S16_L001_R1_001-2_S16_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613862", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.337004", - "oneHundredkbPlus": "12.88", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/nanopore/guppy_6/04_12_22_R941_HG02965_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.540423", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-2_S16_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "105322", - "result": "Similar", - "sampleId": "HG02965", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ESN", - "superpopulation": "AFR", - "threeHundredkbPlus": "1.32", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03831", + "totalBp": "17650486923", + "totalGbp": "17.65", "totalReads": "N/A", - "twoHundredkbPlus": "4.59", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "69.09", - "accession": "SAMN33621954", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237514", "ccsAlgorithm": "N/A", - "coverage": "20.94", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.69", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "NG20", - "filename": "04_12_22_R941_HG02965_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.07", - "fourHundredkbPlus": "0.3", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "04_12_22_R941_HG02965_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03831-37a-2_S16_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03831-37a-2-2_S16_L001_R1_001-2_S16_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613862", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.358389", - "oneHundredkbPlus": "10.94", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/nanopore/guppy_6/04_12_22_R941_HG02965_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.531355", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-2_S16_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "104882", - "result": "Similar", - "sampleId": "HG02965", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ESN", - "superpopulation": "AFR", - "threeHundredkbPlus": "1.14", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03831", + "totalBp": "17645290802", + "totalGbp": "17.65", "totalReads": "N/A", - "twoHundredkbPlus": "3.93", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "67.21", - "accession": "SAMN33621955", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237514", "ccsAlgorithm": "N/A", - "coverage": "20.37", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.58", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "NG24", - "filename": "04_12_22_R941_HG02976_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.06", - "fourHundredkbPlus": "0.14", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "04_12_22_R941_HG02976_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03831-37a-2_S16_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03831-37a-2-2_S16_L002_R1_001-2_S16_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613861", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.368315", - "oneHundredkbPlus": "8.3", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/nanopore/guppy_6/04_12_22_R941_HG02976_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.500641", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-2_S16_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "82006", - "result": "Similar", - "sampleId": "HG02976", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ESN", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.48", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03831", + "totalBp": "17289642616", + "totalGbp": "17.29", "totalReads": "N/A", - "twoHundredkbPlus": "2.13", - "whales": "11" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "71.9", - "accession": "SAMN33621955", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237514", "ccsAlgorithm": "N/A", - "coverage": "21.79", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.58", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "NG24", - "filename": "04_12_22_R941_HG02976_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.06", - "fourHundredkbPlus": "0.16", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "04_12_22_R941_HG02976_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03831-37a-2_S16_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03831-37a-2-2_S16_L002_R1_001-2_S16_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613861", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.374164", - "oneHundredkbPlus": "9.57", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/nanopore/guppy_6/04_12_22_R941_HG02976_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.503645", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-2_S16_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "88094", - "result": "Similar", - "sampleId": "HG02976", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ESN", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.58", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03831", + "totalBp": "17284410414", + "totalGbp": "17.28", "totalReads": "N/A", - "twoHundredkbPlus": "2.58", - "whales": "7" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "71.6", - "accession": "SAMN33621955", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237514", "ccsAlgorithm": "N/A", - "coverage": "21.7", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.63", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "NG24", - "filename": "04_12_22_R941_HG02976_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.15", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "04_12_22_R941_HG02976_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03831-37a-2_S16_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03831-37a-2-2_S16_L003_R1_001-2_S16_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613859", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.362134", - "oneHundredkbPlus": "9.61", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/nanopore/guppy_6/04_12_22_R941_HG02976_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.490855", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-2_S16_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "88896", - "result": "Similar", - "sampleId": "HG02976", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ESN", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.58", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03831", + "totalBp": "17457179116", + "totalGbp": "17.46", "totalReads": "N/A", - "twoHundredkbPlus": "2.61", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "24.23", - "accession": "SAMN33621956", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237514", "ccsAlgorithm": "N/A", - "coverage": "7.34", - "dataType": "", + "coverage": "5.63", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "NG58", - "filename": "04_12_22_R941_HG03195_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.03", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "04_12_22_R941_HG03195_1", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03831-37a-2_S16_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03831-37a-2-2_S16_L003_R1_001-2_S16_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613859", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.435326", - "oneHundredkbPlus": "2.92", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/nanopore/guppy_6/04_12_22_R941_HG03195_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.508258", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-2_S16_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "82523", - "result": "Similar", - "sampleId": "HG03195", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "ESN", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.11", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03831", + "totalBp": "17451965390", + "totalGbp": "17.45", "totalReads": "N/A", - "twoHundredkbPlus": "0.57", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "32.42", - "accession": "SAMN33621956", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237514", "ccsAlgorithm": "N/A", - "coverage": "9.83", - "dataType": "", + "coverage": "5.45", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "NG58", - "filename": "04_12_22_R941_HG03195_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.05", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "04_12_22_R941_HG03195_2", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03831-37a-2_S16_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03831-37a-2-2_S16_L004_R1_001-2_S16_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613858", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.39897", - "oneHundredkbPlus": "3.75", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/nanopore/guppy_6/04_12_22_R941_HG03195_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.510984", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-2_S16_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "79825", - "result": "Similar", - "sampleId": "HG03195", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "ESN", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.15", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03831", + "totalBp": "16895609440", + "totalGbp": "16.9", "totalReads": "N/A", - "twoHundredkbPlus": "0.72", - "whales": "4" - }, - { - "Gb": "66.57", - "accession": "SAMN33621956", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26237514", "ccsAlgorithm": "N/A", - "coverage": "20.17", - "dataType": "", + "coverage": "5.45", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "NG58", - "filename": "04_12_22_R941_HG03195_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.09", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "04_12_22_R941_HG03195_3", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03831-37a-2_S16_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03831-37a-2-2_S16_L004_R1_001-2_S16_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613858", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.379395", - "oneHundredkbPlus": "7.67", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/nanopore/guppy_6/04_12_22_R941_HG03195_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.502183", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/hic/HG03831-37a-2_S16_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "79740", - "result": "Similar", - "sampleId": "HG03195", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "ESN", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.3", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03831", + "totalBp": "16890282378", + "totalGbp": "16.89", "totalReads": "N/A", - "twoHundredkbPlus": "1.47", - "whales": "15" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "33.71", - "accession": "SAMN33621956", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621958", "ccsAlgorithm": "N/A", - "coverage": "10.21", - "dataType": "", + "coverage": "10.32", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "NG58", - "filename": "04_12_22_R941_HG03195_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.06", - "fourHundredkbPlus": "0.1", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "04_12_22_R941_HG03195_4", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03834-1_S4_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03834-1_S4_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310976", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.399203", - "oneHundredkbPlus": "3.74", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/nanopore/guppy_6/04_12_22_R941_HG03195_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.43792", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03834/raw_data/hic/HG03834-1_S4_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "76326", - "result": "Similar", - "sampleId": "HG03195", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "ESN", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.22", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03834", + "totalBp": "31979838510", + "totalGbp": "31.98", "totalReads": "N/A", - "twoHundredkbPlus": "0.81", - "whales": "24" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "72.99", - "accession": "SAMN33621957", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621958", "ccsAlgorithm": "N/A", - "coverage": "22.12", - "dataType": "", + "coverage": "10.32", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "04_12_22_R941_HG03225_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.17", - "fourHundredkbPlus": "0.54", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "04_12_22_R941_HG03225_1", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "filename": "HG03834-1_S4_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03834-1_S4_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310976", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.321181", - "oneHundredkbPlus": "12.28", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/nanopore/guppy_6/04_12_22_R941_HG03225_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.43792", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03834/raw_data/hic/HG03834-1_S4_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "113230", - "result": "Similar", - "sampleId": "HG03225", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "MSL", - "superpopulation": "AFR", - "threeHundredkbPlus": "1.73", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03834", + "totalBp": "31979838510", + "totalGbp": "31.98", "totalReads": "N/A", - "twoHundredkbPlus": "5", - "whales": "4" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "78.71", - "accession": "SAMN33621957", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621958", "ccsAlgorithm": "N/A", - "coverage": "23.85", - "dataType": "", + "coverage": "22.54", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "04_12_22_R941_HG03225_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.18", - "fourHundredkbPlus": "0.57", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "04_12_22_R941_HG03225_2", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "filename": "HG03834-2_S8_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03834-2_S8_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310975", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.341689", - "oneHundredkbPlus": "13.06", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/nanopore/guppy_6/04_12_22_R941_HG03225_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.391397", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03834/raw_data/hic/HG03834-2_S8_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "111305", - "result": "Similar", - "sampleId": "HG03225", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "MSL", - "superpopulation": "AFR", - "threeHundredkbPlus": "1.82", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03834", + "totalBp": "69883486748", + "totalGbp": "69.88", "totalReads": "N/A", - "twoHundredkbPlus": "5.3", - "whales": "4" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "62.97", - "accession": "SAMN33621957", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621958", "ccsAlgorithm": "N/A", - "coverage": "19.08", - "dataType": "", + "coverage": "22.54", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "04_12_22_R941_HG03225_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.14", - "fourHundredkbPlus": "0.44", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "04_12_22_R941_HG03225_3", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "filename": "HG03834-2_S8_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03834-2_S8_L003", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310975", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.385432", - "oneHundredkbPlus": "10.17", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/nanopore/guppy_6/04_12_22_R941_HG03225_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.391397", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03834/raw_data/hic/HG03834-2_S8_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "107783", - "result": "Similar", - "sampleId": "HG03225", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "MSL", - "superpopulation": "AFR", - "threeHundredkbPlus": "1.39", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03834", + "totalBp": "69883486748", + "totalGbp": "69.88", "totalReads": "N/A", - "twoHundredkbPlus": "4.07", - "whales": "7" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "76.64", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021625", "ccsAlgorithm": "N/A", - "coverage": "23.22", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.5", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "05_17_22_R941_GM18522_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "05_17_22_R941_GM18522_1", - "libraryLayout": "single", + "filename": "HG03874-1_FC1_S3_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03874-1_FC1_S3_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310974", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.336724", - "oneHundredkbPlus": "10.33", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/nanopore/guppy_6/05_17_22_R941_GM18522_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.577744", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03874/raw_data/hic/HG03874-1_FC1_S3_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "90186", - "result": "Similar", - "sampleId": "GM18522", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.34", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03874", + "totalBp": "10847832903", + "totalGbp": "10.85", "totalReads": "N/A", - "twoHundredkbPlus": "2.31", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "97.92", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021625", "ccsAlgorithm": "N/A", - "coverage": "29.67", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.5", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "05_17_22_R941_GM18522_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "05_17_22_R941_GM18522_2", - "libraryLayout": "single", + "filename": "HG03874-1_FC1_S3_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03874-1_FC1_S3_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310974", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.333979", - "oneHundredkbPlus": "13.52", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/nanopore/guppy_6/05_17_22_R941_GM18522_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.577744", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03874/raw_data/hic/HG03874-1_FC1_S3_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "92175", - "result": "Similar", - "sampleId": "GM18522", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.46", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03874", + "totalBp": "10847832903", + "totalGbp": "10.85", "totalReads": "N/A", - "twoHundredkbPlus": "3.04", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "53.19", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021625", "ccsAlgorithm": "N/A", - "coverage": "16.12", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.37", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "05_17_22_R941_GM18522_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "05_17_22_R941_GM18522_3", - "libraryLayout": "single", + "filename": "HG03874-1_FC2_S3_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03874-1_FC2_S3_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310973", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.385127", - "oneHundredkbPlus": "6.97", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/nanopore/guppy_6/05_17_22_R941_GM18522_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.546948", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03874/raw_data/hic/HG03874-1_FC2_S3_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "87553", - "result": "Similar", - "sampleId": "GM18522", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.27", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03874", + "totalBp": "10442312286", + "totalGbp": "10.44", "totalReads": "N/A", - "twoHundredkbPlus": "1.65", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "64.75", - "accession": "SAMN33758791", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021625", "ccsAlgorithm": "N/A", - "coverage": "19.62", - "dataType": "", + "coverage": "3.37", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "NG36", - "filename": "05_17_22_R941_HG03130_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.02", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "05_17_22_R941_HG03130_1", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03874-1_FC2_S3_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03874-1_FC2_S3_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310973", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.338227", - "oneHundredkbPlus": "7.17", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/nanopore/guppy_6/05_17_22_R941_HG03130_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.546948", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03874/raw_data/hic/HG03874-1_FC2_S3_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "78539", - "result": "Similar", - "sampleId": "HG03130", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "ESN", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.1", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03874", + "totalBp": "10442312286", + "totalGbp": "10.44", "totalReads": "N/A", - "twoHundredkbPlus": "1.05", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "53.19", - "accession": "SAMN33758791", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021625", "ccsAlgorithm": "N/A", - "coverage": "16.12", - "dataType": "", + "coverage": "5.62", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "NG36", - "filename": "05_17_22_R941_HG03130_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "05_17_22_R941_HG03130_2", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03874-2_FC1_S4_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03874-2_FC1_S4_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310972", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.336958", - "oneHundredkbPlus": "5.75", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/nanopore/guppy_6/05_17_22_R941_HG03130_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.546283", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03874/raw_data/hic/HG03874-2_FC1_S4_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "77435", - "result": "Similar", - "sampleId": "HG03130", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "ESN", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.08", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03874", + "totalBp": "17415838378", + "totalGbp": "17.42", "totalReads": "N/A", - "twoHundredkbPlus": "0.82", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "76.3", - "accession": "SAMN33758791", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021625", "ccsAlgorithm": "N/A", - "coverage": "23.12", - "dataType": "", + "coverage": "5.62", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "NG36", - "filename": "05_17_22_R941_HG03130_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.02", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "05_17_22_R941_HG03130_3", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03874-2_FC1_S4_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03874-2_FC1_S4_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310972", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.332566", - "oneHundredkbPlus": "8.37", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/nanopore/guppy_6/05_17_22_R941_HG03130_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.546283", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03874/raw_data/hic/HG03874-2_FC1_S4_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "77603", - "result": "Similar", - "sampleId": "HG03130", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "ESN", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.12", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03874", + "totalBp": "17415838378", + "totalGbp": "17.42", "totalReads": "N/A", - "twoHundredkbPlus": "1.25", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "61.42", - "accession": "SAMN33758792", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021625", "ccsAlgorithm": "N/A", - "coverage": "18.61", - "dataType": "", + "coverage": "5.48", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "05_17_22_R941_HG03139_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.1", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "05_17_22_R941_HG03139_1", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "filename": "HG03874-2_FC2_S4_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03874-2_FC2_S4_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310971", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.361164", - "oneHundredkbPlus": "7.98", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/nanopore/guppy_6/05_17_22_R941_HG03139_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.528561", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03874/raw_data/hic/HG03874-2_FC2_S4_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "87401", - "result": "Similar", - "sampleId": "HG03139", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "ESN", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.35", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03874", + "totalBp": "17001269237", + "totalGbp": "17", "totalReads": "N/A", - "twoHundredkbPlus": "1.75", - "whales": "5" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "67.58", - "accession": "SAMN33758792", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021625", "ccsAlgorithm": "N/A", - "coverage": "20.48", - "dataType": "", + "coverage": "5.48", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "05_17_22_R941_HG03139_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.1", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "05_17_22_R941_HG03139_2", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "filename": "HG03874-2_FC2_S4_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03874-2_FC2_S4_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310971", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.30899", - "oneHundredkbPlus": "8.82", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/nanopore/guppy_6/05_17_22_R941_HG03139_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.528561", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03874/raw_data/hic/HG03874-2_FC2_S4_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "88064", - "result": "Similar", - "sampleId": "HG03139", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "ESN", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.35", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03874", + "totalBp": "17001269237", + "totalGbp": "17", "totalReads": "N/A", - "twoHundredkbPlus": "1.84", - "whales": "12" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "61.26", - "accession": "SAMN33758792", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267386", "ccsAlgorithm": "N/A", - "coverage": "18.56", - "dataType": "", + "coverage": "6.43", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "05_17_22_R941_HG03139_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.09", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "05_17_22_R941_HG03139_3", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "filename": "HG03927-31b-1_S5_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03927-31b-1-1_S5_L001_R1_001-1_S5_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613857", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.356189", - "oneHundredkbPlus": "8", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/nanopore/guppy_6/05_17_22_R941_HG03139_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.473743", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-1_S5_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "87921", - "result": "Similar", - "sampleId": "HG03139", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "ESN", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.33", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03927", + "totalBp": "19930937049", + "totalGbp": "19.93", "totalReads": "N/A", - "twoHundredkbPlus": "1.72", - "whales": "8" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "101.17", - "accession": "SAMN33758793", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267386", "ccsAlgorithm": "N/A", - "coverage": "30.66", - "dataType": "", + "coverage": "6.43", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "05_17_22_R941_HG03209_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.07", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "05_17_22_R941_HG03209_1", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "filename": "HG03927-31b-1_S5_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03927-31b-1-1_S5_L001_R1_001-1_S5_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613857", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.338017", - "oneHundredkbPlus": "13.56", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/nanopore/guppy_6/05_17_22_R941_HG03209_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.511775", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-1_S5_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "89912", - "result": "Similar", - "sampleId": "HG03209", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "MSL", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.49", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03927", + "totalBp": "19922279998", + "totalGbp": "19.92", "totalReads": "N/A", - "twoHundredkbPlus": "3.08", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "40.63", - "accession": "SAMN33758793", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267386", "ccsAlgorithm": "N/A", - "coverage": "12.31", - "dataType": "", + "coverage": "6.28", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "05_17_22_R941_HG03209_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "05_17_22_R941_HG03209_2", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "filename": "HG03927-31b-1_S5_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03927-31b-1-1_S5_L002_R1_001-1_S5_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613856", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.339003", - "oneHundredkbPlus": "4.38", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/nanopore/guppy_6/05_17_22_R941_HG03209_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.46365", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-1_S5_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "76033", - "result": "Similar", - "sampleId": "HG03209", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "MSL", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.12", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03927", + "totalBp": "19463413043", + "totalGbp": "19.46", "totalReads": "N/A", - "twoHundredkbPlus": "0.83", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "92.31", - "accession": "SAMN33758793", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267386", "ccsAlgorithm": "N/A", - "coverage": "27.97", - "dataType": "", + "coverage": "6.28", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "05_17_22_R941_HG03209_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.06", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "05_17_22_R941_HG03209_3", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "filename": "HG03927-31b-1_S5_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03927-31b-1-1_S5_L002_R1_001-1_S5_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613856", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.312373", - "oneHundredkbPlus": "11.85", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/nanopore/guppy_6/05_17_22_R941_HG03209_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.519732", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-1_S5_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "86569", - "result": "Similar", - "sampleId": "HG03209", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "MSL", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.44", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03927", + "totalBp": "19454706232", + "totalGbp": "19.45", "totalReads": "N/A", - "twoHundredkbPlus": "2.66", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "66.68", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267386", "ccsAlgorithm": "N/A", - "coverage": "20.21", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.23", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "05_24_22_R941_GM19338_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.09", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "05_24_22_R941_GM19338_1", - "libraryLayout": "single", + "filename": "HG03927-31b-1_S5_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03927-31b-1-1_S5_L003_R1_001-1_S5_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613855", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.326651", - "oneHundredkbPlus": "9.58", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/nanopore/guppy_6/05_24_22_R941_GM19338_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.483884", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-1_S5_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "95247", - "result": "Similar", - "sampleId": "GM19338", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.46", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03927", + "totalBp": "19325757657", + "totalGbp": "19.33", "totalReads": "N/A", - "twoHundredkbPlus": "2.45", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "84.39", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267386", "ccsAlgorithm": "N/A", - "coverage": "25.57", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.23", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "05_24_22_R941_GM19338_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.12", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "05_24_22_R941_GM19338_2", - "libraryLayout": "single", + "filename": "HG03927-31b-1_S5_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03927-31b-1-1_S5_L003_R1_001-1_S5_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613855", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.305379", - "oneHundredkbPlus": "11.67", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/nanopore/guppy_6/05_24_22_R941_GM19338_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.520908", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-1_S5_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "91754", - "result": "Similar", - "sampleId": "GM19338", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.6", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03927", + "totalBp": "19317071059", + "totalGbp": "19.32", "totalReads": "N/A", - "twoHundredkbPlus": "3.03", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "64.47", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267386", "ccsAlgorithm": "N/A", - "coverage": "19.54", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.13", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "05_24_22_R941_GM19338_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.08", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "05_24_22_R941_GM19338_3", - "libraryLayout": "single", + "filename": "HG03927-31b-1_S5_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03927-31b-1-1_S5_L004_R1_001-1_S5_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613736", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.331124", - "oneHundredkbPlus": "9.19", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/nanopore/guppy_6/05_24_22_R941_GM19338_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.484124", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-1_S5_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "94485", - "result": "Similar", - "sampleId": "GM19338", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.44", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03927", + "totalBp": "18992932982", + "totalGbp": "18.99", "totalReads": "N/A", - "twoHundredkbPlus": "2.36", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "89.49", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267386", "ccsAlgorithm": "N/A", - "coverage": "27.12", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.12", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "05_24_22_R941_GM19391_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.11", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "05_24_22_R941_GM19391_1", - "libraryLayout": "single", + "filename": "HG03927-31b-1_S5_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03927-31b-1-1_S5_L004_R1_001-1_S5_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613736", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.350281", - "oneHundredkbPlus": "12.65", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/nanopore/guppy_6/05_24_22_R941_GM19391_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.533644", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-1_S5_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "93740", - "result": "Similar", - "sampleId": "GM19391", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.68", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03927", + "totalBp": "18984147383", + "totalGbp": "18.98", "totalReads": "N/A", - "twoHundredkbPlus": "3.45", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "96.08", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267386", "ccsAlgorithm": "N/A", - "coverage": "29.12", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.44", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "05_24_22_R941_GM19391_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.11", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "05_24_22_R941_GM19391_2", - "libraryLayout": "single", + "filename": "HG03927-31b-2_S6_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03927-31b-2-2_S6_L001_R1_001-2_S6_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613697", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.331306", - "oneHundredkbPlus": "13.23", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/nanopore/guppy_6/05_24_22_R941_GM19391_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.483243", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-2_S6_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "91516", - "result": "Similar", - "sampleId": "GM19391", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.67", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03927", + "totalBp": "19962262132", + "totalGbp": "19.96", "totalReads": "N/A", - "twoHundredkbPlus": "3.54", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "84.59", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267386", "ccsAlgorithm": "N/A", - "coverage": "25.63", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.44", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "05_24_22_R941_GM19391_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.1", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "05_24_22_R941_GM19391_3", - "libraryLayout": "single", + "filename": "HG03927-31b-2_S6_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03927-31b-2-2_S6_L001_R1_001-2_S6_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613697", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.359076", - "oneHundredkbPlus": "10.36", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/nanopore/guppy_6/05_24_22_R941_GM19391_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.508878", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-2_S6_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "81407", - "result": "Similar", - "sampleId": "GM19391", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.54", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03927", + "totalBp": "19952749701", + "totalGbp": "19.95", "totalReads": "N/A", - "twoHundredkbPlus": "2.73", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "89.02", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267386", "ccsAlgorithm": "N/A", - "coverage": "26.98", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.27", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "05_24_22_R941_GM19468_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "05_24_22_R941_GM19468_1", - "libraryLayout": "single", + "filename": "HG03927-31b-2_S6_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03927-31b-2-2_S6_L002_R1_001-2_S6_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613696", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.353823", - "oneHundredkbPlus": "9.24", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/nanopore/guppy_6/05_24_22_R941_GM19468_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.482071", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-2_S6_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "75210", - "result": "Similar", - "sampleId": "GM19468", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.24", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03927", + "totalBp": "19452362183", + "totalGbp": "19.45", "totalReads": "N/A", - "twoHundredkbPlus": "1.37", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "84.5", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267386", "ccsAlgorithm": "N/A", - "coverage": "25.61", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.27", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "05_24_22_R941_GM19468_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.06", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "05_24_22_R941_GM19468_2", - "libraryLayout": "single", + "filename": "HG03927-31b-2_S6_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03927-31b-2-2_S6_L002_R1_001-2_S6_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613696", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.339855", - "oneHundredkbPlus": "8.88", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/nanopore/guppy_6/05_24_22_R941_GM19468_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.516763", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-2_S6_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "75624", - "result": "Similar", - "sampleId": "GM19468", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.25", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03927", + "totalBp": "19442773803", + "totalGbp": "19.44", "totalReads": "N/A", - "twoHundredkbPlus": "1.38", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "84.38", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267386", "ccsAlgorithm": "N/A", - "coverage": "25.57", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.21", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "05_24_22_R941_GM19468_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "05_24_22_R941_GM19468_3", - "libraryLayout": "single", + "filename": "HG03927-31b-2_S6_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03927-31b-2-2_S6_L003_R1_001-2_S6_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613755", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.363104", - "oneHundredkbPlus": "8.77", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/nanopore/guppy_6/05_24_22_R941_GM19468_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.476121", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-2_S6_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "75099", - "result": "Similar", - "sampleId": "GM19468", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.24", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03927", + "totalBp": "19265354454", + "totalGbp": "19.27", "totalReads": "N/A", - "twoHundredkbPlus": "1.33", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "66.67", - "accession": "SAMN37797109", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267386", "ccsAlgorithm": "N/A", - "coverage": "20.2", - "dataType": "", + "coverage": "6.21", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "05_24_22_R941_HG03458_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.08", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "05_24_22_R941_HG03458_1", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "filename": "HG03927-31b-2_S6_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03927-31b-2-2_S6_L003_R1_001-2_S6_L003_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613755", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.328283", - "oneHundredkbPlus": "8.33", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03458/raw_data/nanopore/guppy_6/05_24_22_R941_HG03458_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.529814", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-2_S6_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "83325", - "result": "Similar", - "sampleId": "HG03458", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "MSL", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.44", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03927", + "totalBp": "19255813715", + "totalGbp": "19.26", "totalReads": "N/A", - "twoHundredkbPlus": "2.18", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "79.84", - "accession": "SAMN37797109", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267386", "ccsAlgorithm": "N/A", - "coverage": "24.19", - "dataType": "", + "coverage": "6.1", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "05_24_22_R941_HG03458_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.11", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "05_24_22_R941_HG03458_2", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "filename": "HG03927-31b-2_S6_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03927-31b-2-2_S6_L004_R1_001-2_S6_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613754", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.363894", - "oneHundredkbPlus": "9.9", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03458/raw_data/nanopore/guppy_6/05_24_22_R941_HG03458_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.465437", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-2_S6_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "82416", - "result": "Similar", - "sampleId": "HG03458", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "MSL", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.58", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03927", + "totalBp": "18894993843", + "totalGbp": "18.89", "totalReads": "N/A", - "twoHundredkbPlus": "2.67", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "78.8", - "accession": "SAMN37797109", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267386", "ccsAlgorithm": "N/A", - "coverage": "23.88", - "dataType": "", + "coverage": "6.09", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "05_24_22_R941_HG03458_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.11", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "05_24_22_R941_HG03458_3", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "filename": "HG03927-31b-2_S6_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03927-31b-2-2_S6_L004_R1_001-2_S6_L004_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613754", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.393812", - "oneHundredkbPlus": "9.59", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03458/raw_data/nanopore/guppy_6/05_24_22_R941_HG03458_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.526175", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/hic/HG03927-31b-2_S6_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "81018", - "result": "Similar", - "sampleId": "HG03458", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "MSL", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.56", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03927", + "totalBp": "18885377726", + "totalGbp": "18.89", "totalReads": "N/A", - "twoHundredkbPlus": "2.57", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "79.99", - "accession": "SAMN37797110", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267387", "ccsAlgorithm": "N/A", - "coverage": "24.24", - "dataType": "", + "coverage": "2.53", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "SL56", - "filename": "05_24_22_R941_HG03470_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.06", - "fourHundredkbPlus": "0.18", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "05_24_22_R941_HG03470_1", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03942-03b-1_S17_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03942-03b-1-1_S17_L001_R1_001-1_S17_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613752", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.364659", - "oneHundredkbPlus": "11.2", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/nanopore/guppy_6/05_24_22_R941_HG03470_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.652074", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-1_S17_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "92406", - "result": "Similar", - "sampleId": "HG03470", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "MSL", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.76", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03942", + "totalBp": "7842999270", + "totalGbp": "7.84", "totalReads": "N/A", - "twoHundredkbPlus": "3.29", - "whales": "4" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "66.47", - "accession": "SAMN37797110", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267387", "ccsAlgorithm": "N/A", - "coverage": "20.14", - "dataType": "", + "coverage": "2.53", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "SL56", - "filename": "05_24_22_R941_HG03470_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.16", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "05_24_22_R941_HG03470_2", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03942-03b-1_S17_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03942-03b-1-1_S17_L001_R1_001-1_S17_L001_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613752", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.334592", - "oneHundredkbPlus": "9.12", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/nanopore/guppy_6/05_24_22_R941_HG03470_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.635238", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-1_S17_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "90420", - "result": "Similar", - "sampleId": "HG03470", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "MSL", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.67", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03942", + "totalBp": "7842303571", + "totalGbp": "7.84", "totalReads": "N/A", - "twoHundredkbPlus": "2.73", - "whales": "8" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "74.44", - "accession": "SAMN37797110", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267387", "ccsAlgorithm": "N/A", - "coverage": "22.56", - "dataType": "", + "coverage": "2.48", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", - "familyId": "SL56", - "filename": "05_24_22_R941_HG03470_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.06", - "fourHundredkbPlus": "0.18", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "05_24_22_R941_HG03470_3", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03942-03b-1_S17_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03942-03b-1-1_S17_L002_R1_001-1_S17_L002_R2_001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613751", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.330391", - "oneHundredkbPlus": "10.33", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/nanopore/guppy_6/05_24_22_R941_HG03470_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.638892", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-1_S17_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "91609", - "result": "Similar", - "sampleId": "HG03470", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "MSL", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.74", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03942", + "totalBp": "7698423314", + "totalGbp": "7.7", "totalReads": "N/A", - "twoHundredkbPlus": "3.08", - "whales": "5" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "92.07", - "accession": "SAMN26237493", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267387", "ccsAlgorithm": "N/A", - "coverage": "27.9", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.48", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PR07", - "filename": "06_22_21_R941_HG00738_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.09", - "fourHundredkbPlus": "0.24", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_22_21_R941_HG00738_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03942-03b-1_S17_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03942-03b-1-1_S17_L002_R1_001-1_S17_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613751", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.350062", - "oneHundredkbPlus": "11", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/nanopore/guppy_6/06_22_21_R941_HG00738_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.665578", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-1_S17_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "82004", - "result": "Similar", - "sampleId": "HG00738", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PUR", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.78", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03942", + "totalBp": "7697706067", + "totalGbp": "7.7", "totalReads": "N/A", - "twoHundredkbPlus": "2.73", - "whales": "9" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "110.43", - "accession": "SAMN26267392", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267387", "ccsAlgorithm": "N/A", - "coverage": "33.46", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.41", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN081", - "filename": "06_22_21_R941_HG02135_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.08", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_22_21_R941_HG02135_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG03942-03b-1_S17_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03942-03b-1-1_S17_L003_R1_001-1_S17_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613750", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.316953", - "oneHundredkbPlus": "11.9", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/nanopore/guppy_6/06_22_21_R941_HG02135_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.656856", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-1_S17_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "75826", - "result": "Similar", - "sampleId": "HG02135", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.31", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03942", + "totalBp": "7482753413", + "totalGbp": "7.48", "totalReads": "N/A", - "twoHundredkbPlus": "2.05", - "whales": "7" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "80.7", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267387", "ccsAlgorithm": "N/A", - "coverage": "24.45", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.41", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_GM18612_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_GM18612_1", - "libraryLayout": "single", + "filename": "HG03942-03b-1_S17_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03942-03b-1-1_S17_L003_R1_001-1_S17_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613750", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.340271", - "oneHundredkbPlus": "10.34", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/nanopore/guppy_6/06_28_22_R941_GM18612_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.66571", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-1_S17_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "86342", - "result": "Similar", - "sampleId": "GM18612", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.37", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03942", + "totalBp": "7481954402", + "totalGbp": "7.48", "totalReads": "N/A", - "twoHundredkbPlus": "2.25", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "65.62", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267387", "ccsAlgorithm": "N/A", - "coverage": "19.88", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.38", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_GM18612_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.08", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_GM18612_2", - "libraryLayout": "single", + "filename": "HG03942-03b-1_S17_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03942-03b-1-1_S17_L004_R1_001-1_S17_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613749", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.369822", - "oneHundredkbPlus": "8.41", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/nanopore/guppy_6/06_28_22_R941_GM18612_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.646918", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-1_S17_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "86242", - "result": "Similar", - "sampleId": "GM18612", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.33", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03942", + "totalBp": "7389349118", + "totalGbp": "7.39", "totalReads": "N/A", - "twoHundredkbPlus": "1.89", - "whales": "5" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "92.45", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267387", "ccsAlgorithm": "N/A", - "coverage": "28.01", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.38", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_GM18612_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.1", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_GM18612_3", - "libraryLayout": "single", + "filename": "HG03942-03b-1_S17_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03942-03b-1-1_S17_L004_R1_001-1_S17_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613749", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.329798", - "oneHundredkbPlus": "11.6", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/nanopore/guppy_6/06_28_22_R941_GM18612_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.663754", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-1_S17_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "84839", - "result": "Similar", - "sampleId": "GM18612", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.42", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03942", + "totalBp": "7388766207", + "totalGbp": "7.39", "totalReads": "N/A", - "twoHundredkbPlus": "2.49", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "80.94", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267387", "ccsAlgorithm": "N/A", - "coverage": "24.53", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.72", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_GM18747_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_GM18747_1", - "libraryLayout": "single", + "filename": "HG03942-03b-2_S18_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03942-03b-2-2_S18_L001_R1_001-2_S18_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613867", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.326619", - "oneHundredkbPlus": "9.59", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/nanopore/guppy_6/06_28_22_R941_GM18747_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.654647", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-2_S18_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "79877", - "result": "Similar", - "sampleId": "GM18747", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.36", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03942", + "totalBp": "8430523831", + "totalGbp": "8.43", "totalReads": "N/A", - "twoHundredkbPlus": "2.2", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "80.89", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267387", "ccsAlgorithm": "N/A", - "coverage": "24.51", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.72", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_GM18747_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.06", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_GM18747_2", - "libraryLayout": "single", + "filename": "HG03942-03b-2_S18_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03942-03b-2-2_S18_L001_R1_001-2_S18_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613867", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.340225", - "oneHundredkbPlus": "10.02", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/nanopore/guppy_6/06_28_22_R941_GM18747_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.636859", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-2_S18_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "83080", - "result": "Similar", - "sampleId": "GM18747", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.41", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03942", + "totalBp": "8429886466", + "totalGbp": "8.43", "totalReads": "N/A", - "twoHundredkbPlus": "2.4", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "86.07", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267387", "ccsAlgorithm": "N/A", - "coverage": "26.08", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.67", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_GM18747_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.08", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_GM18747_3", - "libraryLayout": "single", + "filename": "HG03942-03b-2_S18_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03942-03b-2-2_S18_L002_R1_001-2_S18_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613748", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.330606", - "oneHundredkbPlus": "11.51", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/nanopore/guppy_6/06_28_22_R941_GM18747_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.601877", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-2_S18_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "88902", - "result": "Similar", - "sampleId": "GM18747", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.54", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03942", + "totalBp": "8274904375", + "totalGbp": "8.27", "totalReads": "N/A", - "twoHundredkbPlus": "2.97", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "81.83", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267387", "ccsAlgorithm": "N/A", - "coverage": "24.8", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.67", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_GM18971_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.1", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_GM18971_1", - "libraryLayout": "single", + "filename": "HG03942-03b-2_S18_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03942-03b-2-2_S18_L002_R1_001-2_S18_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613748", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.378314", - "oneHundredkbPlus": "9.2", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/nanopore/guppy_6/06_28_22_R941_GM18971_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.63905", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-2_S18_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "77826", - "result": "Similar", - "sampleId": "GM18971", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.33", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03942", + "totalBp": "8274235538", + "totalGbp": "8.27", "totalReads": "N/A", - "twoHundredkbPlus": "1.79", - "whales": "8" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "94.02", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267387", "ccsAlgorithm": "N/A", - "coverage": "28.49", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.6", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_GM18971_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.13", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_GM18971_2", - "libraryLayout": "single", + "filename": "HG03942-03b-2_S18_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03942-03b-2-2_S18_L003_R1_001-2_S18_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613747", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.383637", - "oneHundredkbPlus": "10.78", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/nanopore/guppy_6/06_28_22_R941_GM18971_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.631587", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-2_S18_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "78916", - "result": "Similar", - "sampleId": "GM18971", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.43", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03942", + "totalBp": "8048733217", + "totalGbp": "8.05", "totalReads": "N/A", - "twoHundredkbPlus": "2.17", - "whales": "10" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "87.74", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267387", "ccsAlgorithm": "N/A", - "coverage": "26.59", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.6", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_GM18971_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.11", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_GM18971_3", - "libraryLayout": "single", + "filename": "HG03942-03b-2_S18_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03942-03b-2-2_S18_L003_R1_001-2_S18_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613747", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.366243", - "oneHundredkbPlus": "10", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/nanopore/guppy_6/06_28_22_R941_GM18971_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.629707", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-2_S18_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "78514", - "result": "Similar", - "sampleId": "GM18971", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.39", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03942", + "totalBp": "8047983330", + "totalGbp": "8.05", "totalReads": "N/A", - "twoHundredkbPlus": "1.99", - "whales": "6" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "61.47", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267387", "ccsAlgorithm": "N/A", - "coverage": "18.63", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.56", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_GM18983_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.03", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_GM18983_1", - "libraryLayout": "single", + "filename": "HG03942-03b-2_S18_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03942-03b-2-2_S18_L004_R1_001-2_S18_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613864", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.432677", - "oneHundredkbPlus": "7.43", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/nanopore/guppy_6/06_28_22_R941_GM18983_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.64171", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-2_S18_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "82261", - "result": "Similar", - "sampleId": "GM18983", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.2", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03942", + "totalBp": "7951269056", + "totalGbp": "7.95", "totalReads": "N/A", - "twoHundredkbPlus": "1.54", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "81.5", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267387", "ccsAlgorithm": "N/A", - "coverage": "24.7", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.56", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_GM18983_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_GM18983_2", - "libraryLayout": "single", + "filename": "HG03942-03b-2_S18_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG03942-03b-2-2_S18_L004_R1_001-2_S18_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613864", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.404763", - "oneHundredkbPlus": "9.45", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/nanopore/guppy_6/06_28_22_R941_GM18983_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.657614", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/hic/HG03942-03b-2_S18_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "78875", - "result": "Similar", - "sampleId": "GM18983", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.28", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG03942", + "totalBp": "7950760086", + "totalGbp": "7.95", "totalReads": "N/A", - "twoHundredkbPlus": "1.98", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "81.73", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267388", "ccsAlgorithm": "N/A", - "coverage": "24.77", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.65", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_GM18983_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_GM18983_3", - "libraryLayout": "single", + "filename": "HG04115-13a-1_S13_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04115-13a-1-1_S13_L001_R1_001-1_S13_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613746", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.403313", - "oneHundredkbPlus": "9.52", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/nanopore/guppy_6/06_28_22_R941_GM18983_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.540219", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-1_S13_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "78929", - "result": "Similar", - "sampleId": "GM18983", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.29", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04115", + "totalBp": "20617883323", + "totalGbp": "20.62", "totalReads": "N/A", - "twoHundredkbPlus": "2.03", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "79.9", - "accession": "SAMN33621941", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267388", "ccsAlgorithm": "N/A", - "coverage": "24.21", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.65", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_HG00140_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_HG00140_1", - "libraryLayout": "single", + "filename": "HG04115-13a-1_S13_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04115-13a-1-1_S13_L001_R1_001-1_S13_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613746", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.385939", - "oneHundredkbPlus": "9.54", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/nanopore/guppy_6/06_28_22_R941_HG00140_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.531133", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-1_S13_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "81568", - "result": "Similar", - "sampleId": "HG00140", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GBR", - "superpopulation": "EUR", - "threeHundredkbPlus": "0.21", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04115", + "totalBp": "20615916990", + "totalGbp": "20.62", "totalReads": "N/A", - "twoHundredkbPlus": "1.78", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "85.83", - "accession": "SAMN33621941", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267388", "ccsAlgorithm": "N/A", - "coverage": "26.01", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.57", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_HG00140_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_HG00140_2", - "libraryLayout": "single", + "filename": "HG04115-13a-1_S13_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04115-13a-1-1_S13_L002_R1_001-1_S13_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613745", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.361734", - "oneHundredkbPlus": "10.8", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/nanopore/guppy_6/06_28_22_R941_HG00140_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.549989", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-1_S13_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "85375", - "result": "Similar", - "sampleId": "HG00140", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GBR", - "superpopulation": "EUR", - "threeHundredkbPlus": "0.24", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04115", + "totalBp": "20352979861", + "totalGbp": "20.35", "totalReads": "N/A", - "twoHundredkbPlus": "2.05", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "74.74", - "accession": "SAMN33621941", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267388", "ccsAlgorithm": "N/A", - "coverage": "22.65", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.56", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_HG00140_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_HG00140_3", - "libraryLayout": "single", + "filename": "HG04115-13a-1_S13_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04115-13a-1-1_S13_L002_R1_001-1_S13_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613745", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.354421", - "oneHundredkbPlus": "9.42", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/nanopore/guppy_6/06_28_22_R941_HG00140_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.539785", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-1_S13_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "85423", - "result": "Similar", - "sampleId": "HG00140", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GBR", - "superpopulation": "EUR", - "threeHundredkbPlus": "0.21", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04115", + "totalBp": "20350944999", + "totalGbp": "20.35", "totalReads": "N/A", - "twoHundredkbPlus": "1.79", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "58.41", - "accession": "SAMN33621942", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267388", "ccsAlgorithm": "N/A", - "coverage": "17.7", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.44", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_HG00323_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.07", - "fourHundredkbPlus": "0.2", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_HG00323_1", - "libraryLayout": "single", + "filename": "HG04115-13a-1_S13_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04115-13a-1-1_S13_L003_R1_001-1_S13_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613743", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.399829", - "oneHundredkbPlus": "7.48", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/nanopore/guppy_6/06_28_22_R941_HG00323_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.533649", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-1_S13_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "85739", - "result": "Similar", - "sampleId": "HG00323", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "FIN", - "superpopulation": "EUR", - "threeHundredkbPlus": "0.59", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04115", + "totalBp": "19968408372", + "totalGbp": "19.97", "totalReads": "N/A", - "twoHundredkbPlus": "1.96", - "whales": "4" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "72.74", - "accession": "SAMN33621942", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267388", "ccsAlgorithm": "N/A", - "coverage": "22.04", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.44", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_HG00323_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.12", - "fourHundredkbPlus": "0.3", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_HG00323_2", - "libraryLayout": "single", + "filename": "HG04115-13a-1_S13_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04115-13a-1-1_S13_L003_R1_001-1_S13_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613743", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.391998", - "oneHundredkbPlus": "9.35", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/nanopore/guppy_6/06_28_22_R941_HG00323_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.532024", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-1_S13_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "85829", - "result": "Similar", - "sampleId": "HG00323", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "FIN", - "superpopulation": "EUR", - "threeHundredkbPlus": "0.79", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04115", + "totalBp": "19966133111", + "totalGbp": "19.97", "totalReads": "N/A", - "twoHundredkbPlus": "2.5", - "whales": "14" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "69.65", - "accession": "SAMN33621942", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267388", "ccsAlgorithm": "N/A", - "coverage": "21.11", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.43", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_HG00323_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_HG00323_3", - "libraryLayout": "single", + "filename": "HG04115-13a-1_S13_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04115-13a-1-1_S13_L004_R1_001-1_S13_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613742", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.414351", - "oneHundredkbPlus": "5.56", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/nanopore/guppy_6/06_28_22_R941_HG00323_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.545437", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-1_S13_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "60729", - "result": "Similar", - "sampleId": "HG00323", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "FIN", - "superpopulation": "EUR", - "threeHundredkbPlus": "0.22", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04115", + "totalBp": "19919957611", + "totalGbp": "19.92", "totalReads": "N/A", - "twoHundredkbPlus": "0.96", - "whales": "6" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "89.9", - "accession": "SAMN33758784", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267388", "ccsAlgorithm": "N/A", - "coverage": "27.24", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.43", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_HG02040_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_HG02040_1", - "libraryLayout": "single", + "filename": "HG04115-13a-1_S13_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04115-13a-1-1_S13_L004_R1_001-1_S13_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613742", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.370728", - "oneHundredkbPlus": "11.38", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/nanopore/guppy_6/06_28_22_R941_HG02040_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.511184", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-1_S13_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "84809", - "result": "Similar", - "sampleId": "HG02040", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.48", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04115", + "totalBp": "19918289739", + "totalGbp": "19.92", "totalReads": "N/A", - "twoHundredkbPlus": "2.74", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "103.06", - "accession": "SAMN33758784", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267388", "ccsAlgorithm": "N/A", - "coverage": "31.23", - "dataType": "unaligned reads with 5mC mods", + "coverage": "20", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_HG02040_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.09", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_HG02040_2", - "libraryLayout": "single", + "filename": "HG04115-13a-2_S14_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04115-13a-2-2_S14_L001_R1_001-2_S14_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613741", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.35563", - "oneHundredkbPlus": "13.59", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/nanopore/guppy_6/06_28_22_R941_HG02040_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.472046", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-2_S14_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "88092", - "result": "Similar", - "sampleId": "HG02040", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.58", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04115", + "totalBp": "61985927860", + "totalGbp": "61.99", "totalReads": "N/A", - "twoHundredkbPlus": "3.31", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "79.82", - "accession": "SAMN33758784", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267388", "ccsAlgorithm": "N/A", - "coverage": "24.19", - "dataType": "unaligned reads with 5mC mods", + "coverage": "19.99", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_HG02040_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_HG02040_3", - "libraryLayout": "single", + "filename": "HG04115-13a-2_S14_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04115-13a-2-2_S14_L001_R1_001-2_S14_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613741", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.356216", - "oneHundredkbPlus": "9.27", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/nanopore/guppy_6/06_28_22_R941_HG02040_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.474275", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-2_S14_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "79018", - "result": "Similar", - "sampleId": "HG02040", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.34", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04115", + "totalBp": "61980073015", + "totalGbp": "61.98", "totalReads": "N/A", - "twoHundredkbPlus": "2.07", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "77.69", - "accession": "SAMN33621951", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267388", "ccsAlgorithm": "N/A", - "coverage": "23.54", - "dataType": "unaligned reads with 5mC mods", + "coverage": "19.73", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_HG02155_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_HG02155_1", - "libraryLayout": "single", + "filename": "HG04115-13a-2_S14_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04115-13a-2-2_S14_L002_R1_001-2_S14_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613740", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.393689", - "oneHundredkbPlus": "8.68", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/nanopore/guppy_6/06_28_22_R941_HG02155_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.502552", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-2_S14_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "77287", - "result": "Similar", - "sampleId": "HG02155", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CDX", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.26", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04115", + "totalBp": "61176166187", + "totalGbp": "61.18", "totalReads": "N/A", - "twoHundredkbPlus": "1.74", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "85.86", - "accession": "SAMN33621951", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267388", "ccsAlgorithm": "N/A", - "coverage": "26.02", - "dataType": "unaligned reads with 5mC mods", + "coverage": "19.73", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_HG02155_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.12", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_HG02155_2", - "libraryLayout": "single", + "filename": "HG04115-13a-2_S14_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04115-13a-2-2_S14_L002_R1_001-2_S14_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613740", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.372588", - "oneHundredkbPlus": "11.23", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/nanopore/guppy_6/06_28_22_R941_HG02155_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.457035", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-2_S14_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "87421", - "result": "Similar", - "sampleId": "HG02155", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CDX", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.49", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04115", + "totalBp": "61170163638", + "totalGbp": "61.17", "totalReads": "N/A", - "twoHundredkbPlus": "2.68", - "whales": "10" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "86.15", - "accession": "SAMN33621951", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267388", "ccsAlgorithm": "N/A", - "coverage": "26.11", - "dataType": "unaligned reads with 5mC mods", + "coverage": "19.43", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_HG02155_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.12", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_HG02155_3", - "libraryLayout": "single", + "filename": "HG04115-13a-2_S14_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04115-13a-2-2_S14_L003_R1_001-2_S14_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613739", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.395328", - "oneHundredkbPlus": "10.95", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/nanopore/guppy_6/06_28_22_R941_HG02155_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.452494", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-2_S14_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "85506", - "result": "Similar", - "sampleId": "HG02155", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CDX", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.47", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04115", + "totalBp": "60245706177", + "totalGbp": "60.25", "totalReads": "N/A", - "twoHundredkbPlus": "2.58", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "74.64", - "accession": "SAMN33758785", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267388", "ccsAlgorithm": "N/A", - "coverage": "22.62", - "dataType": "unaligned reads with 5mC mods", + "coverage": "19.43", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_HG02165_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_HG02165_1", - "libraryLayout": "single", + "filename": "HG04115-13a-2_S14_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04115-13a-2-2_S14_L003_R1_001-2_S14_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613739", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.377173", - "oneHundredkbPlus": "9.25", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/nanopore/guppy_6/06_28_22_R941_HG02165_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.4547", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-2_S14_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "83115", - "result": "Similar", - "sampleId": "HG02165", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CDX", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.42", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04115", + "totalBp": "60238866306", + "totalGbp": "60.24", "totalReads": "N/A", - "twoHundredkbPlus": "2.26", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "70.71", - "accession": "SAMN33758785", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267388", "ccsAlgorithm": "N/A", - "coverage": "21.43", - "dataType": "unaligned reads with 5mC mods", + "coverage": "19.4", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_HG02165_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.09", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_HG02165_2", - "libraryLayout": "single", + "filename": "HG04115-13a-2_S14_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04115-13a-2-2_S14_L004_R1_001-2_S14_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613738", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.376957", - "oneHundredkbPlus": "9.6", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/nanopore/guppy_6/06_28_22_R941_HG02165_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.485094", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-2_S14_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "90174", - "result": "Similar", - "sampleId": "HG02165", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CDX", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.48", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04115", + "totalBp": "60147002875", + "totalGbp": "60.15", "totalReads": "N/A", - "twoHundredkbPlus": "2.48", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "75.21", - "accession": "SAMN33758785", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267388", "ccsAlgorithm": "N/A", - "coverage": "22.79", - "dataType": "unaligned reads with 5mC mods", + "coverage": "19.4", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "06_28_22_R941_HG02165_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.12", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_HG02165_3", - "libraryLayout": "single", + "filename": "HG04115-13a-2_S14_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04115-13a-2-2_S14_L004_R1_001-2_S14_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613738", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.38002", - "oneHundredkbPlus": "11.34", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/nanopore/guppy_6/06_28_22_R941_HG02165_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.462515", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/hic/HG04115-13a-2_S14_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "99543", - "result": "Similar", - "sampleId": "HG02165", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CDX", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.64", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04115", + "totalBp": "60142087825", + "totalGbp": "60.14", "totalReads": "N/A", - "twoHundredkbPlus": "3.19", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "102.34", - "accession": "SAMN33758788", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706909", "ccsAlgorithm": "N/A", - "coverage": "31.01", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.6", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "NG06", - "filename": "06_28_22_R941_HG02922_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.1", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_HG02922_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04157-05ab-1_S5_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04157-05ab-1-1_S5_L001_R1_001-1_S5_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613737", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.357278", - "oneHundredkbPlus": "12.93", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/nanopore/guppy_6/06_28_22_R941_HG02922_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.506971", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-1_S5_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "84324", - "result": "Similar", - "sampleId": "HG02922", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ESN", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.6", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04157", + "totalBp": "29751939688", + "totalGbp": "29.75", "totalReads": "N/A", - "twoHundredkbPlus": "3.24", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "102.21", - "accession": "SAMN33758788", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706909", "ccsAlgorithm": "N/A", - "coverage": "30.97", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.6", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "NG06", - "filename": "06_28_22_R941_HG02922_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.1", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_HG02922_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04157-05ab-1_S5_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04157-05ab-1-1_S5_L001_R1_001-1_S5_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613737", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.368987", - "oneHundredkbPlus": "13.1", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/nanopore/guppy_6/06_28_22_R941_HG02922_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.462751", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-1_S5_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "85325", - "result": "Similar", - "sampleId": "HG02922", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ESN", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.64", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04157", + "totalBp": "29750695033", + "totalGbp": "29.75", "totalReads": "N/A", - "twoHundredkbPlus": "3.37", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "83.8", - "accession": "SAMN33758788", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706909", "ccsAlgorithm": "N/A", - "coverage": "25.39", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.58", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "NG06", - "filename": "06_28_22_R941_HG02922_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "06_28_22_R941_HG02922_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04157-05ab-1_S5_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04157-05ab-1-1_S5_L002_R1_001-1_S5_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613735", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.361226", - "oneHundredkbPlus": "9.18", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/nanopore/guppy_6/06_28_22_R941_HG02922_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.47031", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-1_S5_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "74004", - "result": "Similar", - "sampleId": "HG02922", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ESN", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.42", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04157", + "totalBp": "29713481157", + "totalGbp": "29.71", "totalReads": "N/A", - "twoHundredkbPlus": "2.2", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "78.86", - "accession": "SAMN26237491", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706909", "ccsAlgorithm": "N/A", - "coverage": "23.9", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.58", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH042", - "filename": "07_13_21_R941_HG00544_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_13_21_R941_HG00544_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04157-05ab-1_S5_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04157-05ab-1-1_S5_L002_R1_001-1_S5_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613735", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.365332", - "oneHundredkbPlus": "5.66", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/nanopore/guppy_6/07_13_21_R941_HG00544_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.493741", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-1_S5_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "62807", - "result": "Similar", - "sampleId": "HG00544", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.09", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04157", + "totalBp": "29712134644", + "totalGbp": "29.71", "totalReads": "N/A", - "twoHundredkbPlus": "0.56", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "70.63", - "accession": "SAMN26237491", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706909", "ccsAlgorithm": "N/A", - "coverage": "21.4", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.61", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH042", - "filename": "07_13_21_R941_HG00544_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_13_21_R941_HG00544_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04157-05ab-1_S5_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04157-05ab-1-1_S5_L003_R1_001-1_S5_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613674", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.360982", - "oneHundredkbPlus": "4.89", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/nanopore/guppy_6/07_13_21_R941_HG00544_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.4956", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-1_S5_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "62839", - "result": "Similar", - "sampleId": "HG00544", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.05", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04157", + "totalBp": "29787634481", + "totalGbp": "29.79", "totalReads": "N/A", - "twoHundredkbPlus": "0.38", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "76.46", - "accession": "SAMN26237491", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706909", "ccsAlgorithm": "N/A", - "coverage": "23.17", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.61", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH042", - "filename": "07_13_21_R941_HG00544_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_13_21_R941_HG00544_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04157-05ab-1_S5_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04157-05ab-1-1_S5_L003_R1_001-1_S5_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613674", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.354387", - "oneHundredkbPlus": "5.68", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/nanopore/guppy_6/07_13_21_R941_HG00544_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.502371", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-1_S5_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "65631", - "result": "Similar", - "sampleId": "HG00544", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.06", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04157", + "totalBp": "29786130368", + "totalGbp": "29.79", "totalReads": "N/A", - "twoHundredkbPlus": "0.43", - "whales": "4" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "74.09", - "accession": "SAMN37706905", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706909", "ccsAlgorithm": "N/A", - "coverage": "22.45", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.54", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH090", - "filename": "07_13_21_R941_HG00706_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.03", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_13_21_R941_HG00706_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04157-05ab-1_S5_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04157-05ab-1-1_S5_L004_R1_001-1_S5_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613601", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.345581", - "oneHundredkbPlus": "7.11", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/nanopore/guppy_6/07_13_21_R941_HG00706_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.507299", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-1_S5_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "72401", - "result": "Similar", - "sampleId": "HG00706", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.14", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04157", + "totalBp": "29571930294", + "totalGbp": "29.57", "totalReads": "N/A", - "twoHundredkbPlus": "0.93", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "89.85", - "accession": "SAMN37706905", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706909", "ccsAlgorithm": "N/A", - "coverage": "27.23", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.54", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH090", - "filename": "07_13_21_R941_HG00706_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_13_21_R941_HG00706_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04157-05ab-1_S5_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04157-05ab-1-1_S5_L004_R1_001-1_S5_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613601", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.348804", - "oneHundredkbPlus": "8.6", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/nanopore/guppy_6/07_13_21_R941_HG00706_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.486058", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-1_S5_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "72132", - "result": "Similar", - "sampleId": "HG00706", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.19", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04157", + "totalBp": "29570131624", + "totalGbp": "29.57", "totalReads": "N/A", - "twoHundredkbPlus": "1.16", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "74.34", - "accession": "SAMN37706905", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706909", "ccsAlgorithm": "N/A", - "coverage": "22.53", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.75", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH090", - "filename": "07_13_21_R941_HG00706_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.03", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_13_21_R941_HG00706_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04157-05ab-2_S6_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04157-05ab-2-2_S6_L001_R1_001-2_S6_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613693", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.323904", - "oneHundredkbPlus": "7.12", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/nanopore/guppy_6/07_13_21_R941_HG00706_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.486119", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-2_S6_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "72386", - "result": "Similar", - "sampleId": "HG00706", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.14", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04157", + "totalBp": "30231796085", + "totalGbp": "30.23", "totalReads": "N/A", - "twoHundredkbPlus": "0.93", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "78.47", - "accession": "SAMN26237493", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706909", "ccsAlgorithm": "N/A", - "coverage": "23.78", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.75", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PR07", - "filename": "07_13_21_R941_HG00738_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_13_21_R941_HG00738_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04157-05ab-2_S6_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04157-05ab-2-2_S6_L001_R1_001-2_S6_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613693", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.350161", - "oneHundredkbPlus": "7.47", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/nanopore/guppy_6/07_13_21_R941_HG00738_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.471787", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-2_S6_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "72927", - "result": "Similar", - "sampleId": "HG00738", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PUR", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.1", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04157", + "totalBp": "30230417094", + "totalGbp": "30.23", "totalReads": "N/A", - "twoHundredkbPlus": "0.92", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "88.09", - "accession": "SAMN26237493", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706909", "ccsAlgorithm": "N/A", - "coverage": "26.69", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.75", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PR07", - "filename": "07_13_21_R941_HG00738_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_13_21_R941_HG00738_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04157-05ab-2_S6_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04157-05ab-2-2_S6_L002_R1_001-2_S6_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613692", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.347786", - "oneHundredkbPlus": "8.23", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/nanopore/guppy_6/07_13_21_R941_HG00738_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.486435", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-2_S6_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "71965", - "result": "Similar", - "sampleId": "HG00738", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PUR", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.13", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04157", + "totalBp": "30211523180", + "totalGbp": "30.21", "totalReads": "N/A", - "twoHundredkbPlus": "1.03", - "whales": "5" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "61.74", - "accession": "SAMN26237495", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706909", "ccsAlgorithm": "N/A", - "coverage": "18.71", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.75", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "CLM15", - "filename": "07_13_21_R941_HG01255_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_13_21_R941_HG01255_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04157-05ab-2_S6_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04157-05ab-2-2_S6_L002_R1_001-2_S6_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613692", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.364765", - "oneHundredkbPlus": "6.38", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/nanopore/guppy_6/07_13_21_R941_HG01255_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.45341", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-2_S6_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "76438", - "result": "Similar", - "sampleId": "HG01255", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CLM", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.05", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04157", + "totalBp": "30210016127", + "totalGbp": "30.21", "totalReads": "N/A", - "twoHundredkbPlus": "0.62", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "88.28", - "accession": "SAMN26237495", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706909", "ccsAlgorithm": "N/A", - "coverage": "26.75", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.78", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "CLM15", - "filename": "07_13_21_R941_HG01255_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_13_21_R941_HG01255_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04157-05ab-2_S6_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04157-05ab-2-2_S6_L003_R1_001-2_S6_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613691", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.365546", - "oneHundredkbPlus": "8.92", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/nanopore/guppy_6/07_13_21_R941_HG01255_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.488748", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-2_S6_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "75335", - "result": "Similar", - "sampleId": "HG01255", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CLM", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.07", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04157", + "totalBp": "30332207300", + "totalGbp": "30.33", "totalReads": "N/A", - "twoHundredkbPlus": "0.85", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "106.24", - "accession": "SAMN26237495", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706909", "ccsAlgorithm": "N/A", - "coverage": "32.19", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.78", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "CLM15", - "filename": "07_13_21_R941_HG01255_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_13_21_R941_HG01255_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04157-05ab-2_S6_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04157-05ab-2-2_S6_L003_R1_001-2_S6_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613691", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.381373", - "oneHundredkbPlus": "11.21", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/nanopore/guppy_6/07_13_21_R941_HG01255_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.478349", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-2_S6_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "77211", - "result": "Similar", - "sampleId": "HG01255", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CLM", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.13", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04157", + "totalBp": "30330571618", + "totalGbp": "30.33", "totalReads": "N/A", - "twoHundredkbPlus": "1.24", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "94.47", - "accession": "SAMN26267380", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706909", "ccsAlgorithm": "N/A", - "coverage": "28.63", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.67", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN065", - "filename": "07_13_21_R941_HG02071_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_13_21_R941_HG02071_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04157-05ab-2_S6_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04157-05ab-2-2_S6_L004_R1_001-2_S6_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613690", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.328543", - "oneHundredkbPlus": "7.61", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/nanopore/guppy_6/07_13_21_R941_HG02071_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.474301", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-2_S6_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "68103", - "result": "Similar", - "sampleId": "HG02071", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.03", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04157", + "totalBp": "29968070158", + "totalGbp": "29.97", "totalReads": "N/A", - "twoHundredkbPlus": "0.38", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "105.36", - "accession": "SAMN26267380", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706909", "ccsAlgorithm": "N/A", - "coverage": "31.93", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.67", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN065", - "filename": "07_13_21_R941_HG02071_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_13_21_R941_HG02071_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04157-05ab-2_S6_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04157-05ab-2-2_S6_L004_R1_001-2_S6_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613690", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.315385", - "oneHundredkbPlus": "8.45", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/nanopore/guppy_6/07_13_21_R941_HG02071_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.481968", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/hic/HG04157-05ab-2_S6_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "67686", - "result": "Similar", - "sampleId": "HG02071", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.05", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04157", + "totalBp": "29966136363", + "totalGbp": "29.97", "totalReads": "N/A", - "twoHundredkbPlus": "0.49", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "60.19", - "accession": "SAMN26267380", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706910", "ccsAlgorithm": "N/A", - "coverage": "18.24", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.07", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN065", - "filename": "07_13_21_R941_HG02071_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_13_21_R941_HG02071_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04160-02b-1_S1_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04160-02b-1-1_S1_L001_R1_001-1_S1_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613689", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.335713", - "oneHundredkbPlus": "4.76", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/nanopore/guppy_6/07_13_21_R941_HG02071_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.597358", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-1_S1_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "67347", - "result": "Similar", - "sampleId": "HG02071", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.02", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04160", + "totalBp": "9528554532", + "totalGbp": "9.53", "totalReads": "N/A", - "twoHundredkbPlus": "0.25", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "88.36", - "accession": "SAMN26267381", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706910", "ccsAlgorithm": "N/A", - "coverage": "26.78", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.07", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN066", - "filename": "07_13_21_R941_HG02074_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_13_21_R941_HG02074_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04160-02b-1_S1_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04160-02b-1-1_S1_L001_R1_001-1_S1_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613689", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.238384", - "oneHundredkbPlus": "6.32", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/nanopore/guppy_6/07_13_21_R941_HG02074_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.624041", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-1_S1_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "62895", - "result": "Similar", - "sampleId": "HG02074", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.02", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04160", + "totalBp": "9527643282", + "totalGbp": "9.53", "totalReads": "N/A", - "twoHundredkbPlus": "0.32", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "93.19", - "accession": "SAMN26267381", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706910", "ccsAlgorithm": "N/A", - "coverage": "28.24", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.97", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN066", - "filename": "07_13_21_R941_HG02074_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_13_21_R941_HG02074_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04160-02b-1_S1_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04160-02b-1-1_S1_L002_R1_001-1_S1_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613688", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.253961", - "oneHundredkbPlus": "6.81", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/nanopore/guppy_6/07_13_21_R941_HG02074_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.649781", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-1_S1_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "62972", - "result": "Similar", - "sampleId": "HG02074", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.05", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04160", + "totalBp": "9198479754", + "totalGbp": "9.2", "totalReads": "N/A", - "twoHundredkbPlus": "0.46", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "78.64", - "accession": "SAMN26267381", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706910", "ccsAlgorithm": "N/A", - "coverage": "23.83", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.97", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN066", - "filename": "07_13_21_R941_HG02074_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_13_21_R941_HG02074_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04160-02b-1_S1_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04160-02b-1-1_S1_L002_R1_001-1_S1_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613688", "min": "N/A", "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.282248", - "oneHundredkbPlus": "5.53", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/nanopore/guppy_6/07_13_21_R941_HG02074_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "n25": "N/A", + "n50": "N/A", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.632486", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-1_S1_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "62011", - "result": "Similar", - "sampleId": "HG02074", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.03", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04160", + "totalBp": "9197550478", + "totalGbp": "9.2", "totalReads": "N/A", - "twoHundredkbPlus": "0.31", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "99.88", - "accession": "SAMN26267382", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706910", "ccsAlgorithm": "N/A", - "coverage": "30.27", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.83", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN080", - "filename": "07_13_21_R941_HG02132_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.03", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_13_21_R941_HG02132_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04160-02b-1_S1_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04160-02b-1-1_S1_L003_R1_001-1_S1_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613687", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.375313", - "oneHundredkbPlus": "10.21", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/nanopore/guppy_6/07_13_21_R941_HG02132_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.659831", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-1_S1_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "74492", - "result": "Similar", - "sampleId": "HG02132", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.15", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04160", + "totalBp": "8774084267", + "totalGbp": "8.77", "totalReads": "N/A", - "twoHundredkbPlus": "1.31", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "45.44", - "accession": "SAMN26267382", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706910", "ccsAlgorithm": "N/A", - "coverage": "13.77", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.83", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN080", - "filename": "07_13_21_R941_HG02132_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_13_21_R941_HG02132_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04160-02b-1_S1_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04160-02b-1-1_S1_L003_R1_001-1_S1_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613687", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.36073", - "oneHundredkbPlus": "4.61", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/nanopore/guppy_6/07_13_21_R941_HG02132_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.622362", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-1_S1_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "74076", - "result": "Similar", - "sampleId": "HG02132", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.06", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04160", + "totalBp": "8773108336", + "totalGbp": "8.77", "totalReads": "N/A", - "twoHundredkbPlus": "0.57", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "82.68", - "accession": "SAMN26267382", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706910", "ccsAlgorithm": "N/A", - "coverage": "25.05", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.93", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN080", - "filename": "07_13_21_R941_HG02132_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_13_21_R941_HG02132_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04160-02b-1_S1_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04160-02b-1-1_S1_L004_R1_001-1_S1_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613686", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.377674", - "oneHundredkbPlus": "8.1", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/nanopore/guppy_6/07_13_21_R941_HG02132_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.63284", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-1_S1_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "72221", - "result": "Similar", - "sampleId": "HG02132", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.12", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04160", + "totalBp": "9096577243", + "totalGbp": "9.1", "totalReads": "N/A", - "twoHundredkbPlus": "1.02", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "47.95", - "accession": "SAMN26267392", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706910", "ccsAlgorithm": "N/A", - "coverage": "14.53", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.93", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN081", - "filename": "07_13_21_R941_HG02135_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_13_21_R941_HG02135_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04160-02b-1_S1_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04160-02b-1-1_S1_L004_R1_001-1_S1_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613686", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.32118", - "oneHundredkbPlus": "4.62", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/nanopore/guppy_6/07_13_21_R941_HG02135_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.638265", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-1_S1_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "72386", - "result": "Similar", - "sampleId": "HG02135", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.05", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04160", + "totalBp": "9095821577", + "totalGbp": "9.1", "totalReads": "N/A", - "twoHundredkbPlus": "0.5", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "92.79", - "accession": "SAMN26267392", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706910", "ccsAlgorithm": "N/A", - "coverage": "28.12", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.24", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN081", - "filename": "07_13_21_R941_HG02135_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.03", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_13_21_R941_HG02135_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04160-02b-2_S2_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04160-02b-2-2_S2_L001_R1_001-2_S2_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613685", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.310944", - "oneHundredkbPlus": "8.8", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/nanopore/guppy_6/07_13_21_R941_HG02135_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.620343", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-2_S2_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "71374", - "result": "Similar", - "sampleId": "HG02135", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.12", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04160", + "totalBp": "10046127610", + "totalGbp": "10.05", "totalReads": "N/A", - "twoHundredkbPlus": "1", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "106.62", - "accession": "SAMN26237507", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706910", "ccsAlgorithm": "N/A", - "coverage": "32.31", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.24", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK09", - "filename": "07_20_21_R941_HG02602_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG02602_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04160-02b-2_S2_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04160-02b-2-2_S2_L001_R1_001-2_S2_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613685", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.323213", - "oneHundredkbPlus": "8.03", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/nanopore/guppy_6/07_20_21_R941_HG02602_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.615665", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-2_S2_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "65361", - "result": "Similar", - "sampleId": "HG02602", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.05", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04160", + "totalBp": "10045269440", + "totalGbp": "10.05", "totalReads": "N/A", - "twoHundredkbPlus": "0.54", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "96.1", - "accession": "SAMN26237507", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706910", "ccsAlgorithm": "N/A", - "coverage": "29.12", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.19", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK09", - "filename": "07_20_21_R941_HG02602_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG02602_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04160-02b-2_S2_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04160-02b-2-2_S2_L002_R1_001-2_S2_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613684", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.341738", - "oneHundredkbPlus": "6.93", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/nanopore/guppy_6/07_20_21_R941_HG02602_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.622091", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-2_S2_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "63774", - "result": "Similar", - "sampleId": "HG02602", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.04", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04160", + "totalBp": "9893009893", + "totalGbp": "9.89", "totalReads": "N/A", - "twoHundredkbPlus": "0.46", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "71.47", - "accession": "SAMN26237507", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706910", "ccsAlgorithm": "N/A", - "coverage": "21.66", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.19", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK09", - "filename": "07_20_21_R941_HG02602_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG02602_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04160-02b-2_S2_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04160-02b-2-2_S2_L002_R1_001-2_S2_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613684", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.344395", - "oneHundredkbPlus": "5.14", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/nanopore/guppy_6/07_20_21_R941_HG02602_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.586769", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-2_S2_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "63732", - "result": "Similar", - "sampleId": "HG02602", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.03", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04160", + "totalBp": "9892142440", + "totalGbp": "9.89", "totalReads": "N/A", - "twoHundredkbPlus": "0.32", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "92.07", - "accession": "SAMN26237508", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706910", "ccsAlgorithm": "N/A", - "coverage": "27.9", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.12", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "GB29", - "filename": "07_20_21_R941_HG02615_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG02615_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04160-02b-2_S2_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04160-02b-2-2_S2_L003_R1_001-2_S2_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613682", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.28681", - "oneHundredkbPlus": "8.59", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/nanopore/guppy_6/07_20_21_R941_HG02615_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.604697", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-2_S2_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "70878", - "result": "Similar", - "sampleId": "HG02615", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.07", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04160", + "totalBp": "9661773317", + "totalGbp": "9.66", "totalReads": "N/A", - "twoHundredkbPlus": "0.92", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "97.5", - "accession": "SAMN26237508", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706910", "ccsAlgorithm": "N/A", - "coverage": "29.54", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.12", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "GB29", - "filename": "07_20_21_R941_HG02615_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG02615_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04160-02b-2_S2_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04160-02b-2-2_S2_L003_R1_001-2_S2_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613682", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.282447", - "oneHundredkbPlus": "8.96", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/nanopore/guppy_6/07_20_21_R941_HG02615_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.583466", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-2_S2_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "70070", - "result": "Similar", - "sampleId": "HG02615", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.09", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04160", + "totalBp": "9660787742", + "totalGbp": "9.66", "totalReads": "N/A", - "twoHundredkbPlus": "0.98", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "37.46", - "accession": "SAMN26237508", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706910", "ccsAlgorithm": "N/A", - "coverage": "11.35", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.1", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "GB29", - "filename": "07_20_21_R941_HG02615_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG02615_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04160-02b-2_S2_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04160-02b-2-2_S2_L004_R1_001-2_S2_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613681", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.352641", - "oneHundredkbPlus": "3.37", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/nanopore/guppy_6/07_20_21_R941_HG02615_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.636818", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-2_S2_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "68679", - "result": "Similar", - "sampleId": "HG02615", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.04", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04160", + "totalBp": "9619122860", + "totalGbp": "9.62", "totalReads": "N/A", - "twoHundredkbPlus": "0.4", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "54.64", - "accession": "SAMN37706906", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706910", "ccsAlgorithm": "N/A", - "coverage": "16.56", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.1", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "GB40", - "filename": "07_20_21_R941_HG02668_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG02668_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04160-02b-2_S2_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04160-02b-2-2_S2_L004_R1_001-2_S2_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613681", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.330569", - "oneHundredkbPlus": "4.43", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02668/raw_data/nanopore/guppy_6/07_20_21_R941_HG02668_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.612808", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/hic/HG04160-02b-2_S2_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "67467", - "result": "Similar", - "sampleId": "HG02668", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.02", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04160", + "totalBp": "9618407789", + "totalGbp": "9.62", "totalReads": "N/A", - "twoHundredkbPlus": "0.26", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "69.45", - "accession": "SAMN37706906", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267397", "ccsAlgorithm": "N/A", - "coverage": "21.05", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.31", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "GB40", - "filename": "07_20_21_R941_HG02668_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG02668_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04184-39a-1_S11_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04184-39a-1-1_S11_L001_R1_001-1_S11_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613680", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.319356", - "oneHundredkbPlus": "5.95", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02668/raw_data/nanopore/guppy_6/07_20_21_R941_HG02668_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.572385", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-1_S11_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", - "quartile75": "N/A", - "readN50": "69535", - "result": "Similar", - "sampleId": "HG02668", - "seqKit": "SQK-ULK001", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.04", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04184", + "totalBp": "16473593004", + "totalGbp": "16.47", "totalReads": "N/A", - "twoHundredkbPlus": "0.4", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "54.16", - "accession": "SAMN37706906", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267397", "ccsAlgorithm": "N/A", - "coverage": "16.41", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.31", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "GB40", - "filename": "07_20_21_R941_HG02668_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG02668_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04184-39a-1_S11_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04184-39a-1-1_S11_L001_R1_001-1_S11_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613680", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.343288", - "oneHundredkbPlus": "4.42", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02668/raw_data/nanopore/guppy_6/07_20_21_R941_HG02668_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.513647", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-1_S11_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "67023", - "result": "Similar", - "sampleId": "HG02668", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.04", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04184", + "totalBp": "16473348787", + "totalGbp": "16.47", "totalReads": "N/A", - "twoHundredkbPlus": "0.33", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "114.21", - "accession": "SAMN26237509", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267397", "ccsAlgorithm": "N/A", - "coverage": "34.61", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.17", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK21", - "filename": "07_20_21_R941_HG02698_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG02698_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04184-39a-1_S11_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04184-39a-1-1_S11_L002_R1_001-1_S11_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613679", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.271365", - "oneHundredkbPlus": "9.89", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/nanopore/guppy_6/07_20_21_R941_HG02698_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.560357", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-1_S11_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "70225", - "result": "Similar", - "sampleId": "HG02698", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.08", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04184", + "totalBp": "12938391197", + "totalGbp": "12.94", "totalReads": "N/A", - "twoHundredkbPlus": "0.7", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "23.99", - "accession": "SAMN26237509", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267397", "ccsAlgorithm": "N/A", - "coverage": "7.27", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.17", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK21", - "filename": "07_20_21_R941_HG02698_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG02698_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04184-39a-1_S11_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04184-39a-1-1_S11_L002_R1_001-1_S11_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613679", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.389891", - "oneHundredkbPlus": "1.95", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/nanopore/guppy_6/07_20_21_R941_HG02698_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.543364", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-1_S11_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "67825", - "result": "Similar", - "sampleId": "HG02698", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.02", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04184", + "totalBp": "12938409728", + "totalGbp": "12.94", "totalReads": "N/A", - "twoHundredkbPlus": "0.14", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "23.2", - "accession": "SAMN26237509", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267397", "ccsAlgorithm": "N/A", - "coverage": "7.03", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.28", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK21", - "filename": "07_20_21_R941_HG02698_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG02698_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04184-39a-1_S11_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04184-39a-1-1_S11_L003_R1_001-1_S11_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613678", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.39883", - "oneHundredkbPlus": "1.79", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/nanopore/guppy_6/07_20_21_R941_HG02698_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.552283", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-1_S11_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "64031", - "result": "Similar", - "sampleId": "HG02698", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.03", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04184", + "totalBp": "13262134704", + "totalGbp": "13.26", "totalReads": "N/A", - "twoHundredkbPlus": "0.17", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "91.79", - "accession": "SAMN26237509", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267397", "ccsAlgorithm": "N/A", - "coverage": "27.81", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.28", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK21", - "filename": "07_20_21_R941_HG02698_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG02698_4", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04184-39a-1_S11_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04184-39a-1-1_S11_L003_R1_001-1_S11_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613678", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.316759", - "oneHundredkbPlus": "7.5", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/nanopore/guppy_6/07_20_21_R941_HG02698_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.540322", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-1_S11_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "67680", - "result": "Similar", - "sampleId": "HG02698", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.07", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04184", + "totalBp": "13261883008", + "totalGbp": "13.26", "totalReads": "N/A", - "twoHundredkbPlus": "0.55", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "19.6", - "accession": "SAMN26237509", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267397", "ccsAlgorithm": "N/A", - "coverage": "5.94", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.23", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK21", - "filename": "07_20_21_R941_HG02698_5_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG02698_5", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04184-39a-1_S11_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04184-39a-1-1_S11_L004_R1_001-1_S11_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613677", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.370307", - "oneHundredkbPlus": "1.6", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/nanopore/guppy_6/07_20_21_R941_HG02698_5_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.582623", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-1_S11_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "67466", - "result": "Similar", - "sampleId": "HG02698", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.02", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04184", + "totalBp": "16200346143", + "totalGbp": "16.2", "totalReads": "N/A", - "twoHundredkbPlus": "0.12", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "83.88", - "accession": "SAMN26237513", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267397", "ccsAlgorithm": "N/A", - "coverage": "25.42", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.23", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK62", - "filename": "07_20_21_R941_HG03710_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.06", - "fourHundredkbPlus": "0.15", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG03710_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04184-39a-1_S11_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04184-39a-1-1_S11_L004_R1_001-1_S11_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613677", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.315969", - "oneHundredkbPlus": "8.19", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/nanopore/guppy_6/07_20_21_R941_HG03710_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.527235", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-1_S11_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "70962", - "result": "Similar", - "sampleId": "HG03710", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.44", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04184", + "totalBp": "16200161284", + "totalGbp": "16.2", "totalReads": "N/A", - "twoHundredkbPlus": "1.64", - "whales": "9" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "7.22", - "accession": "SAMN26237513", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267397", "ccsAlgorithm": "N/A", - "coverage": "2.19", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.78", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK62", - "filename": "07_20_21_R941_HG03710_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG03710_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04184-39a-2_S12_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04184-39a-2-2_S12_L001_R1_001-2_S12_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613676", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.53917", - "oneHundredkbPlus": "0.72", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/nanopore/guppy_6/07_20_21_R941_HG03710_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.568062", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-2_S12_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "72459", - "result": "Similar", - "sampleId": "HG03710", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.05", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04184", + "totalBp": "17912106062", + "totalGbp": "17.91", "totalReads": "N/A", - "twoHundredkbPlus": "0.16", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "100.83", - "accession": "SAMN26237513", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267397", "ccsAlgorithm": "N/A", - "coverage": "30.55", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.78", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK62", - "filename": "07_20_21_R941_HG03710_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.09", - "fourHundredkbPlus": "0.21", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG03710_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04184-39a-2_S12_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04184-39a-2-2_S12_L001_R1_001-2_S12_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613676", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.326694", - "oneHundredkbPlus": "10.03", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/nanopore/guppy_6/07_20_21_R941_HG03710_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.56966", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-2_S12_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "71735", - "result": "Similar", - "sampleId": "HG03710", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.58", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04184", + "totalBp": "17911796334", + "totalGbp": "17.91", "totalReads": "N/A", - "twoHundredkbPlus": "2.04", - "whales": "14" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "29.92", - "accession": "SAMN26237513", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267397", "ccsAlgorithm": "N/A", - "coverage": "9.07", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.75", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK62", - "filename": "07_20_21_R941_HG03710_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG03710_4", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04184-39a-2_S12_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04184-39a-2-2_S12_L002_R1_001-2_S12_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613675", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.382901", - "oneHundredkbPlus": "2.9", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/nanopore/guppy_6/07_20_21_R941_HG03710_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.533544", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-2_S12_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "71374", - "result": "Similar", - "sampleId": "HG03710", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.08", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04184", + "totalBp": "14722476944", + "totalGbp": "14.72", "totalReads": "N/A", - "twoHundredkbPlus": "0.47", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "105.33", - "accession": "SAMN37706907", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267397", "ccsAlgorithm": "N/A", - "coverage": "31.92", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.75", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD18", - "filename": "07_20_21_R941_HG03804_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG03804_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04184-39a-2_S12_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04184-39a-2-2_S12_L002_R1_001-2_S12_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613675", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.348398", - "oneHundredkbPlus": "13.09", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/nanopore/guppy_6/07_20_21_R941_HG03804_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.523464", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-2_S12_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "84812", - "result": "Similar", - "sampleId": "HG03804", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.33", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04184", + "totalBp": "14722479457", + "totalGbp": "14.72", "totalReads": "N/A", - "twoHundredkbPlus": "2.51", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "92.91", - "accession": "SAMN37706907", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267397", "ccsAlgorithm": "N/A", - "coverage": "28.16", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.75", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD18", - "filename": "07_20_21_R941_HG03804_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG03804_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04184-39a-2_S12_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04184-39a-2-2_S12_L003_R1_001-2_S12_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613853", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.371964", - "oneHundredkbPlus": "11.27", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/nanopore/guppy_6/07_20_21_R941_HG03804_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.559762", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-2_S12_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "83161", - "result": "Similar", - "sampleId": "HG03804", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.3", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04184", + "totalBp": "14720518705", + "totalGbp": "14.72", "totalReads": "N/A", - "twoHundredkbPlus": "2.13", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "106.31", - "accession": "SAMN37706907", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267397", "ccsAlgorithm": "N/A", - "coverage": "32.21", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.75", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD18", - "filename": "07_20_21_R941_HG03804_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.12", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG03804_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04184-39a-2_S12_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04184-39a-2-2_S12_L003_R1_001-2_S12_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613853", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.359278", - "oneHundredkbPlus": "13.44", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/nanopore/guppy_6/07_20_21_R941_HG03804_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.562794", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-2_S12_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "85557", - "result": "Similar", - "sampleId": "HG03804", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.51", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04184", + "totalBp": "14720180387", + "totalGbp": "14.72", "totalReads": "N/A", - "twoHundredkbPlus": "2.85", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "95.51", - "accession": "SAMN37706908", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267397", "ccsAlgorithm": "N/A", - "coverage": "28.94", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.65", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD22", - "filename": "07_20_21_R941_HG03816_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.06", - "fourHundredkbPlus": "0.17", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG03816_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04184-39a-2_S12_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04184-39a-2-2_S12_L004_R1_001-2_S12_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613852", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.362723", - "oneHundredkbPlus": "8.56", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/nanopore/guppy_6/07_20_21_R941_HG03816_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.579215", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-2_S12_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "67158", - "result": "Similar", - "sampleId": "HG03816", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.48", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04184", + "totalBp": "17507248896", + "totalGbp": "17.51", "totalReads": "N/A", - "twoHundredkbPlus": "1.66", - "whales": "9" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "67.87", - "accession": "SAMN37706908", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267397", "ccsAlgorithm": "N/A", - "coverage": "20.57", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.65", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD22", - "filename": "07_20_21_R941_HG03816_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.12", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG03816_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04184-39a-2_S12_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04184-39a-2-2_S12_L004_R1_001-2_S12_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613852", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.369259", - "oneHundredkbPlus": "6.47", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/nanopore/guppy_6/07_20_21_R941_HG03816_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.547098", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/hic/HG04184-39a-2_S12_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "71008", - "result": "Similar", - "sampleId": "HG03816", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.35", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04184", + "totalBp": "17506977622", + "totalGbp": "17.51", "totalReads": "N/A", - "twoHundredkbPlus": "1.24", - "whales": "12" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "99.03", - "accession": "SAMN37706908", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706911", "ccsAlgorithm": "N/A", - "coverage": "30.01", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.39", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD22", - "filename": "07_20_21_R941_HG03816_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.13", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG03816_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04187-04a-1_S3_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04187-04a-1-1_S3_L001_R1_001-1_S3_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613599", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.358974", - "oneHundredkbPlus": "9.29", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/nanopore/guppy_6/07_20_21_R941_HG03816_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.652759", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-1_S3_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "70485", - "result": "Similar", - "sampleId": "HG03816", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.44", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04187", + "totalBp": "7412885014", + "totalGbp": "7.41", "totalReads": "N/A", - "twoHundredkbPlus": "1.73", - "whales": "4" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "15.74", - "accession": "SAMN26267387", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706911", "ccsAlgorithm": "N/A", - "coverage": "4.77", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.39", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD42", - "filename": "07_20_21_R941_HG03942_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG03942_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04187-04a-1_S3_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04187-04a-1-1_S3_L001_R1_001-1_S3_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613599", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.458215", - "oneHundredkbPlus": "1.32", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/nanopore/guppy_6/07_20_21_R941_HG03942_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.658735", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-1_S3_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "66391", - "result": "Similar", - "sampleId": "HG03942", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.01", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04187", + "totalBp": "7412406924", + "totalGbp": "7.41", "totalReads": "N/A", - "twoHundredkbPlus": "0.1", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "95.93", - "accession": "SAMN26267387", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706911", "ccsAlgorithm": "N/A", - "coverage": "29.07", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.35", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD42", - "filename": "07_20_21_R941_HG03942_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG03942_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04187-04a-1_S3_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04187-04a-1-1_S3_L002_R1_001-1_S3_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613597", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.329795", - "oneHundredkbPlus": "8.18", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/nanopore/guppy_6/07_20_21_R941_HG03942_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.64699", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-1_S3_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "66610", - "result": "Similar", - "sampleId": "HG03942", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.06", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04187", + "totalBp": "7283119087", + "totalGbp": "7.28", "totalReads": "N/A", - "twoHundredkbPlus": "0.7", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "70.83", - "accession": "SAMN26267387", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706911", "ccsAlgorithm": "N/A", - "coverage": "21.46", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.35", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD42", - "filename": "07_20_21_R941_HG03942_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_20_21_R941_HG03942_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04187-04a-1_S3_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04187-04a-1-1_S3_L002_R1_001-1_S3_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613597", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.33346", - "oneHundredkbPlus": "5.72", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/nanopore/guppy_6/07_20_21_R941_HG03942_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.640276", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-1_S3_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "63707", - "result": "Similar", - "sampleId": "HG03942", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.05", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04187", + "totalBp": "7282642777", + "totalGbp": "7.28", "totalReads": "N/A", - "twoHundredkbPlus": "0.51", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "112.85", - "accession": "SAMN33621943", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706911", "ccsAlgorithm": "N/A", - "coverage": "34.2", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.29", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH002", - "filename": "07_27_21_R941_HG00408_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG00408_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04187-04a-1_S3_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04187-04a-1-1_S3_L003_R1_001-1_S3_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613594", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.330454", - "oneHundredkbPlus": "13.91", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00408/raw_data/nanopore/guppy_6/07_27_21_R941_HG00408_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.640155", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-1_S3_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "84313", - "result": "Similar", - "sampleId": "HG00408", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.43", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04187", + "totalBp": "7095096877", + "totalGbp": "7.1", "totalReads": "N/A", - "twoHundredkbPlus": "2.7", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "40.67", - "accession": "SAMN33621943", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706911", "ccsAlgorithm": "N/A", - "coverage": "12.32", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.29", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH002", - "filename": "07_27_21_R941_HG00408_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG00408_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04187-04a-1_S3_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04187-04a-1-1_S3_L003_R1_001-1_S3_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613594", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.375213", - "oneHundredkbPlus": "5.05", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00408/raw_data/nanopore/guppy_6/07_27_21_R941_HG00408_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.650177", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-1_S3_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "84178", - "result": "Similar", - "sampleId": "HG00408", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.22", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04187", + "totalBp": "7094571948", + "totalGbp": "7.09", "totalReads": "N/A", - "twoHundredkbPlus": "1.09", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "83.06", - "accession": "SAMN33621943", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706911", "ccsAlgorithm": "N/A", - "coverage": "25.17", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.26", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH002", - "filename": "07_27_21_R941_HG00408_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.08", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG00408_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04187-04a-1_S3_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04187-04a-1-1_S3_L004_R1_001-1_S3_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613593", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.341721", - "oneHundredkbPlus": "9.57", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00408/raw_data/nanopore/guppy_6/07_27_21_R941_HG00408_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.664452", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-1_S3_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "79492", - "result": "Similar", - "sampleId": "HG00408", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.37", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04187", + "totalBp": "7021119798", + "totalGbp": "7.02", "totalReads": "N/A", - "twoHundredkbPlus": "1.95", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "117.05", - "accession": "SAMN33621944", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706911", "ccsAlgorithm": "N/A", - "coverage": "35.47", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.26", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH058", - "filename": "07_27_21_R941_HG00597_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.1", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG00597_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04187-04a-1_S3_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04187-04a-1-1_S3_L004_R1_001-1_S3_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613593", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.312985", - "oneHundredkbPlus": "12.58", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00597/raw_data/nanopore/guppy_6/07_27_21_R941_HG00597_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.651562", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-1_S3_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "77949", - "result": "Similar", - "sampleId": "HG00597", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.36", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04187", + "totalBp": "7020760812", + "totalGbp": "7.02", "totalReads": "N/A", - "twoHundredkbPlus": "1.95", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "119.79", - "accession": "SAMN33621944", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706911", "ccsAlgorithm": "N/A", - "coverage": "36.3", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.61", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH058", - "filename": "07_27_21_R941_HG00597_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.11", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG00597_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04187-04a-2_S4_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04187-04a-2-2_S4_L001_R1_001-2_S4_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613592", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.338146", - "oneHundredkbPlus": "12.95", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00597/raw_data/nanopore/guppy_6/07_27_21_R941_HG00597_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.643164", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-2_S4_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "77976", - "result": "Similar", - "sampleId": "HG00597", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.43", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04187", + "totalBp": "8076269806", + "totalGbp": "8.08", "totalReads": "N/A", - "twoHundredkbPlus": "2.1", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "14.19", - "accession": "SAMN33621944", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706911", "ccsAlgorithm": "N/A", - "coverage": "4.3", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.61", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH058", - "filename": "07_27_21_R941_HG00597_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG00597_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04187-04a-2_S4_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04187-04a-2-2_S4_L001_R1_001-2_S4_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613592", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.453926", - "oneHundredkbPlus": "1.44", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00597/raw_data/nanopore/guppy_6/07_27_21_R941_HG00597_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.627255", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-2_S4_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "74934", - "result": "Similar", - "sampleId": "HG00597", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.03", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04187", + "totalBp": "8075750788", + "totalGbp": "8.08", "totalReads": "N/A", - "twoHundredkbPlus": "0.21", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "23.87", - "accession": "SAMN33621944", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706911", "ccsAlgorithm": "N/A", - "coverage": "7.23", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.55", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH058", - "filename": "07_27_21_R941_HG00597_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG00597_4", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04187-04a-2_S4_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04187-04a-2-2_S4_L002_R1_001-2_S4_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613591", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.413863", - "oneHundredkbPlus": "2.6", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00597/raw_data/nanopore/guppy_6/07_27_21_R941_HG00597_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.64859", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-2_S4_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "78817", - "result": "Similar", - "sampleId": "HG00597", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.06", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04187", + "totalBp": "7918360548", + "totalGbp": "7.92", "totalReads": "N/A", - "twoHundredkbPlus": "0.39", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "56.96", - "accession": "SAMN33621946", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", - "ccsAlgorithm": "N/A", - "coverage": "17.26", - "dataType": "unaligned reads with 5mC mods", - "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "CLM17", - "filename": "07_27_21_R941_HG01261_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG01261_1", - "libraryLayout": "single", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706911", + "ccsAlgorithm": "N/A", + "coverage": "2.55", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04187-04a-2_S4_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04187-04a-2-2_S4_L002_R1_001-2_S4_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613591", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.358418", - "oneHundredkbPlus": "3.5", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01261/raw_data/nanopore/guppy_6/07_27_21_R941_HG01261_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.623265", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-2_S4_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "48175", - "result": "Similar", - "sampleId": "HG01261", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CLM", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.05", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04187", + "totalBp": "7917829014", + "totalGbp": "7.92", "totalReads": "N/A", - "twoHundredkbPlus": "0.39", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "85.3", - "accession": "SAMN33621946", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706911", "ccsAlgorithm": "N/A", - "coverage": "25.85", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.48", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "CLM17", - "filename": "07_27_21_R941_HG01261_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.03", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG01261_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04187-04a-2_S4_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04187-04a-2-2_S4_L003_R1_001-2_S4_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613590", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.351018", - "oneHundredkbPlus": "8.6", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01261/raw_data/nanopore/guppy_6/07_27_21_R941_HG01261_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.630789", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-2_S4_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "74715", - "result": "Similar", - "sampleId": "HG01261", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CLM", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.11", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04187", + "totalBp": "7684364871", + "totalGbp": "7.68", "totalReads": "N/A", - "twoHundredkbPlus": "0.96", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "76.83", - "accession": "SAMN33621946", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706911", "ccsAlgorithm": "N/A", - "coverage": "23.28", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.48", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "CLM17", - "filename": "07_27_21_R941_HG01261_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG01261_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04187-04a-2_S4_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04187-04a-2-2_S4_L003_R1_001-2_S4_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613590", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.321985", - "oneHundredkbPlus": "7.81", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01261/raw_data/nanopore/guppy_6/07_27_21_R941_HG01261_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.631244", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-2_S4_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "75397", - "result": "Similar", - "sampleId": "HG01261", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CLM", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.1", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04187", + "totalBp": "7683781430", + "totalGbp": "7.68", "totalReads": "N/A", - "twoHundredkbPlus": "0.86", - "whales": "5" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "86.8", - "accession": "SAMN26237498", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706911", "ccsAlgorithm": "N/A", - "coverage": "26.3", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.44", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL013", - "filename": "07_27_21_R941_HG01934_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.03", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG01934_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04187-04a-2_S4_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04187-04a-2-2_S4_L004_R1_001-2_S4_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613589", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.301812", - "oneHundredkbPlus": "11.87", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01934/raw_data/nanopore/guppy_6/07_27_21_R941_HG01934_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.644936", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-2_S4_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "91931", - "result": "Similar", - "sampleId": "HG01934", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.24", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04187", + "totalBp": "7572625001", + "totalGbp": "7.57", "totalReads": "N/A", - "twoHundredkbPlus": "2.26", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "9.09", - "accession": "SAMN26237498", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37706911", "ccsAlgorithm": "N/A", - "coverage": "2.75", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.44", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL013", - "filename": "07_27_21_R941_HG01934_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG01934_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04187-04a-2_S4_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04187-04a-2-2_S4_L004_R1_001-2_S4_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613589", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.513319", - "oneHundredkbPlus": "1.2", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01934/raw_data/nanopore/guppy_6/07_27_21_R941_HG01934_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.636793", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/hic/HG04187-04a-2_S4_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "89234", - "result": "Similar", - "sampleId": "HG01934", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.03", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04187", + "totalBp": "7572221424", + "totalGbp": "7.57", "totalReads": "N/A", - "twoHundredkbPlus": "0.24", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "91.37", - "accession": "SAMN26237498", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267389", "ccsAlgorithm": "N/A", - "coverage": "27.69", - "dataType": "unaligned reads with 5mC mods", + "coverage": "7.13", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL013", - "filename": "07_27_21_R941_HG01934_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG01934_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04199-20b-1_S17_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04199-20b-1-1_S17_L001_R1_001-1_S17_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613588", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.304109", - "oneHundredkbPlus": "12.35", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01934/raw_data/nanopore/guppy_6/07_27_21_R941_HG01934_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.501454", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-1_S17_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "90878", - "result": "Similar", - "sampleId": "HG01934", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.29", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04199", + "totalBp": "22104664563", + "totalGbp": "22.1", "totalReads": "N/A", - "twoHundredkbPlus": "2.44", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "62.23", - "accession": "SAMN26237498", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267389", "ccsAlgorithm": "N/A", - "coverage": "18.86", - "dataType": "unaligned reads with 5mC mods", + "coverage": "7.13", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL013", - "filename": "07_27_21_R941_HG01934_4_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.03", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG01934_4", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04199-20b-1_S17_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04199-20b-1-1_S17_L001_R1_001-1_S17_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613588", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.350033", - "oneHundredkbPlus": "8.21", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01934/raw_data/nanopore/guppy_6/07_27_21_R941_HG01934_4_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.495599", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-1_S17_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "89331", - "result": "Similar", - "sampleId": "HG01934", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.2", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04199", + "totalBp": "22098303045", + "totalGbp": "22.1", "totalReads": "N/A", - "twoHundredkbPlus": "1.59", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "46.03", - "accession": "SAMN26237511", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267389", "ccsAlgorithm": "N/A", - "coverage": "13.95", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.98", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK53", - "filename": "07_27_21_R941_HG03654_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG03654_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04199-20b-1_S17_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04199-20b-1-1_S17_L002_R1_001-1_S17_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613587", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.365241", - "oneHundredkbPlus": "5.72", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03654/raw_data/nanopore/guppy_6/07_27_21_R941_HG03654_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.46667", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-1_S17_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "86618", - "result": "Similar", - "sampleId": "HG03654", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.08", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04199", + "totalBp": "21652433204", + "totalGbp": "21.65", "totalReads": "N/A", - "twoHundredkbPlus": "0.78", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "74.33", - "accession": "SAMN26237511", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267389", "ccsAlgorithm": "N/A", - "coverage": "22.53", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.98", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK53", - "filename": "07_27_21_R941_HG03654_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG03654_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04199-20b-1_S17_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04199-20b-1-1_S17_L002_R1_001-1_S17_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613587", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.310269", - "oneHundredkbPlus": "9.29", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03654/raw_data/nanopore/guppy_6/07_27_21_R941_HG03654_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.519131", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-1_S17_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "86774", - "result": "Similar", - "sampleId": "HG03654", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.17", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04199", + "totalBp": "21646010581", + "totalGbp": "21.65", "totalReads": "N/A", - "twoHundredkbPlus": "1.36", - "whales": "5" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "75.59", - "accession": "SAMN26237511", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267389", "ccsAlgorithm": "N/A", - "coverage": "22.91", - "dataType": "unaligned reads with 5mC mods", + "coverage": "7.03", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK53", - "filename": "07_27_21_R941_HG03654_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG03654_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04199-20b-1_S17_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04199-20b-1-1_S17_L003_R1_001-1_S17_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613585", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.318698", - "oneHundredkbPlus": "9.41", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03654/raw_data/nanopore/guppy_6/07_27_21_R941_HG03654_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.49386", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-1_S17_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "86618", - "result": "Similar", - "sampleId": "HG03654", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.19", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04199", + "totalBp": "21785446599", + "totalGbp": "21.79", "totalReads": "N/A", - "twoHundredkbPlus": "1.4", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "82.25", - "accession": "SAMN26237512", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267389", "ccsAlgorithm": "N/A", - "coverage": "24.92", - "dataType": "unaligned reads with 5mC mods", + "coverage": "7.03", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK58", - "filename": "07_27_21_R941_HG03669_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG03669_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04199-20b-1_S17_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04199-20b-1-1_S17_L003_R1_001-1_S17_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613585", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.283215", - "oneHundredkbPlus": "9.12", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/nanopore/guppy_6/07_27_21_R941_HG03669_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.534843", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-1_S17_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "81595", - "result": "Similar", - "sampleId": "HG03669", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.06", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04199", + "totalBp": "21778992180", + "totalGbp": "21.78", "totalReads": "N/A", - "twoHundredkbPlus": "0.78", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "11.04", - "accession": "SAMN26237512", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267389", "ccsAlgorithm": "N/A", - "coverage": "3.34", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.83", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK58", - "filename": "07_27_21_R941_HG03669_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG03669_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04199-20b-1_S17_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04199-20b-1-1_S17_L004_R1_001-1_S17_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613584", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.507088", - "oneHundredkbPlus": "1.12", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/nanopore/guppy_6/07_27_21_R941_HG03669_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.488631", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-1_S17_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "77047", - "result": "Similar", - "sampleId": "HG03669", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04199", + "totalBp": "21168007527", + "totalGbp": "21.17", "totalReads": "N/A", - "twoHundredkbPlus": "0.08", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "83.29", - "accession": "SAMN26237512", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267389", "ccsAlgorithm": "N/A", - "coverage": "25.24", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.83", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK58", - "filename": "07_27_21_R941_HG03669_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG03669_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04199-20b-1_S17_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04199-20b-1-1_S17_L004_R1_001-1_S17_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613584", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.340057", - "oneHundredkbPlus": "8.62", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/nanopore/guppy_6/07_27_21_R941_HG03669_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.513776", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-1_S17_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "78086", - "result": "Similar", - "sampleId": "HG03669", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.06", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04199", + "totalBp": "21161431823", + "totalGbp": "21.16", "totalReads": "N/A", - "twoHundredkbPlus": "0.72", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "24.32", - "accession": "SAMN26237512", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267389", "ccsAlgorithm": "N/A", - "coverage": "7.37", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.64", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK58", - "filename": "07_27_21_R941_HG03669_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG03669_4", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04199-20b-2_S18_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04199-20b-2-2_S18_L001_R1_001-2_S18_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613583", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.418265", - "oneHundredkbPlus": "2.58", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/nanopore/guppy_6/07_27_21_R941_HG03669_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.488571", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-2_S18_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "79377", - "result": "Similar", - "sampleId": "HG03669", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.01", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04199", + "totalBp": "20573932690", + "totalGbp": "20.57", "totalReads": "N/A", - "twoHundredkbPlus": "0.19", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "70.9", - "accession": "SAMN26267385", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267389", "ccsAlgorithm": "N/A", - "coverage": "21.49", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.63", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "ST016", - "filename": "07_27_21_R941_HG03688_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.08", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG03688_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04199-20b-2_S18_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04199-20b-2-2_S18_L001_R1_001-2_S18_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613583", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.334326", - "oneHundredkbPlus": "8.59", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03688/raw_data/nanopore/guppy_6/07_27_21_R941_HG03688_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.497236", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-2_S18_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "84574", - "result": "Similar", - "sampleId": "HG03688", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "STU", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.28", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04199", + "totalBp": "20568029289", + "totalGbp": "20.57", "totalReads": "N/A", - "twoHundredkbPlus": "1.47", - "whales": "5" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "90.13", - "accession": "SAMN26267385", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267389", "ccsAlgorithm": "N/A", - "coverage": "27.31", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.5", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "ST016", - "filename": "07_27_21_R941_HG03688_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG03688_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04199-20b-2_S18_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04199-20b-2-2_S18_L002_R1_001-2_S18_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613582", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.342356", - "oneHundredkbPlus": "10.54", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03688/raw_data/nanopore/guppy_6/07_27_21_R941_HG03688_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.508404", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-2_S18_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "83458", - "result": "Similar", - "sampleId": "HG03688", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "STU", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.19", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04199", + "totalBp": "20154014253", + "totalGbp": "20.15", "totalReads": "N/A", - "twoHundredkbPlus": "1.38", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "79.27", - "accession": "SAMN26267385", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267389", "ccsAlgorithm": "N/A", - "coverage": "24.02", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.5", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "ST016", - "filename": "07_27_21_R941_HG03688_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG03688_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04199-20b-2_S18_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04199-20b-2-2_S18_L002_R1_001-2_S18_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613582", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.323537", - "oneHundredkbPlus": "8.63", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03688/raw_data/nanopore/guppy_6/07_27_21_R941_HG03688_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.498392", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-2_S18_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "79602", - "result": "Similar", - "sampleId": "HG03688", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "STU", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.12", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04199", + "totalBp": "20148061601", + "totalGbp": "20.15", "totalReads": "N/A", - "twoHundredkbPlus": "1.01", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "27.22", - "accession": "SAMN26267388", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267389", "ccsAlgorithm": "N/A", - "coverage": "8.25", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.56", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "ST111", - "filename": "07_27_21_R941_HG04115_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG04115_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04199-20b-2_S18_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04199-20b-2-2_S18_L003_R1_001-2_S18_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613581", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.392543", - "oneHundredkbPlus": "2.99", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/nanopore/guppy_6/07_27_21_R941_HG04115_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.498263", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-2_S18_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "79209", - "result": "Similar", - "sampleId": "HG04115", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "STU", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.09", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04199", + "totalBp": "20322141493", + "totalGbp": "20.32", "totalReads": "N/A", - "twoHundredkbPlus": "0.46", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "58.04", - "accession": "SAMN26267388", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267389", "ccsAlgorithm": "N/A", - "coverage": "17.59", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.55", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "ST111", - "filename": "07_27_21_R941_HG04115_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG04115_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04199-20b-2_S18_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04199-20b-2-2_S18_L003_R1_001-2_S18_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613581", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.274663", - "oneHundredkbPlus": "6.57", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/nanopore/guppy_6/07_27_21_R941_HG04115_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.495167", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-2_S18_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "80416", - "result": "Similar", - "sampleId": "HG04115", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "STU", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.25", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04199", + "totalBp": "20316165708", + "totalGbp": "20.32", "totalReads": "N/A", - "twoHundredkbPlus": "1.13", - "whales": "4" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "24.85", - "accession": "SAMN26267388", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267389", "ccsAlgorithm": "N/A", - "coverage": "7.53", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.36", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "ST111", - "filename": "07_27_21_R941_HG04115_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.03", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG04115_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04199-20b-2_S18_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04199-20b-2-2_S18_L004_R1_001-2_S18_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613579", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.399528", - "oneHundredkbPlus": "2.6", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/nanopore/guppy_6/07_27_21_R941_HG04115_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.508119", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-2_S18_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "76195", - "result": "Similar", - "sampleId": "HG04115", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "STU", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.09", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04199", + "totalBp": "19705747983", + "totalGbp": "19.71", "totalReads": "N/A", - "twoHundredkbPlus": "0.41", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "49.13", - "accession": "SAMN26267388", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267389", "ccsAlgorithm": "N/A", - "coverage": "14.89", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.35", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "ST111", - "filename": "07_27_21_R941_HG04115_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG04115_4", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04199-20b-2_S18_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04199-20b-2-2_S18_L004_R1_001-2_S18_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613579", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.348811", - "oneHundredkbPlus": "5.47", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/nanopore/guppy_6/07_27_21_R941_HG04115_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.510325", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/hic/HG04199-20b-2_S18_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "79848", - "result": "Similar", - "sampleId": "HG04115", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "STU", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.17", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04199", + "totalBp": "19699650413", + "totalGbp": "19.7", "totalReads": "N/A", - "twoHundredkbPlus": "0.86", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "25.3", - "accession": "SAMN26267388", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267390", "ccsAlgorithm": "N/A", - "coverage": "7.67", - "dataType": "unaligned reads with 5mC mods", + "coverage": "7.39", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "ST111", - "filename": "07_27_21_R941_HG04115_5_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.03", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "07_27_21_R941_HG04115_5", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04204-14ab-1_S9_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04204-14ab-1-1_S9_L001_R1_001-1_S9_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613578", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.422534", - "oneHundredkbPlus": "2.84", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/nanopore/guppy_6/07_27_21_R941_HG04115_5_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.50671", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-1_S9_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "80123", - "result": "Similar", - "sampleId": "HG04115", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "STU", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.1", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04204", + "totalBp": "22919963332", + "totalGbp": "22.92", "totalReads": "N/A", - "twoHundredkbPlus": "0.48", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "35.44", - "accession": "SAMN37797102", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267390", "ccsAlgorithm": "N/A", - "coverage": "10.74", - "dataType": "unaligned reads with 5mC mods", + "coverage": "7.39", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BB11", - "filename": "08_03_21_R941_HG01960_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_03_21_R941_HG01960_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04204-14ab-1_S9_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04204-14ab-1-1_S9_L001_R1_001-1_S9_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613578", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.354958", - "oneHundredkbPlus": "3.64", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01960/raw_data/nanopore/guppy_6/08_03_21_R941_HG01960_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.486848", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-1_S9_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "76744", - "result": "Similar", - "sampleId": "HG01960", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ACB", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.13", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04204", + "totalBp": "22918997388", + "totalGbp": "22.92", "totalReads": "N/A", - "twoHundredkbPlus": "0.54", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "92.37", - "accession": "SAMN37797102", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267390", "ccsAlgorithm": "N/A", - "coverage": "27.99", - "dataType": "unaligned reads with 5mC mods", + "coverage": "7.37", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BB11", - "filename": "08_03_21_R941_HG01960_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.12", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_03_21_R941_HG01960_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04204-14ab-1_S9_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04204-14ab-1-1_S9_L002_R1_001-1_S9_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613854", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.292281", - "oneHundredkbPlus": "9.21", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01960/raw_data/nanopore/guppy_6/08_03_21_R941_HG01960_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.528423", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-1_S9_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "74685", - "result": "Similar", - "sampleId": "HG01960", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ACB", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.36", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04204", + "totalBp": "22853582650", + "totalGbp": "22.85", "totalReads": "N/A", - "twoHundredkbPlus": "1.45", - "whales": "12" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "24.12", - "accession": "SAMN37797102", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267390", "ccsAlgorithm": "N/A", - "coverage": "7.31", - "dataType": "unaligned reads with 5mC mods", + "coverage": "7.37", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BB11", - "filename": "08_03_21_R941_HG01960_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_03_21_R941_HG01960_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04204-14ab-1_S9_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04204-14ab-1-1_S9_L002_R1_001-1_S9_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613854", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.423853", - "oneHundredkbPlus": "2.35", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01960/raw_data/nanopore/guppy_6/08_03_21_R941_HG01960_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.519391", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-1_S9_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "73518", - "result": "Similar", - "sampleId": "HG01960", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ACB", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.1", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04204", + "totalBp": "22852548333", + "totalGbp": "22.85", "totalReads": "N/A", - "twoHundredkbPlus": "0.38", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "10.09", - "accession": "SAMN37797102", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267390", "ccsAlgorithm": "N/A", - "coverage": "3.06", - "dataType": "unaligned reads with 5mC mods", + "coverage": "7.41", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BB11", - "filename": "08_03_21_R941_HG01960_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_03_21_R941_HG01960_4", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04204-14ab-1_S9_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04204-14ab-1-1_S9_L003_R1_001-1_S9_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613831", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.473214", - "oneHundredkbPlus": "0.98", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01960/raw_data/nanopore/guppy_6/08_03_21_R941_HG01960_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.526581", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-1_S9_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "74432", - "result": "Similar", - "sampleId": "HG01960", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ACB", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.02", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04204", + "totalBp": "22960045885", + "totalGbp": "22.96", "totalReads": "N/A", - "twoHundredkbPlus": "0.12", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "109.15", - "accession": "SAMN33621947", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267390", "ccsAlgorithm": "N/A", - "coverage": "33.07", - "dataType": "unaligned reads with 5mC mods", + "coverage": "7.41", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL25", - "filename": "08_03_21_R941_HG01975_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.06", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_03_21_R941_HG01975_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04204-14ab-1_S9_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04204-14ab-1-1_S9_L003_R1_001-1_S9_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613831", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.27161", - "oneHundredkbPlus": "12.71", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01975/raw_data/nanopore/guppy_6/08_03_21_R941_HG01975_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.471858", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-1_S9_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "80551", - "result": "Similar", - "sampleId": "HG01975", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.3", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04204", + "totalBp": "22958892651", + "totalGbp": "22.96", "totalReads": "N/A", - "twoHundredkbPlus": "2.22", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "74.02", - "accession": "SAMN33621947", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267390", "ccsAlgorithm": "N/A", - "coverage": "22.43", - "dataType": "unaligned reads with 5mC mods", + "coverage": "7.24", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL25", - "filename": "08_03_21_R941_HG01975_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.03", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_03_21_R941_HG01975_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04204-14ab-1_S9_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04204-14ab-1-1_S9_L004_R1_001-1_S9_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613673", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.305576", - "oneHundredkbPlus": "8.55", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01975/raw_data/nanopore/guppy_6/08_03_21_R941_HG01975_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.515265", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-1_S9_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "80419", - "result": "Similar", - "sampleId": "HG01975", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.17", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04204", + "totalBp": "22432019992", + "totalGbp": "22.43", "totalReads": "N/A", - "twoHundredkbPlus": "1.42", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "75.67", - "accession": "SAMN33621947", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267390", "ccsAlgorithm": "N/A", - "coverage": "22.93", - "dataType": "unaligned reads with 5mC mods", + "coverage": "7.24", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL25", - "filename": "08_03_21_R941_HG01975_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_03_21_R941_HG01975_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04204-14ab-1_S9_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04204-14ab-1-1_S9_L004_R1_001-1_S9_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613673", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.291271", - "oneHundredkbPlus": "8.03", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01975/raw_data/nanopore/guppy_6/08_03_21_R941_HG01975_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.466459", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-1_S9_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "75260", - "result": "Similar", - "sampleId": "HG01975", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.13", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04204", + "totalBp": "22430690513", + "totalGbp": "22.43", "totalReads": "N/A", - "twoHundredkbPlus": "1.24", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "63.15", - "accession": "SAMN37797106", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267390", "ccsAlgorithm": "N/A", - "coverage": "19.14", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.91", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "GB74", - "filename": "08_03_21_R941_HG02841_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_03_21_R941_HG02841_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04204-14ab-2_S10_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04204-14ab-2-2_S10_L001_R1_001-2_S10_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613851", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.296905", - "oneHundredkbPlus": "7.23", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/nanopore/guppy_6/08_03_21_R941_HG02841_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.49237", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-2_S10_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "81577", - "result": "Similar", - "sampleId": "HG02841", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.04", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04204", + "totalBp": "30726992253", + "totalGbp": "30.73", "totalReads": "N/A", - "twoHundredkbPlus": "0.81", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "45.81", - "accession": "SAMN37797106", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267390", "ccsAlgorithm": "N/A", - "coverage": "13.88", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.91", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "GB74", - "filename": "08_03_21_R941_HG02841_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_03_21_R941_HG02841_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04204-14ab-2_S10_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04204-14ab-2-2_S10_L001_R1_001-2_S10_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613851", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.325085", - "oneHundredkbPlus": "5.04", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/nanopore/guppy_6/08_03_21_R941_HG02841_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.45822", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-2_S10_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "79068", - "result": "Similar", - "sampleId": "HG02841", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.04", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04204", + "totalBp": "30725938742", + "totalGbp": "30.73", "totalReads": "N/A", - "twoHundredkbPlus": "0.58", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "87.47", - "accession": "SAMN37797106", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267390", "ccsAlgorithm": "N/A", - "coverage": "26.51", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.89", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "GB74", - "filename": "08_03_21_R941_HG02841_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_03_21_R941_HG02841_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04204-14ab-2_S10_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04204-14ab-2-2_S10_L002_R1_001-2_S10_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613598", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.303632", - "oneHundredkbPlus": "9.73", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/nanopore/guppy_6/08_03_21_R941_HG02841_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.486118", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-2_S10_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "79315", - "result": "Similar", - "sampleId": "HG02841", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.16", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04204", + "totalBp": "30661060447", + "totalGbp": "30.66", "totalReads": "N/A", - "twoHundredkbPlus": "1.3", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "101.85", - "accession": "SAMN37797107", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267390", "ccsAlgorithm": "N/A", - "coverage": "30.86", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.89", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "GB97", - "filename": "08_03_21_R941_HG02984_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.15", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_03_21_R941_HG02984_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04204-14ab-2_S10_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04204-14ab-2-2_S10_L002_R1_001-2_S10_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613598", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.314809", - "oneHundredkbPlus": "11.21", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/nanopore/guppy_6/08_03_21_R941_HG02984_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.483653", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-2_S10_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "78236", - "result": "Similar", - "sampleId": "HG02984", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.54", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04204", + "totalBp": "30659905262", + "totalGbp": "30.66", "totalReads": "N/A", - "twoHundredkbPlus": "2.15", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "76.68", - "accession": "SAMN37797107", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267390", "ccsAlgorithm": "N/A", - "coverage": "23.24", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.91", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "GB97", - "filename": "08_03_21_R941_HG02984_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.11", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_03_21_R941_HG02984_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04204-14ab-2_S10_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04204-14ab-2-2_S10_L003_R1_001-2_S10_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613850", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.314432", - "oneHundredkbPlus": "7.53", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/nanopore/guppy_6/08_03_21_R941_HG02984_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.521087", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-2_S10_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "71722", - "result": "Similar", - "sampleId": "HG02984", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.36", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04204", + "totalBp": "30726041326", + "totalGbp": "30.73", "totalReads": "N/A", - "twoHundredkbPlus": "1.42", - "whales": "5" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "34.98", - "accession": "SAMN37797107", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267390", "ccsAlgorithm": "N/A", - "coverage": "10.6", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.91", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "GB97", - "filename": "08_03_21_R941_HG02984_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.06", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_03_21_R941_HG02984_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04204-14ab-2_S10_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04204-14ab-2-2_S10_L003_R1_001-2_S10_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613850", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.339783", - "oneHundredkbPlus": "3.66", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/nanopore/guppy_6/08_03_21_R941_HG02984_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.483107", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-2_S10_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "74982", - "result": "Similar", - "sampleId": "HG02984", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.18", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04204", + "totalBp": "30724760662", + "totalGbp": "30.72", "totalReads": "N/A", - "twoHundredkbPlus": "0.7", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "21.96", - "accession": "SAMN37797107", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267390", "ccsAlgorithm": "N/A", - "coverage": "6.65", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.6", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "GB97", - "filename": "08_03_21_R941_HG02984_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_03_21_R941_HG02984_4", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04204-14ab-2_S10_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04204-14ab-2-2_S10_L004_R1_001-2_S10_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613596", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.390259", - "oneHundredkbPlus": "2.5", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/nanopore/guppy_6/08_03_21_R941_HG02984_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.501319", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-2_S10_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "79486", - "result": "Similar", - "sampleId": "HG02984", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.14", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04204", + "totalBp": "29758307306", + "totalGbp": "29.76", "totalReads": "N/A", - "twoHundredkbPlus": "0.5", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "97.61", - "accession": "SAMN37706909", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267390", "ccsAlgorithm": "N/A", - "coverage": "29.58", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.6", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD52", - "filename": "08_03_21_R941_HG04157_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_03_21_R941_HG04157_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04204-14ab-2_S10_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04204-14ab-2-2_S10_L004_R1_001-2_S10_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613596", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.277016", - "oneHundredkbPlus": "10.29", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/nanopore/guppy_6/08_03_21_R941_HG04157_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.462214", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/hic/HG04204-14ab-2_S10_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "76817", - "result": "Similar", - "sampleId": "HG04157", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.16", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04204", + "totalBp": "29756816044", + "totalGbp": "29.76", "totalReads": "N/A", - "twoHundredkbPlus": "1.24", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "106.58", - "accession": "SAMN37706909", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267391", "ccsAlgorithm": "N/A", - "coverage": "32.3", - "dataType": "unaligned reads with 5mC mods", + "coverage": "8.8", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD52", - "filename": "08_03_21_R941_HG04157_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_03_21_R941_HG04157_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04228-12e-1_S11_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04228-12e-1-1_S11_L001_R1_001-1_S11_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613595", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.335831", - "oneHundredkbPlus": "11.03", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/nanopore/guppy_6/08_03_21_R941_HG04157_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.48664", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-12e-1_S11_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "75575", - "result": "Similar", - "sampleId": "HG04157", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.18", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04228", + "totalBp": "27295186773", + "totalGbp": "27.3", "totalReads": "N/A", - "twoHundredkbPlus": "1.37", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "78.71", - "accession": "SAMN37706909", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267391", "ccsAlgorithm": "N/A", - "coverage": "23.85", - "dataType": "unaligned reads with 5mC mods", + "coverage": "8.8", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD52", - "filename": "08_03_21_R941_HG04157_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_03_21_R941_HG04157_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04228-12e-1_S11_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04228-12e-1-1_S11_L001_R1_001-1_S11_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613595", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.284331", - "oneHundredkbPlus": "8.01", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/nanopore/guppy_6/08_03_21_R941_HG04157_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.494534", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-12e-1_S11_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "74339", - "result": "Similar", - "sampleId": "HG04157", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.21", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04228", + "totalBp": "27294166590", + "totalGbp": "27.29", "totalReads": "N/A", - "twoHundredkbPlus": "1.1", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "75.69", - "accession": "SAMN37706910", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267391", "ccsAlgorithm": "N/A", - "coverage": "22.94", - "dataType": "unaligned reads with 5mC mods", + "coverage": "8.82", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD53", - "filename": "08_03_21_R941_HG04160_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_03_21_R941_HG04160_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04228-12e-1_S11_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04228-12e-1-1_S11_L002_R1_001-1_S11_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613849", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.329487", - "oneHundredkbPlus": "6.44", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/nanopore/guppy_6/08_03_21_R941_HG04160_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.51923", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-12e-1_S11_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "69217", - "result": "Similar", - "sampleId": "HG04160", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.05", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04228", + "totalBp": "27344710534", + "totalGbp": "27.34", "totalReads": "N/A", - "twoHundredkbPlus": "0.49", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "80.9", - "accession": "SAMN37706910", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267391", "ccsAlgorithm": "N/A", - "coverage": "24.52", - "dataType": "unaligned reads with 5mC mods", + "coverage": "8.82", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD53", - "filename": "08_03_21_R941_HG04160_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_03_21_R941_HG04160_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04228-12e-1_S11_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04228-12e-1-1_S11_L002_R1_001-1_S11_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613849", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.361508", - "oneHundredkbPlus": "6.86", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/nanopore/guppy_6/08_03_21_R941_HG04160_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.475097", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-12e-1_S11_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "68811", - "result": "Similar", - "sampleId": "HG04160", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.07", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04228", + "totalBp": "27343611285", + "totalGbp": "27.34", "totalReads": "N/A", - "twoHundredkbPlus": "0.53", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "81.77", - "accession": "SAMN37706910", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267391", "ccsAlgorithm": "N/A", - "coverage": "24.78", - "dataType": "unaligned reads with 5mC mods", + "coverage": "8.88", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD53", - "filename": "08_03_21_R941_HG04160_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_03_21_R941_HG04160_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04228-12e-1_S11_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04228-12e-1-1_S11_L003_R1_001-1_S11_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613848", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.385452", - "oneHundredkbPlus": "6.75", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/nanopore/guppy_6/08_03_21_R941_HG04160_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.493989", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-12e-1_S11_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "67552", - "result": "Similar", - "sampleId": "HG04160", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.07", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04228", + "totalBp": "27537054764", + "totalGbp": "27.54", "totalReads": "N/A", - "twoHundredkbPlus": "0.55", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "93.22", - "accession": "SAMN26237492", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267391", "ccsAlgorithm": "N/A", - "coverage": "28.25", - "dataType": "unaligned reads with 5mC mods", + "coverage": "8.88", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH062", - "filename": "08_10_21_R941_HG00609_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.06", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG00609_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04228-12e-1_S11_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04228-12e-1-1_S11_L003_R1_001-1_S11_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613848", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.303564", - "oneHundredkbPlus": "8.82", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/nanopore/guppy_6/08_10_21_R941_HG00609_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.447014", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-12e-1_S11_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "73742", - "result": "Similar", - "sampleId": "HG00609", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.18", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04228", + "totalBp": "27535844322", + "totalGbp": "27.54", "totalReads": "N/A", - "twoHundredkbPlus": "0.89", - "whales": "4" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "106.08", - "accession": "SAMN26237492", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267391", "ccsAlgorithm": "N/A", - "coverage": "32.14", - "dataType": "unaligned reads with 5mC mods", + "coverage": "8.61", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH062", - "filename": "08_10_21_R941_HG00609_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG00609_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04228-12e-1_S11_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04228-12e-1-1_S11_L004_R1_001-1_S11_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613847", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.323289", - "oneHundredkbPlus": "10.45", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/nanopore/guppy_6/08_10_21_R941_HG00609_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.477459", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-12e-1_S11_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "75448", - "result": "Similar", - "sampleId": "HG00609", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.2", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04228", + "totalBp": "26689677371", + "totalGbp": "26.69", "totalReads": "N/A", - "twoHundredkbPlus": "1.08", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "94.9", - "accession": "SAMN26237492", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267391", "ccsAlgorithm": "N/A", - "coverage": "28.76", - "dataType": "unaligned reads with 5mC mods", + "coverage": "8.61", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH062", - "filename": "08_10_21_R941_HG00609_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG00609_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04228-12e-1_S11_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04228-12e-1-1_S11_L004_R1_001-1_S11_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613847", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.331212", - "oneHundredkbPlus": "9.09", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/nanopore/guppy_6/08_10_21_R941_HG00609_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.448493", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-12e-1_S11_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "73789", - "result": "Similar", - "sampleId": "HG00609", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.19", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04228", + "totalBp": "26688249764", + "totalGbp": "26.69", "totalReads": "N/A", - "twoHundredkbPlus": "0.98", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "60.56", - "accession": "SAMN26267378", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267391", "ccsAlgorithm": "N/A", - "coverage": "18.35", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.1", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PR04", - "filename": "08_10_21_R941_HG00642_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.07", - "fourHundredkbPlus": "0.13", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG00642_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04228-22e-2_S12_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04228-22e-2-2_S12_L001_R1_001-2_S12_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613846", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.295302", - "oneHundredkbPlus": "8.67", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/nanopore/guppy_6/08_10_21_R941_HG00642_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.51371", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-22e-2_S12_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "94988", - "result": "Similar", - "sampleId": "HG00642", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PUR", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.42", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04228", + "totalBp": "28200059013", + "totalGbp": "28.2", "totalReads": "N/A", - "twoHundredkbPlus": "2.06", - "whales": "23" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "68.63", - "accession": "SAMN26267378", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267391", "ccsAlgorithm": "N/A", - "coverage": "20.8", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.1", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PR04", - "filename": "08_10_21_R941_HG00642_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.13", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG00642_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04228-22e-2_S12_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04228-22e-2-2_S12_L001_R1_001-2_S12_L001_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613846", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.34542", - "oneHundredkbPlus": "10.52", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/nanopore/guppy_6/08_10_21_R941_HG00642_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.448106", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-22e-2_S12_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "101008", - "result": "Similar", - "sampleId": "HG00642", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PUR", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.47", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04228", + "totalBp": "28199056023", + "totalGbp": "28.2", "totalReads": "N/A", - "twoHundredkbPlus": "2.52", - "whales": "7" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "91.35", - "accession": "SAMN26267378", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267391", "ccsAlgorithm": "N/A", - "coverage": "27.68", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.04", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PR04", - "filename": "08_10_21_R941_HG00642_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.06", - "fourHundredkbPlus": "0.15", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG00642_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04228-22e-2_S12_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04228-22e-2-2_S12_L002_R1_001-2_S12_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613845", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.350263", - "oneHundredkbPlus": "13.15", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/nanopore/guppy_6/08_10_21_R941_HG00642_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.490196", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-22e-2_S12_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "95618", - "result": "Similar", - "sampleId": "HG00642", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PUR", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.53", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04228", + "totalBp": "28015534623", + "totalGbp": "28.02", "totalReads": "N/A", - "twoHundredkbPlus": "2.93", - "whales": "5" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "79.51", - "accession": "SAMN26237494", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267391", "ccsAlgorithm": "N/A", - "coverage": "24.09", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.04", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PR31", - "filename": "08_10_21_R941_HG01099_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG01099_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04228-22e-2_S12_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04228-22e-2-2_S12_L002_R1_001-2_S12_L002_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613845", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.319944", - "oneHundredkbPlus": "7.9", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/nanopore/guppy_6/08_10_21_R941_HG01099_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.452897", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-22e-2_S12_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "74857", - "result": "Similar", - "sampleId": "HG01099", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PUR", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.19", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04228", + "totalBp": "28014469975", + "totalGbp": "28.01", "totalReads": "N/A", - "twoHundredkbPlus": "0.93", - "whales": "6" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "84.33", - "accession": "SAMN26237494", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267391", "ccsAlgorithm": "N/A", - "coverage": "25.55", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.1", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PR31", - "filename": "08_10_21_R941_HG01099_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG01099_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04228-22e-2_S12_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04228-22e-2-2_S12_L003_R1_001-2_S12_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613843", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.315749", - "oneHundredkbPlus": "8.39", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/nanopore/guppy_6/08_10_21_R941_HG01099_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.51087", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-22e-2_S12_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "75225", - "result": "Similar", - "sampleId": "HG01099", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PUR", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.16", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04228", + "totalBp": "28216872503", + "totalGbp": "28.22", "totalReads": "N/A", - "twoHundredkbPlus": "0.91", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "65.67", - "accession": "SAMN26237494", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267391", "ccsAlgorithm": "N/A", - "coverage": "19.9", - "dataType": "unaligned reads with 5mC mods", + "coverage": "9.1", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PR31", - "filename": "08_10_21_R941_HG01099_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG01099_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04228-22e-2_S12_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04228-22e-2-2_S12_L003_R1_001-2_S12_L003_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613843", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.29249", - "oneHundredkbPlus": "6.6", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/nanopore/guppy_6/08_10_21_R941_HG01099_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.461293", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-22e-2_S12_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "75724", - "result": "Similar", - "sampleId": "HG01099", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PUR", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.13", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04228", + "totalBp": "28215751267", + "totalGbp": "28.22", "totalReads": "N/A", - "twoHundredkbPlus": "0.75", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "104.5", - "accession": "SAMN26237496", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267391", "ccsAlgorithm": "N/A", - "coverage": "31.67", - "dataType": "unaligned reads with 5mC mods", + "coverage": "8.75", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "CLM43", - "filename": "08_10_21_R941_HG01433_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.06", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG01433_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04228-22e-2_S12_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04228-22e-2-2_S12_L004_R1_001-2_S12_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613842", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.327795", - "oneHundredkbPlus": "7.9", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01433/raw_data/nanopore/guppy_6/08_10_21_R941_HG01433_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.506095", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-22e-2_S12_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "67193", - "result": "Similar", - "sampleId": "HG01433", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CLM", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.17", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04228", + "totalBp": "27115384871", + "totalGbp": "27.12", "totalReads": "N/A", - "twoHundredkbPlus": "0.75", - "whales": "5" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "81.82", - "accession": "SAMN26237496", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN26267391", "ccsAlgorithm": "N/A", - "coverage": "24.79", - "dataType": "unaligned reads with 5mC mods", + "coverage": "8.75", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "CLM43", - "filename": "08_10_21_R941_HG01433_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.03", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG01433_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "HG04228-22e-2_S12_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "HG04228-22e-2-2_S12_L004_R1_001-2_S12_L004_R2_001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30613842", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.28057", - "oneHundredkbPlus": "6.07", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01433/raw_data/nanopore/guppy_6/08_10_21_R941_HG01433_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.465526", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/hic/HG04228-22e-2_S12_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "67405", - "result": "Similar", - "sampleId": "HG01433", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CLM", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.1", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of HG04228", + "totalBp": "27114094153", + "totalGbp": "27.11", "totalReads": "N/A", - "twoHundredkbPlus": "0.48", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "80.97", - "accession": "SAMN26237496", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021643", "ccsAlgorithm": "N/A", - "coverage": "24.54", - "dataType": "unaligned reads with 5mC mods", + "coverage": "7.14", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "CLM43", - "filename": "08_10_21_R941_HG01433_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.03", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG01433_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18505-1_FC1_S13_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18505-1_FC1_S13_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310970", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.348327", - "oneHundredkbPlus": "5.92", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01433/raw_data/nanopore/guppy_6/08_10_21_R941_HG01433_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.467255", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18505/raw_data/hic/NA18505-1_FC1_S13_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "66723", - "result": "Similar", - "sampleId": "HG01433", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CLM", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.09", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18505", + "totalBp": "22139961713", + "totalGbp": "22.14", "totalReads": "N/A", - "twoHundredkbPlus": "0.48", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "81.17", - "accession": "SAMN26237501", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021643", "ccsAlgorithm": "N/A", - "coverage": "24.6", - "dataType": "unaligned reads with 5mC mods", + "coverage": "7.14", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL29", - "filename": "08_10_21_R941_HG01993_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.06", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG01993_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18505-1_FC1_S13_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18505-1_FC1_S13_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310970", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.357558", - "oneHundredkbPlus": "9.14", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/nanopore/guppy_6/08_10_21_R941_HG01993_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.467255", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18505/raw_data/hic/NA18505-1_FC1_S13_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "79775", - "result": "Similar", - "sampleId": "HG01993", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.19", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18505", + "totalBp": "22139961713", + "totalGbp": "22.14", "totalReads": "N/A", - "twoHundredkbPlus": "1.31", - "whales": "6" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "117.99", - "accession": "SAMN26237501", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021643", "ccsAlgorithm": "N/A", - "coverage": "35.76", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.81", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL29", - "filename": "08_10_21_R941_HG01993_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.13", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG01993_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18505-1_FC2_S13_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18505-1_FC2_S13_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310969", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.337567", - "oneHundredkbPlus": "14.08", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/nanopore/guppy_6/08_10_21_R941_HG01993_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.489725", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18505/raw_data/hic/NA18505-1_FC2_S13_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "83016", - "result": "Similar", - "sampleId": "HG01993", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.41", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18505", + "totalBp": "21101450908", + "totalGbp": "21.1", "totalReads": "N/A", - "twoHundredkbPlus": "2.34", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "114.71", - "accession": "SAMN26237501", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021643", "ccsAlgorithm": "N/A", - "coverage": "34.76", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.81", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL29", - "filename": "08_10_21_R941_HG01993_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.08", - "fourHundredkbPlus": "0.2", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG01993_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18505-1_FC2_S13_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18505-1_FC2_S13_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310969", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.346723", - "oneHundredkbPlus": "13.81", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/nanopore/guppy_6/08_10_21_R941_HG01993_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.489725", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18505/raw_data/hic/NA18505-1_FC2_S13_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "83178", - "result": "Similar", - "sampleId": "HG01993", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.58", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18505", + "totalBp": "21101450908", + "totalGbp": "21.1", "totalReads": "N/A", - "twoHundredkbPlus": "2.59", - "whales": "4" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "35.55", - "accession": "SAMN26267383", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021643", "ccsAlgorithm": "N/A", - "coverage": "10.77", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.58", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "GB38", - "filename": "08_10_21_R941_HG02647_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.09", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG02647_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18505-2_FC1_S14_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18505-2_FC1_S14_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310967", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.364914", - "oneHundredkbPlus": "3.34", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/nanopore/guppy_6/08_10_21_R941_HG02647_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.5285", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18505/raw_data/hic/NA18505-2_FC1_S14_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "67975", - "result": "Similar", - "sampleId": "HG02647", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.2", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18505", + "totalBp": "17310353100", + "totalGbp": "17.31", "totalReads": "N/A", - "twoHundredkbPlus": "0.66", - "whales": "22" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "57.79", - "accession": "SAMN26267383", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021643", "ccsAlgorithm": "N/A", - "coverage": "17.51", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.58", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "GB38", - "filename": "08_10_21_R941_HG02647_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.06", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG02647_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18505-2_FC1_S14_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18505-2_FC1_S14_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310967", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.293523", - "oneHundredkbPlus": "5.9", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/nanopore/guppy_6/08_10_21_R941_HG02647_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.5285", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18505/raw_data/hic/NA18505-2_FC1_S14_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "74826", - "result": "Similar", - "sampleId": "HG02647", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.18", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18505", + "totalBp": "17310353100", + "totalGbp": "17.31", "totalReads": "N/A", - "twoHundredkbPlus": "0.94", - "whales": "5" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "63.43", - "accession": "SAMN26267383", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021643", "ccsAlgorithm": "N/A", - "coverage": "19.22", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.37", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "GB38", - "filename": "08_10_21_R941_HG02647_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG02647_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18505-2_FC2_S14_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18505-2_FC2_S14_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310966", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.272442", - "oneHundredkbPlus": "6.51", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/nanopore/guppy_6/08_10_21_R941_HG02647_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.487172", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18505/raw_data/hic/NA18505-2_FC2_S14_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "75914", - "result": "Similar", - "sampleId": "HG02647", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.16", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18505", + "totalBp": "16645942681", + "totalGbp": "16.65", "totalReads": "N/A", - "twoHundredkbPlus": "0.95", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "11.54", - "accession": "SAMN26267383", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021643", "ccsAlgorithm": "N/A", - "coverage": "3.5", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.37", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "GB38", - "filename": "08_10_21_R941_HG02647_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG02647_4", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18505-2_FC2_S14_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18505-2_FC2_S14_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310966", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.472454", - "oneHundredkbPlus": "1.24", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/nanopore/guppy_6/08_10_21_R941_HG02647_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.487172", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18505/raw_data/hic/NA18505-2_FC2_S14_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "78171", - "result": "Similar", - "sampleId": "HG02647", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.04", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18505", + "totalBp": "16645942681", + "totalGbp": "16.65", "totalReads": "N/A", - "twoHundredkbPlus": "0.19", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "84.42", - "accession": "SAMN26237514", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021626", "ccsAlgorithm": "N/A", - "coverage": "25.58", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.53", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD27", - "filename": "08_10_21_R941_HG03831_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG03831_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18508-1_FC1_S7_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18508-1_FC1_S7_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310965", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.312214", - "oneHundredkbPlus": "9.56", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/nanopore/guppy_6/08_10_21_R941_HG03831_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.511853", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18508/raw_data/hic/NA18508-1_FC1_S7_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "79360", - "result": "Similar", - "sampleId": "HG03831", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.3", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18508", + "totalBp": "17138703246", + "totalGbp": "17.14", "totalReads": "N/A", - "twoHundredkbPlus": "1.72", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "85.9", - "accession": "SAMN26237514", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021626", "ccsAlgorithm": "N/A", - "coverage": "26.03", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.53", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD27", - "filename": "08_10_21_R941_HG03831_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG03831_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18508-1_FC1_S7_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18508-1_FC1_S7_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310965", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.324472", - "oneHundredkbPlus": "9.89", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/nanopore/guppy_6/08_10_21_R941_HG03831_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.511853", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18508/raw_data/hic/NA18508-1_FC1_S7_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "81179", - "result": "Similar", - "sampleId": "HG03831", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.23", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18508", + "totalBp": "17138703246", + "totalGbp": "17.14", "totalReads": "N/A", - "twoHundredkbPlus": "1.63", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "93.08", - "accession": "SAMN26237514", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021626", "ccsAlgorithm": "N/A", - "coverage": "28.21", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.45", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD27", - "filename": "08_10_21_R941_HG03831_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.08", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG03831_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18508-1_FC2_S7_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18508-1_FC2_S7_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310964", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.324669", - "oneHundredkbPlus": "10.65", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/nanopore/guppy_6/08_10_21_R941_HG03831_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.506867", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18508/raw_data/hic/NA18508-1_FC2_S7_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "80227", - "result": "Similar", - "sampleId": "HG03831", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.35", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18508", + "totalBp": "16893840740", + "totalGbp": "16.89", "totalReads": "N/A", - "twoHundredkbPlus": "1.95", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "40.5", - "accession": "SAMN26267386", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021626", "ccsAlgorithm": "N/A", - "coverage": "12.27", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.45", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD37", - "filename": "08_10_21_R941_HG03927_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG03927_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18508-1_FC2_S7_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18508-1_FC2_S7_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310964", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.403406", - "oneHundredkbPlus": "4.52", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/nanopore/guppy_6/08_10_21_R941_HG03927_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.506867", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18508/raw_data/hic/NA18508-1_FC2_S7_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "78594", - "result": "Similar", - "sampleId": "HG03927", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.1", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18508", + "totalBp": "16893840740", + "totalGbp": "16.89", "totalReads": "N/A", - "twoHundredkbPlus": "0.77", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "75.61", - "accession": "SAMN26267386", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021626", "ccsAlgorithm": "N/A", - "coverage": "22.91", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.32", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD37", - "filename": "08_10_21_R941_HG03927_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG03927_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18508-2_FC1_S8_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18508-2_FC1_S8_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310963", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.318072", - "oneHundredkbPlus": "8.6", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/nanopore/guppy_6/08_10_21_R941_HG03927_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.549076", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18508/raw_data/hic/NA18508-2_FC1_S8_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "80348", - "result": "Similar", - "sampleId": "HG03927", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.2", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18508", + "totalBp": "10283027218", + "totalGbp": "10.28", "totalReads": "N/A", - "twoHundredkbPlus": "1.43", - "whales": "4" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "88.3", - "accession": "SAMN26267386", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021626", "ccsAlgorithm": "N/A", - "coverage": "26.76", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.32", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD37", - "filename": "08_10_21_R941_HG03927_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG03927_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18508-2_FC1_S8_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18508-2_FC1_S8_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310963", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.361284", - "oneHundredkbPlus": "10.7", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/nanopore/guppy_6/08_10_21_R941_HG03927_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.549076", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18508/raw_data/hic/NA18508-2_FC1_S8_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "84221", - "result": "Similar", - "sampleId": "HG03927", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.26", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18508", + "totalBp": "10283027218", + "totalGbp": "10.28", "totalReads": "N/A", - "twoHundredkbPlus": "1.88", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "25.66", - "accession": "SAMN37706911", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021626", "ccsAlgorithm": "N/A", - "coverage": "7.78", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.19", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD62", - "filename": "08_10_21_R941_HG04187_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG04187_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18508-2_FC2_S8_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18508-2_FC2_S8_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310962", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.399721", - "oneHundredkbPlus": "2.83", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/nanopore/guppy_6/08_10_21_R941_HG04187_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.615152", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18508/raw_data/hic/NA18508-2_FC2_S8_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "80040", - "result": "Similar", - "sampleId": "HG04187", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.03", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18508", + "totalBp": "9883300622", + "totalGbp": "9.88", "totalReads": "N/A", - "twoHundredkbPlus": "0.3", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "66.07", - "accession": "SAMN37706911", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021626", "ccsAlgorithm": "N/A", - "coverage": "20.02", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.19", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD62", - "filename": "08_10_21_R941_HG04187_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG04187_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18508-2_FC2_S8_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18508-2_FC2_S8_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310962", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.336445", - "oneHundredkbPlus": "6.95", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/nanopore/guppy_6/08_10_21_R941_HG04187_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.615152", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18508/raw_data/hic/NA18508-2_FC2_S8_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "77575", - "result": "Similar", - "sampleId": "HG04187", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.07", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18508", + "totalBp": "9883300622", + "totalGbp": "9.88", "totalReads": "N/A", - "twoHundredkbPlus": "0.76", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "60.84", - "accession": "SAMN37706911", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758796", "ccsAlgorithm": "N/A", - "coverage": "18.44", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.09", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD62", - "filename": "08_10_21_R941_HG04187_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG04187_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18522-1_S8_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18522-1_S8_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242315", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.329922", - "oneHundredkbPlus": "6.19", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/nanopore/guppy_6/08_10_21_R941_HG04187_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.572991", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-1_S8_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "75818", - "result": "Similar", - "sampleId": "HG04187", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.08", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18522", + "totalBp": "12670729097", + "totalGbp": "12.67", "totalReads": "N/A", - "twoHundredkbPlus": "0.71", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "2.82", - "accession": "SAMN37706911", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758796", "ccsAlgorithm": "N/A", - "coverage": "0.86", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.09", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD62", - "filename": "08_10_21_R941_HG04187_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG04187_4", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18522-1_S8_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18522-1_S8_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242315", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.679294", - "oneHundredkbPlus": "0.31", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/nanopore/guppy_6/08_10_21_R941_HG04187_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.574618", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-1_S8_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "79819", - "result": "Similar", - "sampleId": "HG04187", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18522", + "totalBp": "12669946134", + "totalGbp": "12.67", "totalReads": "N/A", - "twoHundredkbPlus": "0.03", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "95.87", - "accession": "SAMN26267389", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758796", "ccsAlgorithm": "N/A", - "coverage": "29.05", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.22", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "ST203", - "filename": "08_10_21_R941_HG04199_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.08", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG04199_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18522-1_S8_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18522-1_S8_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242167", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.300183", - "oneHundredkbPlus": "11.2", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/nanopore/guppy_6/08_10_21_R941_HG04199_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.558825", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-1_S8_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "83714", - "result": "Similar", - "sampleId": "HG04199", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "STU", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.3", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18522", + "totalBp": "13095838677", + "totalGbp": "13.1", "totalReads": "N/A", - "twoHundredkbPlus": "1.59", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "41.26", - "accession": "SAMN26267389", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758796", "ccsAlgorithm": "N/A", - "coverage": "12.5", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.22", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "ST203", - "filename": "08_10_21_R941_HG04199_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG04199_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18522-1_S8_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18522-1_S8_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242167", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.366146", - "oneHundredkbPlus": "4.58", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/nanopore/guppy_6/08_10_21_R941_HG04199_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.53355", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-1_S8_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "80766", - "result": "Similar", - "sampleId": "HG04199", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "STU", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.12", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18522", + "totalBp": "13094893749", + "totalGbp": "13.09", "totalReads": "N/A", - "twoHundredkbPlus": "0.63", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "60.89", - "accession": "SAMN26267389", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758796", "ccsAlgorithm": "N/A", - "coverage": "18.45", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.93", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "ST203", - "filename": "08_10_21_R941_HG04199_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG04199_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18522-1_S8_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18522-1_S8_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242166", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.337721", - "oneHundredkbPlus": "5.55", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/nanopore/guppy_6/08_10_21_R941_HG04199_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.611446", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-1_S8_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "71491", - "result": "Similar", - "sampleId": "HG04199", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "STU", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.1", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18522", + "totalBp": "12187989591", + "totalGbp": "12.19", "totalReads": "N/A", - "twoHundredkbPlus": "0.64", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "93.56", - "accession": "SAMN26267390", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758796", "ccsAlgorithm": "N/A", - "coverage": "28.35", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.93", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "ST006", - "filename": "08_10_21_R941_HG04204_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG04204_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18522-1_S8_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18522-1_S8_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242166", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.322726", - "oneHundredkbPlus": "11.74", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/nanopore/guppy_6/08_10_21_R941_HG04204_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.543095", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-1_S8_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "87228", - "result": "Similar", - "sampleId": "HG04204", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "STU", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.22", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18522", + "totalBp": "12187213960", + "totalGbp": "12.19", "totalReads": "N/A", - "twoHundredkbPlus": "1.6", - "whales": "5" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "70.98", - "accession": "SAMN26267390", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758796", "ccsAlgorithm": "N/A", - "coverage": "21.51", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.07", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "ST006", - "filename": "08_10_21_R941_HG04204_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG04204_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18522-1_S8_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18522-1_S8_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242165", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.308884", - "oneHundredkbPlus": "8.43", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/nanopore/guppy_6/08_10_21_R941_HG04204_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.608723", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-1_S8_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "83571", - "result": "Similar", - "sampleId": "HG04204", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "STU", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.17", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18522", + "totalBp": "12630827955", + "totalGbp": "12.63", "totalReads": "N/A", - "twoHundredkbPlus": "1.17", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "27.6", - "accession": "SAMN26267390", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758796", "ccsAlgorithm": "N/A", - "coverage": "8.36", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.07", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "ST006", - "filename": "08_10_21_R941_HG04204_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG04204_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18522-1_S8_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18522-1_S8_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242165", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.38478", - "oneHundredkbPlus": "3.19", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/nanopore/guppy_6/08_10_21_R941_HG04204_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.591182", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-1_S8_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "82249", - "result": "Similar", - "sampleId": "HG04204", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "STU", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.06", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18522", + "totalBp": "12629954975", + "totalGbp": "12.63", "totalReads": "N/A", - "twoHundredkbPlus": "0.41", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "100.06", - "accession": "SAMN26267391", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758796", "ccsAlgorithm": "N/A", - "coverage": "30.32", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.26", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "ST232", - "filename": "08_10_21_R941_HG04228_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.1", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG04228_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18522-2_S16_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18522-2_S16_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242164", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", - "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.313973", - "oneHundredkbPlus": "10.71", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/nanopore/guppy_6/08_10_21_R941_HG04228_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "n75": "N/A", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.571952", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-2_S16_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "77428", - "result": "Similar", - "sampleId": "HG04228", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "STU", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.4", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18522", + "totalBp": "16313555116", + "totalGbp": "16.31", "totalReads": "N/A", - "twoHundredkbPlus": "1.93", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "49.57", - "accession": "SAMN26267391", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758796", "ccsAlgorithm": "N/A", - "coverage": "15.02", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.26", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "ST232", - "filename": "08_10_21_R941_HG04228_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG04228_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18522-2_S16_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18522-2_S16_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242164", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.340369", - "oneHundredkbPlus": "5.27", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/nanopore/guppy_6/08_10_21_R941_HG04228_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.504895", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-2_S16_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "77232", - "result": "Similar", - "sampleId": "HG04228", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "STU", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.18", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18522", + "totalBp": "16312805022", + "totalGbp": "16.31", "totalReads": "N/A", - "twoHundredkbPlus": "0.93", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "88.93", - "accession": "SAMN26267391", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758796", "ccsAlgorithm": "N/A", - "coverage": "26.95", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.39", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "ST232", - "filename": "08_10_21_R941_HG04228_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.09", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_21_R941_HG04228_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18522-2_S16_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18522-2_S16_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242163", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.316726", - "oneHundredkbPlus": "9.37", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/nanopore/guppy_6/08_10_21_R941_HG04228_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.578408", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-2_S16_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "76339", - "result": "Similar", - "sampleId": "HG04228", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "STU", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.36", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18522", + "totalBp": "16717750885", + "totalGbp": "16.72", "totalReads": "N/A", - "twoHundredkbPlus": "1.71", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "77.67", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758796", "ccsAlgorithm": "N/A", - "coverage": "23.54", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.39", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_GM18570_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.06", - "fourHundredkbPlus": "0.17", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_22_R941_GM18570_1", - "libraryLayout": "single", + "filename": "NA18522-2_S16_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18522-2_S16_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242163", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.339543", - "oneHundredkbPlus": "10.02", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/nanopore/guppy_6/08_10_22_R941_GM18570_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.512093", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-2_S16_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "85731", - "result": "Similar", - "sampleId": "GM18570", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.63", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18522", + "totalBp": "16716791220", + "totalGbp": "16.72", "totalReads": "N/A", - "twoHundredkbPlus": "2.71", - "whales": "5" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "78.8", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758796", "ccsAlgorithm": "N/A", - "coverage": "23.88", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.04", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_GM18570_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.08", - "fourHundredkbPlus": "0.22", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_22_R941_GM18570_2", - "libraryLayout": "single", + "filename": "NA18522-2_S16_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18522-2_S16_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242313", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.340802", - "oneHundredkbPlus": "9.24", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/nanopore/guppy_6/08_10_22_R941_GM18570_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.569439", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-2_S16_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "77119", - "result": "Similar", - "sampleId": "GM18570", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.68", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18522", + "totalBp": "15608912229", + "totalGbp": "15.61", "totalReads": "N/A", - "twoHundredkbPlus": "2.63", - "whales": "15" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "62.05", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758796", "ccsAlgorithm": "N/A", - "coverage": "18.8", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.03", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_GM18570_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.11", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_22_R941_GM18570_3", - "libraryLayout": "single", + "filename": "NA18522-2_S16_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18522-2_S16_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242313", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.353154", - "oneHundredkbPlus": "7.59", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/nanopore/guppy_6/08_10_22_R941_GM18570_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.55818", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-2_S16_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "81801", - "result": "Similar", - "sampleId": "GM18570", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.44", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18522", + "totalBp": "15608095066", + "totalGbp": "15.61", "totalReads": "N/A", - "twoHundredkbPlus": "1.94", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "51", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758796", "ccsAlgorithm": "N/A", - "coverage": "15.45", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.21", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_GM19120_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.16", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_22_R941_GM19120_1", - "libraryLayout": "single", + "filename": "NA18522-2_S16_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18522-2_S16_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242312", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.349111", - "oneHundredkbPlus": "7.09", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/nanopore/guppy_6/08_10_22_R941_GM19120_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.580577", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-2_S16_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "91781", - "result": "Similar", - "sampleId": "GM19120", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.61", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18522", + "totalBp": "16150293852", + "totalGbp": "16.15", "totalReads": "N/A", - "twoHundredkbPlus": "2.2", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "58.1", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758796", "ccsAlgorithm": "N/A", - "coverage": "17.61", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.21", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_GM19120_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.17", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_22_R941_GM19120_2", - "libraryLayout": "single", + "filename": "NA18522-2_S16_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18522-2_S16_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242312", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.386826", - "oneHundredkbPlus": "7.62", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/nanopore/guppy_6/08_10_22_R941_GM19120_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.539815", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/hic/NA18522-2_S16_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "86577", - "result": "Similar", - "sampleId": "GM19120", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.64", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18522", + "totalBp": "16149401435", + "totalGbp": "16.15", "totalReads": "N/A", - "twoHundredkbPlus": "2.34", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "80.4", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797086", "ccsAlgorithm": "N/A", - "coverage": "24.36", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.59", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_GM19120_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.16", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_22_R941_GM19120_3", - "libraryLayout": "single", + "filename": "NA18570-1_S6_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18570-1_S6_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242159", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.361188", - "oneHundredkbPlus": "9.34", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/nanopore/guppy_6/08_10_22_R941_GM19120_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.601569", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-1_S6_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "77646", - "result": "Similar", - "sampleId": "GM19120", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.66", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18570", + "totalBp": "11128098122", + "totalGbp": "11.13", "totalReads": "N/A", - "twoHundredkbPlus": "2.58", - "whales": "6" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "69.84", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797086", "ccsAlgorithm": "N/A", - "coverage": "21.16", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.59", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_GM19159_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.16", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_22_R941_GM19159_1", - "libraryLayout": "single", + "filename": "NA18570-1_S6_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18570-1_S6_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242159", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.332599", - "oneHundredkbPlus": "9.42", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/nanopore/guppy_6/08_10_22_R941_GM19159_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.595608", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-1_S6_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "89279", - "result": "Similar", - "sampleId": "GM19159", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.69", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18570", + "totalBp": "11127181174", + "totalGbp": "11.13", "totalReads": "N/A", - "twoHundredkbPlus": "2.77", - "whales": "6" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "60.82", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797086", "ccsAlgorithm": "N/A", - "coverage": "18.43", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.9", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_GM19159_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.12", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_22_R941_GM19159_2", - "libraryLayout": "single", + "filename": "NA18570-1_S6_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18570-1_S6_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242158", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.370954", - "oneHundredkbPlus": "7.17", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/nanopore/guppy_6/08_10_22_R941_GM19159_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.597847", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-1_S6_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "78467", - "result": "Similar", - "sampleId": "GM19159", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.5", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18570", + "totalBp": "12088124186", + "totalGbp": "12.09", "totalReads": "N/A", - "twoHundredkbPlus": "2.01", - "whales": "6" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "55.23", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797086", "ccsAlgorithm": "N/A", - "coverage": "16.74", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.9", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_GM19159_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.15", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_22_R941_GM19159_3", - "libraryLayout": "single", + "filename": "NA18570-1_S6_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18570-1_S6_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242158", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.376472", - "oneHundredkbPlus": "7.14", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/nanopore/guppy_6/08_10_22_R941_GM19159_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.578868", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-1_S6_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "85827", - "result": "Similar", - "sampleId": "GM19159", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.55", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18570", + "totalBp": "12087460014", + "totalGbp": "12.09", "totalReads": "N/A", - "twoHundredkbPlus": "2.11", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "61", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797086", "ccsAlgorithm": "N/A", - "coverage": "18.49", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.91", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_GM19185_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.07", - "fourHundredkbPlus": "0.21", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_22_R941_GM19185_1", - "libraryLayout": "single", + "filename": "NA18570-1_S6_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18570-1_S6_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242157", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.358044", - "oneHundredkbPlus": "7.54", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/nanopore/guppy_6/08_10_22_R941_GM19185_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.612623", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-1_S6_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "82038", - "result": "Similar", - "sampleId": "GM19185", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.69", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18570", + "totalBp": "12106703496", + "totalGbp": "12.11", "totalReads": "N/A", - "twoHundredkbPlus": "2.31", - "whales": "8" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "55.98", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797086", "ccsAlgorithm": "N/A", - "coverage": "16.96", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.91", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_GM19185_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.1", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_22_R941_GM19185_2", - "libraryLayout": "single", + "filename": "NA18570-1_S6_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18570-1_S6_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242157", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.349426", - "oneHundredkbPlus": "5.63", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/nanopore/guppy_6/08_10_22_R941_GM19185_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.595106", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-1_S6_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "69161", - "result": "Similar", - "sampleId": "GM19185", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.39", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18570", + "totalBp": "12106005970", + "totalGbp": "12.11", "totalReads": "N/A", - "twoHundredkbPlus": "1.45", - "whales": "2" - }, - { - "Gb": "62.93", - "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797086", "ccsAlgorithm": "N/A", - "coverage": "19.07", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.85", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_GM19185_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.15", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_22_R941_GM19185_3", - "libraryLayout": "single", + "filename": "NA18570-1_S6_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18570-1_S6_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242156", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.363303", - "oneHundredkbPlus": "6.79", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/nanopore/guppy_6/08_10_22_R941_GM19185_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.607579", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-1_S6_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "72791", - "result": "Similar", - "sampleId": "GM19185", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.53", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18570", + "totalBp": "11931905360", + "totalGbp": "11.93", "totalReads": "N/A", - "twoHundredkbPlus": "1.88", - "whales": "4" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "17.01", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797086", "ccsAlgorithm": "N/A", - "coverage": "5.16", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.85", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_GM20805_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_22_R941_GM20805_1", - "libraryLayout": "single", + "filename": "NA18570-1_S6_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18570-1_S6_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242156", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.507947", - "oneHundredkbPlus": "1.98", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/nanopore/guppy_6/08_10_22_R941_GM20805_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.542617", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-1_S6_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "74947", - "result": "Similar", - "sampleId": "GM20805", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.17", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18570", + "totalBp": "11931251919", + "totalGbp": "11.93", "totalReads": "N/A", - "twoHundredkbPlus": "0.62", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "62.3", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797086", "ccsAlgorithm": "N/A", - "coverage": "18.88", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.25", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_GM20805_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.12", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_22_R941_GM20805_2", - "libraryLayout": "single", + "filename": "NA18570-2_S14_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18570-2_S14_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242155", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.373759", - "oneHundredkbPlus": "7.77", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/nanopore/guppy_6/08_10_22_R941_GM20805_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.611813", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-2_S14_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "82608", - "result": "Similar", - "sampleId": "GM20805", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.55", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18570", + "totalBp": "10078151831", + "totalGbp": "10.08", "totalReads": "N/A", - "twoHundredkbPlus": "2.23", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "50.43", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797086", "ccsAlgorithm": "N/A", - "coverage": "15.28", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.25", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_GM20805_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_22_R941_GM20805_3", - "libraryLayout": "single", + "filename": "NA18570-2_S14_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18570-2_S14_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242155", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.387074", - "oneHundredkbPlus": "5.68", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/nanopore/guppy_6/08_10_22_R941_GM20805_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.609444", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-2_S14_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "75115", - "result": "Similar", - "sampleId": "GM20805", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.37", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18570", + "totalBp": "10077433892", + "totalGbp": "10.08", "totalReads": "N/A", - "twoHundredkbPlus": "1.55", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "33.38", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797086", "ccsAlgorithm": "N/A", - "coverage": "10.11", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.49", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_GM20805_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_22_R941_GM20805_4", - "libraryLayout": "single", + "filename": "NA18570-2_S14_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18570-2_S14_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242154", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.420147", - "oneHundredkbPlus": "3.53", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/nanopore/guppy_6/08_10_22_R941_GM20805_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.627078", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-2_S14_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "71330", - "result": "Similar", - "sampleId": "GM20805", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.22", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18570", + "totalBp": "10833167300", + "totalGbp": "10.83", "totalReads": "N/A", - "twoHundredkbPlus": "0.93", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "56.73", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797086", "ccsAlgorithm": "N/A", - "coverage": "17.19", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.49", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_GM20858_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.15", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_22_R941_GM20858_1", - "libraryLayout": "single", + "filename": "NA18570-2_S14_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18570-2_S14_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242154", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.38728", - "oneHundredkbPlus": "7.21", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/nanopore/guppy_6/08_10_22_R941_GM20858_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.593433", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-2_S14_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "83361", - "result": "Similar", - "sampleId": "GM20858", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.6", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18570", + "totalBp": "10832689311", + "totalGbp": "10.83", "totalReads": "N/A", - "twoHundredkbPlus": "2.25", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "50.68", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797086", "ccsAlgorithm": "N/A", - "coverage": "15.36", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.49", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_GM20858_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.1", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_22_R941_GM20858_2", - "libraryLayout": "single", + "filename": "NA18570-2_S14_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18570-2_S14_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242153", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.38856", - "oneHundredkbPlus": "5.54", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/nanopore/guppy_6/08_10_22_R941_GM20858_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.638538", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-2_S14_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "72966", - "result": "Similar", - "sampleId": "GM20858", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.41", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18570", + "totalBp": "10827380755", + "totalGbp": "10.83", "totalReads": "N/A", - "twoHundredkbPlus": "1.56", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "47.89", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797086", "ccsAlgorithm": "N/A", - "coverage": "14.51", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.49", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_GM20858_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.12", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_22_R941_GM20858_3", - "libraryLayout": "single", + "filename": "NA18570-2_S14_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18570-2_S14_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242153", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.398138", - "oneHundredkbPlus": "5.33", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/nanopore/guppy_6/08_10_22_R941_GM20858_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.607336", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-2_S14_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "73630", - "result": "Similar", - "sampleId": "GM20858", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.43", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18570", + "totalBp": "10826886349", + "totalGbp": "10.83", "totalReads": "N/A", - "twoHundredkbPlus": "1.55", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "4.33", - "accession": "SAMN37797104", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797086", "ccsAlgorithm": "N/A", - "coverage": "1.31", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.44", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_HG02391_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_22_R941_HG02391_1", - "libraryLayout": "single", + "filename": "NA18570-2_S14_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18570-2_S14_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242528", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.64693", - "oneHundredkbPlus": "0.44", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/nanopore/guppy_6/08_10_22_R941_HG02391_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.601804", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-2_S14_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "72462", - "result": "Similar", - "sampleId": "HG02391", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CDX", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.02", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18570", + "totalBp": "10674939126", + "totalGbp": "10.67", "totalReads": "N/A", - "twoHundredkbPlus": "0.09", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "62.98", - "accession": "SAMN37797104", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN37797086", "ccsAlgorithm": "N/A", - "coverage": "19.09", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.44", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_HG02391_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.1", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_22_R941_HG02391_2", - "libraryLayout": "single", + "filename": "NA18570-2_S14_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18570-2_S14_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242528", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.373826", - "oneHundredkbPlus": "7.27", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/nanopore/guppy_6/08_10_22_R941_HG02391_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.572355", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/hic/NA18570-2_S14_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "76876", - "result": "Similar", - "sampleId": "HG02391", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CDX", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.45", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18570", + "totalBp": "10674467316", + "totalGbp": "10.67", "totalReads": "N/A", - "twoHundredkbPlus": "1.96", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "60.06", - "accession": "SAMN37797104", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021619", "ccsAlgorithm": "N/A", - "coverage": "18.2", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.96", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_HG02391_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.08", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_22_R941_HG02391_3", - "libraryLayout": "single", + "filename": "NA18608-1_FC1_S11_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18608-1_FC1_S11_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310961", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.369934", - "oneHundredkbPlus": "6.5", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/nanopore/guppy_6/08_10_22_R941_HG02391_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.587437", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18608/raw_data/hic/NA18608-1_FC1_S11_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "72921", - "result": "Similar", - "sampleId": "HG02391", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CDX", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.38", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18608", + "totalBp": "12289594493", + "totalGbp": "12.29", "totalReads": "N/A", - "twoHundredkbPlus": "1.71", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "43.65", - "accession": "SAMN37797104", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021619", "ccsAlgorithm": "N/A", - "coverage": "13.23", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.96", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_HG02391_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.1", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_10_22_R941_HG02391_4", - "libraryLayout": "single", + "filename": "NA18608-1_FC1_S11_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18608-1_FC1_S11_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310961", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.39373", - "oneHundredkbPlus": "6.34", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/nanopore/guppy_6/08_10_22_R941_HG02391_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.587437", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18608/raw_data/hic/NA18608-1_FC1_S11_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "95822", - "result": "Similar", - "sampleId": "HG02391", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CDX", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.45", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18608", + "totalBp": "12289594493", + "totalGbp": "12.29", "totalReads": "N/A", - "twoHundredkbPlus": "1.93", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "85.57", - "accession": "SAMN37797112", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021619", "ccsAlgorithm": "N/A", - "coverage": "25.93", - "dataType": "", + "coverage": "3.83", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_HG03792_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.02", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "08_10_22_R941_HG03792_1", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "filename": "NA18608-1_FC2_S11_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18608-1_FC2_S11_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310960", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.322213", - "oneHundredkbPlus": "6.56", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/nanopore/guppy_6/08_10_22_R941_HG03792_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.585861", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18608/raw_data/hic/NA18608-1_FC2_S11_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "59519", - "result": "Similar", - "sampleId": "HG03792", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "ITU", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.14", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18608", + "totalBp": "11872385570", + "totalGbp": "11.87", "totalReads": "N/A", - "twoHundredkbPlus": "1.02", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "70.26", - "accession": "SAMN37797112", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021619", "ccsAlgorithm": "N/A", - "coverage": "21.29", - "dataType": "", + "coverage": "3.83", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_HG03792_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.02", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "08_10_22_R941_HG03792_2", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "filename": "NA18608-1_FC2_S11_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18608-1_FC2_S11_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310960", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.349105", - "oneHundredkbPlus": "4.49", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/nanopore/guppy_6/08_10_22_R941_HG03792_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.585861", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18608/raw_data/hic/NA18608-1_FC2_S11_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "53139", - "result": "Similar", - "sampleId": "HG03792", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "ITU", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.09", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18608", + "totalBp": "11872385570", + "totalGbp": "11.87", "totalReads": "N/A", - "twoHundredkbPlus": "0.63", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "85.23", - "accession": "SAMN37797112", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021619", "ccsAlgorithm": "N/A", - "coverage": "25.83", - "dataType": "", + "coverage": "4.94", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "08_10_22_R941_HG03792_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.02", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "08_10_22_R941_HG03792_3", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "filename": "NA18608-2_FC1_S12_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18608-2_FC1_S12_L001", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310959", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.358335", - "oneHundredkbPlus": "6.43", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/nanopore/guppy_6/08_10_22_R941_HG03792_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.558086", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18608/raw_data/hic/NA18608-2_FC1_S12_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "58516", - "result": "Similar", - "sampleId": "HG03792", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "ITU", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.15", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18608", + "totalBp": "15304368987", + "totalGbp": "15.3", "totalReads": "N/A", - "twoHundredkbPlus": "1.04", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "49.22", - "accession": "SAMN26267379", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021619", "ccsAlgorithm": "N/A", - "coverage": "14.92", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.94", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "CLM27", - "filename": "08_17_21_R941_HG01346_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.06", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG01346_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18608-2_FC1_S12_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18608-2_FC1_S12_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310959", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.349099", - "oneHundredkbPlus": "4.89", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/nanopore/guppy_6/08_17_21_R941_HG01346_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.558086", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18608/raw_data/hic/NA18608-2_FC1_S12_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "72488", - "result": "Similar", - "sampleId": "HG01346", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CLM", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.15", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18608", + "totalBp": "15304368987", + "totalGbp": "15.3", "totalReads": "N/A", - "twoHundredkbPlus": "0.75", - "whales": "13" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "99.49", - "accession": "SAMN26267379", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021619", "ccsAlgorithm": "N/A", - "coverage": "30.15", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.78", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "CLM27", - "filename": "08_17_21_R941_HG01346_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG01346_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18608-2_FC2_S12_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18608-2_FC2_S12_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310958", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.297416", - "oneHundredkbPlus": "9.7", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/nanopore/guppy_6/08_17_21_R941_HG01346_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.546922", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18608/raw_data/hic/NA18608-2_FC2_S12_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "72436", - "result": "Similar", - "sampleId": "HG01346", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CLM", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.21", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18608", + "totalBp": "14807755355", + "totalGbp": "14.81", "totalReads": "N/A", - "twoHundredkbPlus": "1.34", - "whales": "6" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "91", - "accession": "SAMN26267379", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021619", "ccsAlgorithm": "N/A", - "coverage": "27.58", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.78", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "CLM27", - "filename": "08_17_21_R941_HG01346_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG01346_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18608-2_FC2_S12_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18608-2_FC2_S12_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310958", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.322652", - "oneHundredkbPlus": "8.89", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/nanopore/guppy_6/08_17_21_R941_HG01346_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.546922", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18608/raw_data/hic/NA18608-2_FC2_S12_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "72638", - "result": "Similar", - "sampleId": "HG01346", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CLM", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.18", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18608", + "totalBp": "14807755355", + "totalGbp": "14.81", "totalReads": "N/A", - "twoHundredkbPlus": "1.2", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "111.18", - "accession": "SAMN26237497", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621960", "ccsAlgorithm": "N/A", - "coverage": "33.69", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.68", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "CLM64", - "filename": "08_17_21_R941_HG01496_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.06", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG01496_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18612-1_S2_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18612-1_S2_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242174", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.372854", - "oneHundredkbPlus": "13.53", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/nanopore/guppy_6/08_17_21_R941_HG01496_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.593934", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-1_S2_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "83713", - "result": "Similar", - "sampleId": "HG01496", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CLM", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.32", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18612", + "totalBp": "14504938924", + "totalGbp": "14.5", "totalReads": "N/A", - "twoHundredkbPlus": "2.45", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "97.59", - "accession": "SAMN26237497", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621960", "ccsAlgorithm": "N/A", - "coverage": "29.57", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.68", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "CLM64", - "filename": "08_17_21_R941_HG01496_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG01496_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18612-1_S2_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18612-1_S2_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242174", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.364163", - "oneHundredkbPlus": "10.53", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/nanopore/guppy_6/08_17_21_R941_HG01496_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.563411", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-1_S2_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "75967", - "result": "Similar", - "sampleId": "HG01496", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CLM", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.21", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18612", + "totalBp": "14504096750", + "totalGbp": "14.5", "totalReads": "N/A", - "twoHundredkbPlus": "1.75", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "58.91", - "accession": "SAMN26237497", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621960", "ccsAlgorithm": "N/A", - "coverage": "17.85", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.79", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "CLM64", - "filename": "08_17_21_R941_HG01496_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.03", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG01496_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18612-1_S2_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18612-1_S2_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242173", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.328512", - "oneHundredkbPlus": "6.87", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/nanopore/guppy_6/08_17_21_R941_HG01496_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.571957", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-1_S2_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "80965", - "result": "Similar", - "sampleId": "HG01496", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CLM", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.16", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18612", + "totalBp": "14839350107", + "totalGbp": "14.84", "totalReads": "N/A", - "twoHundredkbPlus": "1.18", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "67.44", - "accession": "SAMN26267393", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621960", "ccsAlgorithm": "N/A", - "coverage": "20.44", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.79", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BB03", - "filename": "08_17_21_R941_HG01884_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.12", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG01884_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18612-1_S2_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18612-1_S2_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242173", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.2997", - "oneHundredkbPlus": "7.84", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/nanopore/guppy_6/08_17_21_R941_HG01884_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.52518", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-1_S2_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "81515", - "result": "Similar", - "sampleId": "HG01884", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ACB", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.33", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18612", + "totalBp": "14838209778", + "totalGbp": "14.84", "totalReads": "N/A", - "twoHundredkbPlus": "1.46", - "whales": "14" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "65.99", - "accession": "SAMN26267393", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621960", "ccsAlgorithm": "N/A", - "coverage": "20", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.59", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BB03", - "filename": "08_17_21_R941_HG01884_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.1", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG01884_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18612-1_S2_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18612-1_S2_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242215", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.30104", - "oneHundredkbPlus": "7.35", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/nanopore/guppy_6/08_17_21_R941_HG01884_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.56045", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-1_S2_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "78937", - "result": "Similar", - "sampleId": "HG01884", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ACB", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.28", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18612", + "totalBp": "14225785815", + "totalGbp": "14.23", "totalReads": "N/A", - "twoHundredkbPlus": "1.31", - "whales": "10" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "45.84", - "accession": "SAMN26267393", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621960", "ccsAlgorithm": "N/A", - "coverage": "13.89", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.59", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BB03", - "filename": "08_17_21_R941_HG01884_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.08", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG01884_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18612-1_S2_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18612-1_S2_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242215", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.329724", - "oneHundredkbPlus": "4.64", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/nanopore/guppy_6/08_17_21_R941_HG01884_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.56213", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-1_S2_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "72924", - "result": "Similar", - "sampleId": "HG01884", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ACB", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.18", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18612", + "totalBp": "14224758234", + "totalGbp": "14.22", "totalReads": "N/A", - "twoHundredkbPlus": "0.81", - "whales": "8" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "89.17", - "accession": "SAMN26237499", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621960", "ccsAlgorithm": "N/A", - "coverage": "27.02", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.66", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL016", - "filename": "08_17_21_R941_HG01943_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG01943_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18612-1_S2_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18612-1_S2_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242214", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.322052", - "oneHundredkbPlus": "8.87", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/nanopore/guppy_6/08_17_21_R941_HG01943_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.586383", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-1_S2_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "72475", - "result": "Similar", - "sampleId": "HG01943", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.2", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18612", + "totalBp": "14451088590", + "totalGbp": "14.45", "totalReads": "N/A", - "twoHundredkbPlus": "1.27", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "49.72", - "accession": "SAMN26237499", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", - "ccsAlgorithm": "N/A", - "coverage": "15.07", - "dataType": "unaligned reads with 5mC mods", - "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL016", - "filename": "08_17_21_R941_HG01943_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG01943_2", - "libraryLayout": "single", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621960", + "ccsAlgorithm": "N/A", + "coverage": "4.66", + "dataType": "unaligned reads", + "deepConsensusVersion": "N/A", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18612-1_S2_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18612-1_S2_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242214", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.322058", - "oneHundredkbPlus": "4.59", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/nanopore/guppy_6/08_17_21_R941_HG01943_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.537692", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-1_S2_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "68632", - "result": "Similar", - "sampleId": "HG01943", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.1", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18612", + "totalBp": "14450030677", + "totalGbp": "14.45", "totalReads": "N/A", - "twoHundredkbPlus": "0.61", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "67.8", - "accession": "SAMN26237499", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621960", "ccsAlgorithm": "N/A", - "coverage": "20.55", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.39", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL016", - "filename": "08_17_21_R941_HG01943_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG01943_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18612-2_S10_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18612-2_S10_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242213", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.326738", - "oneHundredkbPlus": "5.92", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/nanopore/guppy_6/08_17_21_R941_HG01943_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.629584", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-2_S10_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "65101", - "result": "Similar", - "sampleId": "HG01943", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.13", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18612", + "totalBp": "10496884578", + "totalGbp": "10.5", "totalReads": "N/A", - "twoHundredkbPlus": "0.82", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "66.07", - "accession": "SAMN26237505", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621960", "ccsAlgorithm": "N/A", - "coverage": "20.02", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.39", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BB23", - "filename": "08_17_21_R941_HG02280_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG02280_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18612-2_S10_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18612-2_S10_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242213", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.334565", - "oneHundredkbPlus": "8.3", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/nanopore/guppy_6/08_17_21_R941_HG02280_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.56808", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-2_S10_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "84963", - "result": "Similar", - "sampleId": "HG02280", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ACB", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.28", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18612", + "totalBp": "10496206124", + "totalGbp": "10.5", "totalReads": "N/A", - "twoHundredkbPlus": "1.79", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "114.3", - "accession": "SAMN26237505", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621960", "ccsAlgorithm": "N/A", - "coverage": "34.64", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.47", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BB23", - "filename": "08_17_21_R941_HG02280_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.08", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG02280_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18612-2_S10_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18612-2_S10_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242170", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.324119", - "oneHundredkbPlus": "13.82", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/nanopore/guppy_6/08_17_21_R941_HG02280_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.638907", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-2_S10_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "82220", - "result": "Similar", - "sampleId": "HG02280", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ACB", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.48", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18612", + "totalBp": "10759683519", + "totalGbp": "10.76", "totalReads": "N/A", - "twoHundredkbPlus": "2.93", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "39.92", - "accession": "SAMN26237505", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621960", "ccsAlgorithm": "N/A", - "coverage": "12.1", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.47", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BB23", - "filename": "08_17_21_R941_HG02280_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.03", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG02280_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18612-2_S10_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18612-2_S10_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242170", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.348716", - "oneHundredkbPlus": "4.85", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/nanopore/guppy_6/08_17_21_R941_HG02280_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.568986", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-2_S10_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "82435", - "result": "Similar", - "sampleId": "HG02280", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ACB", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.17", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18612", + "totalBp": "10758805375", + "totalGbp": "10.76", "totalReads": "N/A", - "twoHundredkbPlus": "1.05", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "94.09", - "accession": "SAMN26267394", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621960", "ccsAlgorithm": "N/A", - "coverage": "28.51", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.34", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL51", - "filename": "08_17_21_R941_HG02293_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.12", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG02293_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18612-2_S10_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18612-2_S10_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242162", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.365369", - "oneHundredkbPlus": "10.94", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/nanopore/guppy_6/08_17_21_R941_HG02293_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.661084", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-2_S10_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "81288", - "result": "Similar", - "sampleId": "HG02293", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.37", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18612", + "totalBp": "10349756404", + "totalGbp": "10.35", "totalReads": "N/A", - "twoHundredkbPlus": "1.9", - "whales": "7" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "99.12", - "accession": "SAMN26267394", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621960", "ccsAlgorithm": "N/A", - "coverage": "30.04", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.34", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL51", - "filename": "08_17_21_R941_HG02293_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.13", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG02293_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18612-2_S10_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18612-2_S10_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242162", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.384852", - "oneHundredkbPlus": "11.63", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/nanopore/guppy_6/08_17_21_R941_HG02293_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.582099", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-2_S10_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "81745", - "result": "Similar", - "sampleId": "HG02293", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.41", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18612", + "totalBp": "10348962235", + "totalGbp": "10.35", "totalReads": "N/A", - "twoHundredkbPlus": "2.06", - "whales": "6" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "109.5", - "accession": "SAMN26267394", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621960", "ccsAlgorithm": "N/A", - "coverage": "33.18", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.41", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL51", - "filename": "08_17_21_R941_HG02293_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.12", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG02293_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18612-2_S10_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18612-2_S10_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242161", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.374775", - "oneHundredkbPlus": "12.69", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/nanopore/guppy_6/08_17_21_R941_HG02293_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.642143", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-2_S10_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "81085", - "result": "Similar", - "sampleId": "HG02293", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.4", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18612", + "totalBp": "10576293045", + "totalGbp": "10.58", "totalReads": "N/A", - "twoHundredkbPlus": "2.16", - "whales": "6" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "58.23", - "accession": "SAMN26267395", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621960", "ccsAlgorithm": "N/A", - "coverage": "17.64", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.41", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL52", - "filename": "08_17_21_R941_HG02300_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.08", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG02300_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18612-2_S10_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18612-2_S10_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242161", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.329926", - "oneHundredkbPlus": "7.72", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/nanopore/guppy_6/08_17_21_R941_HG02300_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.590349", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/hic/NA18612-2_S10_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "89326", - "result": "Similar", - "sampleId": "HG02300", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.35", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18612", + "totalBp": "10575504601", + "totalGbp": "10.58", "totalReads": "N/A", - "twoHundredkbPlus": "1.72", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "85.74", - "accession": "SAMN26267395", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021618", "ccsAlgorithm": "N/A", - "coverage": "25.98", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.39", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL52", - "filename": "08_17_21_R941_HG02300_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.08", - "fourHundredkbPlus": "0.21", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG02300_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18620-1_FC1_S13_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18620-1_FC1_S13_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310956", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.326405", - "oneHundredkbPlus": "11.44", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/nanopore/guppy_6/08_17_21_R941_HG02300_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.512003", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18620/raw_data/hic/NA18620-1_FC1_S13_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "89321", - "result": "Similar", - "sampleId": "HG02300", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.67", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18620", + "totalBp": "16711418697", + "totalGbp": "16.71", "totalReads": "N/A", - "twoHundredkbPlus": "2.82", - "whales": "16" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "63.45", - "accession": "SAMN26267395", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021618", "ccsAlgorithm": "N/A", - "coverage": "19.23", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.39", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL52", - "filename": "08_17_21_R941_HG02300_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.06", - "fourHundredkbPlus": "0.15", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG02300_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18620-1_FC1_S13_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18620-1_FC1_S13_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310956", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.327987", - "oneHundredkbPlus": "8.27", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/nanopore/guppy_6/08_17_21_R941_HG02300_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.512003", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18620/raw_data/hic/NA18620-1_FC1_S13_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "87466", - "result": "Similar", - "sampleId": "HG02300", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.48", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18620", + "totalBp": "16711418697", + "totalGbp": "16.71", "totalReads": "N/A", - "twoHundredkbPlus": "2", - "whales": "9" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "39.87", - "accession": "SAMN33758786", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021618", "ccsAlgorithm": "N/A", - "coverage": "12.08", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.3", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BB46", - "filename": "08_17_21_R941_HG02451_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG02451_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18620-1_FC2_S13_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18620-1_FC2_S13_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310955", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.338318", - "oneHundredkbPlus": "4.81", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02451/raw_data/nanopore/guppy_6/08_17_21_R941_HG02451_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.527546", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18620/raw_data/hic/NA18620-1_FC2_S13_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "83173", - "result": "Similar", - "sampleId": "HG02451", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ACB", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.13", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18620", + "totalBp": "16444896902", + "totalGbp": "16.44", "totalReads": "N/A", - "twoHundredkbPlus": "0.89", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "62.38", - "accession": "SAMN33758786", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021618", "ccsAlgorithm": "N/A", - "coverage": "18.9", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.3", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BB46", - "filename": "08_17_21_R941_HG02451_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.03", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG02451_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18620-1_FC2_S13_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18620-1_FC2_S13_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310955", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.301994", - "oneHundredkbPlus": "6.97", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02451/raw_data/nanopore/guppy_6/08_17_21_R941_HG02451_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.527546", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18620/raw_data/hic/NA18620-1_FC2_S13_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "78263", - "result": "Similar", - "sampleId": "HG02451", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ACB", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.18", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18620", + "totalBp": "16444896902", + "totalGbp": "16.44", "totalReads": "N/A", - "twoHundredkbPlus": "1.24", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "62.53", - "accession": "SAMN33758786", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021618", "ccsAlgorithm": "N/A", - "coverage": "18.95", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.45", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BB46", - "filename": "08_17_21_R941_HG02451_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG02451_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18620-2_FC1_S14_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18620-2_FC1_S14_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310930", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.307473", - "oneHundredkbPlus": "7.45", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02451/raw_data/nanopore/guppy_6/08_17_21_R941_HG02451_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.491903", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18620/raw_data/hic/NA18620-2_FC1_S14_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "82173", - "result": "Similar", - "sampleId": "HG02451", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "ACB", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.25", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18620", + "totalBp": "20009587877", + "totalGbp": "20.01", "totalReads": "N/A", - "twoHundredkbPlus": "1.45", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "52.05", - "accession": "SAMN33758787", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021618", "ccsAlgorithm": "N/A", - "coverage": "15.77", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.45", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK26", - "filename": "08_17_21_R941_HG02735_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.11", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG02735_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18620-2_FC1_S14_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18620-2_FC1_S14_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310930", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.362279", - "oneHundredkbPlus": "5.83", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/nanopore/guppy_6/08_17_21_R941_HG02735_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.491903", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18620/raw_data/hic/NA18620-2_FC1_S14_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "79365", - "result": "Similar", - "sampleId": "HG02735", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.29", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18620", + "totalBp": "20009587877", + "totalGbp": "20.01", "totalReads": "N/A", - "twoHundredkbPlus": "1.14", - "whales": "18" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "57.41", - "accession": "SAMN33758787", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021618", "ccsAlgorithm": "N/A", - "coverage": "17.4", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.4", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK26", - "filename": "08_17_21_R941_HG02735_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.09", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG02735_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18620-2_FC2_S14_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18620-2_FC2_S14_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310929", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.350825", - "oneHundredkbPlus": "6.43", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/nanopore/guppy_6/08_17_21_R941_HG02735_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.495146", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18620/raw_data/hic/NA18620-2_FC2_S14_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "80063", - "result": "Similar", - "sampleId": "HG02735", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.26", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18620", + "totalBp": "19832201080", + "totalGbp": "19.83", "totalReads": "N/A", - "twoHundredkbPlus": "1.13", - "whales": "7" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "28.87", - "accession": "SAMN33758787", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021618", "ccsAlgorithm": "N/A", - "coverage": "8.75", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.4", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK26", - "filename": "08_17_21_R941_HG02735_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.03", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG02735_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18620-2_FC2_S14_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18620-2_FC2_S14_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310929", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.419899", - "oneHundredkbPlus": "2.99", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/nanopore/guppy_6/08_17_21_R941_HG02735_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.495146", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18620/raw_data/hic/NA18620-2_FC2_S14_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "77157", - "result": "Similar", - "sampleId": "HG02735", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.09", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18620", + "totalBp": "19832201080", + "totalGbp": "19.83", "totalReads": "N/A", - "twoHundredkbPlus": "0.46", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "41.91", - "accession": "SAMN33758787", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758797", "ccsAlgorithm": "N/A", - "coverage": "12.7", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.05", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK26", - "filename": "08_17_21_R941_HG02735_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG02735_4", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18747-1_S3_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18747-1_S3_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242160", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.352212", - "oneHundredkbPlus": "4.74", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/nanopore/guppy_6/08_17_21_R941_HG02735_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.567091", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-1_S3_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "81587", - "result": "Similar", - "sampleId": "HG02735", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.16", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18747", + "totalBp": "12551596173", + "totalGbp": "12.55", "totalReads": "N/A", - "twoHundredkbPlus": "0.79", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "20.37", - "accession": "SAMN26267396", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758797", "ccsAlgorithm": "N/A", - "coverage": "6.17", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.05", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK27", - "filename": "08_17_21_R941_HG02738_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG02738_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18747-1_S3_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18747-1_S3_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242160", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.407703", - "oneHundredkbPlus": "2.19", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/nanopore/guppy_6/08_17_21_R941_HG02738_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.561688", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-1_S3_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "75231", - "result": "Similar", - "sampleId": "HG02738", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.1", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18747", + "totalBp": "12550734996", + "totalGbp": "12.55", "totalReads": "N/A", - "twoHundredkbPlus": "0.42", - "whales": "5" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "70.92", - "accession": "SAMN26267396", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758797", "ccsAlgorithm": "N/A", - "coverage": "21.49", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.44", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK27", - "filename": "08_17_21_R941_HG02738_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.06", - "fourHundredkbPlus": "0.14", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG02738_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18747-1_S3_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18747-1_S3_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242527", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.275721", - "oneHundredkbPlus": "8.82", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/nanopore/guppy_6/08_17_21_R941_HG02738_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.594242", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-1_S3_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "84858", - "result": "Similar", - "sampleId": "HG02738", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.4", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18747", + "totalBp": "13770283286", + "totalGbp": "13.77", "totalReads": "N/A", - "twoHundredkbPlus": "1.79", - "whales": "6" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "95.7", - "accession": "SAMN26267396", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758797", "ccsAlgorithm": "N/A", - "coverage": "29", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.44", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK27", - "filename": "08_17_21_R941_HG02738_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.09", - "fourHundredkbPlus": "0.22", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG02738_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18747-1_S3_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18747-1_S3_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242527", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.296058", - "oneHundredkbPlus": "12.07", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/nanopore/guppy_6/08_17_21_R941_HG02738_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.523654", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-1_S3_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "85682", - "result": "Similar", - "sampleId": "HG02738", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.64", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18747", + "totalBp": "13769695959", + "totalGbp": "13.77", "totalReads": "N/A", - "twoHundredkbPlus": "2.64", - "whales": "16" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "48.89", - "accession": "SAMN26237510", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758797", "ccsAlgorithm": "N/A", - "coverage": "14.81", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.44", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "GB63", - "filename": "08_17_21_R941_HG02809_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG02809_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18747-1_S3_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18747-1_S3_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242525", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.330392", - "oneHundredkbPlus": "6.43", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/nanopore/guppy_6/08_17_21_R941_HG02809_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.586409", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-1_S3_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "88827", - "result": "Similar", - "sampleId": "HG02809", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.24", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18747", + "totalBp": "13779161976", + "totalGbp": "13.78", "totalReads": "N/A", - "twoHundredkbPlus": "1.32", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "74.33", - "accession": "SAMN26237510", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758797", "ccsAlgorithm": "N/A", - "coverage": "22.52", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.44", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "GB63", - "filename": "08_17_21_R941_HG02809_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.08", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG02809_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18747-1_S3_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18747-1_S3_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242525", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.339115", - "oneHundredkbPlus": "10.41", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/nanopore/guppy_6/08_17_21_R941_HG02809_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.544026", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-1_S3_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "93836", - "result": "Similar", - "sampleId": "HG02809", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.32", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18747", + "totalBp": "13778551619", + "totalGbp": "13.78", "totalReads": "N/A", - "twoHundredkbPlus": "2.04", - "whales": "4" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "84.25", - "accession": "SAMN26237510", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758797", "ccsAlgorithm": "N/A", - "coverage": "25.53", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.38", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "GB63", - "filename": "08_17_21_R941_HG02809_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.1", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG02809_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18747-1_S3_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18747-1_S3_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242524", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.321222", - "oneHundredkbPlus": "11.5", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/nanopore/guppy_6/08_17_21_R941_HG02809_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.602279", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-1_S3_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "91856", - "result": "Similar", - "sampleId": "HG02809", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GWD", - "superpopulation": "AFR", - "threeHundredkbPlus": "0.4", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18747", + "totalBp": "13579732696", + "totalGbp": "13.58", "totalReads": "N/A", - "twoHundredkbPlus": "2.28", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "82.75", - "accession": "SAMN33758795", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758797", "ccsAlgorithm": "N/A", - "coverage": "25.08", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.38", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK60", - "filename": "08_17_21_R941_HG03704_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.03", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG03704_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18747-1_S3_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18747-1_S3_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242524", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.322761", - "oneHundredkbPlus": "10.17", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03704/raw_data/nanopore/guppy_6/08_17_21_R941_HG03704_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.567863", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-1_S3_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "85778", - "result": "Similar", - "sampleId": "HG03704", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.17", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18747", + "totalBp": "13579153216", + "totalGbp": "13.58", "totalReads": "N/A", - "twoHundredkbPlus": "1.49", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "81.19", - "accession": "SAMN33758795", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758797", "ccsAlgorithm": "N/A", - "coverage": "24.6", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.29", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK60", - "filename": "08_17_21_R941_HG03704_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG03704_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18747-2_S11_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18747-2_S11_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242523", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.35997", - "oneHundredkbPlus": "9.61", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03704/raw_data/nanopore/guppy_6/08_17_21_R941_HG03704_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.627018", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-2_S11_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "82890", - "result": "Similar", - "sampleId": "HG03704", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.19", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18747", + "totalBp": "13292917501", + "totalGbp": "13.29", "totalReads": "N/A", - "twoHundredkbPlus": "1.48", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "66.14", - "accession": "SAMN33758795", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758797", "ccsAlgorithm": "N/A", - "coverage": "20.04", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.29", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK60", - "filename": "08_17_21_R941_HG03704_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_17_21_R941_HG03704_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18747-2_S11_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18747-2_S11_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242523", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.333713", - "oneHundredkbPlus": "7.24", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03704/raw_data/nanopore/guppy_6/08_17_21_R941_HG03704_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.547127", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-2_S11_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "78860", - "result": "Similar", - "sampleId": "HG03704", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.11", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18747", + "totalBp": "13292067409", + "totalGbp": "13.29", "totalReads": "N/A", - "twoHundredkbPlus": "0.99", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "56.38", - "accession": "SAMN26237500", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758797", "ccsAlgorithm": "N/A", - "coverage": "17.09", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.67", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL27", - "filename": "08_25_21_R941_HG01981_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_25_21_R941_HG01981_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18747-2_S11_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18747-2_S11_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242169", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.266703", - "oneHundredkbPlus": "4.92", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/nanopore/guppy_6/08_25_21_R941_HG01981_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.568298", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-2_S11_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "66847", - "result": "Similar", - "sampleId": "HG01981", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.04", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18747", + "totalBp": "14462000368", + "totalGbp": "14.46", "totalReads": "N/A", - "twoHundredkbPlus": "0.52", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "80.81", - "accession": "SAMN26237500", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758797", "ccsAlgorithm": "N/A", - "coverage": "24.49", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.66", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL27", - "filename": "08_25_21_R941_HG01981_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_25_21_R941_HG01981_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18747-2_S11_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18747-2_S11_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242169", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.301576", - "oneHundredkbPlus": "6.96", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/nanopore/guppy_6/08_25_21_R941_HG01981_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.547781", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-2_S11_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "65984", - "result": "Similar", - "sampleId": "HG01981", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.07", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18747", + "totalBp": "14461438438", + "totalGbp": "14.46", "totalReads": "N/A", - "twoHundredkbPlus": "0.75", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "69.28", - "accession": "SAMN26237500", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758797", "ccsAlgorithm": "N/A", - "coverage": "20.99", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.66", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL27", - "filename": "08_25_21_R941_HG01981_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_25_21_R941_HG01981_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18747-2_S11_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18747-2_S11_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242168", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.323498", - "oneHundredkbPlus": "5.88", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/nanopore/guppy_6/08_25_21_R941_HG01981_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.586129", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-2_S11_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "65439", - "result": "Similar", - "sampleId": "HG01981", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.07", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18747", + "totalBp": "14439258485", + "totalGbp": "14.44", "totalReads": "N/A", - "twoHundredkbPlus": "0.66", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "116.98", - "accession": "SAMN26237502", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758797", "ccsAlgorithm": "N/A", - "coverage": "35.45", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.66", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL33", - "filename": "08_25_21_R941_HG02004_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_25_21_R941_HG02004_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18747-2_S11_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18747-2_S11_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242168", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.297757", - "oneHundredkbPlus": "15.74", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/nanopore/guppy_6/08_25_21_R941_HG02004_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.568463", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-2_S11_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "89941", - "result": "Similar", - "sampleId": "HG02004", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.39", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18747", + "totalBp": "14438684950", + "totalGbp": "14.44", "totalReads": "N/A", - "twoHundredkbPlus": "3.26", - "whales": "4" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "103.09", - "accession": "SAMN26237502", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758797", "ccsAlgorithm": "N/A", - "coverage": "31.24", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.59", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL33", - "filename": "08_25_21_R941_HG02004_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.06", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_25_21_R941_HG02004_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18747-2_S11_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18747-2_S11_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242522", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.307564", - "oneHundredkbPlus": "13.86", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/nanopore/guppy_6/08_25_21_R941_HG02004_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.555905", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-2_S11_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "89761", - "result": "Similar", - "sampleId": "HG02004", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.36", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18747", + "totalBp": "14233988117", + "totalGbp": "14.23", "totalReads": "N/A", - "twoHundredkbPlus": "2.91", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "58.55", - "accession": "SAMN26237502", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758797", "ccsAlgorithm": "N/A", - "coverage": "17.74", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.59", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PEL33", - "filename": "08_25_21_R941_HG02004_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.03", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_25_21_R941_HG02004_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18747-2_S11_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18747-2_S11_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242522", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.341192", - "oneHundredkbPlus": "7.42", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/nanopore/guppy_6/08_25_21_R941_HG02004_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.577051", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/hic/NA18747-2_S11_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "85447", - "result": "Similar", - "sampleId": "HG02004", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PEL", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.19", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18747", + "totalBp": "14233416171", + "totalGbp": "14.23", "totalReads": "N/A", - "twoHundredkbPlus": "1.48", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "51.01", - "accession": "SAMN26267384", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021621", "ccsAlgorithm": "N/A", - "coverage": "15.46", - "dataType": "unaligned reads with 5mC mods", + "coverage": "16.61", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK16", - "filename": "08_25_21_R941_HG02683_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.08", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_25_21_R941_HG02683_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18952-1_FC1_S13_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18952-1_FC1_S13_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310928", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.373037", - "oneHundredkbPlus": "7.2", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/nanopore/guppy_6/08_25_21_R941_HG02683_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.440657", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18952/raw_data/hic/NA18952-1_FC1_S13_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "93672", - "result": "Similar", - "sampleId": "HG02683", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.33", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18952", + "totalBp": "51483278615", + "totalGbp": "51.48", "totalReads": "N/A", - "twoHundredkbPlus": "1.76", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "54.69", - "accession": "SAMN26267384", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021621", "ccsAlgorithm": "N/A", - "coverage": "16.57", - "dataType": "unaligned reads with 5mC mods", + "coverage": "16.61", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK16", - "filename": "08_25_21_R941_HG02683_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_25_21_R941_HG02683_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18952-1_FC1_S13_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18952-1_FC1_S13_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310928", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.341715", - "oneHundredkbPlus": "8.17", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/nanopore/guppy_6/08_25_21_R941_HG02683_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.440657", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18952/raw_data/hic/NA18952-1_FC1_S13_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "98701", - "result": "Similar", - "sampleId": "HG02683", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.31", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18952", + "totalBp": "51483278615", + "totalGbp": "51.48", "totalReads": "N/A", - "twoHundredkbPlus": "1.89", - "whales": "6" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "51.42", - "accession": "SAMN26267384", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021621", "ccsAlgorithm": "N/A", - "coverage": "15.58", - "dataType": "unaligned reads with 5mC mods", + "coverage": "17.59", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PK16", - "filename": "08_25_21_R941_HG02683_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.06", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_25_21_R941_HG02683_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18952-1_FC2_S13_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18952-1_FC2_S13_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310927", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.344844", - "oneHundredkbPlus": "7.42", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/nanopore/guppy_6/08_25_21_R941_HG02683_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.425158", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18952/raw_data/hic/NA18952-1_FC2_S13_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "95821", - "result": "Similar", - "sampleId": "HG02683", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PJL", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.27", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18952", + "totalBp": "54534807717", + "totalGbp": "54.53", "totalReads": "N/A", - "twoHundredkbPlus": "1.67", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "46.09", - "accession": "SAMN26267397", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021621", "ccsAlgorithm": "N/A", - "coverage": "13.97", - "dataType": "unaligned reads with 5mC mods", + "coverage": "17.59", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD61", - "filename": "08_25_21_R941_HG04184_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.08", - "fourHundredkbPlus": "0.17", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_25_21_R941_HG04184_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18952-1_FC2_S13_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18952-1_FC2_S13_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310927", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.340642", - "oneHundredkbPlus": "6", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/nanopore/guppy_6/08_25_21_R941_HG04184_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.425158", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18952/raw_data/hic/NA18952-1_FC2_S13_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "87332", - "result": "Similar", - "sampleId": "HG04184", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.43", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18952", + "totalBp": "54534807717", + "totalGbp": "54.53", "totalReads": "N/A", - "twoHundredkbPlus": "1.5", - "whales": "15" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "59.44", - "accession": "SAMN26267397", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021621", "ccsAlgorithm": "N/A", - "coverage": "18.01", - "dataType": "unaligned reads with 5mC mods", + "coverage": "12.12", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD61", - "filename": "08_25_21_R941_HG04184_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.13", - "fourHundredkbPlus": "0.28", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_25_21_R941_HG04184_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18952-2_FC1_S14_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18952-2_FC1_S14_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310926", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.334229", - "oneHundredkbPlus": "8.99", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/nanopore/guppy_6/08_25_21_R941_HG04184_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.488041", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18952/raw_data/hic/NA18952-2_FC1_S14_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "99822", - "result": "Similar", - "sampleId": "HG04184", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.69", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18952", + "totalBp": "37586941895", + "totalGbp": "37.59", "totalReads": "N/A", - "twoHundredkbPlus": "2.4", - "whales": "30" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "52.17", - "accession": "SAMN26267397", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021621", "ccsAlgorithm": "N/A", - "coverage": "15.81", - "dataType": "unaligned reads with 5mC mods", + "coverage": "12.12", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "BD61", - "filename": "08_25_21_R941_HG04184_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.1", - "fourHundredkbPlus": "0.21", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "08_25_21_R941_HG04184_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18952-2_FC1_S14_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18952-2_FC1_S14_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310926", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.361875", - "oneHundredkbPlus": "6.96", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/nanopore/guppy_6/08_25_21_R941_HG04184_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.488041", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18952/raw_data/hic/NA18952-2_FC1_S14_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "89392", - "result": "Similar", - "sampleId": "HG04184", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "BEB", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.5", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18952", + "totalBp": "37586941895", + "totalGbp": "37.59", "totalReads": "N/A", - "twoHundredkbPlus": "1.73", - "whales": "25" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "65.28", - "accession": "SAMN33621945", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021621", "ccsAlgorithm": "N/A", - "coverage": "19.78", - "dataType": "unaligned reads with 5mC mods", + "coverage": "12.28", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PR40", - "filename": "09_08_21_R941_HG01192_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.14", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_08_21_R941_HG01192_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18952-2_FC2_S14_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18952-2_FC2_S14_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310925", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.36009", - "oneHundredkbPlus": "9.23", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01192/raw_data/nanopore/guppy_6/09_08_21_R941_HG01192_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.445759", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18952/raw_data/hic/NA18952-2_FC2_S14_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "93439", - "result": "Similar", - "sampleId": "HG01192", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PUR", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.58", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18952", + "totalBp": "38068632499", + "totalGbp": "38.07", "totalReads": "N/A", - "twoHundredkbPlus": "2.6", - "whales": "10" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "45.46", - "accession": "SAMN33621945", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021621", "ccsAlgorithm": "N/A", - "coverage": "13.78", - "dataType": "unaligned reads with 5mC mods", + "coverage": "12.28", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PR40", - "filename": "09_08_21_R941_HG01192_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_08_21_R941_HG01192_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18952-2_FC2_S14_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18952-2_FC2_S14_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310925", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.341194", - "oneHundredkbPlus": "6.63", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01192/raw_data/nanopore/guppy_6/09_08_21_R941_HG01192_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.445759", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18952/raw_data/hic/NA18952-2_FC2_S14_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "96482", - "result": "Similar", - "sampleId": "HG01192", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PUR", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.35", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18952", + "totalBp": "38068632499", + "totalGbp": "38.07", "totalReads": "N/A", - "twoHundredkbPlus": "1.75", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "53.82", - "accession": "SAMN33621945", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621961", "ccsAlgorithm": "N/A", - "coverage": "16.31", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.72", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "PR40", - "filename": "09_08_21_R941_HG01192_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.09", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_08_21_R941_HG01192_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18971-1_S3_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18971-1_S3_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242521", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.383568", - "oneHundredkbPlus": "7.86", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01192/raw_data/nanopore/guppy_6/09_08_21_R941_HG01192_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.587984", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-1_S3_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "96610", - "result": "Similar", - "sampleId": "HG01192", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "PUR", - "superpopulation": "AMR", - "threeHundredkbPlus": "0.44", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18971", + "totalBp": "11546555904", + "totalGbp": "11.55", "totalReads": "N/A", - "twoHundredkbPlus": "2.12", - "whales": "5" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "78.91", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621961", "ccsAlgorithm": "N/A", - "coverage": "23.91", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.72", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_14_22_R941_GM19087_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.06", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_14_22_R941_GM19087_1", - "libraryLayout": "single", + "filename": "NA18971-1_S3_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18971-1_S3_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242521", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.363347", - "oneHundredkbPlus": "7.34", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/nanopore/guppy_6/09_14_22_R941_GM19087_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.592032", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-1_S3_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "67258", - "result": "Similar", - "sampleId": "GM19087", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.26", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18971", + "totalBp": "11545972577", + "totalGbp": "11.55", "totalReads": "N/A", - "twoHundredkbPlus": "1.35", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "75.53", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621961", "ccsAlgorithm": "N/A", - "coverage": "22.89", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.82", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_14_22_R941_GM19087_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_14_22_R941_GM19087_2", - "libraryLayout": "single", + "filename": "NA18971-1_S3_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18971-1_S3_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242520", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.37074", - "oneHundredkbPlus": "6.62", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/nanopore/guppy_6/09_14_22_R941_GM19087_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.585985", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-1_S3_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "63634", - "result": "Similar", - "sampleId": "GM19087", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.26", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18971", + "totalBp": "11847239507", + "totalGbp": "11.85", "totalReads": "N/A", - "twoHundredkbPlus": "1.25", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "83.18", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621961", "ccsAlgorithm": "N/A", - "coverage": "25.21", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.82", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_14_22_R941_GM19087_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.12", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_14_22_R941_GM19087_3", - "libraryLayout": "single", + "filename": "NA18971-1_S3_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18971-1_S3_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242520", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.389523", - "oneHundredkbPlus": "8.38", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/nanopore/guppy_6/09_14_22_R941_GM19087_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.572946", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-1_S3_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "70432", - "result": "Similar", - "sampleId": "GM19087", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.4", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18971", + "totalBp": "11846461324", + "totalGbp": "11.85", "totalReads": "N/A", - "twoHundredkbPlus": "1.75", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "89.75", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621961", "ccsAlgorithm": "N/A", - "coverage": "27.2", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.64", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_14_22_R941_GM20752_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.1", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_14_22_R941_GM20752_1", - "libraryLayout": "single", + "filename": "NA18971-1_S3_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18971-1_S3_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242519", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.35574", - "oneHundredkbPlus": "10.05", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/nanopore/guppy_6/09_14_22_R941_GM20752_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.592584", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-1_S3_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "76135", - "result": "Similar", - "sampleId": "GM20752", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.49", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18971", + "totalBp": "11276006296", + "totalGbp": "11.28", "totalReads": "N/A", - "twoHundredkbPlus": "2.39", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "89.75", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621961", "ccsAlgorithm": "N/A", - "coverage": "27.2", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.64", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_14_22_R941_GM20752_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.1", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_14_22_R941_GM20752_2", - "libraryLayout": "single", + "filename": "NA18971-1_S3_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18971-1_S3_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242519", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.35574", - "oneHundredkbPlus": "10.05", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/nanopore/guppy_6/09_14_22_R941_GM20752_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.562171", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-1_S3_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "76135", - "result": "Similar", - "sampleId": "GM20752", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.49", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18971", + "totalBp": "11275281789", + "totalGbp": "11.28", "totalReads": "N/A", - "twoHundredkbPlus": "2.39", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "80.96", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621961", "ccsAlgorithm": "N/A", - "coverage": "24.53", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.74", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_14_22_R941_GM20752_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.11", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_14_22_R941_GM20752_3", - "libraryLayout": "single", + "filename": "NA18971-1_S3_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18971-1_S3_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242518", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.370001", - "oneHundredkbPlus": "9.75", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/nanopore/guppy_6/09_14_22_R941_GM20752_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.571223", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-1_S3_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "81001", - "result": "Similar", - "sampleId": "GM20752", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.53", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18971", + "totalBp": "11580409557", + "totalGbp": "11.58", "totalReads": "N/A", - "twoHundredkbPlus": "2.47", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "64.04", - "accession": "SAMN33758778", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621961", "ccsAlgorithm": "N/A", - "coverage": "19.41", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.74", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_14_22_R941_HG00099_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.13", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_14_22_R941_HG00099_1", - "libraryLayout": "single", + "filename": "NA18971-1_S3_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18971-1_S3_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242518", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.369611", - "oneHundredkbPlus": "6.98", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/nanopore/guppy_6/09_14_22_R941_HG00099_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.573881", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-1_S3_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "72981", - "result": "Similar", - "sampleId": "HG00099", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GBR", - "superpopulation": "EUR", - "threeHundredkbPlus": "0.5", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18971", + "totalBp": "11579687017", + "totalGbp": "11.58", "totalReads": "N/A", - "twoHundredkbPlus": "1.86", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "63.02", - "accession": "SAMN33758778", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621961", "ccsAlgorithm": "N/A", - "coverage": "19.1", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.72", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_14_22_R941_HG00099_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.12", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_14_22_R941_HG00099_2", - "libraryLayout": "single", + "filename": "NA18971-2_S11_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18971-2_S11_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242516", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.377991", - "oneHundredkbPlus": "6.65", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/nanopore/guppy_6/09_14_22_R941_HG00099_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.599769", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-2_S11_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", - "quartile75": "N/A", - "readN50": "71544", - "result": "Similar", - "sampleId": "HG00099", - "seqKit": "SQK-ULK001", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GBR", - "superpopulation": "EUR", - "threeHundredkbPlus": "0.45", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "quartile75": "N/A", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", + "seqPlateChemistryVersion": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18971", + "totalBp": "11529545009", + "totalGbp": "11.53", "totalReads": "N/A", - "twoHundredkbPlus": "1.72", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "66.9", - "accession": "SAMN33758778", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621961", "ccsAlgorithm": "N/A", - "coverage": "20.27", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.72", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_14_22_R941_HG00099_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.12", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_14_22_R941_HG00099_3", - "libraryLayout": "single", + "filename": "NA18971-2_S11_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18971-2_S11_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242516", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.3764", - "oneHundredkbPlus": "7.12", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/nanopore/guppy_6/09_14_22_R941_HG00099_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.572832", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-2_S11_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "71872", - "result": "Similar", - "sampleId": "HG00099", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "GBR", - "superpopulation": "EUR", - "threeHundredkbPlus": "0.47", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18971", + "totalBp": "11528908261", + "totalGbp": "11.53", "totalReads": "N/A", - "twoHundredkbPlus": "1.83", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "72.98", - "accession": "SAMN33758779", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621961", "ccsAlgorithm": "N/A", - "coverage": "22.12", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.81", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_14_22_R941_HG00280_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.12", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_14_22_R941_HG00280_1", - "libraryLayout": "single", + "filename": "NA18971-2_S11_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18971-2_S11_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242515", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.375128", - "oneHundredkbPlus": "8.13", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/nanopore/guppy_6/09_14_22_R941_HG00280_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.578065", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-2_S11_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "74653", - "result": "Similar", - "sampleId": "HG00280", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "FIN", - "superpopulation": "EUR", - "threeHundredkbPlus": "0.5", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18971", + "totalBp": "11808316315", + "totalGbp": "11.81", "totalReads": "N/A", - "twoHundredkbPlus": "2.14", - "whales": "4" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "62.41", - "accession": "SAMN33758779", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621961", "ccsAlgorithm": "N/A", - "coverage": "18.91", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.81", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_14_22_R941_HG00280_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.11", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_14_22_R941_HG00280_2", - "libraryLayout": "single", + "filename": "NA18971-2_S11_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18971-2_S11_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242515", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.380822", - "oneHundredkbPlus": "6.12", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/nanopore/guppy_6/09_14_22_R941_HG00280_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.573433", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-2_S11_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "65990", - "result": "Similar", - "sampleId": "HG00280", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "FIN", - "superpopulation": "EUR", - "threeHundredkbPlus": "0.39", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18971", + "totalBp": "11807501248", + "totalGbp": "11.81", "totalReads": "N/A", - "twoHundredkbPlus": "1.57", - "whales": "14" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "62.07", - "accession": "SAMN33758779", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621961", "ccsAlgorithm": "N/A", - "coverage": "18.81", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.61", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_14_22_R941_HG00280_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.09", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_14_22_R941_HG00280_3", - "libraryLayout": "single", + "filename": "NA18971-2_S11_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18971-2_S11_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242514", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.360848", - "oneHundredkbPlus": "6.15", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/nanopore/guppy_6/09_14_22_R941_HG00280_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.577688", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-2_S11_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "67870", - "result": "Similar", - "sampleId": "HG00280", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "FIN", - "superpopulation": "EUR", - "threeHundredkbPlus": "0.34", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18971", + "totalBp": "11178435722", + "totalGbp": "11.18", "totalReads": "N/A", - "twoHundredkbPlus": "1.49", - "whales": "8" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "56.39", - "accession": "SAMN37797099", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621961", "ccsAlgorithm": "N/A", - "coverage": "17.09", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.61", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_14_22_R941_HG01530_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.06", - "fourHundredkbPlus": "0.19", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_14_22_R941_HG01530_1", - "libraryLayout": "single", + "filename": "NA18971-2_S11_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18971-2_S11_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242514", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.373646", - "oneHundredkbPlus": "6.91", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/nanopore/guppy_6/09_14_22_R941_HG01530_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.613323", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-2_S11_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "80614", - "result": "Similar", - "sampleId": "HG01530", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "IBS", - "superpopulation": "EUR", - "threeHundredkbPlus": "0.65", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18971", + "totalBp": "11177698253", + "totalGbp": "11.18", "totalReads": "N/A", - "twoHundredkbPlus": "2.13", - "whales": "4" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "62.94", - "accession": "SAMN37797099", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621961", "ccsAlgorithm": "N/A", - "coverage": "19.07", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.69", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_14_22_R941_HG01530_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.06", - "fourHundredkbPlus": "0.2", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_14_22_R941_HG01530_2", - "libraryLayout": "single", + "filename": "NA18971-2_S11_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18971-2_S11_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242513", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.370886", - "oneHundredkbPlus": "7.19", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/nanopore/guppy_6/09_14_22_R941_HG01530_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.609274", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-2_S11_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "75444", - "result": "Similar", - "sampleId": "HG01530", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "IBS", - "superpopulation": "EUR", - "threeHundredkbPlus": "0.66", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18971", + "totalBp": "11452546788", + "totalGbp": "11.45", "totalReads": "N/A", - "twoHundredkbPlus": "2.14", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "59.17", - "accession": "SAMN37797099", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33621961", "ccsAlgorithm": "N/A", - "coverage": "17.93", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.69", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_14_22_R941_HG01530_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.14", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_14_22_R941_HG01530_3", - "libraryLayout": "single", + "filename": "NA18971-2_S11_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18971-2_S11_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242513", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.39413", - "oneHundredkbPlus": "6.49", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/nanopore/guppy_6/09_14_22_R941_HG01530_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.608275", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/hic/NA18971-2_S11_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "73858", - "result": "Similar", - "sampleId": "HG01530", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "IBS", - "superpopulation": "EUR", - "threeHundredkbPlus": "0.49", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18971", + "totalBp": "11451809471", + "totalGbp": "11.45", "totalReads": "N/A", - "twoHundredkbPlus": "1.77", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "75.57", - "accession": "SAMN37797100", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021620", "ccsAlgorithm": "N/A", - "coverage": "22.9", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_14_22_R941_HG01784_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.14", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_14_22_R941_HG01784_1", - "libraryLayout": "single", + "filename": "NA18974-1_FC1_S15_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18974-1_FC1_S15_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310924", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.352992", - "oneHundredkbPlus": "8.62", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01784/raw_data/nanopore/guppy_6/09_14_22_R941_HG01784_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.552761", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18974/raw_data/hic/NA18974-1_FC1_S15_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "76764", - "result": "Similar", - "sampleId": "HG01784", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "IBS", - "superpopulation": "EUR", - "threeHundredkbPlus": "0.52", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18974", + "totalBp": "12402378205", + "totalGbp": "12.4", "totalReads": "N/A", - "twoHundredkbPlus": "2.16", - "whales": "4" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "84.4", - "accession": "SAMN37797100", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021620", "ccsAlgorithm": "N/A", - "coverage": "25.58", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_14_22_R941_HG01784_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.14", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_14_22_R941_HG01784_2", - "libraryLayout": "single", + "filename": "NA18974-1_FC1_S15_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18974-1_FC1_S15_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310924", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.367476", - "oneHundredkbPlus": "8.93", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01784/raw_data/nanopore/guppy_6/09_14_22_R941_HG01784_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.552761", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18974/raw_data/hic/NA18974-1_FC1_S15_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "72441", - "result": "Similar", - "sampleId": "HG01784", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "IBS", - "superpopulation": "EUR", - "threeHundredkbPlus": "0.5", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18974", + "totalBp": "12402378205", + "totalGbp": "12.4", "totalReads": "N/A", - "twoHundredkbPlus": "2.11", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "74.22", - "accession": "SAMN37797100", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021620", "ccsAlgorithm": "N/A", - "coverage": "22.49", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.88", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_14_22_R941_HG01784_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.11", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_14_22_R941_HG01784_3", - "libraryLayout": "single", + "filename": "NA18974-1_FC2_S15_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18974-1_FC2_S15_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310923", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.374443", - "oneHundredkbPlus": "7.55", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG01784/raw_data/nanopore/guppy_6/09_14_22_R941_HG01784_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.545855", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18974/raw_data/hic/NA18974-1_FC2_S15_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "70230", - "result": "Similar", - "sampleId": "HG01784", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "IBS", - "superpopulation": "EUR", - "threeHundredkbPlus": "0.39", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18974", + "totalBp": "12023989419", + "totalGbp": "12.02", "totalReads": "N/A", - "twoHundredkbPlus": "1.71", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "7.83", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021620", "ccsAlgorithm": "N/A", - "coverage": "2.37", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.88", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_27_2022_R941_GM19043_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.01", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_27_2022_R941_GM19043_1", - "libraryLayout": "single", + "filename": "NA18974-1_FC2_S15_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18974-1_FC2_S15_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310923", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.570092", - "oneHundredkbPlus": "0.9", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/nanopore/guppy_6/09_27_2022_R941_GM19043_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.545855", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18974/raw_data/hic/NA18974-1_FC2_S15_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "77107", - "result": "Similar", - "sampleId": "GM19043", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.04", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18974", + "totalBp": "12023989419", + "totalGbp": "12.02", "totalReads": "N/A", - "twoHundredkbPlus": "0.21", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "70.5", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021620", "ccsAlgorithm": "N/A", - "coverage": "21.36", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.08", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_27_2022_R941_GM19043_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_27_2022_R941_GM19043_2", - "libraryLayout": "single", + "filename": "NA18974-2_FC1_S16_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18974-2_FC1_S16_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310921", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.346266", - "oneHundredkbPlus": "7.16", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/nanopore/guppy_6/09_27_2022_R941_GM19043_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.557506", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18974/raw_data/hic/NA18974-2_FC1_S16_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "71878", - "result": "Similar", - "sampleId": "GM19043", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.23", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18974", + "totalBp": "12652812007", + "totalGbp": "12.65", "totalReads": "N/A", - "twoHundredkbPlus": "1.38", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "68.75", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021620", "ccsAlgorithm": "N/A", - "coverage": "20.83", - "dataType": "unaligned reads with 5mC mods", + "coverage": "4.08", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_27_2022_R941_GM19043_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.06", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_27_2022_R941_GM19043_3", - "libraryLayout": "single", + "filename": "NA18974-2_FC1_S16_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18974-2_FC1_S16_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310921", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.371248", - "oneHundredkbPlus": "7.05", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/nanopore/guppy_6/09_27_2022_R941_GM19043_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.557506", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18974/raw_data/hic/NA18974-2_FC1_S16_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "71558", - "result": "Similar", - "sampleId": "GM19043", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.27", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18974", + "totalBp": "12652812007", + "totalGbp": "12.65", "totalReads": "N/A", - "twoHundredkbPlus": "1.45", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "59.04", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021620", "ccsAlgorithm": "N/A", - "coverage": "17.89", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.97", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_27_2022_R941_GM19043_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_27_2022_R941_GM19043_4", - "libraryLayout": "single", + "filename": "NA18974-2_FC2_S16_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18974-2_FC2_S16_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310920", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.35535", - "oneHundredkbPlus": "6.71", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/nanopore/guppy_6/09_27_2022_R941_GM19043_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.558145", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18974/raw_data/hic/NA18974-2_FC2_S16_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "77640", - "result": "Similar", - "sampleId": "GM19043", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.26", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18974", + "totalBp": "12318140590", + "totalGbp": "12.32", "totalReads": "N/A", - "twoHundredkbPlus": "1.47", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "78.44", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021620", "ccsAlgorithm": "N/A", - "coverage": "23.77", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.97", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_27_2022_R941_GM20799_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_27_2022_R941_GM20799_1", - "libraryLayout": "single", + "filename": "NA18974-2_FC2_S16_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18974-2_FC2_S16_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310920", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.340489", - "oneHundredkbPlus": "7.71", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20799_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.558145", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18974/raw_data/hic/NA18974-2_FC2_S16_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "68413", - "result": "Similar", - "sampleId": "GM20799", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.26", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18974", + "totalBp": "12318140590", + "totalGbp": "12.32", "totalReads": "N/A", - "twoHundredkbPlus": "1.61", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "42.4", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021622", "ccsAlgorithm": "N/A", - "coverage": "12.85", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.68", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_27_2022_R941_GM20799_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_27_2022_R941_GM20799_2", - "libraryLayout": "single", + "filename": "NA18976-1_FC1_S15_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18976-1_FC1_S15_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310919", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.401567", - "oneHundredkbPlus": "3.8", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20799_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.522123", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18976/raw_data/hic/NA18976-1_FC1_S15_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "64340", - "result": "Similar", - "sampleId": "GM20799", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.11", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18976", + "totalBp": "17594352088", + "totalGbp": "17.59", "totalReads": "N/A", - "twoHundredkbPlus": "0.71", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "71.69", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021622", "ccsAlgorithm": "N/A", - "coverage": "21.72", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.68", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_27_2022_R941_GM20799_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.03", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_27_2022_R941_GM20799_3", - "libraryLayout": "single", + "filename": "NA18976-1_FC1_S15_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18976-1_FC1_S15_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310919", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.368589", - "oneHundredkbPlus": "6.75", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20799_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.522123", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18976/raw_data/hic/NA18976-1_FC1_S15_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "66914", - "result": "Similar", - "sampleId": "GM20799", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.2", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18976", + "totalBp": "17594352088", + "totalGbp": "17.59", "totalReads": "N/A", - "twoHundredkbPlus": "1.3", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "70.02", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021622", "ccsAlgorithm": "N/A", - "coverage": "21.22", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.8", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_27_2022_R941_GM20905_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.05", - "fourHundredkbPlus": "0.15", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_27_2022_R941_GM20905_1", - "libraryLayout": "single", + "filename": "NA18976-1_FC2_S15_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18976-1_FC2_S15_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310918", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.318679", - "oneHundredkbPlus": "8.31", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20905_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.52081", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18976/raw_data/hic/NA18976-1_FC2_S15_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "78145", - "result": "Similar", - "sampleId": "GM20905", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.61", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18976", + "totalBp": "17988627735", + "totalGbp": "17.99", "totalReads": "N/A", - "twoHundredkbPlus": "2.42", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "63.45", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021622", "ccsAlgorithm": "N/A", - "coverage": "19.23", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.8", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_27_2022_R941_GM20905_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.12", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_27_2022_R941_GM20905_2", - "libraryLayout": "single", + "filename": "NA18976-1_FC2_S15_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18976-1_FC2_S15_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310918", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.349624", - "oneHundredkbPlus": "6.76", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20905_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.52081", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18976/raw_data/hic/NA18976-1_FC2_S15_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "70923", - "result": "Similar", - "sampleId": "GM20905", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.45", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18976", + "totalBp": "17988627735", + "totalGbp": "17.99", "totalReads": "N/A", - "twoHundredkbPlus": "1.84", - "whales": "4" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "66.35", + "Gb": "N/A", "accession": null, - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021622", "ccsAlgorithm": "N/A", - "coverage": "20.1", - "dataType": "unaligned reads with 5mC mods", + "coverage": "5.67", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_27_2022_R941_GM20905_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.12", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "09_27_2022_R941_GM20905_3", - "libraryLayout": "single", + "filename": "NA18976-2_FC1_S16_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18976-2_FC1_S16_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310917", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.38176", - "oneHundredkbPlus": "6.92", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20905_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.546516", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18976/raw_data/hic/NA18976-2_FC1_S16_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "69497", - "result": "Similar", - "sampleId": "GM20905", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", "subpopulation": null, "superpopulation": null, - "threeHundredkbPlus": "0.46", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18976", + "totalBp": "17585532782", + "totalGbp": "17.59", "totalReads": "N/A", - "twoHundredkbPlus": "1.84", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "66.81", - "accession": "SAMN37797111", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021622", "ccsAlgorithm": "N/A", - "coverage": "20.24", - "dataType": "", + "coverage": "5.67", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_27_2022_R941_HG03742_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.11", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "09_27_2022_R941_HG03742_1", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "filename": "NA18976-2_FC1_S16_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18976-2_FC1_S16_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310917", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.377766", - "oneHundredkbPlus": "8.14", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/nanopore/guppy_6/09_27_2022_R941_HG03742_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.546516", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18976/raw_data/hic/NA18976-2_FC1_S16_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "81011", - "result": "Similar", - "sampleId": "HG03742", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "ITU", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.48", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18976", + "totalBp": "17585532782", + "totalGbp": "17.59", "totalReads": "N/A", - "twoHundredkbPlus": "2.19", - "whales": "7" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "67.34", - "accession": "SAMN37797111", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021622", "ccsAlgorithm": "N/A", - "coverage": "20.4", - "dataType": "", + "coverage": "5.9", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_27_2022_R941_HG03742_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.07", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "09_27_2022_R941_HG03742_2", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "filename": "NA18976-2_FC2_S16_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18976-2_FC2_S16_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310916", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.367302", - "oneHundredkbPlus": "7.02", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/nanopore/guppy_6/09_27_2022_R941_HG03742_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.498766", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18976/raw_data/hic/NA18976-2_FC2_S16_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "71143", - "result": "Similar", - "sampleId": "HG03742", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "ITU", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.34", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18976", + "totalBp": "18284725296", + "totalGbp": "18.28", "totalReads": "N/A", - "twoHundredkbPlus": "1.69", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "63.51", - "accession": "SAMN37797111", - "assembly": "N/A", - "basecaller": "", - "basecallerModel": "", - "basecallerVersion": "", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021622", "ccsAlgorithm": "N/A", - "coverage": "19.25", - "dataType": "", + "coverage": "5.9", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "", + "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "09_27_2022_R941_HG03742_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.1", - "generatorContact": "", - "generatorFacility": "", - "instrumentModel": "", - "libraryId": "09_27_2022_R941_HG03742_3", - "libraryLayout": "", - "librarySelection": "", - "librarySource": "", - "libraryStrategy": "", + "filename": "NA18976-2_FC2_S16_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18976-2_FC2_S16_L002", + "libraryLayout": "paired", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310916", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.368966", - "oneHundredkbPlus": "7.22", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/nanopore/guppy_6/09_27_2022_R941_HG03742_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.498766", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18976/raw_data/hic/NA18976-2_FC2_S16_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "76240", - "result": "Similar", - "sampleId": "HG03742", - "seqKit": "", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", - "shearMethod": "", - "sizeSelection": "", - "study": "N/A", - "subpopulation": "ITU", - "superpopulation": "SAS", - "threeHundredkbPlus": "0.4", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "shearMethod": "no shear", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18976", + "totalBp": "18284725296", + "totalGbp": "18.28", "totalReads": "N/A", - "twoHundredkbPlus": "1.86", - "whales": "8" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "17.35", - "accession": "SAMN33621948", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758798", "ccsAlgorithm": "N/A", - "coverage": "5.26", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.98", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN046", - "filename": "10_12_21_R941_HG02015_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.02", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "10_12_21_R941_HG02015_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18983-1_S4_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18983-1_S4_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242512", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.368566", - "oneHundredkbPlus": "2.67", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02015/raw_data/nanopore/guppy_6/10_12_21_R941_HG02015_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.625452", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-1_S4_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "101497", - "result": "Similar", - "sampleId": "HG02015", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.14", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18983", + "totalBp": "9242082335", + "totalGbp": "9.24", "totalReads": "N/A", - "twoHundredkbPlus": "0.73", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "20.45", - "accession": "SAMN33621948", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758798", "ccsAlgorithm": "N/A", - "coverage": "6.2", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.98", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN046", - "filename": "10_12_21_R941_HG02015_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.03", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "10_12_21_R941_HG02015_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18983-1_S4_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18983-1_S4_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242512", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.377167", - "oneHundredkbPlus": "3.12", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02015/raw_data/nanopore/guppy_6/10_12_21_R941_HG02015_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.613675", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-1_S4_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "100719", - "result": "Similar", - "sampleId": "HG02015", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.15", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18983", + "totalBp": "9241439130", + "totalGbp": "9.24", "totalReads": "N/A", - "twoHundredkbPlus": "0.83", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "45.31", - "accession": "SAMN33621948", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758798", "ccsAlgorithm": "N/A", - "coverage": "13.73", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.26", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN046", - "filename": "10_12_21_R941_HG02015_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.06", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "10_12_21_R941_HG02015_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18983-1_S4_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18983-1_S4_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242511", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.331869", - "oneHundredkbPlus": "7.03", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02015/raw_data/nanopore/guppy_6/10_12_21_R941_HG02015_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.611177", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-1_S4_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "102206", - "result": "Similar", - "sampleId": "HG02015", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.33", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18983", + "totalBp": "10113221981", + "totalGbp": "10.11", "totalReads": "N/A", - "twoHundredkbPlus": "1.81", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "28.62", - "accession": "SAMN33621948", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758798", "ccsAlgorithm": "N/A", - "coverage": "8.67", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.26", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN046", - "filename": "10_12_21_R941_HG02015_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "10_12_21_R941_HG02015_4", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18983-1_S4_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18983-1_S4_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242511", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.362562", - "oneHundredkbPlus": "4.39", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02015/raw_data/nanopore/guppy_6/10_12_21_R941_HG02015_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.593331", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-1_S4_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "101105", - "result": "Similar", - "sampleId": "HG02015", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.25", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18983", + "totalBp": "10112772020", + "totalGbp": "10.11", "totalReads": "N/A", - "twoHundredkbPlus": "1.23", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "48.23", - "accession": "SAMN33621949", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758798", "ccsAlgorithm": "N/A", - "coverage": "14.62", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.26", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN060", - "filename": "10_12_21_R941_HG02056_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "10_12_21_R941_HG02056_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18983-1_S4_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18983-1_S4_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242510", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.359442", - "oneHundredkbPlus": "6.05", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02056/raw_data/nanopore/guppy_6/10_12_21_R941_HG02056_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.617873", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-1_S4_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "86229", - "result": "Similar", - "sampleId": "HG02056", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.17", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18983", + "totalBp": "10114463682", + "totalGbp": "10.11", "totalReads": "N/A", - "twoHundredkbPlus": "1.09", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "52.1", - "accession": "SAMN33621949", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758798", "ccsAlgorithm": "N/A", - "coverage": "15.79", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.26", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN060", - "filename": "10_12_21_R941_HG02056_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.06", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "10_12_21_R941_HG02056_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18983-1_S4_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18983-1_S4_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242510", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.365471", - "oneHundredkbPlus": "6.01", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02056/raw_data/nanopore/guppy_6/10_12_21_R941_HG02056_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.618289", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-1_S4_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "79943", - "result": "Similar", - "sampleId": "HG02056", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.22", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18983", + "totalBp": "10113984842", + "totalGbp": "10.11", "totalReads": "N/A", - "twoHundredkbPlus": "1.14", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "60.36", - "accession": "SAMN33621949", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758798", "ccsAlgorithm": "N/A", - "coverage": "18.29", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.22", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN060", - "filename": "10_12_21_R941_HG02056_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.08", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "10_12_21_R941_HG02056_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18983-1_S4_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18983-1_S4_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242509", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.360656", - "oneHundredkbPlus": "7.42", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02056/raw_data/nanopore/guppy_6/10_12_21_R941_HG02056_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.612165", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-1_S4_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "84411", - "result": "Similar", - "sampleId": "HG02056", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.27", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18983", + "totalBp": "9990030775", + "totalGbp": "9.99", "totalReads": "N/A", - "twoHundredkbPlus": "1.44", - "whales": "5" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "48.56", - "accession": "SAMN33621950", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758798", "ccsAlgorithm": "N/A", - "coverage": "14.72", - "dataType": "unaligned reads with 5mC mods", + "coverage": "3.22", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN079", - "filename": "10_12_21_R941_HG02129_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "10_12_21_R941_HG02129_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18983-1_S4_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18983-1_S4_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242509", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.342092", - "oneHundredkbPlus": "5.88", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02129/raw_data/nanopore/guppy_6/10_12_21_R941_HG02129_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.596679", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-1_S4_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "83679", - "result": "Similar", - "sampleId": "HG02129", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.17", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18983", + "totalBp": "9989587215", + "totalGbp": "9.99", "totalReads": "N/A", - "twoHundredkbPlus": "1.05", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "44.13", - "accession": "SAMN33621950", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758798", "ccsAlgorithm": "N/A", - "coverage": "13.37", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.39", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN079", - "filename": "10_12_21_R941_HG02129_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "10_12_21_R941_HG02129_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18983-2_S12_L001_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18983-2_S12_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242508", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.312407", - "oneHundredkbPlus": "5.2", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02129/raw_data/nanopore/guppy_6/10_12_21_R941_HG02129_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.675966", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-2_S12_L001_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "81649", - "result": "Similar", - "sampleId": "HG02129", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.17", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18983", + "totalBp": "7423144968", + "totalGbp": "7.42", "totalReads": "N/A", - "twoHundredkbPlus": "0.96", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "45.51", - "accession": "SAMN33621950", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.5.7", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758798", "ccsAlgorithm": "N/A", - "coverage": "13.79", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.39", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN079", - "filename": "10_12_21_R941_HG02129_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "10_12_21_R941_HG02129_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18983-2_S12_L001_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18983-2_S12_L001", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242508", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.350055", - "oneHundredkbPlus": "5.18", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02129/raw_data/nanopore/guppy_6/10_12_21_R941_HG02129_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.639034", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-2_S12_L001_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "79677", - "result": "Similar", - "sampleId": "HG02129", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.14", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18983", + "totalBp": "7422624252", + "totalGbp": "7.42", "totalReads": "N/A", - "twoHundredkbPlus": "0.89", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "69.39", - "accession": "SAMN26237490", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758798", "ccsAlgorithm": "N/A", - "coverage": "21.03", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.59", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH007", - "filename": "12_08_21_R941_HG00423_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.11", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "12_08_21_R941_HG00423_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18983-2_S12_L002_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18983-2_S12_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242507", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.307526", - "oneHundredkbPlus": "9.67", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/nanopore/guppy_6/12_08_21_R941_HG00423_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.663478", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-2_S12_L002_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "92363", - "result": "Similar", - "sampleId": "HG00423", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.52", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18983", + "totalBp": "8040954772", + "totalGbp": "8.04", "totalReads": "N/A", - "twoHundredkbPlus": "2.55", - "whales": "6" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "61.42", - "accession": "SAMN26237490", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758798", "ccsAlgorithm": "N/A", - "coverage": "18.61", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.59", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH007", - "filename": "12_08_21_R941_HG00423_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.11", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "12_08_21_R941_HG00423_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18983-2_S12_L002_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18983-2_S12_L002", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242507", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.298268", - "oneHundredkbPlus": "8.32", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/nanopore/guppy_6/12_08_21_R941_HG00423_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.640635", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-2_S12_L002_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "89888", - "result": "Similar", - "sampleId": "HG00423", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.46", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18983", + "totalBp": "8040583206", + "totalGbp": "8.04", "totalReads": "N/A", - "twoHundredkbPlus": "2.2", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "68.64", - "accession": "SAMN26237490", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758798", "ccsAlgorithm": "N/A", - "coverage": "20.8", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.59", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "SH007", - "filename": "12_08_21_R941_HG00423_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.11", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "12_08_21_R941_HG00423_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18983-2_S12_L003_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18983-2_S12_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242505", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.301781", - "oneHundredkbPlus": "9.52", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/nanopore/guppy_6/12_08_21_R941_HG00423_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.643436", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-2_S12_L003_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "92063", - "result": "Similar", - "sampleId": "HG00423", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "CHS", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.47", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18983", + "totalBp": "8042818109", + "totalGbp": "8.04", "totalReads": "N/A", - "twoHundredkbPlus": "2.46", - "whales": "3" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "56.42", - "accession": "SAMN26237503", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758798", "ccsAlgorithm": "N/A", - "coverage": "17.1", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.59", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN050", - "filename": "12_08_21_R941_HG02027_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.03", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "12_08_21_R941_HG02027_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18983-2_S12_L003_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18983-2_S12_L003", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242505", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.334542", - "oneHundredkbPlus": "4.32", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02027/raw_data/nanopore/guppy_6/12_08_21_R941_HG02027_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.633691", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-2_S12_L003_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "58363", - "result": "Similar", - "sampleId": "HG02027", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.11", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18983", + "totalBp": "8042451194", + "totalGbp": "8.04", "totalReads": "N/A", - "twoHundredkbPlus": "0.54", - "whales": "2" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "71.62", - "accession": "SAMN26237503", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758798", "ccsAlgorithm": "N/A", - "coverage": "21.7", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.56", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN050", - "filename": "12_08_21_R941_HG02027_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.05", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "12_08_21_R941_HG02027_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18983-2_S12_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18983-2_S12_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242504", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.339873", - "oneHundredkbPlus": "6.25", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02027/raw_data/nanopore/guppy_6/12_08_21_R941_HG02027_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.659335", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-2_S12_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "64561", - "result": "Similar", - "sampleId": "HG02027", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.15", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18983", + "totalBp": "7923211922", + "totalGbp": "7.92", "totalReads": "N/A", - "twoHundredkbPlus": "0.82", - "whales": "5" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "70.35", - "accession": "SAMN26237503", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN33758798", "ccsAlgorithm": "N/A", - "coverage": "21.32", - "dataType": "unaligned reads with 5mC mods", + "coverage": "2.56", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN050", - "filename": "12_08_21_R941_HG02027_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.01", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "12_08_21_R941_HG02027_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA18983-2_S12_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA18983-2_S12_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30242504", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.327309", - "oneHundredkbPlus": "5.7", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02027/raw_data/nanopore/guppy_6/12_08_21_R941_HG02027_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.631655", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/hic/NA18983-2_S12_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "61541", - "result": "Similar", - "sampleId": "HG02027", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.13", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA18983", + "totalBp": "7922840121", + "totalGbp": "7.92", "totalReads": "N/A", - "twoHundredkbPlus": "0.71", - "whales": "0" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "82.53", - "accession": "SAMN26237504", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021642", "ccsAlgorithm": "N/A", - "coverage": "25.01", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.59", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN069", - "filename": "12_08_21_R941_HG02083_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.06", - "fourHundredkbPlus": "0.11", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "12_08_21_R941_HG02083_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA19036-1_FC1_S11_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA19036-1_FC1_S11_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310915", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.299525", - "oneHundredkbPlus": "8.69", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG02083/raw_data/nanopore/guppy_6/12_08_21_R941_HG02083_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.487006", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19036/raw_data/hic/NA19036-1_FC1_S11_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "74924", - "result": "Similar", - "sampleId": "HG02083", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.27", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA19036", + "totalBp": "20434060051", + "totalGbp": "20.43", "totalReads": "N/A", - "twoHundredkbPlus": "1.41", - "whales": "24" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "82.33", - "accession": "SAMN26237504", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021642", "ccsAlgorithm": "N/A", - "coverage": "24.95", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.59", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN069", - "filename": "12_08_21_R941_HG02083_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.08", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "12_08_21_R941_HG02083_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA19036-1_FC1_S11_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA19036-1_FC1_S11_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310915", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.316949", - "oneHundredkbPlus": "8.89", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG02083/raw_data/nanopore/guppy_6/12_08_21_R941_HG02083_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.487006", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19036/raw_data/hic/NA19036-1_FC1_S11_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "76579", - "result": "Similar", - "sampleId": "HG02083", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.24", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA19036", + "totalBp": "20434060051", + "totalGbp": "20.43", "totalReads": "N/A", - "twoHundredkbPlus": "1.4", - "whales": "24" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "88.36", - "accession": "SAMN26237504", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021642", "ccsAlgorithm": "N/A", - "coverage": "26.77", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.42", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN069", - "filename": "12_08_21_R941_HG02083_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.08", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "12_08_21_R941_HG02083_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA19036-1_FC2_S11_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA19036-1_FC2_S11_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310914", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.280197", - "oneHundredkbPlus": "9.27", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG02083/raw_data/nanopore/guppy_6/12_08_21_R941_HG02083_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.500655", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19036/raw_data/hic/NA19036-1_FC2_S11_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "74918", - "result": "Similar", - "sampleId": "HG02083", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.23", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA19036", + "totalBp": "19913685210", + "totalGbp": "19.91", "totalReads": "N/A", - "twoHundredkbPlus": "1.42", - "whales": "14" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "95.97", - "accession": "SAMN26237506", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021642", "ccsAlgorithm": "N/A", - "coverage": "29.08", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.42", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN090", - "filename": "12_08_21_R941_HG02523_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.04", - "fourHundredkbPlus": "0.09", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "12_08_21_R941_HG02523_1", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA19036-1_FC2_S11_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA19036-1_FC2_S11_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310914", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.331787", - "oneHundredkbPlus": "9.94", - "oneMbPlus": "0.01", - "path": "s3://human-pangenomics/working/HPRC/HG02523/raw_data/nanopore/guppy_6/12_08_21_R941_HG02523_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.500655", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19036/raw_data/hic/NA19036-1_FC2_S11_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "73676", - "result": "Similar", - "sampleId": "HG02523", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.24", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA19036", + "totalBp": "19913685210", + "totalGbp": "19.91", "totalReads": "N/A", - "twoHundredkbPlus": "1.47", - "whales": "15" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "84.96", - "accession": "SAMN26237506", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021642", "ccsAlgorithm": "N/A", - "coverage": "25.74", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.96", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN090", - "filename": "12_08_21_R941_HG02523_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.03", - "fourHundredkbPlus": "0.07", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "12_08_21_R941_HG02523_2", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA19036-2_FC1_S12_L004_R1_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA19036-2_FC1_S12_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310913", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.32545", - "oneHundredkbPlus": "8.82", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02523/raw_data/nanopore/guppy_6/12_08_21_R941_HG02523_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.47374", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19036/raw_data/hic/NA19036-2_FC1_S12_L004_R1_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "74782", - "result": "Similar", - "sampleId": "HG02523", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.2", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA19036", + "totalBp": "21585898923", + "totalGbp": "21.59", "totalReads": "N/A", - "twoHundredkbPlus": "1.23", - "whales": "10" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { - "Gb": "75.24", - "accession": "SAMN26237506", - "assembly": "N/A", - "basecaller": "guppy", - "basecallerModel": "dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg", - "basecallerVersion": "6.4.6", - "bioprojectAccession": "N/A", - "biosampleAccession": "N/A", + "Gb": "N/A", + "accession": null, + "assembly": "unaligned", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "PRJNA701308", + "biosampleAccession": "SAMN41021642", "ccsAlgorithm": "N/A", - "coverage": "22.8", - "dataType": "unaligned reads with 5mC mods", + "coverage": "6.96", + "dataType": "unaligned reads", "deepConsensusVersion": "N/A", - "designDescription": "UL sequencing using ONT-Circulomics method", - "familyId": "VN090", - "filename": "12_08_21_R941_HG02523_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "filetype": "bam", - "fiveHundredkbPlus": "0.02", - "fourHundredkbPlus": "0.04", - "generatorContact": "iviolich@ucsc.edu", - "generatorFacility": "University of California, Santa Cruz", - "instrumentModel": "PromethION", - "libraryId": "12_08_21_R941_HG02523_3", - "libraryLayout": "single", + "designDescription": "Illumina Sequencing of Omni-C Libraries", + "familyId": null, + "filename": "NA19036-2_FC1_S12_L004_R2_001.fastq.gz", + "filetype": "fastq", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "wseligma@ucsc.edu", + "generatorFacility": "University of California Santa Cruz", + "instrumentModel": "Illumina NovaSeq 6000", + "libraryId": "NA19036-2_FC1_S12_L004", + "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "WGS", + "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "N/A", + "metadataAccession": "SRR30310913", "min": "N/A", "mmTag": "N/A", "n25": "N/A", "n50": "N/A", "n75": "N/A", - "notes": "", - "ntsmResult": "N/A", - "ntsmScore": "0.331465", - "oneHundredkbPlus": "7.95", - "oneMbPlus": "0", - "path": "s3://human-pangenomics/working/HPRC/HG02523/raw_data/nanopore/guppy_6/12_08_21_R941_HG02523_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam", - "platform": "OXFORD_NANOPORE", + "notes": "N/A", + "ntsmResult": "Similar", + "ntsmScore": "0.47374", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19036/raw_data/hic/NA19036-2_FC1_S12_L004_R2_001.fastq.gz", + "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR2", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", - "readN50": "75745", - "result": "Similar", - "sampleId": "HG02523", - "seqKit": "SQK-ULK001", + "readN50": "N/A", + "result": "N/A", + "sampleId": "N/A", + "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", - "sizeSelection": "no SS", - "study": "N/A", - "subpopulation": "KHV", - "superpopulation": "EAS", - "threeHundredkbPlus": "0.15", - "title": "N/A", - "totalBp": "N/A", - "totalGbp": "N/A", + "sizeSelection": "N/A", + "study": "SRP305758", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA19036", + "totalBp": "21585898923", + "totalGbp": "21.59", "totalReads": "N/A", - "twoHundredkbPlus": "1.1", - "whales": "1" + "twoHundredkbPlus": "N/A", + "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758778", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758778", + "biosampleAccession": "SAMN41021642", "ccsAlgorithm": "N/A", - "coverage": "3.37", + "coverage": "7.05", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00099-1_S20_L001_R1_001.fastq.gz", + "filename": "NA19036-2_FC2_S12_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00099-1_S20_L001", + "libraryId": "NA19036-2_FC2_S12_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242407", + "metadataAccession": "SRR30310912", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -94156,64 +152591,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.63141", + "ntsmScore": "0.496843", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19036/raw_data/hic/NA19036-2_FC2_S12_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00099", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00099", - "totalBp": "10451741673", - "totalGbp": "10.451741673", + "title": "Illumina Sequencing of Omni-C Libraries of NA19036", + "totalBp": "21854926865", + "totalGbp": "21.85", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758778", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758778", + "biosampleAccession": "SAMN41021642", "ccsAlgorithm": "N/A", - "coverage": "3.37", + "coverage": "7.05", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00099-1_S20_L001_R2_001.fastq.gz", + "filename": "NA19036-2_FC2_S12_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00099-1_S20_L001", + "libraryId": "NA19036-2_FC2_S12_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242407", + "metadataAccession": "SRR30310912", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -94221,64 +152656,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.586367", + "ntsmScore": "0.496843", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19036/raw_data/hic/NA19036-2_FC2_S12_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00099", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00099", - "totalBp": "10450847711", - "totalGbp": "10.450847711", + "title": "Illumina Sequencing of Omni-C Libraries of NA19036", + "totalBp": "21854926865", + "totalGbp": "21.85", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758778", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758778", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "3.63", + "coverage": "4.29", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00099-1_S20_L002_R1_001.fastq.gz", + "filename": "NA19043-1_S2_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00099-1_S20_L002", + "libraryId": "NA19043-1_S2_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242406", + "metadataAccession": "SRR30242193", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -94286,64 +152721,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.580328", + "ntsmScore": "0.551493", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-1_S2_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00099", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00099", - "totalBp": "11266122224", - "totalGbp": "11.266122224", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "13298864748", + "totalGbp": "13.3", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758778", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758778", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "3.63", + "coverage": "4.29", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00099-1_S20_L002_R2_001.fastq.gz", + "filename": "NA19043-1_S2_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00099-1_S20_L002", + "libraryId": "NA19043-1_S2_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242406", + "metadataAccession": "SRR30242193", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -94351,64 +152786,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.584291", + "ntsmScore": "0.564106", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-1_S2_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00099", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00099", - "totalBp": "11265516145", - "totalGbp": "11.265516145", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "13298041923", + "totalGbp": "13.3", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758778", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758778", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "3.63", + "coverage": "4.32", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00099-1_S20_L003_R1_001.fastq.gz", + "filename": "NA19043-1_S2_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00099-1_S20_L003", + "libraryId": "NA19043-1_S2_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242322", + "metadataAccession": "SRR30242192", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -94416,64 +152851,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.577897", + "ntsmScore": "0.57845", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-1_S2_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00099", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00099", - "totalBp": "11263022499", - "totalGbp": "11.263022499", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "13393992269", + "totalGbp": "13.39", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758778", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758778", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "3.63", + "coverage": "4.32", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00099-1_S20_L003_R2_001.fastq.gz", + "filename": "NA19043-1_S2_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00099-1_S20_L003", + "libraryId": "NA19043-1_S2_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242322", + "metadataAccession": "SRR30242192", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -94481,64 +152916,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.593362", + "ntsmScore": "0.562492", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-1_S2_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00099", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00099", - "totalBp": "11262373437", - "totalGbp": "11.262373437", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "13393435932", + "totalGbp": "13.39", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758778", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758778", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "3.6", + "coverage": "4.27", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00099-1_S20_L004_R1_001.fastq.gz", + "filename": "NA19043-1_S2_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00099-1_S20_L004", + "libraryId": "NA19043-1_S2_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242307", + "metadataAccession": "SRR30242455", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -94546,64 +152981,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.610805", + "ntsmScore": "0.536203", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-1_S2_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00099", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00099", - "totalBp": "11172967086", - "totalGbp": "11.172967086", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "13235899441", + "totalGbp": "13.24", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758778", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758778", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "3.6", + "coverage": "4.27", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00099-1_S20_L004_R2_001.fastq.gz", + "filename": "NA19043-1_S2_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00099-1_S20_L004", + "libraryId": "NA19043-1_S2_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242307", + "metadataAccession": "SRR30242455", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -94611,64 +153046,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.606946", + "ntsmScore": "0.577364", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-1_S2_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00099", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00099", - "totalBp": "11172372001", - "totalGbp": "11.172372001", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "13235179516", + "totalGbp": "13.24", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758778", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758778", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "3.27", + "coverage": "4.11", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00099-2_S28_L001_R1_001.fastq.gz", + "filename": "NA19043-1_S2_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00099-2_S28_L001", + "libraryId": "NA19043-1_S2_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242271", + "metadataAccession": "SRR30242212", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -94676,64 +153111,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.607471", + "ntsmScore": "0.568374", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-1_S2_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00099", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00099", - "totalBp": "10131790358", - "totalGbp": "10.131790358", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "12727345287", + "totalGbp": "12.73", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758778", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758778", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "3.27", + "coverage": "4.11", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00099-2_S28_L001_R2_001.fastq.gz", + "filename": "NA19043-1_S2_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00099-2_S28_L001", + "libraryId": "NA19043-1_S2_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242271", + "metadataAccession": "SRR30242212", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -94741,64 +153176,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.585726", + "ntsmScore": "0.584527", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-1_S2_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00099", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00099", - "totalBp": "10130938028", - "totalGbp": "10.130938028", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "12726639314", + "totalGbp": "12.73", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758778", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758778", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "3.59", + "coverage": "5.81", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00099-2_S28_L002_R1_001.fastq.gz", + "filename": "NA19043-2_S10_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00099-2_S28_L002", + "libraryId": "NA19043-2_S10_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242256", + "metadataAccession": "SRR30242211", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -94806,64 +153241,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.634275", + "ntsmScore": "0.57131", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00099", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00099", - "totalBp": "11131760226", - "totalGbp": "11.131760226", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "18017491417", + "totalGbp": "18.02", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758778", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758778", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "3.59", + "coverage": "5.81", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00099-2_S28_L002_R2_001.fastq.gz", + "filename": "NA19043-2_S10_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00099-2_S28_L002", + "libraryId": "NA19043-2_S10_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242256", + "metadataAccession": "SRR30242211", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -94871,64 +153306,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.574405", + "ntsmScore": "0.516226", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00099", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00099", - "totalBp": "11131143646", - "totalGbp": "11.131143646", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "18016003549", + "totalGbp": "18.02", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758778", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758778", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "3.59", + "coverage": "5.89", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00099-2_S28_L003_R1_001.fastq.gz", + "filename": "NA19043-2_S10_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00099-2_S28_L003", + "libraryId": "NA19043-2_S10_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242245", + "metadataAccession": "SRR30242210", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -94936,64 +153371,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.639197", + "ntsmScore": "0.575995", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00099", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00099", - "totalBp": "11135119794", - "totalGbp": "11.135119794", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "18268555097", + "totalGbp": "18.27", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758778", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758778", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "3.59", + "coverage": "5.89", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00099-2_S28_L003_R2_001.fastq.gz", + "filename": "NA19043-2_S10_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00099-2_S28_L003", + "libraryId": "NA19043-2_S10_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242245", + "metadataAccession": "SRR30242210", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -95001,64 +153436,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.580572", + "ntsmScore": "0.518854", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00099", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00099", - "totalBp": "11134454158", - "totalGbp": "11.134454158", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "18267375506", + "totalGbp": "18.27", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758778", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758778", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "3.55", + "coverage": "5.64", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00099-2_S28_L004_R1_001.fastq.gz", + "filename": "NA19043-2_S10_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00099-2_S28_L004", + "libraryId": "NA19043-2_S10_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242475", + "metadataAccession": "SRR30242209", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -95066,64 +153501,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.602038", + "ntsmScore": "0.538242", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00099", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00099", - "totalBp": "10993123748", - "totalGbp": "10.993123748", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "17481085109", + "totalGbp": "17.48", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758778", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758778", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "3.55", + "coverage": "5.64", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00099-2_S28_L004_R2_001.fastq.gz", + "filename": "NA19043-2_S10_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00099-2_S28_L004", + "libraryId": "NA19043-2_S10_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242475", + "metadataAccession": "SRR30242209", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -95131,64 +153566,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.590519", + "ntsmScore": "0.519287", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00099", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", - "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00099", - "totalBp": "10992500429", - "totalGbp": "10.992500429", + "subpopulation": null, + "superpopulation": null, + "threeHundredkbPlus": "N/A", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "17479781708", + "totalGbp": "17.48", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021637", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021637", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "7.42", + "coverage": "5.53", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00126-1_FC1_S3_L004_R1_001.fastq.gz", + "filename": "NA19043-2_S10_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00126-1_FC1_S3_L004", + "libraryId": "NA19043-2_S10_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310981", + "metadataAccession": "SRR30242208", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -95196,64 +153631,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.456062", + "ntsmScore": "0.533142", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00126", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00126", - "totalBp": "23014404072", - "totalGbp": "23.014404072", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "17147769724", + "totalGbp": "17.15", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021637", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021637", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "6.98", + "coverage": "5.53", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00126-1_FC2_S3_L004_R1_001.fastq.gz", + "filename": "NA19043-2_S10_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00126-1_FC2_S3_L004", + "libraryId": "NA19043-2_S10_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310980", + "metadataAccession": "SRR30242208", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -95261,64 +153696,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.494569", + "ntsmScore": "0.513145", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00126", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00126", - "totalBp": "21643319995", - "totalGbp": "21.643319995", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "17146463940", + "totalGbp": "17.15", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021637", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021637", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "10.74", + "coverage": "13.69", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00126-2_FC1_S4_L004_R1_001.fastq.gz", + "filename": "NA19043-2_S10i_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00126-2_FC1_S4_L004", + "libraryId": "NA19043-2_S10i_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310819", + "metadataAccession": "SRR30242206", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -95326,64 +153761,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.416005", + "ntsmScore": "0.450461", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10i_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00126", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00126", - "totalBp": "33281084483", - "totalGbp": "33.281084483", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "42445471726", + "totalGbp": "42.45", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021637", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021637", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "10.03", + "coverage": "13.69", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00126-2_FC2_S4_L004_R1_001.fastq.gz", + "filename": "NA19043-2_S10i_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00126-2_FC2_S4_L004", + "libraryId": "NA19043-2_S10i_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310952", + "metadataAccession": "SRR30242206", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -95391,64 +153826,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.42042", + "ntsmScore": "0.446453", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10i_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00126", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00126", - "totalBp": "31102901178", - "totalGbp": "31.102901178", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "42441850095", + "totalGbp": "42.44", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021641", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021641", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "5.92", + "coverage": "15.22", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00128-1_FC1_S9_L004_R1_001.fastq.gz", + "filename": "NA19043-2_S10i_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00128-1_FC1_S9_L004", + "libraryId": "NA19043-2_S10i_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310941", + "metadataAccession": "SRR30242205", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -95456,64 +153891,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.461992", + "ntsmScore": "0.458555", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10i_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00128", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00128", - "totalBp": "18338855625", - "totalGbp": "18.338855625", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "47194300396", + "totalGbp": "47.19", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021641", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021641", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "5.64", + "coverage": "15.22", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00128-1_FC2_S9_L004_R1_001.fastq.gz", + "filename": "NA19043-2_S10i_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00128-1_FC2_S9_L004", + "libraryId": "NA19043-2_S10i_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310906", + "metadataAccession": "SRR30242205", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -95521,64 +153956,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.498659", + "ntsmScore": "0.472157", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10i_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00128", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00128", - "totalBp": "17480349957", - "totalGbp": "17.480349957", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "47191895994", + "totalGbp": "47.19", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021641", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021641", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "5.52", + "coverage": "12.97", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00128-2_FC1_S10_L004_R1_001.fastq.gz", + "filename": "NA19043-2_S10i_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00128-2_FC1_S10_L004", + "libraryId": "NA19043-2_S10i_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310895", + "metadataAccession": "SRR30242204", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -95586,64 +154021,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.519285", + "ntsmScore": "0.507915", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10i_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00128", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00128", - "totalBp": "17124632311", - "totalGbp": "17.124632311", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "40218516326", + "totalGbp": "40.22", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021641", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021641", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "5.25", + "coverage": "12.97", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00128-2_FC2_S10_L004_R1_001.fastq.gz", + "filename": "NA19043-2_S10i_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00128-2_FC2_S10_L004", + "libraryId": "NA19043-2_S10i_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310884", + "metadataAccession": "SRR30242204", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -95651,64 +154086,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.558467", + "ntsmScore": "0.44722", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10i_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00128", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00128", - "totalBp": "16272984308", - "totalGbp": "16.272984308", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "40216454617", + "totalGbp": "40.22", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021638", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021638", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "7.03", + "coverage": "11.11", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00133-1_FC1_S5_L004_R1_001.fastq.gz", + "filename": "NA19043-2_S10i_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00133-1_FC1_S5_L004", + "libraryId": "NA19043-2_S10i_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310849", + "metadataAccession": "SRR30242203", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -95716,64 +154151,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.481832", + "ntsmScore": "0.509102", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10i_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00133", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00133", - "totalBp": "21805365041", - "totalGbp": "21.805365041", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "34446361258", + "totalGbp": "34.45", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021638", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021638", + "biosampleAccession": "SAMN33758799", "ccsAlgorithm": "N/A", - "coverage": "6.61", + "coverage": "11.11", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00133-1_FC2_S5_L004_R1_001.fastq.gz", + "filename": "NA19043-2_S10i_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00133-1_FC2_S5_L004", + "libraryId": "NA19043-2_S10i_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310838", + "metadataAccession": "SRR30242203", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -95781,64 +154216,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.453404", + "ntsmScore": "0.435394", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/hic/NA19043-2_S10i_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00133", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00133", - "totalBp": "20487595742", - "totalGbp": "20.487595742", + "title": "Illumina Sequencing of Omni-C Libraries of NA19043", + "totalBp": "34444435664", + "totalGbp": "34.44", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021638", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021638", + "biosampleAccession": "SAMN37797087", "ccsAlgorithm": "N/A", - "coverage": "5.04", + "coverage": "3.78", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00133-2_FC1_S6_L004_R1_001.fastq.gz", + "filename": "NA19087-1_S7_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00133-2_FC1_S6_L004", + "libraryId": "NA19087-1_S7_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310979", + "metadataAccession": "SRR30242202", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -95846,64 +154281,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.513267", + "ntsmScore": "0.612259", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-1_S7_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00133", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00133", - "totalBp": "15627199286", - "totalGbp": "15.627199286", + "title": "Illumina Sequencing of Omni-C Libraries of NA19087", + "totalBp": "11718103219", + "totalGbp": "11.72", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021638", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021638", + "biosampleAccession": "SAMN37797087", "ccsAlgorithm": "N/A", - "coverage": "4.75", + "coverage": "3.78", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00133-2_FC2_S6_L004_R1_001.fastq.gz", + "filename": "NA19087-1_S7_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00133-2_FC2_S6_L004", + "libraryId": "NA19087-1_S7_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310968", + "metadataAccession": "SRR30242202", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -95911,64 +154346,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.527565", + "ntsmScore": "0.61564", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-1_S7_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00133", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00133", - "totalBp": "14710505617", - "totalGbp": "14.710505617", + "title": "Illumina Sequencing of Omni-C Libraries of NA19087", + "totalBp": "11717167938", + "totalGbp": "11.72", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621941", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621941", + "biosampleAccession": "SAMN37797087", "ccsAlgorithm": "N/A", - "coverage": "11.94", + "coverage": "4.13", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00140-1_S22_L001_R1_001.fastq.gz", + "filename": "NA19087-1_S7_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00140-1_S22_L001", + "libraryId": "NA19087-1_S7_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242464", + "metadataAccession": "SRR30242201", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -95976,64 +154411,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.525447", + "ntsmScore": "0.609764", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-1_S7_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00140", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00140", - "totalBp": "37024993829", - "totalGbp": "37.024993829", + "title": "Illumina Sequencing of Omni-C Libraries of NA19087", + "totalBp": "12802197777", + "totalGbp": "12.8", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621941", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621941", + "biosampleAccession": "SAMN37797087", "ccsAlgorithm": "N/A", - "coverage": "11.94", + "coverage": "4.13", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00140-1_S22_L001_R2_001.fastq.gz", + "filename": "NA19087-1_S7_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00140-1_S22_L001", + "libraryId": "NA19087-1_S7_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242464", + "metadataAccession": "SRR30242201", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -96041,64 +154476,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.502603", + "ntsmScore": "0.570558", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-1_S7_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00140", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00140", - "totalBp": "37022701013", - "totalGbp": "37.022701013", + "title": "Illumina Sequencing of Omni-C Libraries of NA19087", + "totalBp": "12801556577", + "totalGbp": "12.8", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621941", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621941", + "biosampleAccession": "SAMN37797087", "ccsAlgorithm": "N/A", - "coverage": "12.29", + "coverage": "4.13", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00140-1_S22_L002_R1_001.fastq.gz", + "filename": "NA19087-1_S7_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00140-1_S22_L002", + "libraryId": "NA19087-1_S7_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242456", + "metadataAccession": "SRR30242200", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -96106,64 +154541,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.510349", + "ntsmScore": "0.601135", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-1_S7_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00140", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00140", - "totalBp": "38093038178", - "totalGbp": "38.093038178", + "title": "Illumina Sequencing of Omni-C Libraries of NA19087", + "totalBp": "12815141373", + "totalGbp": "12.82", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621941", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621941", + "biosampleAccession": "SAMN37797087", "ccsAlgorithm": "N/A", - "coverage": "12.29", + "coverage": "4.13", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00140-1_S22_L002_R2_001.fastq.gz", + "filename": "NA19087-1_S7_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00140-1_S22_L002", + "libraryId": "NA19087-1_S7_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242456", + "metadataAccession": "SRR30242200", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -96171,64 +154606,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.458847", + "ntsmScore": "0.570399", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-1_S7_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00140", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00140", - "totalBp": "38090056712", - "totalGbp": "38.090056712", + "title": "Illumina Sequencing of Omni-C Libraries of NA19087", + "totalBp": "12814460471", + "totalGbp": "12.81", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621941", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621941", + "biosampleAccession": "SAMN37797087", "ccsAlgorithm": "N/A", - "coverage": "11.66", + "coverage": "4.09", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00140-1_S22_L003_R1_001.fastq.gz", + "filename": "NA19087-1_S7_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00140-1_S22_L003", + "libraryId": "NA19087-1_S7_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242405", + "metadataAccession": "SRR30242199", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -96236,64 +154671,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.497501", + "ntsmScore": "0.622165", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-1_S7_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00140", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00140", - "totalBp": "36160735792", - "totalGbp": "36.160735792", + "title": "Illumina Sequencing of Omni-C Libraries of NA19087", + "totalBp": "12664445294", + "totalGbp": "12.66", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621941", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621941", + "biosampleAccession": "SAMN37797087", "ccsAlgorithm": "N/A", - "coverage": "11.66", + "coverage": "4.09", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00140-1_S22_L003_R2_001.fastq.gz", + "filename": "NA19087-1_S7_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00140-1_S22_L003", + "libraryId": "NA19087-1_S7_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242405", + "metadataAccession": "SRR30242199", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -96301,64 +154736,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.461085", + "ntsmScore": "0.585035", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-1_S7_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00140", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00140", - "totalBp": "36158028520", - "totalGbp": "36.15802852", + "title": "Illumina Sequencing of Omni-C Libraries of NA19087", + "totalBp": "12663787818", + "totalGbp": "12.66", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621941", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621941", + "biosampleAccession": "SAMN37797087", "ccsAlgorithm": "N/A", - "coverage": "12.02", + "coverage": "4.53", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00140-1_S22_L004_R1_001.fastq.gz", + "filename": "NA19087-2_S15_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00140-1_S22_L004", + "libraryId": "NA19087-2_S15_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242394", + "metadataAccession": "SRR30242198", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -96366,64 +154801,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.464198", + "ntsmScore": "0.584413", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-2_S15_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00140", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00140", - "totalBp": "37251792722", - "totalGbp": "37.251792722", + "title": "Illumina Sequencing of Omni-C Libraries of NA19087", + "totalBp": "14053826809", + "totalGbp": "14.05", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621941", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621941", + "biosampleAccession": "SAMN37797087", "ccsAlgorithm": "N/A", - "coverage": "12.02", + "coverage": "4.53", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00140-1_S22_L004_R2_001.fastq.gz", + "filename": "NA19087-2_S15_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00140-1_S22_L004", + "libraryId": "NA19087-2_S15_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242394", + "metadataAccession": "SRR30242198", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -96431,64 +154866,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.478879", + "ntsmScore": "0.553335", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-2_S15_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00140", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00140", - "totalBp": "37249046997", - "totalGbp": "37.249046997", + "title": "Illumina Sequencing of Omni-C Libraries of NA19087", + "totalBp": "14052848081", + "totalGbp": "14.05", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621941", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621941", + "biosampleAccession": "SAMN37797087", "ccsAlgorithm": "N/A", - "coverage": "3.76", + "coverage": "4.91", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00140-2_S30_L001_R1_001.fastq.gz", + "filename": "NA19087-2_S15_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00140-2_S30_L001", + "libraryId": "NA19087-2_S15_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242383", + "metadataAccession": "SRR30242197", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -96496,64 +154931,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.605446", + "ntsmScore": "0.588101", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-2_S15_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00140", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00140", - "totalBp": "11657507684", - "totalGbp": "11.657507684", + "title": "Illumina Sequencing of Omni-C Libraries of NA19087", + "totalBp": "15206352036", + "totalGbp": "15.21", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621941", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621941", + "biosampleAccession": "SAMN37797087", "ccsAlgorithm": "N/A", - "coverage": "3.76", + "coverage": "4.91", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00140-2_S30_L001_R2_001.fastq.gz", + "filename": "NA19087-2_S15_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00140-2_S30_L001", + "libraryId": "NA19087-2_S15_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242383", + "metadataAccession": "SRR30242197", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -96561,64 +154996,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.578836", + "ntsmScore": "0.571684", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-2_S15_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00140", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00140", - "totalBp": "11656900126", - "totalGbp": "11.656900126", + "title": "Illumina Sequencing of Omni-C Libraries of NA19087", + "totalBp": "15205724480", + "totalGbp": "15.21", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621941", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621941", + "biosampleAccession": "SAMN37797087", "ccsAlgorithm": "N/A", - "coverage": "3.86", + "coverage": "4.9", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00140-2_S30_L002_R1_001.fastq.gz", + "filename": "NA19087-2_S15_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00140-2_S30_L002", + "libraryId": "NA19087-2_S15_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242372", + "metadataAccession": "SRR30242195", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -96626,64 +155061,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.595329", + "ntsmScore": "0.589067", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-2_S15_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00140", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00140", - "totalBp": "11961656403", - "totalGbp": "11.961656403", + "title": "Illumina Sequencing of Omni-C Libraries of NA19087", + "totalBp": "15198648480", + "totalGbp": "15.2", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621941", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621941", + "biosampleAccession": "SAMN37797087", "ccsAlgorithm": "N/A", - "coverage": "3.86", + "coverage": "4.9", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00140-2_S30_L002_R2_001.fastq.gz", + "filename": "NA19087-2_S15_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00140-2_S30_L002", + "libraryId": "NA19087-2_S15_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242372", + "metadataAccession": "SRR30242195", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -96691,64 +155126,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.558096", + "ntsmScore": "0.586585", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-2_S15_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00140", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00140", - "totalBp": "11960834436", - "totalGbp": "11.960834436", + "title": "Illumina Sequencing of Omni-C Libraries of NA19087", + "totalBp": "15197962308", + "totalGbp": "15.2", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621941", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621941", + "biosampleAccession": "SAMN37797087", "ccsAlgorithm": "N/A", - "coverage": "3.67", + "coverage": "4.85", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00140-2_S30_L003_R1_001.fastq.gz", + "filename": "NA19087-2_S15_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00140-2_S30_L003", + "libraryId": "NA19087-2_S15_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242364", + "metadataAccession": "SRR30242194", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -96756,64 +155191,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.605152", + "ntsmScore": "0.566336", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-2_S15_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00140", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00140", - "totalBp": "11381920704", - "totalGbp": "11.381920704", + "title": "Illumina Sequencing of Omni-C Libraries of NA19087", + "totalBp": "15021715870", + "totalGbp": "15.02", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621941", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621941", + "biosampleAccession": "SAMN37797087", "ccsAlgorithm": "N/A", - "coverage": "3.67", + "coverage": "4.85", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00140-2_S30_L003_R2_001.fastq.gz", + "filename": "NA19087-2_S15_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00140-2_S30_L003", + "libraryId": "NA19087-2_S15_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242364", + "metadataAccession": "SRR30242194", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -96821,64 +155256,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.584642", + "ntsmScore": "0.577717", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/hic/NA19087-2_S15_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00140", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00140", - "totalBp": "11381178346", - "totalGbp": "11.381178346", + "title": "Illumina Sequencing of Omni-C Libraries of NA19087", + "totalBp": "15021066704", + "totalGbp": "15.02", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621941", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621941", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "3.77", + "coverage": "5.17", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00140-2_S30_L004_R1_001.fastq.gz", + "filename": "NA19120-1_S5_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00140-2_S30_L004", + "libraryId": "NA19120-1_S5_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242350", + "metadataAccession": "SRR30242435", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -96886,64 +155321,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.611291", + "ntsmScore": "0.541936", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-1_S5_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00140", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00140", - "totalBp": "11682855823", - "totalGbp": "11.682855823", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "16029493671", + "totalGbp": "16.03", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621941", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621941", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "3.77", + "coverage": "5.17", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00140-2_S30_L004_R2_001.fastq.gz", + "filename": "NA19120-1_S5_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00140-2_S30_L004", + "libraryId": "NA19120-1_S5_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242350", + "metadataAccession": "SRR30242435", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -96951,64 +155386,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.605834", + "ntsmScore": "0.541506", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-1_S5_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00140", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00140", - "totalBp": "11682118798", - "totalGbp": "11.682118798", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "16028501092", + "totalGbp": "16.03", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021634", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021634", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "8.55", + "coverage": "5.23", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00146-1_FC1_S5_L003_R1_001.fastq.gz", + "filename": "NA19120-1_S5_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00146-1_FC1_S5_L003", + "libraryId": "NA19120-1_S5_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310957", + "metadataAccession": "SRR30242434", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -97016,64 +155451,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.461355", + "ntsmScore": "0.563837", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-1_S5_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00146", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00146", - "totalBp": "26496294197", - "totalGbp": "26.496294197", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "16217741508", + "totalGbp": "16.22", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021634", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021634", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "8.83", + "coverage": "5.23", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00146-1_FC2_S5_L003_R1_001.fastq.gz", + "filename": "NA19120-1_S5_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00146-1_FC2_S5_L003", + "libraryId": "NA19120-1_S5_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310922", + "metadataAccession": "SRR30242434", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -97081,64 +155516,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.476218", + "ntsmScore": "0.574512", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-1_S5_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00146", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00146", - "totalBp": "27358753045", - "totalGbp": "27.358753045", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "16217052773", + "totalGbp": "16.22", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021634", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021634", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "7.73", + "coverage": "5.08", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00146-2_FC1_S6_L003_R1_001.fastq.gz", + "filename": "NA19120-1_S5_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00146-2_FC1_S6_L003", + "libraryId": "NA19120-1_S5_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310911", + "metadataAccession": "SRR30242433", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -97146,64 +155581,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.50744", + "ntsmScore": "0.545486", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-1_S5_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00146", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00146", - "totalBp": "23962537602", - "totalGbp": "23.962537602", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "15742401699", + "totalGbp": "15.74", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021634", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021634", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "8.01", + "coverage": "5.08", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00146-2_FC2_S6_L003_R1_001.fastq.gz", + "filename": "NA19120-1_S5_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00146-2_FC2_S6_L003", + "libraryId": "NA19120-1_S5_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310876", + "metadataAccession": "SRR30242433", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -97211,64 +155646,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.501278", + "ntsmScore": "0.559764", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-1_S5_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00146", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00146", - "totalBp": "24830283262", - "totalGbp": "24.830283262", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "15741568716", + "totalGbp": "15.74", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021635", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021635", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "6.16", + "coverage": "4.95", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00232-1_FC1_S7_L003_R1_001.fastq.gz", + "filename": "NA19120-1_S5_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00232-1_FC1_S7_L003", + "libraryId": "NA19120-1_S5_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310865", + "metadataAccession": "SRR30242454", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -97276,64 +155711,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.486337", + "ntsmScore": "0.587746", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-1_S5_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00232", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00232", - "totalBp": "19099015899", - "totalGbp": "19.099015899", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "15341183111", + "totalGbp": "15.34", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021635", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021635", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "6.23", + "coverage": "4.95", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00232-1_FC2_S7_L003_R1_001.fastq.gz", + "filename": "NA19120-1_S5_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00232-1_FC2_S7_L003", + "libraryId": "NA19120-1_S5_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310830", + "metadataAccession": "SRR30242454", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -97341,64 +155776,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.510446", + "ntsmScore": "0.580991", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-1_S5_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00232", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00232", - "totalBp": "19310675468", - "totalGbp": "19.310675468", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "15340327510", + "totalGbp": "15.34", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021635", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021635", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "8.01", + "coverage": "7.03", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00232-2_FC1_S8_L003_R1_001.fastq.gz", + "filename": "NA19120-2_S13_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00232-2_FC1_S8_L003", + "libraryId": "NA19120-2_S13_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310821", + "metadataAccession": "SRR30242453", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -97406,64 +155841,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.441484", + "ntsmScore": "0.530724", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00232", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00232", - "totalBp": "24837421032", - "totalGbp": "24.837421032", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "21808416507", + "totalGbp": "21.81", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021635", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021635", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "8.13", + "coverage": "7.03", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00232-2_FC2_S8_L003_R1_001.fastq.gz", + "filename": "NA19120-2_S13_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00232-2_FC2_S8_L003", + "libraryId": "NA19120-2_S13_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310820", + "metadataAccession": "SRR30242453", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -97471,64 +155906,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.459377", + "ntsmScore": "0.524834", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00232", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GBR", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00232", - "totalBp": "25214121638", - "totalGbp": "25.214121638", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "21807050017", + "totalGbp": "21.81", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758779", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758779", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "9.03", + "coverage": "7.17", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00280-1_S21_L001_R1_001.fastq.gz", + "filename": "NA19120-2_S13_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00280-1_S21_L001", + "libraryId": "NA19120-2_S13_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242339", + "metadataAccession": "SRR30242452", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -97536,64 +155971,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.511729", + "ntsmScore": "0.534757", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00280", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00280", - "totalBp": "27990281383", - "totalGbp": "27.990281383", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "22222196021", + "totalGbp": "22.22", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758779", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758779", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "9.03", + "coverage": "7.17", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00280-1_S21_L001_R2_001.fastq.gz", + "filename": "NA19120-2_S13_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00280-1_S21_L001", + "libraryId": "NA19120-2_S13_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242339", + "metadataAccession": "SRR30242452", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -97601,64 +156036,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.524038", + "ntsmScore": "0.53991", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00280", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00280", - "totalBp": "27988108312", - "totalGbp": "27.988108312", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "22221232152", + "totalGbp": "22.22", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758779", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758779", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "9.71", + "coverage": "6.66", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00280-1_S21_L002_R1_001.fastq.gz", + "filename": "NA19120-2_S13_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00280-1_S21_L002", + "libraryId": "NA19120-2_S13_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242235", + "metadataAccession": "SRR30242451", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -97666,64 +156101,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.527324", + "ntsmScore": "0.5267", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00280", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00280", - "totalBp": "30106363791", - "totalGbp": "30.106363791", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "20639411200", + "totalGbp": "20.64", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758779", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758779", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "9.71", + "coverage": "6.66", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00280-1_S21_L002_R2_001.fastq.gz", + "filename": "NA19120-2_S13_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00280-1_S21_L002", + "libraryId": "NA19120-2_S13_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242235", + "metadataAccession": "SRR30242451", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -97731,64 +156166,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.487399", + "ntsmScore": "0.540593", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00280", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00280", - "totalBp": "30104843106", - "totalGbp": "30.104843106", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "20638270093", + "totalGbp": "20.64", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758779", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758779", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "9.71", + "coverage": "6.76", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00280-1_S21_L003_R1_001.fastq.gz", + "filename": "NA19120-2_S13_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00280-1_S21_L003", + "libraryId": "NA19120-2_S13_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242224", + "metadataAccession": "SRR30242450", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -97796,64 +156231,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.525498", + "ntsmScore": "0.516312", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00280", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00280", - "totalBp": "30105901448", - "totalGbp": "30.105901448", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "20951317422", + "totalGbp": "20.95", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758779", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758779", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "9.71", + "coverage": "6.76", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00280-1_S21_L003_R2_001.fastq.gz", + "filename": "NA19120-2_S13_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00280-1_S21_L003", + "libraryId": "NA19120-2_S13_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242224", + "metadataAccession": "SRR30242450", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -97861,64 +156296,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.480544", + "ntsmScore": "0.526534", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00280", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00280", - "totalBp": "30104295509", - "totalGbp": "30.104295509", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "20950101316", + "totalGbp": "20.95", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758779", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758779", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "9.61", + "coverage": "16.86", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00280-1_S21_L004_R1_001.fastq.gz", + "filename": "NA19120-2_S13i_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00280-1_S21_L004", + "libraryId": "NA19120-2_S13i_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242333", + "metadataAccession": "SRR30242448", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -97926,64 +156361,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.528697", + "ntsmScore": "0.461663", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13i_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00280", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00280", - "totalBp": "29777940263", - "totalGbp": "29.777940263", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "52270389803", + "totalGbp": "52.27", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758779", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758779", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "9.61", + "coverage": "16.86", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00280-1_S21_L004_R2_001.fastq.gz", + "filename": "NA19120-2_S13i_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00280-1_S21_L004", + "libraryId": "NA19120-2_S13i_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242333", + "metadataAccession": "SRR30242448", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -97991,64 +156426,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.524678", + "ntsmScore": "0.449159", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13i_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00280", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00280", - "totalBp": "29776396233", - "totalGbp": "29.776396233", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "52266660540", + "totalGbp": "52.27", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758779", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758779", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "3.6", + "coverage": "18.04", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00280-2_S29_L001_R1_001.fastq.gz", + "filename": "NA19120-2_S13i_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00280-2_S29_L001", + "libraryId": "NA19120-2_S13i_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242321", + "metadataAccession": "SRR30242447", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -98056,64 +156491,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.596472", + "ntsmScore": "0.484363", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13i_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00280", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00280", - "totalBp": "11174314891", - "totalGbp": "11.174314891", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "55926147946", + "totalGbp": "55.93", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758779", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758779", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "3.6", + "coverage": "18.04", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00280-2_S29_L001_R2_001.fastq.gz", + "filename": "NA19120-2_S13i_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00280-2_S29_L001", + "libraryId": "NA19120-2_S13i_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242321", + "metadataAccession": "SRR30242447", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -98121,64 +156556,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.58995", + "ntsmScore": "0.475519", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13i_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00280", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00280", - "totalBp": "11173432972", - "totalGbp": "11.173432972", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "55924239854", + "totalGbp": "55.92", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758779", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758779", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "3.96", + "coverage": "15.23", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00280-2_S29_L002_R1_001.fastq.gz", + "filename": "NA19120-2_S13i_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00280-2_S29_L002", + "libraryId": "NA19120-2_S13i_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242314", + "metadataAccession": "SRR30242446", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -98186,64 +156621,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.594296", + "ntsmScore": "0.460326", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13i_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00280", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00280", - "totalBp": "12278822216", - "totalGbp": "12.278822216", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "47200415951", + "totalGbp": "47.2", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758779", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758779", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "3.96", + "coverage": "15.23", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00280-2_S29_L002_R2_001.fastq.gz", + "filename": "NA19120-2_S13i_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00280-2_S29_L002", + "libraryId": "NA19120-2_S13i_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242314", + "metadataAccession": "SRR30242446", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -98251,64 +156686,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.607224", + "ntsmScore": "0.50701", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13i_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00280", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00280", - "totalBp": "12278186501", - "totalGbp": "12.278186501", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "47198861709", + "totalGbp": "47.2", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758779", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758779", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "3.96", + "coverage": "13.11", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00280-2_S29_L003_R1_001.fastq.gz", + "filename": "NA19120-2_S13i_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00280-2_S29_L003", + "libraryId": "NA19120-2_S13i_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242175", + "metadataAccession": "SRR30242445", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -98316,64 +156751,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.585727", + "ntsmScore": "0.505864", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13i_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00280", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00280", - "totalBp": "12282924436", - "totalGbp": "12.282924436", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "40634736086", + "totalGbp": "40.63", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758779", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758779", + "biosampleAccession": "SAMN37797088", "ccsAlgorithm": "N/A", - "coverage": "3.96", + "coverage": "13.11", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00280-2_S29_L003_R2_001.fastq.gz", + "filename": "NA19120-2_S13i_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00280-2_S29_L003", + "libraryId": "NA19120-2_S13i_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242175", + "metadataAccession": "SRR30242445", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -98381,64 +156816,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.577749", + "ntsmScore": "0.489479", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/hic/NA19120-2_S13i_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00280", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00280", - "totalBp": "12282249384", - "totalGbp": "12.282249384", + "title": "Illumina Sequencing of Omni-C Libraries of NA19120", + "totalBp": "40633250382", + "totalGbp": "40.63", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758779", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758779", + "biosampleAccession": "SAMN37797089", "ccsAlgorithm": "N/A", - "coverage": "3.92", + "coverage": "4.54", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00280-2_S29_L004_R1_001.fastq.gz", + "filename": "NA19159-1_S8_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00280-2_S29_L004", + "libraryId": "NA19159-1_S8_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242526", + "metadataAccession": "SRR30242444", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -98446,64 +156881,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.579023", + "ntsmScore": "0.566407", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-1_S8_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00280", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00280", - "totalBp": "12137842068", - "totalGbp": "12.137842068", + "title": "Illumina Sequencing of Omni-C Libraries of NA19159", + "totalBp": "14067634876", + "totalGbp": "14.07", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758779", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758779", + "biosampleAccession": "SAMN37797089", "ccsAlgorithm": "N/A", - "coverage": "3.92", + "coverage": "4.54", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00280-2_S29_L004_R2_001.fastq.gz", + "filename": "NA19159-1_S8_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00280-2_S29_L004", + "libraryId": "NA19159-1_S8_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242526", + "metadataAccession": "SRR30242444", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -98511,64 +156946,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.606626", + "ntsmScore": "0.547741", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-1_S8_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00280", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00280", - "totalBp": "12137209598", - "totalGbp": "12.137209598", + "title": "Illumina Sequencing of Omni-C Libraries of NA19159", + "totalBp": "14066467348", + "totalGbp": "14.07", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021639", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021639", + "biosampleAccession": "SAMN37797089", "ccsAlgorithm": "N/A", - "coverage": "6.29", + "coverage": "4.94", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00290-1_FC1_S7_L004_R1_001.fastq.gz", + "filename": "NA19159-1_S8_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00290-1_FC1_S7_L004", + "libraryId": "NA19159-1_S8_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310818", + "metadataAccession": "SRR30242443", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -98576,64 +157011,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.4654", + "ntsmScore": "0.566578", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-1_S8_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00290", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00290", - "totalBp": "19497247142", - "totalGbp": "19.497247142", + "title": "Illumina Sequencing of Omni-C Libraries of NA19159", + "totalBp": "15323640450", + "totalGbp": "15.32", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021639", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021639", + "biosampleAccession": "SAMN37797089", "ccsAlgorithm": "N/A", - "coverage": "6.17", + "coverage": "4.94", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00290-1_FC2_S7_L004_R1_001.fastq.gz", + "filename": "NA19159-1_S8_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00290-1_FC2_S7_L004", + "libraryId": "NA19159-1_S8_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310817", + "metadataAccession": "SRR30242443", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -98641,64 +157076,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.484694", + "ntsmScore": "0.545824", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-1_S8_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00290", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00290", - "totalBp": "19123573331", - "totalGbp": "19.123573331", + "title": "Illumina Sequencing of Omni-C Libraries of NA19159", + "totalBp": "15322839268", + "totalGbp": "15.32", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021639", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021639", + "biosampleAccession": "SAMN37797089", "ccsAlgorithm": "N/A", - "coverage": "7.47", + "coverage": "4.95", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00290-2_FC1_S8_L004_R1_001.fastq.gz", + "filename": "NA19159-1_S8_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00290-2_FC1_S8_L004", + "libraryId": "NA19159-1_S8_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310816", + "metadataAccession": "SRR30242442", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -98706,64 +157141,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.48162", + "ntsmScore": "0.608204", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-1_S8_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00290", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00290", - "totalBp": "23168123129", - "totalGbp": "23.168123129", + "title": "Illumina Sequencing of Omni-C Libraries of NA19159", + "totalBp": "15330334190", + "totalGbp": "15.33", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021639", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021639", + "biosampleAccession": "SAMN37797089", "ccsAlgorithm": "N/A", - "coverage": "7.42", + "coverage": "4.94", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00290-2_FC2_S8_L004_R1_001.fastq.gz", + "filename": "NA19159-1_S8_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00290-2_FC2_S8_L004", + "libraryId": "NA19159-1_S8_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310815", + "metadataAccession": "SRR30242442", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -98771,64 +157206,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.50788", + "ntsmScore": "0.559477", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-1_S8_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00290", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00290", - "totalBp": "22995756931", - "totalGbp": "22.995756931", + "title": "Illumina Sequencing of Omni-C Libraries of NA19159", + "totalBp": "15329439126", + "totalGbp": "15.33", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021632", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021632", + "biosampleAccession": "SAMN37797089", "ccsAlgorithm": "N/A", - "coverage": "7.05", + "coverage": "4.9", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00320-1_FC1_S9_L003_R1_001.fastq.gz", + "filename": "NA19159-1_S8_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00320-1_FC1_S9_L003", + "libraryId": "NA19159-1_S8_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310814", + "metadataAccession": "SRR30242441", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -98836,64 +157271,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.506774", + "ntsmScore": "0.589573", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-1_S8_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00320", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00320", - "totalBp": "21859015341", - "totalGbp": "21.859015341", + "title": "Illumina Sequencing of Omni-C Libraries of NA19159", + "totalBp": "15198062363", + "totalGbp": "15.2", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021632", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021632", + "biosampleAccession": "SAMN37797089", "ccsAlgorithm": "N/A", - "coverage": "7.29", + "coverage": "4.9", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00320-1_FC2_S9_L003_R1_001.fastq.gz", + "filename": "NA19159-1_S8_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00320-1_FC2_S9_L003", + "libraryId": "NA19159-1_S8_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310813", + "metadataAccession": "SRR30242441", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -98901,64 +157336,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.48307", + "ntsmScore": "0.556074", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-1_S8_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00320", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00320", - "totalBp": "22604932087", - "totalGbp": "22.604932087", + "title": "Illumina Sequencing of Omni-C Libraries of NA19159", + "totalBp": "15197214990", + "totalGbp": "15.2", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021632", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021632", + "biosampleAccession": "SAMN37797089", "ccsAlgorithm": "N/A", - "coverage": "11.46", + "coverage": "5.27", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00320-2_FC1_S10_L003_R1_001.fastq.gz", + "filename": "NA19159-2_S16_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00320-2_FC1_S10_L003", + "libraryId": "NA19159-2_S16_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310812", + "metadataAccession": "SRR30242440", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -98966,64 +157401,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.439958", + "ntsmScore": "0.554173", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-2_S16_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00320", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00320", - "totalBp": "35516787765", - "totalGbp": "35.516787765", + "title": "Illumina Sequencing of Omni-C Libraries of NA19159", + "totalBp": "16324115791", + "totalGbp": "16.32", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021632", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021632", + "biosampleAccession": "SAMN37797089", "ccsAlgorithm": "N/A", - "coverage": "11.86", + "coverage": "5.27", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00320-2_FC2_S10_L003_R1_001.fastq.gz", + "filename": "NA19159-2_S16_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00320-2_FC2_S10_L003", + "libraryId": "NA19159-2_S16_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310811", + "metadataAccession": "SRR30242440", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -99031,64 +157466,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.465434", + "ntsmScore": "0.569959", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-2_S16_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00320", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00320", - "totalBp": "36761442562", - "totalGbp": "36.761442562", + "title": "Illumina Sequencing of Omni-C Libraries of NA19159", + "totalBp": "16322909256", + "totalGbp": "16.32", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021636", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021636", + "biosampleAccession": "SAMN37797089", "ccsAlgorithm": "N/A", - "coverage": "10.25", + "coverage": "5.74", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00321-1_FC1_S11_L003_R1_001.fastq.gz", + "filename": "NA19159-2_S16_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00321-1_FC1_S11_L003", + "libraryId": "NA19159-2_S16_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310954", + "metadataAccession": "SRR30242439", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -99096,64 +157531,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.445028", + "ntsmScore": "0.575919", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-2_S16_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00321", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00321", - "totalBp": "31765796916", - "totalGbp": "31.765796916", + "title": "Illumina Sequencing of Omni-C Libraries of NA19159", + "totalBp": "17806607760", + "totalGbp": "17.81", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021636", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021636", + "biosampleAccession": "SAMN37797089", "ccsAlgorithm": "N/A", - "coverage": "10.52", + "coverage": "5.74", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00321-1_FC2_S11_L003_R1_001.fastq.gz", + "filename": "NA19159-2_S16_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00321-1_FC2_S11_L003", + "libraryId": "NA19159-2_S16_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310953", + "metadataAccession": "SRR30242439", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -99161,64 +157596,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.435627", + "ntsmScore": "0.522968", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-2_S16_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00321", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00321", - "totalBp": "32618282667", - "totalGbp": "32.618282667", + "title": "Illumina Sequencing of Omni-C Libraries of NA19159", + "totalBp": "17805753536", + "totalGbp": "17.81", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021636", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021636", + "biosampleAccession": "SAMN37797089", "ccsAlgorithm": "N/A", - "coverage": "9.26", + "coverage": "5.74", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00321-2_FC1_S12_L003_R1_001.fastq.gz", + "filename": "NA19159-2_S16_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00321-2_FC1_S12_L003", + "libraryId": "NA19159-2_S16_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310951", + "metadataAccession": "SRR30242437", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -99226,64 +157661,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.440311", + "ntsmScore": "0.535619", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-2_S16_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00321", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00321", - "totalBp": "28716418960", - "totalGbp": "28.71641896", + "title": "Illumina Sequencing of Omni-C Libraries of NA19159", + "totalBp": "17808457755", + "totalGbp": "17.81", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021636", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021636", + "biosampleAccession": "SAMN37797089", "ccsAlgorithm": "N/A", - "coverage": "9.56", + "coverage": "5.74", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00321-2_FC2_S12_L003_R1_001.fastq.gz", + "filename": "NA19159-2_S16_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00321-2_FC2_S12_L003", + "libraryId": "NA19159-2_S16_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310950", + "metadataAccession": "SRR30242437", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -99291,64 +157726,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.477987", + "ntsmScore": "0.537256", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-2_S16_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00321", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00321", - "totalBp": "29645490401", - "totalGbp": "29.645490401", + "title": "Illumina Sequencing of Omni-C Libraries of NA19159", + "totalBp": "17807570446", + "totalGbp": "17.81", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621942", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621942", + "biosampleAccession": "SAMN37797089", "ccsAlgorithm": "N/A", - "coverage": "3", + "coverage": "5.67", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00323-1_S23_L001_R1_001.fastq.gz", + "filename": "NA19159-2_S16_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00323-1_S23_L001", + "libraryId": "NA19159-2_S16_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242517", + "metadataAccession": "SRR30242436", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -99356,64 +157791,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.668508", + "ntsmScore": "0.548013", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-2_S16_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00323", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00323", - "totalBp": "9307268830", - "totalGbp": "9.30726883", + "title": "Illumina Sequencing of Omni-C Libraries of NA19159", + "totalBp": "17582589136", + "totalGbp": "17.58", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621942", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621942", + "biosampleAccession": "SAMN37797089", "ccsAlgorithm": "N/A", - "coverage": "3", + "coverage": "5.67", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00323-1_S23_L001_R2_001.fastq.gz", + "filename": "NA19159-2_S16_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00323-1_S23_L001", + "libraryId": "NA19159-2_S16_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242517", + "metadataAccession": "SRR30242436", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -99421,64 +157856,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.572325", + "ntsmScore": "0.561775", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/hic/NA19159-2_S16_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00323", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00323", - "totalBp": "9306726494", - "totalGbp": "9.306726494", + "title": "Illumina Sequencing of Omni-C Libraries of NA19159", + "totalBp": "17581755267", + "totalGbp": "17.58", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621942", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621942", + "biosampleAccession": "SAMN37797090", "ccsAlgorithm": "N/A", - "coverage": "3.09", + "coverage": "3.95", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00323-1_S23_L002_R1_001.fastq.gz", + "filename": "NA19185-1_S17_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00323-1_S23_L002", + "libraryId": "NA19185-1_S17_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242506", + "metadataAccession": "SRR30242295", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -99486,64 +157921,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.624167", + "ntsmScore": "0.618567", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-1_S17_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00323", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00323", - "totalBp": "9572806260", - "totalGbp": "9.57280626", + "title": "Illumina Sequencing of Omni-C Libraries of NA19185", + "totalBp": "12257135185", + "totalGbp": "12.26", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621942", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621942", + "biosampleAccession": "SAMN37797090", "ccsAlgorithm": "N/A", - "coverage": "3.09", + "coverage": "3.95", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00323-1_S23_L002_R2_001.fastq.gz", + "filename": "NA19185-1_S17_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00323-1_S23_L002", + "libraryId": "NA19185-1_S17_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242506", + "metadataAccession": "SRR30242295", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -99551,64 +157986,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.576623", + "ntsmScore": "0.568337", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-1_S17_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00323", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00323", - "totalBp": "9572123103", - "totalGbp": "9.572123103", + "title": "Illumina Sequencing of Omni-C Libraries of NA19185", + "totalBp": "12256101559", + "totalGbp": "12.26", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621942", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621942", + "biosampleAccession": "SAMN37797090", "ccsAlgorithm": "N/A", - "coverage": "2.89", + "coverage": "4.22", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00323-1_S23_L003_R1_001.fastq.gz", + "filename": "NA19185-1_S17_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00323-1_S23_L003", + "libraryId": "NA19185-1_S17_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242207", + "metadataAccession": "SRR30242294", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -99616,64 +158051,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.663599", + "ntsmScore": "0.609886", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-1_S17_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00323", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00323", - "totalBp": "8948801097", - "totalGbp": "8.948801097", + "title": "Illumina Sequencing of Omni-C Libraries of NA19185", + "totalBp": "13073641404", + "totalGbp": "13.07", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621942", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621942", + "biosampleAccession": "SAMN37797090", "ccsAlgorithm": "N/A", - "coverage": "2.89", + "coverage": "4.22", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00323-1_S23_L003_R2_001.fastq.gz", + "filename": "NA19185-1_S17_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00323-1_S23_L003", + "libraryId": "NA19185-1_S17_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242207", + "metadataAccession": "SRR30242294", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -99681,64 +158116,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.600535", + "ntsmScore": "0.598748", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-1_S17_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00323", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00323", - "totalBp": "8948237735", - "totalGbp": "8.948237735", + "title": "Illumina Sequencing of Omni-C Libraries of NA19185", + "totalBp": "13072948865", + "totalGbp": "13.07", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621942", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621942", + "biosampleAccession": "SAMN37797090", "ccsAlgorithm": "N/A", - "coverage": "2.99", + "coverage": "4.22", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00323-1_S23_L004_R1_001.fastq.gz", + "filename": "NA19185-1_S17_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00323-1_S23_L004", + "libraryId": "NA19185-1_S17_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242196", + "metadataAccession": "SRR30242293", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -99746,64 +158181,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.628386", + "ntsmScore": "0.586516", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-1_S17_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00323", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00323", - "totalBp": "9273418950", - "totalGbp": "9.27341895", + "title": "Illumina Sequencing of Omni-C Libraries of NA19185", + "totalBp": "13085456563", + "totalGbp": "13.09", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621942", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621942", + "biosampleAccession": "SAMN37797090", "ccsAlgorithm": "N/A", - "coverage": "2.99", + "coverage": "4.22", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00323-1_S23_L004_R2_001.fastq.gz", + "filename": "NA19185-1_S17_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00323-1_S23_L004", + "libraryId": "NA19185-1_S17_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242196", + "metadataAccession": "SRR30242293", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -99811,64 +158246,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.607121", + "ntsmScore": "0.574441", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-1_S17_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00323", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00323", - "totalBp": "9272807579", - "totalGbp": "9.272807579", + "title": "Illumina Sequencing of Omni-C Libraries of NA19185", + "totalBp": "13084705432", + "totalGbp": "13.08", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621942", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621942", + "biosampleAccession": "SAMN37797090", "ccsAlgorithm": "N/A", - "coverage": "4.34", + "coverage": "4.19", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00323-2_S31_L001_R1_001.fastq.gz", + "filename": "NA19185-1_S17_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00323-2_S31_L001", + "libraryId": "NA19185-1_S17_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242449", + "metadataAccession": "SRR30242432", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -99876,64 +158311,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.586155", + "ntsmScore": "0.594033", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-1_S17_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00323", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00323", - "totalBp": "13454844253", - "totalGbp": "13.454844253", + "title": "Illumina Sequencing of Omni-C Libraries of NA19185", + "totalBp": "12979454960", + "totalGbp": "12.98", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621942", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621942", + "biosampleAccession": "SAMN37797090", "ccsAlgorithm": "N/A", - "coverage": "4.34", + "coverage": "4.19", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00323-2_S31_L001_R2_001.fastq.gz", + "filename": "NA19185-1_S17_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00323-2_S31_L001", + "libraryId": "NA19185-1_S17_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242449", + "metadataAccession": "SRR30242432", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -99941,64 +158376,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.558651", + "ntsmScore": "0.574654", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-1_S17_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00323", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00323", - "totalBp": "13454144527", - "totalGbp": "13.454144527", + "title": "Illumina Sequencing of Omni-C Libraries of NA19185", + "totalBp": "12978755728", + "totalGbp": "12.98", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621942", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621942", + "biosampleAccession": "SAMN37797090", "ccsAlgorithm": "N/A", - "coverage": "4.46", + "coverage": "4.09", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00323-2_S31_L002_R1_001.fastq.gz", + "filename": "NA19185-2_S25_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00323-2_S31_L002", + "libraryId": "NA19185-2_S25_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242438", + "metadataAccession": "SRR30242311", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -100006,64 +158441,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.629683", + "ntsmScore": "0.585463", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-2_S25_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00323", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00323", - "totalBp": "13831739909", - "totalGbp": "13.831739909", + "title": "Illumina Sequencing of Omni-C Libraries of NA19185", + "totalBp": "12682043444", + "totalGbp": "12.68", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621942", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621942", + "biosampleAccession": "SAMN37797090", "ccsAlgorithm": "N/A", - "coverage": "4.46", + "coverage": "4.09", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00323-2_S31_L002_R2_001.fastq.gz", + "filename": "NA19185-2_S25_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00323-2_S31_L002", + "libraryId": "NA19185-2_S25_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242438", + "metadataAccession": "SRR30242311", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -100071,64 +158506,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.524332", + "ntsmScore": "0.579125", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-2_S25_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00323", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00323", - "totalBp": "13830862496", - "totalGbp": "13.830862496", + "title": "Illumina Sequencing of Omni-C Libraries of NA19185", + "totalBp": "12680980988", + "totalGbp": "12.68", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621942", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621942", + "biosampleAccession": "SAMN37797090", "ccsAlgorithm": "N/A", - "coverage": "4.18", + "coverage": "4.4", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00323-2_S31_L003_R1_001.fastq.gz", + "filename": "NA19185-2_S25_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00323-2_S31_L003", + "libraryId": "NA19185-2_S25_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242306", + "metadataAccession": "SRR30242310", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -100136,64 +158571,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.604095", + "ntsmScore": "0.580722", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-2_S25_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00323", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00323", - "totalBp": "12967687388", - "totalGbp": "12.967687388", + "title": "Illumina Sequencing of Omni-C Libraries of NA19185", + "totalBp": "13649692314", + "totalGbp": "13.65", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621942", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621942", + "biosampleAccession": "SAMN37797090", "ccsAlgorithm": "N/A", - "coverage": "4.18", + "coverage": "4.4", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00323-2_S31_L003_R2_001.fastq.gz", + "filename": "NA19185-2_S25_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00323-2_S31_L003", + "libraryId": "NA19185-2_S25_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242306", + "metadataAccession": "SRR30242310", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -100201,64 +158636,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.606035", + "ntsmScore": "0.556523", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-2_S25_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00323", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00323", - "totalBp": "12966946971", - "totalGbp": "12.966946971", + "title": "Illumina Sequencing of Omni-C Libraries of NA19185", + "totalBp": "13648938374", + "totalGbp": "13.65", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621942", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621942", + "biosampleAccession": "SAMN37797090", "ccsAlgorithm": "N/A", - "coverage": "4.33", + "coverage": "4.41", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00323-2_S31_L004_R1_001.fastq.gz", + "filename": "NA19185-2_S25_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00323-2_S31_L004", + "libraryId": "NA19185-2_S25_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242493", + "metadataAccession": "SRR30242309", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -100266,64 +158701,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.581474", + "ntsmScore": "0.593398", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-2_S25_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00323", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00323", - "totalBp": "13422786440", - "totalGbp": "13.42278644", + "title": "Illumina Sequencing of Omni-C Libraries of NA19185", + "totalBp": "13658084505", + "totalGbp": "13.66", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621942", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621942", + "biosampleAccession": "SAMN37797090", "ccsAlgorithm": "N/A", - "coverage": "4.33", + "coverage": "4.41", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00323-2_S31_L004_R2_001.fastq.gz", + "filename": "NA19185-2_S25_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00323-2_S31_L004", + "libraryId": "NA19185-2_S25_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242493", + "metadataAccession": "SRR30242309", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -100331,64 +158766,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.567536", + "ntsmScore": "0.567571", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-2_S25_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00323", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "FIN", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00323", - "totalBp": "13421982668", - "totalGbp": "13.421982668", + "title": "Illumina Sequencing of Omni-C Libraries of NA19185", + "totalBp": "13657310272", + "totalGbp": "13.66", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621943", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621943", + "biosampleAccession": "SAMN37797090", "ccsAlgorithm": "N/A", - "coverage": "24.38", + "coverage": "4.36", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SH002", - "filename": "HG00408-1_S4_L002_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19185-2_S25_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00408-1_S4_L002", + "libraryId": "NA19185-2_S25_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310949", + "metadataAccession": "SRR30242308", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -100396,64 +158831,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.402711", + "ntsmScore": "0.588779", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-2_S25_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00408", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00408", - "totalBp": "75586775321", - "totalGbp": "75.586775321", + "title": "Illumina Sequencing of Omni-C Libraries of NA19185", + "totalBp": "13527344367", + "totalGbp": "13.53", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621943", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621943", + "biosampleAccession": "SAMN37797090", "ccsAlgorithm": "N/A", - "coverage": "17.81", + "coverage": "4.36", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SH002", - "filename": "HG00408-2_S4_L003_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19185-2_S25_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00408-2_S4_L003", + "libraryId": "NA19185-2_S25_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310948", + "metadataAccession": "SRR30242308", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -100461,64 +158896,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.439714", + "ntsmScore": "0.571938", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/hic/NA19185-2_S25_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00408", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00408", - "totalBp": "55207426647", - "totalGbp": "55.207426647", + "title": "Illumina Sequencing of Omni-C Libraries of NA19185", + "totalBp": "13526574718", + "totalGbp": "13.53", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758780", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758780", + "biosampleAccession": "SAMN37797091", "ccsAlgorithm": "N/A", - "coverage": "8.9", + "coverage": "3.57", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SH045", - "filename": "HG00558-1_S4_L001_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19338-1_S19_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00558-1_S4_L001", + "libraryId": "NA19338-1_S19_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310947", + "metadataAccession": "SRR30242305", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -100526,64 +158961,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.465973", + "ntsmScore": "0.62636", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-1_S19_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00558", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00558", - "totalBp": "27603885539", - "totalGbp": "27.603885539", + "title": "Illumina Sequencing of Omni-C Libraries of NA19338", + "totalBp": "11053440320", + "totalGbp": "11.05", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758780", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758780", + "biosampleAccession": "SAMN37797091", "ccsAlgorithm": "N/A", - "coverage": "10.36", + "coverage": "3.57", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SH045", - "filename": "HG00558-2_S8_L001_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19338-1_S19_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00558-2_S8_L001", + "libraryId": "NA19338-1_S19_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310946", + "metadataAccession": "SRR30242305", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -100591,64 +159026,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.482983", + "ntsmScore": "0.592449", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-1_S19_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00558", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00558", - "totalBp": "32101602796", - "totalGbp": "32.101602796", + "title": "Illumina Sequencing of Omni-C Libraries of NA19338", + "totalBp": "11052813837", + "totalGbp": "11.05", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621944", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621944", + "biosampleAccession": "SAMN37797091", "ccsAlgorithm": "N/A", - "coverage": "32.67", + "coverage": "3.65", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SH058", - "filename": "HG00597-1_S1_L002_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19338-1_S19_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00597-1_S1_L002", + "libraryId": "NA19338-1_S19_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310945", + "metadataAccession": "SRR30242304", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -100656,64 +159091,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.406575", + "ntsmScore": "0.606111", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-1_S19_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00597", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00597", - "totalBp": "101280993154", - "totalGbp": "101.280993154", + "title": "Illumina Sequencing of Omni-C Libraries of NA19338", + "totalBp": "11310326695", + "totalGbp": "11.31", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621944", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621944", + "biosampleAccession": "SAMN37797091", "ccsAlgorithm": "N/A", - "coverage": "19.5", + "coverage": "3.65", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SH058", - "filename": "HG00597-2_S1_L003_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19338-1_S19_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00597-2_S1_L003", + "libraryId": "NA19338-1_S19_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310944", + "metadataAccession": "SRR30242304", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -100721,64 +159156,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.417803", + "ntsmScore": "0.588985", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-1_S19_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00597", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00597", - "totalBp": "60459807174", - "totalGbp": "60.459807174", + "title": "Illumina Sequencing of Omni-C Libraries of NA19338", + "totalBp": "11309496506", + "totalGbp": "11.31", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758781", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758781", + "biosampleAccession": "SAMN37797091", "ccsAlgorithm": "N/A", - "coverage": "28.66", + "coverage": "3.5", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PR03", - "filename": "HG00639-1_S6_L002_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19338-1_S19_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00639-1_S6_L002", + "libraryId": "NA19338-1_S19_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310943", + "metadataAccession": "SRR30242303", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -100786,64 +159221,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.424694", + "ntsmScore": "0.609677", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-1_S19_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00639", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00639", - "totalBp": "88846013898", - "totalGbp": "88.846013898", + "title": "Illumina Sequencing of Omni-C Libraries of NA19338", + "totalBp": "10860495038", + "totalGbp": "10.86", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758781", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758781", + "biosampleAccession": "SAMN37797091", "ccsAlgorithm": "N/A", - "coverage": "17.94", + "coverage": "3.5", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PR03", - "filename": "HG00639-2_S6_L003_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19338-1_S19_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00639-2_S6_L003", + "libraryId": "NA19338-1_S19_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310942", + "metadataAccession": "SRR30242303", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -100851,64 +159286,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.454326", + "ntsmScore": "0.603413", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-1_S19_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00639", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00639", - "totalBp": "55624447424", - "totalGbp": "55.624447424", + "title": "Illumina Sequencing of Omni-C Libraries of NA19338", + "totalBp": "10859728554", + "totalGbp": "10.86", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797096", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797096", + "biosampleAccession": "SAMN37797091", "ccsAlgorithm": "N/A", - "coverage": "15.71", + "coverage": "3.57", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SH074", - "filename": "HG00658-1_S6_L004_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19338-1_S19_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00658-1_S6_L004", + "libraryId": "NA19338-1_S19_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310940", + "metadataAccession": "SRR30242302", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -100916,64 +159351,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.407118", + "ntsmScore": "0.612421", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-1_S19_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00658", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00658", - "totalBp": "48698842692", - "totalGbp": "48.698842692", + "title": "Illumina Sequencing of Omni-C Libraries of NA19338", + "totalBp": "11075509617", + "totalGbp": "11.08", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797096", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797096", + "biosampleAccession": "SAMN37797091", "ccsAlgorithm": "N/A", - "coverage": "16.43", + "coverage": "3.57", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SH074", - "filename": "HG00658-2_S12_L004_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19338-1_S19_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00658-2_S12_L004", + "libraryId": "NA19338-1_S19_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310939", + "metadataAccession": "SRR30242302", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -100981,64 +159416,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.425113", + "ntsmScore": "0.587928", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-1_S19_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00658", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00658", - "totalBp": "50947499509", - "totalGbp": "50.947499509", + "title": "Illumina Sequencing of Omni-C Libraries of NA19338", + "totalBp": "11074749106", + "totalGbp": "11.07", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021616", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021616", + "biosampleAccession": "SAMN37797091", "ccsAlgorithm": "N/A", - "coverage": "6.31", + "coverage": "4.63", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00867-1_FC1_S7_L001_R1_001.fastq.gz", + "filename": "NA19338-2_S27_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00867-1_FC1_S7_L001", + "libraryId": "NA19338-2_S27_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310938", + "metadataAccession": "SRR30242301", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -101046,64 +159481,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.497153", + "ntsmScore": "0.582207", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-2_S27_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00867", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00867", - "totalBp": "19551234323", - "totalGbp": "19.551234323", + "title": "Illumina Sequencing of Omni-C Libraries of NA19338", + "totalBp": "14353976469", + "totalGbp": "14.35", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021616", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021616", + "biosampleAccession": "SAMN37797091", "ccsAlgorithm": "N/A", - "coverage": "6.26", + "coverage": "4.63", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00867-1_FC2_S7_L001_R1_001.fastq.gz", + "filename": "NA19338-2_S27_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00867-1_FC2_S7_L001", + "libraryId": "NA19338-2_S27_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310937", + "metadataAccession": "SRR30242301", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -101111,64 +159546,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.492661", + "ntsmScore": "0.550579", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-2_S27_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00867", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00867", - "totalBp": "19398350296", - "totalGbp": "19.398350296", + "title": "Illumina Sequencing of Omni-C Libraries of NA19338", + "totalBp": "14353115615", + "totalGbp": "14.35", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021616", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021616", + "biosampleAccession": "SAMN37797091", "ccsAlgorithm": "N/A", - "coverage": "16.34", + "coverage": "4.74", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00867-2_FC1_S8_L001_R1_001.fastq.gz", + "filename": "NA19338-2_S27_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00867-2_FC1_S8_L001", + "libraryId": "NA19338-2_S27_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310936", + "metadataAccession": "SRR30242300", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -101176,64 +159611,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.447926", + "ntsmScore": "0.565677", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-2_S27_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00867", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00867", - "totalBp": "50659452513", - "totalGbp": "50.659452513", + "title": "Illumina Sequencing of Omni-C Libraries of NA19338", + "totalBp": "14703424250", + "totalGbp": "14.7", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021616", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021616", + "biosampleAccession": "SAMN37797091", "ccsAlgorithm": "N/A", - "coverage": "16.22", + "coverage": "4.74", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG00867-2_FC2_S8_L001_R1_001.fastq.gz", + "filename": "NA19338-2_S27_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG00867-2_FC2_S8_L001", + "libraryId": "NA19338-2_S27_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310935", + "metadataAccession": "SRR30242300", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -101241,64 +159676,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.446306", + "ntsmScore": "0.563184", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-2_S27_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00867", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG00867", - "totalBp": "50295251838", - "totalGbp": "50.295251838", + "title": "Illumina Sequencing of Omni-C Libraries of NA19338", + "totalBp": "14702293665", + "totalGbp": "14.7", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758782", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758782", + "biosampleAccession": "SAMN37797091", "ccsAlgorithm": "N/A", - "coverage": "6.98", + "coverage": "4.53", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PR18", - "filename": "HG01074-1_S1_L001_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19338-2_S27_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01074-1_S1_L001", + "libraryId": "NA19338-2_S27_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310934", + "metadataAccession": "SRR30242299", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -101306,64 +159741,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.530659", + "ntsmScore": "0.593926", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-2_S27_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01074", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01074", - "totalBp": "21626785797", - "totalGbp": "21.626785797", + "title": "Illumina Sequencing of Omni-C Libraries of NA19338", + "totalBp": "14050211042", + "totalGbp": "14.05", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758782", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758782", + "biosampleAccession": "SAMN37797091", "ccsAlgorithm": "N/A", - "coverage": "9.68", + "coverage": "4.53", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PR18", - "filename": "HG01074-2_S5_L001_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19338-2_S27_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01074-2_S5_L001", + "libraryId": "NA19338-2_S27_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310933", + "metadataAccession": "SRR30242299", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -101371,64 +159806,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.503104", + "ntsmScore": "0.545612", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-2_S27_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01074", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01074", - "totalBp": "30020586028", - "totalGbp": "30.020586028", + "title": "Illumina Sequencing of Omni-C Libraries of NA19338", + "totalBp": "14049151602", + "totalGbp": "14.05", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758783", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758783", + "biosampleAccession": "SAMN37797091", "ccsAlgorithm": "N/A", - "coverage": "37.39", + "coverage": "4.62", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PR21", - "filename": "HG01081-1_S5_L002_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19338-2_S27_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01081-1_S5_L002", + "libraryId": "NA19338-2_S27_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310932", + "metadataAccession": "SRR30242298", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -101436,64 +159871,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.416466", + "ntsmScore": "0.618126", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-2_S27_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01081", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01081", - "totalBp": "115919387211", - "totalGbp": "115.919387211", + "title": "Illumina Sequencing of Omni-C Libraries of NA19338", + "totalBp": "14334585396", + "totalGbp": "14.33", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758783", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758783", + "biosampleAccession": "SAMN37797091", "ccsAlgorithm": "N/A", - "coverage": "17.73", + "coverage": "4.62", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PR21", - "filename": "HG01081-2_S5_L003_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19338-2_S27_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01081-2_S5_L003", + "libraryId": "NA19338-2_S27_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310931", + "metadataAccession": "SRR30242298", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -101501,64 +159936,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.432473", + "ntsmScore": "0.559476", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/hic/NA19338-2_S27_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01081", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01081", - "totalBp": "54958779326", - "totalGbp": "54.958779326", + "title": "Illumina Sequencing of Omni-C Libraries of NA19338", + "totalBp": "14333528623", + "totalGbp": "14.33", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797097", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797097", + "biosampleAccession": "SAMN37797092", "ccsAlgorithm": "N/A", - "coverage": "12.57", + "coverage": "4.36", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "CLM12", - "filename": "HG01150-1_S5_L004_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19391-1_S20_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01150-1_S5_L004", + "libraryId": "NA19391-1_S20_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310905", + "metadataAccession": "SRR30242297", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -101566,64 +160001,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.436529", + "ntsmScore": "0.609815", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-1_S20_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01150", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01150", - "totalBp": "38965707191", - "totalGbp": "38.965707191", + "title": "Illumina Sequencing of Omni-C Libraries of NA19391", + "totalBp": "13518986850", + "totalGbp": "13.52", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797097", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797097", + "biosampleAccession": "SAMN37797092", "ccsAlgorithm": "N/A", - "coverage": "10.63", + "coverage": "4.36", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "CLM12", - "filename": "HG01150-2_S11_L004_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19391-1_S20_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01150-2_S11_L004", + "libraryId": "NA19391-1_S20_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310904", + "metadataAccession": "SRR30242297", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -101631,64 +160066,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.451094", + "ntsmScore": "0.544625", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-1_S20_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01150", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01150", - "totalBp": "32958728626", - "totalGbp": "32.958728626", + "title": "Illumina Sequencing of Omni-C Libraries of NA19391", + "totalBp": "13518244805", + "totalGbp": "13.52", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621945", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621945", + "biosampleAccession": "SAMN37797092", "ccsAlgorithm": "N/A", - "coverage": "16.29", + "coverage": "4.45", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PR40", - "filename": "HG01192-1_S7_L001_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19391-1_S20_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01192-1_S7_L001", + "libraryId": "NA19391-1_S20_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310834", + "metadataAccession": "SRR30242296", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -101696,64 +160131,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.279172", + "ntsmScore": "0.587456", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-1_S20_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01192", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01192", - "totalBp": "50487274763", - "totalGbp": "50.487274763", + "title": "Illumina Sequencing of Omni-C Libraries of NA19391", + "totalBp": "13806306273", + "totalGbp": "13.81", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621945", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621945", + "biosampleAccession": "SAMN37797092", "ccsAlgorithm": "N/A", - "coverage": "19.63", + "coverage": "4.45", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PR40", - "filename": "HG01192-2_S7_L002_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19391-1_S20_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01192-2_S7_L002", + "libraryId": "NA19391-1_S20_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310833", + "metadataAccession": "SRR30242296", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -101761,64 +160196,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.244302", + "ntsmScore": "0.539666", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-1_S20_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01192", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PUR", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01192", - "totalBp": "60842911086", - "totalGbp": "60.842911086", + "title": "Illumina Sequencing of Omni-C Libraries of NA19391", + "totalBp": "13805315933", + "totalGbp": "13.81", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797098", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797098", + "biosampleAccession": "SAMN37797092", "ccsAlgorithm": "N/A", - "coverage": "44.3", + "coverage": "4.25", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "CLM14", - "filename": "HG01252-2_S2_L003_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19391-1_S20_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01252-2_S2_L003", + "libraryId": "NA19391-1_S20_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310903", + "metadataAccession": "SRR30242492", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -101826,64 +160261,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.42038", + "ntsmScore": "0.585312", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-1_S20_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01252", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01252", - "totalBp": "137329443161", - "totalGbp": "137.329443161", + "title": "Illumina Sequencing of Omni-C Libraries of NA19391", + "totalBp": "13184382871", + "totalGbp": "13.18", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621946", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621946", + "biosampleAccession": "SAMN37797092", "ccsAlgorithm": "N/A", - "coverage": "36.73", + "coverage": "4.25", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "CLM17", - "filename": "HG01261-1_S2_L001_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19391-1_S20_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01261-1_S2_L001", + "libraryId": "NA19391-1_S20_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310832", + "metadataAccession": "SRR30242492", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -101891,64 +160326,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.176353", + "ntsmScore": "0.550523", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-1_S20_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01261", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01261", - "totalBp": "113858604745", - "totalGbp": "113.858604745", + "title": "Illumina Sequencing of Omni-C Libraries of NA19391", + "totalBp": "13183479160", + "totalGbp": "13.18", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621946", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621946", + "biosampleAccession": "SAMN37797092", "ccsAlgorithm": "N/A", - "coverage": "19.48", + "coverage": "4.31", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "CLM17", - "filename": "HG01261-2_S2_L002_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19391-1_S20_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01261-2_S2_L002", + "libraryId": "NA19391-1_S20_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310831", + "metadataAccession": "SRR30242491", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -101956,64 +160391,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.256517", + "ntsmScore": "0.601529", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-1_S20_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01261", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01261", - "totalBp": "60396447725", - "totalGbp": "60.396447725", + "title": "Illumina Sequencing of Omni-C Libraries of NA19391", + "totalBp": "13361652282", + "totalGbp": "13.36", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN37797092", "ccsAlgorithm": "N/A", - "coverage": "5.12", + "coverage": "4.31", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-1_S3_L001_R1_001.fastq.gz", + "filename": "NA19391-1_S20_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-1_S3_L001", + "libraryId": "NA19391-1_S20_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242502", + "metadataAccession": "SRR30242491", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -102021,64 +160456,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.531106", + "ntsmScore": "0.53483", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-1_S20_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "15881878484", - "totalGbp": "15.881878484", + "title": "Illumina Sequencing of Omni-C Libraries of NA19391", + "totalBp": "13360758809", + "totalGbp": "13.36", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN37797092", "ccsAlgorithm": "N/A", - "coverage": "5.12", + "coverage": "3.37", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-1_S3_L001_R2_001.fastq.gz", + "filename": "NA19391-2_S28_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-1_S3_L001", + "libraryId": "NA19391-2_S28_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242502", + "metadataAccession": "SRR30242490", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -102086,64 +160521,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.534723", + "ntsmScore": "0.631885", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-2_S28_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "15880840056", - "totalGbp": "15.880840056", + "title": "Illumina Sequencing of Omni-C Libraries of NA19391", + "totalBp": "10436347266", + "totalGbp": "10.44", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN37797092", "ccsAlgorithm": "N/A", - "coverage": "5.2", + "coverage": "3.37", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-1_S3_L002_R1_001.fastq.gz", + "filename": "NA19391-2_S28_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-1_S3_L002", + "libraryId": "NA19391-2_S28_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242424", + "metadataAccession": "SRR30242490", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -102151,64 +160586,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.543372", + "ntsmScore": "0.595998", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-2_S28_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "16121034186", - "totalGbp": "16.121034186", + "title": "Illumina Sequencing of Omni-C Libraries of NA19391", + "totalBp": "10435705406", + "totalGbp": "10.44", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN37797092", "ccsAlgorithm": "N/A", - "coverage": "5.2", + "coverage": "3.46", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-1_S3_L002_R2_001.fastq.gz", + "filename": "NA19391-2_S28_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-1_S3_L002", + "libraryId": "NA19391-2_S28_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242424", + "metadataAccession": "SRR30242489", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -102216,64 +160651,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.51989", + "ntsmScore": "0.598073", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-2_S28_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "16120270893", - "totalGbp": "16.120270893", + "title": "Illumina Sequencing of Omni-C Libraries of NA19391", + "totalBp": "10731057735", + "totalGbp": "10.73", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN37797092", "ccsAlgorithm": "N/A", - "coverage": "4.93", + "coverage": "3.46", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-1_S3_L003_R1_001.fastq.gz", + "filename": "NA19391-2_S28_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-1_S3_L003", + "libraryId": "NA19391-2_S28_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242480", + "metadataAccession": "SRR30242489", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -102281,64 +160716,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.518959", + "ntsmScore": "0.583996", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-2_S28_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "15269723276", - "totalGbp": "15.269723276", + "title": "Illumina Sequencing of Omni-C Libraries of NA19391", + "totalBp": "10730260451", + "totalGbp": "10.73", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN37797092", "ccsAlgorithm": "N/A", - "coverage": "4.93", + "coverage": "3.28", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-1_S3_L003_R2_001.fastq.gz", + "filename": "NA19391-2_S28_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-1_S3_L003", + "libraryId": "NA19391-2_S28_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242480", + "metadataAccession": "SRR30242292", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -102346,64 +160781,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.524037", + "ntsmScore": "0.616016", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-2_S28_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "15268847244", - "totalGbp": "15.268847244", + "title": "Illumina Sequencing of Omni-C Libraries of NA19391", + "totalBp": "10166644606", + "totalGbp": "10.17", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN37797092", "ccsAlgorithm": "N/A", - "coverage": "4.89", + "coverage": "3.28", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-1_S3_L004_R1_001.fastq.gz", + "filename": "NA19391-2_S28_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-1_S3_L004", + "libraryId": "NA19391-2_S28_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242283", + "metadataAccession": "SRR30242292", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -102411,64 +160846,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.547714", + "ntsmScore": "0.562347", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-2_S28_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "15150778535", - "totalGbp": "15.150778535", + "title": "Illumina Sequencing of Omni-C Libraries of NA19391", + "totalBp": "10165906652", + "totalGbp": "10.17", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN37797092", "ccsAlgorithm": "N/A", - "coverage": "4.89", + "coverage": "3.37", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-1_S3_L004_R2_001.fastq.gz", + "filename": "NA19391-2_S28_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-1_S3_L004", + "libraryId": "NA19391-2_S28_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242283", + "metadataAccession": "SRR30242291", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -102476,64 +160911,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.552279", + "ntsmScore": "0.624638", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-2_S28_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "15149837710", - "totalGbp": "15.14983771", + "title": "Illumina Sequencing of Omni-C Libraries of NA19391", + "totalBp": "10446413932", + "totalGbp": "10.45", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN37797092", "ccsAlgorithm": "N/A", - "coverage": "4.57", + "coverage": "3.37", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-2_S11_L001_R1_001.fastq.gz", + "filename": "NA19391-2_S28_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-2_S11_L001", + "libraryId": "NA19391-2_S28_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242411", + "metadataAccession": "SRR30242291", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -102541,64 +160976,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.572679", + "ntsmScore": "0.585156", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/hic/NA19391-2_S28_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "14154859985", - "totalGbp": "14.154859985", + "title": "Illumina Sequencing of Omni-C Libraries of NA19391", + "totalBp": "10445658425", + "totalGbp": "10.45", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN41021640", "ccsAlgorithm": "N/A", - "coverage": "4.57", + "coverage": "7.36", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-2_S11_L001_R2_001.fastq.gz", + "filename": "NA19443-1_FC1_S13_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-2_S11_L001", + "libraryId": "NA19443-1_FC1_S13_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242411", + "metadataAccession": "SRR30310910", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -102606,64 +161041,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.556003", + "ntsmScore": "0.509644", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19443/raw_data/hic/NA19443-1_FC1_S13_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "14153832303", - "totalGbp": "14.153832303", + "title": "Illumina Sequencing of Omni-C Libraries of NA19443", + "totalBp": "22826931381", + "totalGbp": "22.83", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN41021640", "ccsAlgorithm": "N/A", - "coverage": "4.63", + "coverage": "7.36", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-2_S11_L002_R1_001.fastq.gz", + "filename": "NA19443-1_FC1_S13_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-2_S11_L002", + "libraryId": "NA19443-1_FC1_S13_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242280", + "metadataAccession": "SRR30310910", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -102671,64 +161106,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.526389", + "ntsmScore": "0.509644", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19443/raw_data/hic/NA19443-1_FC1_S13_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "14365907902", - "totalGbp": "14.365907902", + "title": "Illumina Sequencing of Omni-C Libraries of NA19443", + "totalBp": "22826931381", + "totalGbp": "22.83", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN41021640", "ccsAlgorithm": "N/A", - "coverage": "4.63", + "coverage": "7.49", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-2_S11_L002_R2_001.fastq.gz", + "filename": "NA19443-1_FC2_S13_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-2_S11_L002", + "libraryId": "NA19443-1_FC2_S13_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242280", + "metadataAccession": "SRR30310909", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -102736,64 +161171,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.477837", + "ntsmScore": "0.522303", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19443/raw_data/hic/NA19443-1_FC2_S13_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "14365146781", - "totalGbp": "14.365146781", + "title": "Illumina Sequencing of Omni-C Libraries of NA19443", + "totalBp": "23204091329", + "totalGbp": "23.2", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN41021640", "ccsAlgorithm": "N/A", - "coverage": "4.33", + "coverage": "7.49", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-2_S11_L003_R1_001.fastq.gz", + "filename": "NA19443-1_FC2_S13_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-2_S11_L003", + "libraryId": "NA19443-1_FC2_S13_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242273", + "metadataAccession": "SRR30310909", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -102801,64 +161236,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.544446", + "ntsmScore": "0.522303", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19443/raw_data/hic/NA19443-1_FC2_S13_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "13420324024", - "totalGbp": "13.420324024", + "title": "Illumina Sequencing of Omni-C Libraries of NA19443", + "totalBp": "23204091329", + "totalGbp": "23.2", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN41021640", "ccsAlgorithm": "N/A", - "coverage": "4.33", + "coverage": "6.13", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-2_S11_L003_R2_001.fastq.gz", + "filename": "NA19443-2_FC1_S14_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-2_S11_L003", + "libraryId": "NA19443-2_FC1_S14_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242273", + "metadataAccession": "SRR30310908", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -102866,64 +161301,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.55355", + "ntsmScore": "0.536895", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19443/raw_data/hic/NA19443-2_FC1_S14_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "13419442072", - "totalGbp": "13.419442072", + "title": "Illumina Sequencing of Omni-C Libraries of NA19443", + "totalBp": "18998543519", + "totalGbp": "19", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN41021640", "ccsAlgorithm": "N/A", - "coverage": "4.35", + "coverage": "6.13", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-2_S11_L004_R1_001.fastq.gz", + "filename": "NA19443-2_FC1_S14_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-2_S11_L004", + "libraryId": "NA19443-2_FC1_S14_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242272", + "metadataAccession": "SRR30310908", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -102931,64 +161366,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.553314", + "ntsmScore": "0.536895", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19443/raw_data/hic/NA19443-2_FC1_S14_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "13477345492", - "totalGbp": "13.477345492", + "title": "Illumina Sequencing of Omni-C Libraries of NA19443", + "totalBp": "18998543519", + "totalGbp": "19", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN41021640", "ccsAlgorithm": "N/A", - "coverage": "4.35", + "coverage": "6.28", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-2_S11_L004_R2_001.fastq.gz", + "filename": "NA19443-2_FC2_S14_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-2_S11_L004", + "libraryId": "NA19443-2_FC2_S14_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242272", + "metadataAccession": "SRR30310907", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -102996,64 +161431,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.508802", + "ntsmScore": "0.546267", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19443/raw_data/hic/NA19443-2_FC2_S14_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "13476424101", - "totalGbp": "13.476424101", + "title": "Illumina Sequencing of Omni-C Libraries of NA19443", + "totalBp": "19467063450", + "totalGbp": "19.47", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN41021640", "ccsAlgorithm": "N/A", - "coverage": "11.56", + "coverage": "6.28", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-2_S11i_L001_R1_001.fastq.gz", + "filename": "NA19443-2_FC2_S14_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-2_S11i_L001", + "libraryId": "NA19443-2_FC2_S14_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242270", + "metadataAccession": "SRR30310907", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -103061,64 +161496,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.425715", + "ntsmScore": "0.546267", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19443/raw_data/hic/NA19443-2_FC2_S14_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "35830722289", - "totalGbp": "35.830722289", + "title": "Illumina Sequencing of Omni-C Libraries of NA19443", + "totalBp": "19467063450", + "totalGbp": "19.47", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN37797093", "ccsAlgorithm": "N/A", - "coverage": "11.56", + "coverage": "3.95", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-2_S11i_L001_R2_001.fastq.gz", + "filename": "NA19468-1_S21_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-2_S11i_L001", + "libraryId": "NA19468-1_S21_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242270", + "metadataAccession": "SRR30242290", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -103126,64 +161561,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.425428", + "ntsmScore": "0.60731", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-1_S21_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "35828051996", - "totalGbp": "35.828051996", + "title": "Illumina Sequencing of Omni-C Libraries of NA19468", + "totalBp": "12240955911", + "totalGbp": "12.24", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN37797093", "ccsAlgorithm": "N/A", - "coverage": "12.69", + "coverage": "3.95", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-2_S11i_L002_R1_001.fastq.gz", + "filename": "NA19468-1_S21_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-2_S11i_L002", + "libraryId": "NA19468-1_S21_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242268", + "metadataAccession": "SRR30242290", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -103191,64 +161626,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.462949", + "ntsmScore": "0.579113", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-1_S21_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "39351820410", - "totalGbp": "39.35182041", + "title": "Illumina Sequencing of Omni-C Libraries of NA19468", + "totalBp": "12240254262", + "totalGbp": "12.24", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN37797093", "ccsAlgorithm": "N/A", - "coverage": "12.69", + "coverage": "4.04", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-2_S11i_L002_R2_001.fastq.gz", + "filename": "NA19468-1_S21_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-2_S11i_L002", + "libraryId": "NA19468-1_S21_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242268", + "metadataAccession": "SRR30242289", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -103256,64 +161691,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.442026", + "ntsmScore": "0.615993", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-1_S21_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "39350313141", - "totalGbp": "39.350313141", + "title": "Illumina Sequencing of Omni-C Libraries of NA19468", + "totalBp": "12523728405", + "totalGbp": "12.52", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN37797093", "ccsAlgorithm": "N/A", - "coverage": "10.96", + "coverage": "4.04", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-2_S11i_L003_R1_001.fastq.gz", + "filename": "NA19468-1_S21_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-2_S11i_L003", + "libraryId": "NA19468-1_S21_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242265", + "metadataAccession": "SRR30242289", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -103321,64 +161756,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.477153", + "ntsmScore": "0.578908", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-1_S21_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "33977811222", - "totalGbp": "33.977811222", + "title": "Illumina Sequencing of Omni-C Libraries of NA19468", + "totalBp": "12522807560", + "totalGbp": "12.52", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN37797093", "ccsAlgorithm": "N/A", - "coverage": "10.96", + "coverage": "3.83", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-2_S11i_L003_R2_001.fastq.gz", + "filename": "NA19468-1_S21_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-2_S11i_L003", + "libraryId": "NA19468-1_S21_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242265", + "metadataAccession": "SRR30242288", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -103386,64 +161821,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.475761", + "ntsmScore": "0.595639", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-1_S21_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "33976500567", - "totalGbp": "33.976500567", + "title": "Illumina Sequencing of Omni-C Libraries of NA19468", + "totalBp": "11875186444", + "totalGbp": "11.88", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN37797093", "ccsAlgorithm": "N/A", - "coverage": "9.49", + "coverage": "3.83", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-2_S11i_L004_R1_001.fastq.gz", + "filename": "NA19468-1_S21_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-2_S11i_L004", + "libraryId": "NA19468-1_S21_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242264", + "metadataAccession": "SRR30242288", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -103451,64 +161886,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.484091", + "ntsmScore": "0.560997", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-1_S21_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "29404032796", - "totalGbp": "29.404032796", + "title": "Illumina Sequencing of Omni-C Libraries of NA19468", + "totalBp": "11874352869", + "totalGbp": "11.87", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN37797093", "ccsAlgorithm": "N/A", - "coverage": "9.48", + "coverage": "3.91", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01530-2_S11i_L004_R2_001.fastq.gz", + "filename": "NA19468-1_S21_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01530-2_S11i_L004", + "libraryId": "NA19468-1_S21_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242264", + "metadataAccession": "SRR30242503", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -103516,64 +161951,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.46578", + "ntsmScore": "0.635543", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-1_S21_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01530", - "totalBp": "29402751218", - "totalGbp": "29.402751218", + "title": "Illumina Sequencing of Omni-C Libraries of NA19468", + "totalBp": "12120041298", + "totalGbp": "12.12", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797100", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797100", + "biosampleAccession": "SAMN37797093", "ccsAlgorithm": "N/A", - "coverage": "4", + "coverage": "3.91", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01784-2_S31_L001_R1_001.fastq.gz", + "filename": "NA19468-1_S21_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01784-2_S31_L001", + "libraryId": "NA19468-1_S21_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242262", + "metadataAccession": "SRR30242503", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -103581,64 +162016,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.602602", + "ntsmScore": "0.594546", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-1_S21_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01784", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01784", - "totalBp": "12386565567", - "totalGbp": "12.386565567", + "title": "Illumina Sequencing of Omni-C Libraries of NA19468", + "totalBp": "12119181785", + "totalGbp": "12.12", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797100", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797100", + "biosampleAccession": "SAMN37797093", "ccsAlgorithm": "N/A", - "coverage": "4", + "coverage": "3.89", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01784-2_S31_L001_R2_001.fastq.gz", + "filename": "NA19468-2_S29_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01784-2_S31_L001", + "libraryId": "NA19468-2_S29_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242262", + "metadataAccession": "SRR30242501", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -103646,64 +162081,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.572815", + "ntsmScore": "0.599757", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-2_S29_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01784", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01784", - "totalBp": "12385592349", - "totalGbp": "12.385592349", + "title": "Illumina Sequencing of Omni-C Libraries of NA19468", + "totalBp": "12047225949", + "totalGbp": "12.05", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797100", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797100", + "biosampleAccession": "SAMN37797093", "ccsAlgorithm": "N/A", - "coverage": "4.32", + "coverage": "3.89", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01784-2_S31_L002_R1_001.fastq.gz", + "filename": "NA19468-2_S29_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01784-2_S31_L002", + "libraryId": "NA19468-2_S29_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242479", + "metadataAccession": "SRR30242501", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -103711,64 +162146,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.592402", + "ntsmScore": "0.594036", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-2_S29_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01784", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01784", - "totalBp": "13377187618", - "totalGbp": "13.377187618", + "title": "Illumina Sequencing of Omni-C Libraries of NA19468", + "totalBp": "12046627353", + "totalGbp": "12.05", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797100", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797100", + "biosampleAccession": "SAMN37797093", "ccsAlgorithm": "N/A", - "coverage": "4.32", + "coverage": "3.99", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01784-2_S31_L002_R2_001.fastq.gz", + "filename": "NA19468-2_S29_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01784-2_S31_L002", + "libraryId": "NA19468-2_S29_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242479", + "metadataAccession": "SRR30242500", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -103776,64 +162211,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.571426", + "ntsmScore": "0.620903", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-2_S29_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01784", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01784", - "totalBp": "13376511718", - "totalGbp": "13.376511718", + "title": "Illumina Sequencing of Omni-C Libraries of NA19468", + "totalBp": "12353976938", + "totalGbp": "12.35", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797100", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797100", + "biosampleAccession": "SAMN37797093", "ccsAlgorithm": "N/A", - "coverage": "4.31", + "coverage": "3.98", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01784-2_S31_L003_R1_001.fastq.gz", + "filename": "NA19468-2_S29_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01784-2_S31_L003", + "libraryId": "NA19468-2_S29_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242478", + "metadataAccession": "SRR30242500", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -103841,64 +162276,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.583023", + "ntsmScore": "0.591322", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-2_S29_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01784", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01784", - "totalBp": "13371568307", - "totalGbp": "13.371568307", + "title": "Illumina Sequencing of Omni-C Libraries of NA19468", + "totalBp": "12353146997", + "totalGbp": "12.35", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797100", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797100", + "biosampleAccession": "SAMN37797093", "ccsAlgorithm": "N/A", - "coverage": "4.31", + "coverage": "3.79", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01784-2_S31_L003_R2_001.fastq.gz", + "filename": "NA19468-2_S29_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01784-2_S31_L003", + "libraryId": "NA19468-2_S29_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242478", + "metadataAccession": "SRR30242499", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -103906,64 +162341,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.566998", + "ntsmScore": "0.579837", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-2_S29_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01784", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01784", - "totalBp": "13370845357", - "totalGbp": "13.370845357", + "title": "Illumina Sequencing of Omni-C Libraries of NA19468", + "totalBp": "11751376969", + "totalGbp": "11.75", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797100", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797100", + "biosampleAccession": "SAMN37797093", "ccsAlgorithm": "N/A", - "coverage": "4.27", + "coverage": "3.79", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01784-2_S31_L004_R1_001.fastq.gz", + "filename": "NA19468-2_S29_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01784-2_S31_L004", + "libraryId": "NA19468-2_S29_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242259", + "metadataAccession": "SRR30242499", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -103971,64 +162406,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.605486", + "ntsmScore": "0.57708", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-2_S29_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01784", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01784", - "totalBp": "13250775565", - "totalGbp": "13.250775565", + "title": "Illumina Sequencing of Omni-C Libraries of NA19468", + "totalBp": "11750624626", + "totalGbp": "11.75", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797100", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797100", + "biosampleAccession": "SAMN37797093", "ccsAlgorithm": "N/A", - "coverage": "4.27", + "coverage": "3.88", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01784-2_S31_L004_R2_001.fastq.gz", + "filename": "NA19468-2_S29_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01784-2_S31_L004", + "libraryId": "NA19468-2_S29_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242259", + "metadataAccession": "SRR30242498", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -104036,64 +162471,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.530222", + "ntsmScore": "0.617989", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-2_S29_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01784", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01784", - "totalBp": "13250075767", - "totalGbp": "13.250075767", + "title": "Illumina Sequencing of Omni-C Libraries of NA19468", + "totalBp": "12025993794", + "totalGbp": "12.03", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021633", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021633", + "biosampleAccession": "SAMN37797093", "ccsAlgorithm": "N/A", - "coverage": "5.41", + "coverage": "3.88", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01786-1_FC1_S1_L004_R1_001.fastq.gz", + "filename": "NA19468-2_S29_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01786-1_FC1_S1_L004", + "libraryId": "NA19468-2_S29_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310902", + "metadataAccession": "SRR30242498", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -104101,64 +162536,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.53728", + "ntsmScore": "0.599243", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/hic/NA19468-2_S29_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01786", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01786", - "totalBp": "16785803411", - "totalGbp": "16.785803411", + "title": "Illumina Sequencing of Omni-C Libraries of NA19468", + "totalBp": "12025256732", + "totalGbp": "12.03", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021633", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021633", + "biosampleAccession": "SAMN41021612", "ccsAlgorithm": "N/A", - "coverage": "5.23", + "coverage": "5.18", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01786-1_FC2_S1_L004_R1_001.fastq.gz", + "filename": "NA19700-1_FC1_S1_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01786-1_FC2_S1_L004", + "libraryId": "NA19700-1_FC1_S1_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310901", + "metadataAccession": "SRR30310882", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -104166,64 +162601,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.497086", + "ntsmScore": "0.384847", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19700/raw_data/hic/NA19700-1_FC1_S1_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01786", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01786", - "totalBp": "16208070616", - "totalGbp": "16.208070616", + "title": "Illumina Sequencing of Omni-C Libraries of NA19700", + "totalBp": "16058502851", + "totalGbp": "16.06", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021633", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021633", + "biosampleAccession": "SAMN41021612", "ccsAlgorithm": "N/A", - "coverage": "5.98", + "coverage": "5.18", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01786-2_FC1_S2_L004_R1_001.fastq.gz", + "filename": "NA19700-1_FC1_S1_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01786-2_FC1_S2_L004", + "libraryId": "NA19700-1_FC1_S1_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310900", + "metadataAccession": "SRR30310882", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -104231,64 +162666,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.487939", + "ntsmScore": "0.384847", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19700/raw_data/hic/NA19700-1_FC1_S1_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01786", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01786", - "totalBp": "18534527163", - "totalGbp": "18.534527163", + "title": "Illumina Sequencing of Omni-C Libraries of NA19700", + "totalBp": "16058502851", + "totalGbp": "16.06", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021633", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021633", + "biosampleAccession": "SAMN41021612", "ccsAlgorithm": "N/A", - "coverage": "5.72", + "coverage": "5.09", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG01786-2_FC2_S2_L004_R1_001.fastq.gz", + "filename": "NA19700-1_FC2_S1_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01786-2_FC2_S2_L004", + "libraryId": "NA19700-1_FC2_S1_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310899", + "metadataAccession": "SRR30310881", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -104296,64 +162731,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.489055", + "ntsmScore": "0.43614", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19700/raw_data/hic/NA19700-1_FC2_S1_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01786", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01786", - "totalBp": "17723207636", - "totalGbp": "17.723207636", + "title": "Illumina Sequencing of Omni-C Libraries of NA19700", + "totalBp": "15787288580", + "totalGbp": "15.79", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797101", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797101", + "biosampleAccession": "SAMN41021612", "ccsAlgorithm": "N/A", - "coverage": "13.07", + "coverage": "5.09", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL015", - "filename": "HG01940-2_S10_L004_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19700-1_FC2_S1_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01940-2_S10_L004", + "libraryId": "NA19700-1_FC2_S1_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310898", + "metadataAccession": "SRR30310881", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -104361,64 +162796,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.353777", + "ntsmScore": "0.43614", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19700/raw_data/hic/NA19700-1_FC2_S1_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01940", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01940", - "totalBp": "40532207314", - "totalGbp": "40.532207314", + "title": "Illumina Sequencing of Omni-C Libraries of NA19700", + "totalBp": "15787288580", + "totalGbp": "15.79", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797102", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797102", + "biosampleAccession": "SAMN41021612", "ccsAlgorithm": "N/A", - "coverage": "9.9", + "coverage": "5.57", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "BB11", - "filename": "HG01960-1_S3_L001_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19700-2_FC1_S2_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01960-1_S3_L001", + "libraryId": "NA19700-2_FC1_S2_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310829", + "metadataAccession": "SRR30310880", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -104426,64 +162861,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.46504", + "ntsmScore": "0.39049", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19700/raw_data/hic/NA19700-2_FC1_S2_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01960", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01960", - "totalBp": "30702431662", - "totalGbp": "30.702431662", + "title": "Illumina Sequencing of Omni-C Libraries of NA19700", + "totalBp": "17266491224", + "totalGbp": "17.27", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797102", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797102", + "biosampleAccession": "SAMN41021612", "ccsAlgorithm": "N/A", - "coverage": "8.56", + "coverage": "5.57", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "BB11", - "filename": "HG01960-2_S3_L002_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19700-2_FC1_S2_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01960-2_S3_L002", + "libraryId": "NA19700-2_FC1_S2_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310828", + "metadataAccession": "SRR30310880", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -104491,64 +162926,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.448195", + "ntsmScore": "0.39049", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19700/raw_data/hic/NA19700-2_FC1_S2_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01960", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01960", - "totalBp": "26523678349", - "totalGbp": "26.523678349", + "title": "Illumina Sequencing of Omni-C Libraries of NA19700", + "totalBp": "17266491224", + "totalGbp": "17.27", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797103", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797103", + "biosampleAccession": "SAMN41021612", "ccsAlgorithm": "N/A", - "coverage": "25.93", + "coverage": "5.5", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL023", - "filename": "HG01969-1_S3_L002_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19700-2_FC2_S2_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01969-1_S3_L002", + "libraryId": "NA19700-2_FC2_S2_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310897", + "metadataAccession": "SRR30310879", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -104556,64 +162991,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.409527", + "ntsmScore": "0.433272", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19700/raw_data/hic/NA19700-2_FC2_S2_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01969", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01969", - "totalBp": "80380642385", - "totalGbp": "80.380642385", + "title": "Illumina Sequencing of Omni-C Libraries of NA19700", + "totalBp": "17056973137", + "totalGbp": "17.06", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797103", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797103", + "biosampleAccession": "SAMN41021612", "ccsAlgorithm": "N/A", - "coverage": "22.04", + "coverage": "5.5", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL023", - "filename": "HG01969-2_S3_L003_R1_001.fastq.gz", + "familyId": null, + "filename": "NA19700-2_FC2_S2_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01969-2_S3_L003", + "libraryId": "NA19700-2_FC2_S2_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310896", + "metadataAccession": "SRR30310879", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -104621,64 +163056,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.428637", + "ntsmScore": "0.433272", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19700/raw_data/hic/NA19700-2_FC2_S2_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01969", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01969", - "totalBp": "68330824416", - "totalGbp": "68.330824416", + "title": "Illumina Sequencing of Omni-C Libraries of NA19700", + "totalBp": "17056973137", + "totalGbp": "17.06", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621947", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621947", + "biosampleAccession": "SAMN41021630", "ccsAlgorithm": "N/A", - "coverage": "10.88", + "coverage": "10.68", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL25", - "filename": "HG01975-1_S4_L001_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20503-1_FC1_S3_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01975-1_S4_L001", + "libraryId": "NA20503-1_FC1_S3_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310827", + "metadataAccession": "SRR30310878", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -104686,64 +163121,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.439404", + "ntsmScore": "0.504887", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20503/raw_data/hic/NA20503-1_FC1_S3_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01975", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01975", - "totalBp": "33735008754", - "totalGbp": "33.735008754", + "title": "Illumina Sequencing of Omni-C Libraries of NA20503", + "totalBp": "33098049078", + "totalGbp": "33.1", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621947", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621947", + "biosampleAccession": "SAMN41021630", "ccsAlgorithm": "N/A", - "coverage": "14.66", + "coverage": "10.68", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL25", - "filename": "HG01975-2_S4_L002_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20503-1_FC1_S3_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG01975-2_S4_L002", + "libraryId": "NA20503-1_FC1_S3_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310826", + "metadataAccession": "SRR30310878", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -104751,64 +163186,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.406998", + "ntsmScore": "0.504887", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20503/raw_data/hic/NA20503-1_FC1_S3_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01975", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG01975", - "totalBp": "45449986488", - "totalGbp": "45.449986488", + "title": "Illumina Sequencing of Omni-C Libraries of NA20503", + "totalBp": "33098049078", + "totalGbp": "33.1", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621948", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621948", + "biosampleAccession": "SAMN41021630", "ccsAlgorithm": "N/A", - "coverage": "8.99", + "coverage": "10.93", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "VN046", - "filename": "HG02015-1_S3_L004_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20503-1_FC2_S3_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02015-1_S3_L004", + "libraryId": "NA20503-1_FC2_S3_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310894", + "metadataAccession": "SRR30310877", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -104816,64 +163251,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.474905", + "ntsmScore": "0.498824", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20503/raw_data/hic/NA20503-1_FC2_S3_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02015", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02015", - "totalBp": "27863340987", - "totalGbp": "27.863340987", + "title": "Illumina Sequencing of Omni-C Libraries of NA20503", + "totalBp": "33877784539", + "totalGbp": "33.88", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758784", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758784", + "biosampleAccession": "SAMN41021630", "ccsAlgorithm": "N/A", - "coverage": "2.67", + "coverage": "10.93", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02040-1_S1_L001_R1_001.fastq.gz", + "filename": "NA20503-1_FC2_S3_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02040-1_S1_L001", + "libraryId": "NA20503-1_FC2_S3_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242258", + "metadataAccession": "SRR30310877", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -104881,64 +163316,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.647356", + "ntsmScore": "0.498824", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20503/raw_data/hic/NA20503-1_FC2_S3_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02040", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02040", - "totalBp": "8290570287", - "totalGbp": "8.290570287", + "title": "Illumina Sequencing of Omni-C Libraries of NA20503", + "totalBp": "33877784539", + "totalGbp": "33.88", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758784", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758784", + "biosampleAccession": "SAMN41021630", "ccsAlgorithm": "N/A", - "coverage": "2.67", + "coverage": "11.57", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02040-1_S1_L001_R2_001.fastq.gz", + "filename": "NA20503-2_FC1_S4_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02040-1_S1_L001", + "libraryId": "NA20503-2_FC1_S4_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242258", + "metadataAccession": "SRR30310875", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -104946,64 +163381,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.601321", + "ntsmScore": "0.454984", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20503/raw_data/hic/NA20503-2_FC1_S4_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02040", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02040", - "totalBp": "8289959870", - "totalGbp": "8.28995987", + "title": "Illumina Sequencing of Omni-C Libraries of NA20503", + "totalBp": "35852541248", + "totalGbp": "35.85", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758784", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758784", + "biosampleAccession": "SAMN41021630", "ccsAlgorithm": "N/A", - "coverage": "2.9", + "coverage": "11.57", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02040-1_S1_L002_R1_001.fastq.gz", + "filename": "NA20503-2_FC1_S4_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02040-1_S1_L002", + "libraryId": "NA20503-2_FC1_S4_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242257", + "metadataAccession": "SRR30310875", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -105011,64 +163446,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.620614", + "ntsmScore": "0.454984", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20503/raw_data/hic/NA20503-2_FC1_S4_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02040", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02040", - "totalBp": "8975206509", - "totalGbp": "8.975206509", + "title": "Illumina Sequencing of Omni-C Libraries of NA20503", + "totalBp": "35852541248", + "totalGbp": "35.85", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758784", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758784", + "biosampleAccession": "SAMN41021630", "ccsAlgorithm": "N/A", - "coverage": "2.9", + "coverage": "11.98", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02040-1_S1_L002_R2_001.fastq.gz", + "filename": "NA20503-2_FC2_S4_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02040-1_S1_L002", + "libraryId": "NA20503-2_FC2_S4_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242257", + "metadataAccession": "SRR30310874", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -105076,64 +163511,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.652041", + "ntsmScore": "0.482764", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20503/raw_data/hic/NA20503-2_FC2_S4_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02040", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02040", - "totalBp": "8974786338", - "totalGbp": "8.974786338", + "title": "Illumina Sequencing of Omni-C Libraries of NA20503", + "totalBp": "37124680914", + "totalGbp": "37.12", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758784", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758784", + "biosampleAccession": "SAMN41021630", "ccsAlgorithm": "N/A", - "coverage": "2.9", + "coverage": "11.98", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02040-1_S1_L003_R1_001.fastq.gz", + "filename": "NA20503-2_FC2_S4_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02040-1_S1_L003", + "libraryId": "NA20503-2_FC2_S4_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242255", + "metadataAccession": "SRR30310874", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -105141,64 +163576,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.622793", + "ntsmScore": "0.482764", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20503/raw_data/hic/NA20503-2_FC2_S4_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02040", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02040", - "totalBp": "8977755556", - "totalGbp": "8.977755556", + "title": "Illumina Sequencing of Omni-C Libraries of NA20503", + "totalBp": "37124680914", + "totalGbp": "37.12", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758784", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758784", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "2.9", + "coverage": "6.35", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02040-1_S1_L003_R2_001.fastq.gz", + "filename": "NA20752-1_S1_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02040-1_S1_L003", + "libraryId": "NA20752-1_S1_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242255", + "metadataAccession": "SRR30242497", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -105206,64 +163641,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.614708", + "ntsmScore": "0.523421", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-1_S1_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02040", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02040", - "totalBp": "8977307221", - "totalGbp": "8.977307221", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "19690591453", + "totalGbp": "19.69", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758784", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758784", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "2.86", + "coverage": "6.35", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02040-1_S1_L004_R1_001.fastq.gz", + "filename": "NA20752-1_S1_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02040-1_S1_L004", + "libraryId": "NA20752-1_S1_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242254", + "metadataAccession": "SRR30242497", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -105271,64 +163706,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.649502", + "ntsmScore": "0.521492", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-1_S1_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02040", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02040", - "totalBp": "8864041665", - "totalGbp": "8.864041665", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "19689103089", + "totalGbp": "19.69", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758784", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758784", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "2.86", + "coverage": "6.46", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02040-1_S1_L004_R2_001.fastq.gz", + "filename": "NA20752-1_S1_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02040-1_S1_L004", + "libraryId": "NA20752-1_S1_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242254", + "metadataAccession": "SRR30242496", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -105336,64 +163771,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.590258", + "ntsmScore": "0.533744", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-1_S1_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02040", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02040", - "totalBp": "8863626631", - "totalGbp": "8.863626631", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "20025200989", + "totalGbp": "20.03", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758784", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758784", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "3.11", + "coverage": "6.46", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02040-2_S9_L001_R1_001.fastq.gz", + "filename": "NA20752-1_S1_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02040-2_S9_L001", + "libraryId": "NA20752-1_S1_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242253", + "metadataAccession": "SRR30242496", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -105401,64 +163836,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.620916", + "ntsmScore": "0.508134", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-1_S1_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02040", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02040", - "totalBp": "9651428893", - "totalGbp": "9.651428893", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "20024129403", + "totalGbp": "20.02", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758784", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758784", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "3.11", + "coverage": "6.05", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02040-2_S9_L001_R2_001.fastq.gz", + "filename": "NA20752-1_S1_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02040-2_S9_L001", + "libraryId": "NA20752-1_S1_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242253", + "metadataAccession": "SRR30242495", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -105466,64 +163901,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.617313", + "ntsmScore": "0.521817", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-1_S1_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02040", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02040", - "totalBp": "9650777164", - "totalGbp": "9.650777164", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "18740355922", + "totalGbp": "18.74", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758784", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758784", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "3.4", + "coverage": "6.04", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02040-2_S9_L002_R1_001.fastq.gz", + "filename": "NA20752-1_S1_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02040-2_S9_L002", + "libraryId": "NA20752-1_S1_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242252", + "metadataAccession": "SRR30242495", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -105531,64 +163966,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.612289", + "ntsmScore": "0.544839", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-1_S1_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02040", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02040", - "totalBp": "10541830391", - "totalGbp": "10.541830391", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "18739099351", + "totalGbp": "18.74", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758784", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758784", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "3.4", + "coverage": "6.05", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02040-2_S9_L002_R2_001.fastq.gz", + "filename": "NA20752-1_S1_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02040-2_S9_L002", + "libraryId": "NA20752-1_S1_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242252", + "metadataAccession": "SRR30242494", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -105596,64 +164031,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.586206", + "ntsmScore": "0.535841", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-1_S1_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02040", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02040", - "totalBp": "10541378055", - "totalGbp": "10.541378055", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "18768231936", + "totalGbp": "18.77", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758784", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758784", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "3.4", + "coverage": "6.05", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02040-2_S9_L003_R1_001.fastq.gz", + "filename": "NA20752-1_S1_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02040-2_S9_L003", + "libraryId": "NA20752-1_S1_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242251", + "metadataAccession": "SRR30242494", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -105661,64 +164096,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.596701", + "ntsmScore": "0.529485", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-1_S1_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02040", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02040", - "totalBp": "10535978094", - "totalGbp": "10.535978094", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "18766931778", + "totalGbp": "18.77", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758784", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758784", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "3.4", + "coverage": "6.09", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02040-2_S9_L003_R2_001.fastq.gz", + "filename": "NA20752-2_S9_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02040-2_S9_L003", + "libraryId": "NA20752-2_S9_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242251", + "metadataAccession": "SRR30242426", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -105726,64 +164161,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.558683", + "ntsmScore": "0.548052", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02040", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02040", - "totalBp": "10535494418", - "totalGbp": "10.535494418", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "18872657779", + "totalGbp": "18.87", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758784", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758784", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "3.34", + "coverage": "6.09", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02040-2_S9_L004_R1_001.fastq.gz", + "filename": "NA20752-2_S9_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02040-2_S9_L004", + "libraryId": "NA20752-2_S9_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242250", + "metadataAccession": "SRR30242426", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -105791,64 +164226,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.611257", + "ntsmScore": "0.50303", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02040", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02040", - "totalBp": "10368682458", - "totalGbp": "10.368682458", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "18871293988", + "totalGbp": "18.87", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758784", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758784", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "3.34", + "coverage": "6.2", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02040-2_S9_L004_R2_001.fastq.gz", + "filename": "NA20752-2_S9_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02040-2_S9_L004", + "libraryId": "NA20752-2_S9_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242250", + "metadataAccession": "SRR30242425", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -105856,64 +164291,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.596591", + "ntsmScore": "0.550298", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02040", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02040", - "totalBp": "10368222187", - "totalGbp": "10.368222187", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "19215002188", + "totalGbp": "19.22", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621949", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621949", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "12.54", + "coverage": "6.2", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "VN060", - "filename": "HG02056-1_S1_L003_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20752-2_S9_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02056-1_S1_L003", + "libraryId": "NA20752-2_S9_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310893", + "metadataAccession": "SRR30242425", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -105921,64 +164356,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.401986", + "ntsmScore": "0.529809", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02056", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02056", - "totalBp": "38875139656", - "totalGbp": "38.875139656", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "19213995724", + "totalGbp": "19.21", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621949", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621949", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "12.1", + "coverage": "5.8", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "VN060", - "filename": "HG02056-2_S5_L003_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20752-2_S9_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02056-2_S5_L003", + "libraryId": "NA20752-2_S9_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310892", + "metadataAccession": "SRR30242423", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -105986,64 +164421,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.412847", + "ntsmScore": "0.565838", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02056", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02056", - "totalBp": "37502509943", - "totalGbp": "37.502509943", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "17984837570", + "totalGbp": "17.98", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621950", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621950", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "40.19", + "coverage": "5.8", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "VN079", - "filename": "HG02129-1_S2_L003_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20752-2_S9_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02129-1_S2_L003", + "libraryId": "NA20752-2_S9_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310891", + "metadataAccession": "SRR30242423", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -106051,64 +164486,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.409818", + "ntsmScore": "0.550279", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02129", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02129", - "totalBp": "124595417314", - "totalGbp": "124.595417314", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "17983704070", + "totalGbp": "17.98", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621950", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621950", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "9.61", + "coverage": "5.83", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "VN079", - "filename": "HG02129-2_S6_L003_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20752-2_S9_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02129-2_S6_L003", + "libraryId": "NA20752-2_S9_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310890", + "metadataAccession": "SRR30242422", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -106116,64 +164551,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.454769", + "ntsmScore": "0.550269", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02129", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02129", - "totalBp": "29800157587", - "totalGbp": "29.800157587", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "18074423221", + "totalGbp": "18.07", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621951", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621951", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "3.64", + "coverage": "5.83", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02155-1_S24_L001_R1_001.fastq.gz", + "filename": "NA20752-2_S9_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02155-1_S24_L001", + "libraryId": "NA20752-2_S9_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242249", + "metadataAccession": "SRR30242422", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -106181,64 +164616,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.623241", + "ntsmScore": "0.53068", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02155", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02155", - "totalBp": "11299227154", - "totalGbp": "11.299227154", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "18073203675", + "totalGbp": "18.07", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621951", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621951", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "3.64", + "coverage": "14.15", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02155-1_S24_L001_R2_001.fastq.gz", + "filename": "NA20752-2_S9i_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02155-1_S24_L001", + "libraryId": "NA20752-2_S9i_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242249", + "metadataAccession": "SRR30242488", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -106246,64 +164681,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.583929", + "ntsmScore": "0.480913", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9i_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02155", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02155", - "totalBp": "11298572204", - "totalGbp": "11.298572204", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "43860690211", + "totalGbp": "43.86", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621951", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621951", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "3.73", + "coverage": "14.15", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02155-1_S24_L002_R1_001.fastq.gz", + "filename": "NA20752-2_S9i_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02155-1_S24_L002", + "libraryId": "NA20752-2_S9i_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242248", + "metadataAccession": "SRR30242488", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -106311,64 +164746,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.602946", + "ntsmScore": "0.467534", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9i_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02155", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02155", - "totalBp": "11567425336", - "totalGbp": "11.567425336", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "43857149837", + "totalGbp": "43.86", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621951", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621951", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "3.73", + "coverage": "15.38", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02155-1_S24_L002_R2_001.fastq.gz", + "filename": "NA20752-2_S9i_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02155-1_S24_L002", + "libraryId": "NA20752-2_S9i_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242248", + "metadataAccession": "SRR30242487", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -106376,64 +164811,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.608902", + "ntsmScore": "0.461152", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9i_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02155", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02155", - "totalBp": "11566537131", - "totalGbp": "11.566537131", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "47681058086", + "totalGbp": "47.68", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621951", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621951", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "3.57", + "coverage": "15.38", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02155-1_S24_L003_R1_001.fastq.gz", + "filename": "NA20752-2_S9i_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02155-1_S24_L003", + "libraryId": "NA20752-2_S9i_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242247", + "metadataAccession": "SRR30242487", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -106441,64 +164876,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.619456", + "ntsmScore": "0.433645", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9i_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02155", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02155", - "totalBp": "11070056950", - "totalGbp": "11.07005695", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "47679124939", + "totalGbp": "47.68", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621951", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621951", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "3.57", + "coverage": "13.18", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02155-1_S24_L003_R2_001.fastq.gz", + "filename": "NA20752-2_S9i_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02155-1_S24_L003", + "libraryId": "NA20752-2_S9i_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242247", + "metadataAccession": "SRR30242486", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -106506,64 +164941,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.575936", + "ntsmScore": "0.468138", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9i_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02155", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02155", - "totalBp": "11069248116", - "totalGbp": "11.069248116", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "40859482919", + "totalGbp": "40.86", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621951", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621951", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "3.65", + "coverage": "13.18", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02155-1_S24_L004_R1_001.fastq.gz", + "filename": "NA20752-2_S9i_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02155-1_S24_L004", + "libraryId": "NA20752-2_S9i_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242246", + "metadataAccession": "SRR30242486", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -106571,64 +165006,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.618786", + "ntsmScore": "0.469565", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9i_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02155", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02155", - "totalBp": "11322530860", - "totalGbp": "11.32253086", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "40857911928", + "totalGbp": "40.86", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621951", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621951", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "3.65", + "coverage": "11.38", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02155-1_S24_L004_R2_001.fastq.gz", + "filename": "NA20752-2_S9i_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02155-1_S24_L004", + "libraryId": "NA20752-2_S9i_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242246", + "metadataAccession": "SRR30242485", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -106636,64 +165071,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.570708", + "ntsmScore": "0.492513", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9i_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02155", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02155", - "totalBp": "11321714271", - "totalGbp": "11.321714271", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "35265588464", + "totalGbp": "35.27", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621951", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621951", + "biosampleAccession": "SAMN33758800", "ccsAlgorithm": "N/A", - "coverage": "4.06", + "coverage": "11.38", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02155-2_S32_L001_R1_001.fastq.gz", + "filename": "NA20752-2_S9i_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02155-2_S32_L001", + "libraryId": "NA20752-2_S9i_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242244", + "metadataAccession": "SRR30242485", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -106701,64 +165136,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.6", + "ntsmScore": "0.461973", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/hic/NA20752-2_S9i_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02155", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02155", - "totalBp": "12578918553", - "totalGbp": "12.578918553", + "title": "Illumina Sequencing of Omni-C Libraries of NA20752", + "totalBp": "35264086975", + "totalGbp": "35.26", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621951", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621951", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "4.06", + "coverage": "5.19", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02155-2_S32_L001_R2_001.fastq.gz", + "filename": "NA20799-1_S4_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02155-2_S32_L001", + "libraryId": "NA20799-1_S4_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242244", + "metadataAccession": "SRR30242484", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -106766,64 +165201,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.556892", + "ntsmScore": "0.53525", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-1_S4_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02155", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02155", - "totalBp": "12578283355", - "totalGbp": "12.578283355", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "16084505020", + "totalGbp": "16.08", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621951", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621951", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "4.16", + "coverage": "5.19", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02155-2_S32_L002_R1_001.fastq.gz", + "filename": "NA20799-1_S4_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02155-2_S32_L002", + "libraryId": "NA20799-1_S4_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242243", + "metadataAccession": "SRR30242484", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -106831,64 +165266,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.570687", + "ntsmScore": "0.51074", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-1_S4_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02155", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02155", - "totalBp": "12886674344", - "totalGbp": "12.886674344", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "16083581140", + "totalGbp": "16.08", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621951", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621951", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "4.16", + "coverage": "5.26", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02155-2_S32_L002_R2_001.fastq.gz", + "filename": "NA20799-1_S4_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02155-2_S32_L002", + "libraryId": "NA20799-1_S4_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242243", + "metadataAccession": "SRR30242483", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -106896,64 +165331,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.580289", + "ntsmScore": "0.530327", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-1_S4_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02155", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02155", - "totalBp": "12885824519", - "totalGbp": "12.885824519", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "16306582361", + "totalGbp": "16.31", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621951", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621951", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "3.95", + "coverage": "5.26", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02155-2_S32_L003_R1_001.fastq.gz", + "filename": "NA20799-1_S4_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02155-2_S32_L003", + "libraryId": "NA20799-1_S4_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242242", + "metadataAccession": "SRR30242483", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -106961,64 +165396,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.588933", + "ntsmScore": "0.514144", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-1_S4_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02155", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02155", - "totalBp": "12241855001", - "totalGbp": "12.241855001", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "16305974272", + "totalGbp": "16.31", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621951", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621951", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "3.95", + "coverage": "5.05", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02155-2_S32_L003_R2_001.fastq.gz", + "filename": "NA20799-1_S4_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02155-2_S32_L003", + "libraryId": "NA20799-1_S4_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242242", + "metadataAccession": "SRR30242482", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -107026,64 +165461,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.585525", + "ntsmScore": "0.549532", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-1_S4_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02155", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02155", - "totalBp": "12241096227", - "totalGbp": "12.241096227", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "15641580822", + "totalGbp": "15.64", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621951", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621951", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "4.05", + "coverage": "5.05", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02155-2_S32_L004_R1_001.fastq.gz", + "filename": "NA20799-1_S4_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02155-2_S32_L004", + "libraryId": "NA20799-1_S4_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242241", + "metadataAccession": "SRR30242482", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -107091,64 +165526,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.596469", + "ntsmScore": "0.527647", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-1_S4_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02155", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02155", - "totalBp": "12561609829", - "totalGbp": "12.561609829", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "15640822549", + "totalGbp": "15.64", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621951", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621951", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "4.05", + "coverage": "5.02", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02155-2_S32_L004_R2_001.fastq.gz", + "filename": "NA20799-1_S4_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02155-2_S32_L004", + "libraryId": "NA20799-1_S4_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242241", + "metadataAccession": "SRR30242481", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -107156,64 +165591,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.57334", + "ntsmScore": "0.541735", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-1_S4_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02155", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02155", - "totalBp": "12560824040", - "totalGbp": "12.56082404", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "15555176575", + "totalGbp": "15.56", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758785", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758785", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "1.96", + "coverage": "5.02", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02165-1_S2_L001_R1_001.fastq.gz", + "filename": "NA20799-1_S4_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02165-1_S2_L001", + "libraryId": "NA20799-1_S4_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242240", + "metadataAccession": "SRR30242481", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -107221,64 +165656,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.690243", + "ntsmScore": "0.505313", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-1_S4_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02165", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02165", - "totalBp": "6089723758", - "totalGbp": "6.089723758", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "15554368820", + "totalGbp": "15.55", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758785", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758785", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "1.96", + "coverage": "5.53", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02165-1_S2_L001_R2_001.fastq.gz", + "filename": "NA20799-2_S12_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02165-1_S2_L001", + "libraryId": "NA20799-2_S12_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242240", + "metadataAccession": "SRR30242431", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -107286,64 +165721,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.663926", + "ntsmScore": "0.532172", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02165", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02165", - "totalBp": "6089288766", - "totalGbp": "6.089288766", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "17149676191", + "totalGbp": "17.15", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758785", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758785", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "2.13", + "coverage": "5.53", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02165-1_S2_L002_R1_001.fastq.gz", + "filename": "NA20799-2_S12_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02165-1_S2_L002", + "libraryId": "NA20799-2_S12_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242461", + "metadataAccession": "SRR30242431", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -107351,64 +165786,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.661908", + "ntsmScore": "0.532822", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02165", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02165", - "totalBp": "6601978749", - "totalGbp": "6.601978749", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "17148483684", + "totalGbp": "17.15", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758785", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758785", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "2.13", + "coverage": "5.61", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02165-1_S2_L002_R2_001.fastq.gz", + "filename": "NA20799-2_S12_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02165-1_S2_L002", + "libraryId": "NA20799-2_S12_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242461", + "metadataAccession": "SRR30242430", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -107416,64 +165851,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.624771", + "ntsmScore": "0.525542", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02165", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02165", - "totalBp": "6601669753", - "totalGbp": "6.601669753", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "17376969777", + "totalGbp": "17.38", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758785", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758785", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "2.13", + "coverage": "5.61", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02165-1_S2_L003_R1_001.fastq.gz", + "filename": "NA20799-2_S12_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02165-1_S2_L003", + "libraryId": "NA20799-2_S12_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242460", + "metadataAccession": "SRR30242430", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -107481,64 +165916,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.702147", + "ntsmScore": "0.509521", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02165", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02165", - "totalBp": "6605231258", - "totalGbp": "6.605231258", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "17376099145", + "totalGbp": "17.38", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758785", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758785", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "2.13", + "coverage": "5.25", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02165-1_S2_L003_R2_001.fastq.gz", + "filename": "NA20799-2_S12_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02165-1_S2_L003", + "libraryId": "NA20799-2_S12_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242460", + "metadataAccession": "SRR30242429", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -107546,64 +165981,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.641039", + "ntsmScore": "0.544479", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02165", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02165", - "totalBp": "6604919718", - "totalGbp": "6.604919718", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "16286610710", + "totalGbp": "16.29", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758785", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758785", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "2.1", + "coverage": "5.25", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02165-1_S2_L004_R1_001.fastq.gz", + "filename": "NA20799-2_S12_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02165-1_S2_L004", + "libraryId": "NA20799-2_S12_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242459", + "metadataAccession": "SRR30242429", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -107611,64 +166046,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.668794", + "ntsmScore": "0.527273", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02165", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02165", - "totalBp": "6519329233", - "totalGbp": "6.519329233", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "16285604458", + "totalGbp": "16.29", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758785", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758785", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "2.1", + "coverage": "5.24", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02165-1_S2_L004_R2_001.fastq.gz", + "filename": "NA20799-2_S12_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02165-1_S2_L004", + "libraryId": "NA20799-2_S12_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242459", + "metadataAccession": "SRR30242428", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -107676,64 +166111,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.689028", + "ntsmScore": "0.536677", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02165", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02165", - "totalBp": "6519022113", - "totalGbp": "6.519022113", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "16252607758", + "totalGbp": "16.25", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758785", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758785", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "3.24", + "coverage": "5.24", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02165-2_S10_L001_R1_001.fastq.gz", + "filename": "NA20799-2_S12_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02165-2_S10_L001", + "libraryId": "NA20799-2_S12_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242477", + "metadataAccession": "SRR30242428", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -107741,64 +166176,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.659534", + "ntsmScore": "0.514582", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02165", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02165", - "totalBp": "10042788187", - "totalGbp": "10.042788187", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "16251563719", + "totalGbp": "16.25", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758785", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758785", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "3.24", + "coverage": "13.16", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02165-2_S10_L001_R2_001.fastq.gz", + "filename": "NA20799-2_S12i_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02165-2_S10_L001", + "libraryId": "NA20799-2_S12i_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242477", + "metadataAccession": "SRR30242427", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -107806,64 +166241,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.627653", + "ntsmScore": "0.470925", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12i_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02165", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02165", - "totalBp": "10042100462", - "totalGbp": "10.042100462", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "40786811298", + "totalGbp": "40.79", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758785", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758785", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "3.57", + "coverage": "13.16", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02165-2_S10_L002_R1_001.fastq.gz", + "filename": "NA20799-2_S12i_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02165-2_S10_L002", + "libraryId": "NA20799-2_S12i_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242476", + "metadataAccession": "SRR30242427", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -107871,64 +166306,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.611808", + "ntsmScore": "0.450139", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12i_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02165", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02165", - "totalBp": "11079858825", - "totalGbp": "11.079858825", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "40783737096", + "totalGbp": "40.78", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758785", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758785", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "3.57", + "coverage": "14.54", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02165-2_S10_L002_R2_001.fastq.gz", + "filename": "NA20799-2_S12i_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02165-2_S10_L002", + "libraryId": "NA20799-2_S12i_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242476", + "metadataAccession": "SRR30242408", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -107936,64 +166371,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.60866", + "ntsmScore": "0.47961", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12i_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02165", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02165", - "totalBp": "11079359976", - "totalGbp": "11.079359976", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "45068829797", + "totalGbp": "45.07", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758785", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758785", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "3.58", + "coverage": "14.54", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02165-2_S10_L003_R1_001.fastq.gz", + "filename": "NA20799-2_S12i_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02165-2_S10_L003", + "libraryId": "NA20799-2_S12i_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242474", + "metadataAccession": "SRR30242408", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -108001,64 +166436,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.634816", + "ntsmScore": "0.443745", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12i_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02165", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02165", - "totalBp": "11090061438", - "totalGbp": "11.090061438", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "45067101993", + "totalGbp": "45.07", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758785", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758785", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "3.58", + "coverage": "12.67", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02165-2_S10_L003_R2_001.fastq.gz", + "filename": "NA20799-2_S12i_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02165-2_S10_L003", + "libraryId": "NA20799-2_S12i_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242474", + "metadataAccession": "SRR30242287", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -108066,64 +166501,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.603623", + "ntsmScore": "0.468291", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12i_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02165", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02165", - "totalBp": "11089554141", - "totalGbp": "11.089554141", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "39289404409", + "totalGbp": "39.29", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758785", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758785", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "3.52", + "coverage": "12.67", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02165-2_S10_L004_R1_001.fastq.gz", + "filename": "NA20799-2_S12i_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02165-2_S10_L004", + "libraryId": "NA20799-2_S12i_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242473", + "metadataAccession": "SRR30242287", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -108131,64 +166566,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.632186", + "ntsmScore": "0.447935", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12i_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02165", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02165", - "totalBp": "10897836302", - "totalGbp": "10.897836302", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "39287924676", + "totalGbp": "39.29", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758785", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758785", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "3.52", + "coverage": "10.98", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02165-2_S10_L004_R2_001.fastq.gz", + "filename": "NA20799-2_S12i_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02165-2_S10_L004", + "libraryId": "NA20799-2_S12i_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242473", + "metadataAccession": "SRR30242286", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -108196,64 +166631,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.567315", + "ntsmScore": "0.482272", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12i_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02165", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02165", - "totalBp": "10897343108", - "totalGbp": "10.897343108", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "34040491107", + "totalGbp": "34.04", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021617", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021617", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "N/A", - "coverage": "7.01", + "coverage": "10.98", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02178-1_FC1_S9_L001_R1_001.fastq.gz", + "filename": "NA20799-2_S12i_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02178-1_FC1_S9_L001", + "libraryId": "NA20799-2_S12i_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310889", + "metadataAccession": "SRR30242286", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -108261,64 +166696,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.47463", + "ntsmScore": "0.473899", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/hic/NA20799-2_S12i_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02178", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02178", - "totalBp": "21744973497", - "totalGbp": "21.744973497", + "title": "Illumina Sequencing of Omni-C Libraries of NA20799", + "totalBp": "34039056390", + "totalGbp": "34.04", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021617", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021617", + "biosampleAccession": "SAMN33621962", "ccsAlgorithm": "N/A", - "coverage": "6.83", + "coverage": "3.58", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02178-1_FC2_S9_L001_R1_001.fastq.gz", + "filename": "NA20805-1_S18_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02178-1_FC2_S9_L001", + "libraryId": "NA20805-1_S18_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310888", + "metadataAccession": "SRR30242285", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -108326,64 +166761,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.502882", + "ntsmScore": "0.610008", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-1_S18_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02178", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02178", - "totalBp": "21164708885", - "totalGbp": "21.164708885", + "title": "Illumina Sequencing of Omni-C Libraries of NA20805", + "totalBp": "11099179477", + "totalGbp": "11.1", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021617", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021617", + "biosampleAccession": "SAMN33621962", "ccsAlgorithm": "N/A", - "coverage": "4.34", + "coverage": "3.58", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02178-2_FC1_S10_L001_R1_001.fastq.gz", + "filename": "NA20805-1_S18_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02178-2_FC1_S10_L001", + "libraryId": "NA20805-1_S18_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310887", + "metadataAccession": "SRR30242285", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -108391,64 +166826,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.559189", + "ntsmScore": "0.601875", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-1_S18_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02178", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02178", - "totalBp": "13449042406", - "totalGbp": "13.449042406", + "title": "Illumina Sequencing of Omni-C Libraries of NA20805", + "totalBp": "11098297137", + "totalGbp": "11.1", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021617", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021617", + "biosampleAccession": "SAMN33621962", "ccsAlgorithm": "N/A", - "coverage": "4.25", + "coverage": "3.88", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02178-2_FC2_S10_L001_R1_001.fastq.gz", + "filename": "NA20805-1_S18_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02178-2_FC2_S10_L001", + "libraryId": "NA20805-1_S18_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310886", + "metadataAccession": "SRR30242284", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -108456,64 +166891,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.526419", + "ntsmScore": "0.588123", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-1_S18_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02178", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02178", - "totalBp": "13164963690", - "totalGbp": "13.16496369", + "title": "Illumina Sequencing of Omni-C Libraries of NA20805", + "totalBp": "12027302447", + "totalGbp": "12.03", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621952", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621952", + "biosampleAccession": "SAMN33621962", "ccsAlgorithm": "N/A", - "coverage": "17.8", + "coverage": "3.88", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "BB22", - "filename": "HG02258-2_S7_L003_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20805-1_S18_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02258-2_S7_L003", + "libraryId": "NA20805-1_S18_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310885", + "metadataAccession": "SRR30242284", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -108521,64 +166956,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.400263", + "ntsmScore": "0.595815", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-1_S18_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02258", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02258", - "totalBp": "55183613645", - "totalGbp": "55.183613645", + "title": "Illumina Sequencing of Omni-C Libraries of NA20805", + "totalBp": "12026700245", + "totalGbp": "12.03", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN33621962", "ccsAlgorithm": "N/A", - "coverage": "4.74", + "coverage": "3.88", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-1_S17_L001_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20805-1_S18_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-1_S17_L001", + "libraryId": "NA20805-1_S18_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242472", + "metadataAccession": "SRR30242421", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -108586,64 +167021,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.567596", + "ntsmScore": "0.579802", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-1_S18_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "14685113009", - "totalGbp": "14.685113009", + "title": "Illumina Sequencing of Omni-C Libraries of NA20805", + "totalBp": "12020931686", + "totalGbp": "12.02", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN33621962", "ccsAlgorithm": "N/A", - "coverage": "4.74", + "coverage": "3.88", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-1_S17_L001_R2_001.fastq.gz", + "familyId": null, + "filename": "NA20805-1_S18_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-1_S17_L001", + "libraryId": "NA20805-1_S18_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242472", + "metadataAccession": "SRR30242421", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -108651,64 +167086,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.534099", + "ntsmScore": "0.598198", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-1_S18_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "14684168841", - "totalGbp": "14.684168841", + "title": "Illumina Sequencing of Omni-C Libraries of NA20805", + "totalBp": "12020309550", + "totalGbp": "12.02", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN33621962", "ccsAlgorithm": "N/A", - "coverage": "4.8", + "coverage": "3.85", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-1_S17_L002_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20805-1_S18_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-1_S17_L002", + "libraryId": "NA20805-1_S18_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242471", + "metadataAccession": "SRR30242420", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -108716,64 +167151,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.56761", + "ntsmScore": "0.614887", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-1_S18_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "14883637778", - "totalGbp": "14.883637778", + "title": "Illumina Sequencing of Omni-C Libraries of NA20805", + "totalBp": "11933368898", + "totalGbp": "11.93", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN33621962", "ccsAlgorithm": "N/A", - "coverage": "4.8", + "coverage": "3.85", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-1_S17_L002_R2_001.fastq.gz", + "familyId": null, + "filename": "NA20805-1_S18_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-1_S17_L002", + "libraryId": "NA20805-1_S18_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242471", + "metadataAccession": "SRR30242420", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -108781,64 +167216,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.49938", + "ntsmScore": "0.574895", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-1_S18_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "14882988127", - "totalGbp": "14.882988127", + "title": "Illumina Sequencing of Omni-C Libraries of NA20805", + "totalBp": "11932764485", + "totalGbp": "11.93", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN33621962", "ccsAlgorithm": "N/A", - "coverage": "4.55", + "coverage": "3.12", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-1_S17_L003_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20805-2_S26_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-1_S17_L003", + "libraryId": "NA20805-2_S26_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242470", + "metadataAccession": "SRR30242419", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -108846,64 +167281,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.513992", + "ntsmScore": "0.597025", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-2_S26_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "14119543280", - "totalGbp": "14.11954328", + "title": "Illumina Sequencing of Omni-C Libraries of NA20805", + "totalBp": "9670985294", + "totalGbp": "9.67", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN33621962", "ccsAlgorithm": "N/A", - "coverage": "4.55", + "coverage": "3.12", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-1_S17_L003_R2_001.fastq.gz", + "familyId": null, + "filename": "NA20805-2_S26_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-1_S17_L003", + "libraryId": "NA20805-2_S26_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242470", + "metadataAccession": "SRR30242419", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -108911,64 +167346,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.522761", + "ntsmScore": "0.593732", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-2_S26_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "14118755850", - "totalGbp": "14.11875585", + "title": "Illumina Sequencing of Omni-C Libraries of NA20805", + "totalBp": "9670160093", + "totalGbp": "9.67", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN33621962", "ccsAlgorithm": "N/A", - "coverage": "4.51", + "coverage": "3.39", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-1_S17_L004_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20805-2_S26_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-1_S17_L004", + "libraryId": "NA20805-2_S26_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242469", + "metadataAccession": "SRR30242418", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -108976,64 +167411,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.502015", + "ntsmScore": "0.626269", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-2_S26_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "13969422876", - "totalGbp": "13.969422876", + "title": "Illumina Sequencing of Omni-C Libraries of NA20805", + "totalBp": "10512394048", + "totalGbp": "10.51", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN33621962", "ccsAlgorithm": "N/A", - "coverage": "4.51", + "coverage": "3.39", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-1_S17_L004_R2_001.fastq.gz", + "familyId": null, + "filename": "NA20805-2_S26_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-1_S17_L004", + "libraryId": "NA20805-2_S26_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242469", + "metadataAccession": "SRR30242418", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -109041,64 +167476,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.539868", + "ntsmScore": "0.588998", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-2_S26_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "13968616751", - "totalGbp": "13.968616751", + "title": "Illumina Sequencing of Omni-C Libraries of NA20805", + "totalBp": "10511815847", + "totalGbp": "10.51", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN33621962", "ccsAlgorithm": "N/A", - "coverage": "9.96", + "coverage": "3.39", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-1_S17i_L001_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20805-2_S26_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-1_S17i_L001", + "libraryId": "NA20805-2_S26_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242468", + "metadataAccession": "SRR30242417", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -109106,64 +167541,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.490643", + "ntsmScore": "0.577644", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-2_S26_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "30877274276", - "totalGbp": "30.877274276", + "title": "Illumina Sequencing of Omni-C Libraries of NA20805", + "totalBp": "10519144528", + "totalGbp": "10.52", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN33621962", "ccsAlgorithm": "N/A", - "coverage": "9.96", + "coverage": "3.39", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-1_S17i_L001_R2_001.fastq.gz", + "familyId": null, + "filename": "NA20805-2_S26_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-1_S17i_L001", + "libraryId": "NA20805-2_S26_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242468", + "metadataAccession": "SRR30242417", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -109171,64 +167606,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.479031", + "ntsmScore": "0.580557", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-2_S26_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "30875082106", - "totalGbp": "30.875082106", + "title": "Illumina Sequencing of Omni-C Libraries of NA20805", + "totalBp": "10518532134", + "totalGbp": "10.52", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN33621962", "ccsAlgorithm": "N/A", - "coverage": "10.42", + "coverage": "3.35", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-1_S17i_L002_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20805-2_S26_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-1_S17i_L002", + "libraryId": "NA20805-2_S26_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242467", + "metadataAccession": "SRR30242416", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -109236,64 +167671,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.456736", + "ntsmScore": "0.635641", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-2_S26_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "32305103519", - "totalGbp": "32.305103519", + "title": "Illumina Sequencing of Omni-C Libraries of NA20805", + "totalBp": "10393439184", + "totalGbp": "10.39", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN33621962", "ccsAlgorithm": "N/A", - "coverage": "10.42", + "coverage": "3.35", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-1_S17i_L002_R2_001.fastq.gz", + "familyId": null, + "filename": "NA20805-2_S26_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-1_S17i_L002", + "libraryId": "NA20805-2_S26_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242467", + "metadataAccession": "SRR30242416", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -109301,64 +167736,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.47092", + "ntsmScore": "0.590195", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/hic/NA20805-2_S26_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "32304025376", - "totalGbp": "32.304025376", + "title": "Illumina Sequencing of Omni-C Libraries of NA20805", + "totalBp": "10392835274", + "totalGbp": "10.39", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "8.62", + "coverage": "5.13", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-1_S17i_L003_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20858-1_S8_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-1_S17i_L003", + "libraryId": "NA20858-1_S8_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242466", + "metadataAccession": "SRR30242415", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -109366,64 +167801,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.506923", + "ntsmScore": "0.546634", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-1_S8_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "26710287853", - "totalGbp": "26.710287853", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "15902941530", + "totalGbp": "15.9", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "8.62", + "coverage": "5.13", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-1_S17i_L003_R2_001.fastq.gz", + "familyId": null, + "filename": "NA20858-1_S8_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-1_S17i_L003", + "libraryId": "NA20858-1_S8_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242466", + "metadataAccession": "SRR30242415", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -109431,64 +167866,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.488808", + "ntsmScore": "0.49203", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-1_S8_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "26709413361", - "totalGbp": "26.709413361", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "15901873018", + "totalGbp": "15.9", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "7.36", + "coverage": "5.25", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-1_S17i_L004_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20858-1_S8_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-1_S17i_L004", + "libraryId": "NA20858-1_S8_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242465", + "metadataAccession": "SRR30242414", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -109496,64 +167931,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.49395", + "ntsmScore": "0.551288", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-1_S8_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "22807009905", - "totalGbp": "22.807009905", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "16288029940", + "totalGbp": "16.29", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "7.36", + "coverage": "5.25", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-1_S17i_L004_R2_001.fastq.gz", + "familyId": null, + "filename": "NA20858-1_S8_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-1_S17i_L004", + "libraryId": "NA20858-1_S8_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242465", + "metadataAccession": "SRR30242414", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -109561,64 +167996,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.486786", + "ntsmScore": "0.520439", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-1_S8_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "22806162075", - "totalGbp": "22.806162075", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "16287207571", + "totalGbp": "16.29", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "4.54", + "coverage": "4.75", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-2_S19_L001_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20858-1_S8_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-2_S19_L001", + "libraryId": "NA20858-1_S8_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242463", + "metadataAccession": "SRR30242413", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -109626,64 +168061,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.598362", + "ntsmScore": "0.5569", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-1_S8_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "14063990321", - "totalGbp": "14.063990321", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "14729014208", + "totalGbp": "14.73", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "4.54", + "coverage": "4.75", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-2_S19_L001_R2_001.fastq.gz", + "familyId": null, + "filename": "NA20858-1_S8_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-2_S19_L001", + "libraryId": "NA20858-1_S8_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242463", + "metadataAccession": "SRR30242413", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -109691,64 +168126,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.505772", + "ntsmScore": "0.529462", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-1_S8_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "14062996580", - "totalGbp": "14.06299658", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "14728119611", + "totalGbp": "14.73", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "4.62", + "coverage": "4.85", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-2_S19_L002_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20858-1_S8_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-2_S19_L002", + "libraryId": "NA20858-1_S8_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242462", + "metadataAccession": "SRR30242412", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -109756,64 +168191,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.581007", + "ntsmScore": "0.561915", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-1_S8_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "14326966085", - "totalGbp": "14.326966085", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "15041475923", + "totalGbp": "15.04", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "4.62", + "coverage": "4.85", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-2_S19_L002_R2_001.fastq.gz", + "familyId": null, + "filename": "NA20858-1_S8_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-2_S19_L002", + "libraryId": "NA20858-1_S8_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242462", + "metadataAccession": "SRR30242412", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -109821,64 +168256,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.533121", + "ntsmScore": "0.504581", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-1_S8_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "14326153377", - "totalGbp": "14.326153377", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "15040514196", + "totalGbp": "15.04", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "4.18", + "coverage": "5", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-2_S19_L003_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20858-2_S16_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-2_S19_L003", + "libraryId": "NA20858-2_S16_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242182", + "metadataAccession": "SRR30242410", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -109886,64 +168321,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.602997", + "ntsmScore": "0.52546", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "12970944182", - "totalGbp": "12.970944182", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "15500163249", + "totalGbp": "15.5", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "4.18", + "coverage": "5", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-2_S19_L003_R2_001.fastq.gz", + "familyId": null, + "filename": "NA20858-2_S16_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-2_S19_L003", + "libraryId": "NA20858-2_S16_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242182", + "metadataAccession": "SRR30242410", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -109951,64 +168386,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.519903", + "ntsmScore": "0.496052", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "12970060855", - "totalGbp": "12.970060855", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "15499013952", + "totalGbp": "15.5", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "4.25", + "coverage": "5.1", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-2_S19_L004_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20858-2_S16_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-2_S19_L004", + "libraryId": "NA20858-2_S16_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242181", + "metadataAccession": "SRR30242409", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -110016,64 +168451,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.608654", + "ntsmScore": "0.543107", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "13174281820", - "totalGbp": "13.17428182", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "15803601523", + "totalGbp": "15.8", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "4.25", + "coverage": "5.1", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-2_S19_L004_R2_001.fastq.gz", + "familyId": null, + "filename": "NA20858-2_S16_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-2_S19_L004", + "libraryId": "NA20858-2_S16_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242181", + "metadataAccession": "SRR30242409", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -110081,64 +168516,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.537389", + "ntsmScore": "0.507463", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "13173351744", - "totalGbp": "13.173351744", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "15802649569", + "totalGbp": "15.8", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "11.43", + "coverage": "4.59", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-2_S19i_L001_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20858-2_S16_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-2_S19i_L001", + "libraryId": "NA20858-2_S16_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242180", + "metadataAccession": "SRR30242269", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -110146,64 +168581,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.495572", + "ntsmScore": "0.579286", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "35420500740", - "totalGbp": "35.42050074", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "14226695314", + "totalGbp": "14.23", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "11.43", + "coverage": "4.59", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-2_S19i_L001_R2_001.fastq.gz", + "familyId": null, + "filename": "NA20858-2_S16_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-2_S19i_L001", + "libraryId": "NA20858-2_S16_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242180", + "metadataAccession": "SRR30242269", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -110211,64 +168646,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.445329", + "ntsmScore": "0.539783", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "35417826788", - "totalGbp": "35.417826788", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "14225747009", + "totalGbp": "14.23", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "13", + "coverage": "4.67", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-2_S19i_L002_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20858-2_S16_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-2_S19i_L002", + "libraryId": "NA20858-2_S16_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242179", + "metadataAccession": "SRR30242267", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -110276,64 +168711,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.506931", + "ntsmScore": "0.560394", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "40301197724", - "totalGbp": "40.301197724", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "14475540882", + "totalGbp": "14.48", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "13", + "coverage": "4.67", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-2_S19i_L002_R2_001.fastq.gz", + "familyId": null, + "filename": "NA20858-2_S16_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-2_S19i_L002", + "libraryId": "NA20858-2_S16_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242179", + "metadataAccession": "SRR30242267", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -110341,64 +168776,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.392894", + "ntsmScore": "0.564607", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "40299352827", - "totalGbp": "40.299352827", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "14474485161", + "totalGbp": "14.47", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "10.05", + "coverage": "11.95", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-2_S19i_L003_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20858-2_S16i_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-2_S19i_L003", + "libraryId": "NA20858-2_S16i_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242178", + "metadataAccession": "SRR30242266", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -110406,64 +168841,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.507416", + "ntsmScore": "0.467558", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16i_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "31160504966", - "totalGbp": "31.160504966", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "37051047895", + "totalGbp": "37.05", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "10.05", + "coverage": "11.95", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-2_S19i_L003_R2_001.fastq.gz", + "familyId": null, + "filename": "NA20858-2_S16i_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-2_S19i_L003", + "libraryId": "NA20858-2_S16i_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242178", + "metadataAccession": "SRR30242266", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -110471,64 +168906,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.478066", + "ntsmScore": "0.425627", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16i_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "31159100171", - "totalGbp": "31.159100171", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "37048158449", + "totalGbp": "37.05", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "8.36", + "coverage": "14.24", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-2_S19i_L004_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20858-2_S16i_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-2_S19i_L004", + "libraryId": "NA20858-2_S16i_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242177", + "metadataAccession": "SRR30242263", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -110536,64 +168971,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.562155", + "ntsmScore": "0.48385", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16i_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "25907269627", - "totalGbp": "25.907269627", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "44137166906", + "totalGbp": "44.14", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621953", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621953", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "8.36", + "coverage": "14.24", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PEL46", - "filename": "HG02273-2_S19i_L004_R2_001.fastq.gz", + "familyId": null, + "filename": "NA20858-2_S16i_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02273-2_S19i_L004", + "libraryId": "NA20858-2_S16i_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242177", + "metadataAccession": "SRR30242263", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -110601,64 +169036,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.458482", + "ntsmScore": "0.435221", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16i_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02273", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02273", - "totalBp": "25905984548", - "totalGbp": "25.905984548", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "44135016189", + "totalGbp": "44.14", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797104", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797104", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "3.5", + "coverage": "11.26", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02391-1_S5_L001_R1_001.fastq.gz", + "filename": "NA20858-2_S16i_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02391-1_S5_L001", + "libraryId": "NA20858-2_S16i_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242458", + "metadataAccession": "SRR30242261", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -110666,64 +169101,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.606866", + "ntsmScore": "0.494007", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16i_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02391", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02391", - "totalBp": "10853036509", - "totalGbp": "10.853036509", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "34914480186", + "totalGbp": "34.91", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797104", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797104", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "3.5", + "coverage": "11.26", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02391-1_S5_L001_R2_001.fastq.gz", + "filename": "NA20858-2_S16i_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02391-1_S5_L001", + "libraryId": "NA20858-2_S16i_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242458", + "metadataAccession": "SRR30242261", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -110731,64 +169166,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.563404", + "ntsmScore": "0.448822", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16i_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02391", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02391", - "totalBp": "10852127037", - "totalGbp": "10.852127037", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "34912919193", + "totalGbp": "34.91", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797104", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797104", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "3.81", + "coverage": "9.42", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02391-1_S5_L002_R1_001.fastq.gz", + "filename": "NA20858-2_S16i_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02391-1_S5_L002", + "libraryId": "NA20858-2_S16i_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242457", + "metadataAccession": "SRR30242260", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -110796,64 +169231,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.6135", + "ntsmScore": "0.530554", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16i_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02391", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02391", - "totalBp": "11815698653", - "totalGbp": "11.815698653", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "29214946160", + "totalGbp": "29.21", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797104", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797104", + "biosampleAccession": "SAMN37797095", "ccsAlgorithm": "N/A", - "coverage": "3.81", + "coverage": "9.42", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02391-1_S5_L002_R2_001.fastq.gz", + "filename": "NA20858-2_S16i_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02391-1_S5_L002", + "libraryId": "NA20858-2_S16i_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242457", + "metadataAccession": "SRR30242260", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -110861,64 +169296,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.58974", + "ntsmScore": "0.443759", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/hic/NA20858-2_S16i_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02391", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02391", - "totalBp": "11815059895", - "totalGbp": "11.815059895", + "title": "Illumina Sequencing of Omni-C Libraries of NA20858", + "totalBp": "29213614599", + "totalGbp": "29.21", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797104", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797104", + "biosampleAccession": "SAMN41021623", "ccsAlgorithm": "N/A", - "coverage": "3.81", + "coverage": "6.21", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02391-1_S5_L003_R1_001.fastq.gz", + "filename": "NA20870-1_FC1_S3_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02391-1_S5_L003", + "libraryId": "NA20870-1_FC1_S3_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242191", + "metadataAccession": "SRR30310873", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -110926,64 +169361,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.601405", + "ntsmScore": "0.494366", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20870/raw_data/hic/NA20870-1_FC1_S3_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02391", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02391", - "totalBp": "11814658427", - "totalGbp": "11.814658427", + "title": "Illumina Sequencing of Omni-C Libraries of NA20870", + "totalBp": "19250551345", + "totalGbp": "19.25", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797104", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797104", + "biosampleAccession": "SAMN41021623", "ccsAlgorithm": "N/A", - "coverage": "3.81", + "coverage": "6.21", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02391-1_S5_L003_R2_001.fastq.gz", + "filename": "NA20870-1_FC1_S3_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02391-1_S5_L003", + "libraryId": "NA20870-1_FC1_S3_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242191", + "metadataAccession": "SRR30310873", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -110991,64 +169426,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.584097", + "ntsmScore": "0.494366", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20870/raw_data/hic/NA20870-1_FC1_S3_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02391", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02391", - "totalBp": "11813973287", - "totalGbp": "11.813973287", + "title": "Illumina Sequencing of Omni-C Libraries of NA20870", + "totalBp": "19250551345", + "totalGbp": "19.25", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797104", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797104", + "biosampleAccession": "SAMN41021623", "ccsAlgorithm": "N/A", - "coverage": "3.77", + "coverage": "6.34", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02391-1_S5_L004_R1_001.fastq.gz", + "filename": "NA20870-1_FC2_S3_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02391-1_S5_L004", + "libraryId": "NA20870-1_FC2_S3_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242190", + "metadataAccession": "SRR30310872", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -111056,64 +169491,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.620551", + "ntsmScore": "0.533929", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20870/raw_data/hic/NA20870-1_FC2_S3_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02391", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02391", - "totalBp": "11675066505", - "totalGbp": "11.675066505", + "title": "Illumina Sequencing of Omni-C Libraries of NA20870", + "totalBp": "19643337377", + "totalGbp": "19.64", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797104", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797104", + "biosampleAccession": "SAMN41021623", "ccsAlgorithm": "N/A", - "coverage": "3.77", + "coverage": "6.34", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02391-1_S5_L004_R2_001.fastq.gz", + "filename": "NA20870-1_FC2_S3_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02391-1_S5_L004", + "libraryId": "NA20870-1_FC2_S3_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242190", + "metadataAccession": "SRR30310872", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -111121,64 +169556,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.590675", + "ntsmScore": "0.533929", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20870/raw_data/hic/NA20870-1_FC2_S3_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02391", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02391", - "totalBp": "11674424204", - "totalGbp": "11.674424204", + "title": "Illumina Sequencing of Omni-C Libraries of NA20870", + "totalBp": "19643337377", + "totalGbp": "19.64", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797104", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797104", + "biosampleAccession": "SAMN41021623", "ccsAlgorithm": "N/A", - "coverage": "4.95", + "coverage": "11.39", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02391-2_S13_L001_R1_001.fastq.gz", + "filename": "NA20870-2_FC1_S4_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02391-2_S13_L001", + "libraryId": "NA20870-2_FC1_S4_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242189", + "metadataAccession": "SRR30310871", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -111186,64 +169621,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.577079", + "ntsmScore": "0.434158", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20870/raw_data/hic/NA20870-2_FC1_S4_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02391", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02391", - "totalBp": "15353640937", - "totalGbp": "15.353640937", + "title": "Illumina Sequencing of Omni-C Libraries of NA20870", + "totalBp": "35312248601", + "totalGbp": "35.31", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797104", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797104", + "biosampleAccession": "SAMN41021623", "ccsAlgorithm": "N/A", - "coverage": "4.95", + "coverage": "11.39", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02391-2_S13_L001_R2_001.fastq.gz", + "filename": "NA20870-2_FC1_S4_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02391-2_S13_L001", + "libraryId": "NA20870-2_FC1_S4_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242189", + "metadataAccession": "SRR30310871", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -111251,64 +169686,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.549027", + "ntsmScore": "0.434158", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20870/raw_data/hic/NA20870-2_FC1_S4_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02391", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02391", - "totalBp": "15352495826", - "totalGbp": "15.352495826", + "title": "Illumina Sequencing of Omni-C Libraries of NA20870", + "totalBp": "35312248601", + "totalGbp": "35.31", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797104", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797104", + "biosampleAccession": "SAMN41021623", "ccsAlgorithm": "N/A", - "coverage": "5.36", + "coverage": "11.5", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02391-2_S13_L002_R1_001.fastq.gz", + "filename": "NA20870-2_FC2_S4_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02391-2_S13_L002", + "libraryId": "NA20870-2_FC2_S4_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242188", + "metadataAccession": "SRR30310870", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -111316,64 +169751,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.565604", + "ntsmScore": "0.469992", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20870/raw_data/hic/NA20870-2_FC2_S4_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02391", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02391", - "totalBp": "16613036709", - "totalGbp": "16.613036709", + "title": "Illumina Sequencing of Omni-C Libraries of NA20870", + "totalBp": "35658974952", + "totalGbp": "35.66", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797104", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797104", + "biosampleAccession": "SAMN41021623", "ccsAlgorithm": "N/A", - "coverage": "5.36", + "coverage": "11.5", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02391-2_S13_L002_R2_001.fastq.gz", + "filename": "NA20870-2_FC2_S4_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02391-2_S13_L002", + "libraryId": "NA20870-2_FC2_S4_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242188", + "metadataAccession": "SRR30310870", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -111381,64 +169816,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.521443", + "ntsmScore": "0.469992", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20870/raw_data/hic/NA20870-2_FC2_S4_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02391", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02391", - "totalBp": "16612259508", - "totalGbp": "16.612259508", + "title": "Illumina Sequencing of Omni-C Libraries of NA20870", + "totalBp": "35658974952", + "totalGbp": "35.66", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797104", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797104", + "biosampleAccession": "SAMN33758801", "ccsAlgorithm": "N/A", - "coverage": "5.36", + "coverage": "1.12", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02391-2_S13_L003_R1_001.fastq.gz", + "filename": "NA20905-1_S22_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02391-2_S13_L003", + "libraryId": "NA20905-1_S22_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242187", + "metadataAccession": "SRR30242282", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -111446,64 +169881,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.549475", + "ntsmScore": "0.748392", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-1_S22_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02391", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02391", - "totalBp": "16614538681", - "totalGbp": "16.614538681", + "title": "Illumina Sequencing of Omni-C Libraries of NA20905", + "totalBp": "3470106754", + "totalGbp": "3.47", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797104", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797104", + "biosampleAccession": "SAMN33758801", "ccsAlgorithm": "N/A", - "coverage": "5.36", + "coverage": "1.12", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02391-2_S13_L003_R2_001.fastq.gz", + "filename": "NA20905-1_S22_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02391-2_S13_L003", + "libraryId": "NA20905-1_S22_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242187", + "metadataAccession": "SRR30242282", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -111511,64 +169946,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.563252", + "ntsmScore": "0.757607", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-1_S22_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02391", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02391", - "totalBp": "16613671783", - "totalGbp": "16.613671783", + "title": "Illumina Sequencing of Omni-C Libraries of NA20905", + "totalBp": "3469860160", + "totalGbp": "3.47", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797104", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797104", + "biosampleAccession": "SAMN33758801", "ccsAlgorithm": "N/A", - "coverage": "5.29", + "coverage": "1.2", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02391-2_S13_L004_R1_001.fastq.gz", + "filename": "NA20905-1_S22_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02391-2_S13_L004", + "libraryId": "NA20905-1_S22_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242186", + "metadataAccession": "SRR30242281", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -111576,64 +170011,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.584754", + "ntsmScore": "0.753747", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-1_S22_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02391", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02391", - "totalBp": "16407373892", - "totalGbp": "16.407373892", + "title": "Illumina Sequencing of Omni-C Libraries of NA20905", + "totalBp": "3720093206", + "totalGbp": "3.72", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797104", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797104", + "biosampleAccession": "SAMN33758801", "ccsAlgorithm": "N/A", - "coverage": "5.29", + "coverage": "1.2", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02391-2_S13_L004_R2_001.fastq.gz", + "filename": "NA20905-1_S22_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02391-2_S13_L004", + "libraryId": "NA20905-1_S22_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242186", + "metadataAccession": "SRR30242281", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -111641,64 +170076,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.555217", + "ntsmScore": "0.747719", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-1_S22_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02391", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02391", - "totalBp": "16406573130", - "totalGbp": "16.40657313", + "title": "Illumina Sequencing of Omni-C Libraries of NA20905", + "totalBp": "3719930534", + "totalGbp": "3.72", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021615", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021615", + "biosampleAccession": "SAMN33758801", "ccsAlgorithm": "N/A", - "coverage": "7.6", + "coverage": "1.2", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02392-1_FC1_S5_L001_R1_001.fastq.gz", + "filename": "NA20905-1_S22_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02392-1_FC1_S5_L001", + "libraryId": "NA20905-1_S22_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310883", + "metadataAccession": "SRR30242279", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -111706,64 +170141,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.518886", + "ntsmScore": "0.759788", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-1_S22_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02392", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02392", - "totalBp": "23554018125", - "totalGbp": "23.554018125", + "title": "Illumina Sequencing of Omni-C Libraries of NA20905", + "totalBp": "3720540280", + "totalGbp": "3.72", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021615", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021615", + "biosampleAccession": "SAMN33758801", "ccsAlgorithm": "N/A", - "coverage": "7.5", + "coverage": "1.2", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02392-1_FC2_S5_L001_R1_001.fastq.gz", + "filename": "NA20905-1_S22_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02392-1_FC2_S5_L001", + "libraryId": "NA20905-1_S22_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310858", + "metadataAccession": "SRR30242279", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -111771,64 +170206,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.496335", + "ntsmScore": "0.718086", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-1_S22_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02392", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02392", - "totalBp": "23252301099", - "totalGbp": "23.252301099", + "title": "Illumina Sequencing of Omni-C Libraries of NA20905", + "totalBp": "3720373007", + "totalGbp": "3.72", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021615", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021615", + "biosampleAccession": "SAMN33758801", "ccsAlgorithm": "N/A", - "coverage": "5.04", + "coverage": "1.19", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02392-2_FC1_S6_L001_R1_001.fastq.gz", + "filename": "NA20905-1_S22_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02392-2_FC1_S6_L001", + "libraryId": "NA20905-1_S22_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310857", + "metadataAccession": "SRR30242278", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -111836,64 +170271,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.531586", + "ntsmScore": "0.730382", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-1_S22_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02392", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02392", - "totalBp": "15616342990", - "totalGbp": "15.61634299", + "title": "Illumina Sequencing of Omni-C Libraries of NA20905", + "totalBp": "3675727312", + "totalGbp": "3.68", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021615", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021615", + "biosampleAccession": "SAMN33758801", "ccsAlgorithm": "N/A", - "coverage": "4.95", + "coverage": "1.19", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", "familyId": null, - "filename": "HG02392-2_FC2_S6_L001_R1_001.fastq.gz", + "filename": "NA20905-1_S22_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02392-2_FC2_S6_L001", + "libraryId": "NA20905-1_S22_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310856", + "metadataAccession": "SRR30242278", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -111901,64 +170336,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.552625", + "ntsmScore": "0.765865", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-1_S22_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02392", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02392", - "totalBp": "15330246008", - "totalGbp": "15.330246008", + "title": "Illumina Sequencing of Omni-C Libraries of NA20905", + "totalBp": "3675576738", + "totalGbp": "3.68", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758786", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758786", + "biosampleAccession": "SAMN33758801", "ccsAlgorithm": "N/A", - "coverage": "12.65", + "coverage": "3.05", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "BB46", - "filename": "HG02451-1_S2_L004_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20905-2_S30_L001_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02451-1_S2_L004", + "libraryId": "NA20905-2_S30_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310855", + "metadataAccession": "SRR30242277", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -111966,64 +170401,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.40241", + "ntsmScore": "0.643335", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-2_S30_L001_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02451", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02451", - "totalBp": "39210516394", - "totalGbp": "39.210516394", + "title": "Illumina Sequencing of Omni-C Libraries of NA20905", + "totalBp": "9453142449", + "totalGbp": "9.45", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758786", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758786", + "biosampleAccession": "SAMN33758801", "ccsAlgorithm": "N/A", - "coverage": "11.75", + "coverage": "3.05", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "BB46", - "filename": "HG02451-2_S8_L004_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20905-2_S30_L001_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02451-2_S8_L004", + "libraryId": "NA20905-2_S30_L001", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310854", + "metadataAccession": "SRR30242277", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -112031,64 +170466,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.389143", + "ntsmScore": "0.581919", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-2_S30_L001_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02451", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02451", - "totalBp": "36412020257", - "totalGbp": "36.412020257", + "title": "Illumina Sequencing of Omni-C Libraries of NA20905", + "totalBp": "9452410580", + "totalGbp": "9.45", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797105", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797105", + "biosampleAccession": "SAMN33758801", "ccsAlgorithm": "N/A", - "coverage": "33.27", + "coverage": "3.34", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "VN087", - "filename": "HG02514-1_S5_L004_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20905-2_S30_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02514-1_S5_L004", + "libraryId": "NA20905-2_S30_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310853", + "metadataAccession": "SRR30242276", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -112096,64 +170531,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.425097", + "ntsmScore": "0.631089", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-2_S30_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02514", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02514", - "totalBp": "103145633415", - "totalGbp": "103.145633415", + "title": "Illumina Sequencing of Omni-C Libraries of NA20905", + "totalBp": "10369296228", + "totalGbp": "10.37", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797105", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797105", + "biosampleAccession": "SAMN33758801", "ccsAlgorithm": "N/A", - "coverage": "25.89", + "coverage": "3.34", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "VN087", - "filename": "HG02514-2_S6_L004_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20905-2_S30_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02514-2_S6_L004", + "libraryId": "NA20905-2_S30_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310852", + "metadataAccession": "SRR30242276", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -112161,64 +170596,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.393691", + "ntsmScore": "0.622021", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-2_S30_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02514", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02514", - "totalBp": "80256080824", - "totalGbp": "80.256080824", + "title": "Illumina Sequencing of Omni-C Libraries of NA20905", + "totalBp": "10368742664", + "totalGbp": "10.37", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021657", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021657", + "biosampleAccession": "SAMN33758801", "ccsAlgorithm": "N/A", - "coverage": "7.88", + "coverage": "3.35", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "GB23", - "filename": "HG02583-1_FC1_S15_L003_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20905-2_S30_L003_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02583-1_FC1_S15_L003", + "libraryId": "NA20905-2_S30_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310851", + "metadataAccession": "SRR30242275", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -112226,64 +170661,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.52969", + "ntsmScore": "0.625653", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-2_S30_L003_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02583", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02583", - "totalBp": "24428567694", - "totalGbp": "24.428567694", + "title": "Illumina Sequencing of Omni-C Libraries of NA20905", + "totalBp": "10376173970", + "totalGbp": "10.38", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021657", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021657", + "biosampleAccession": "SAMN33758801", "ccsAlgorithm": "N/A", - "coverage": "8.04", + "coverage": "3.35", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "GB23", - "filename": "HG02583-1_FC2_S15_L003_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20905-2_S30_L003_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02583-1_FC2_S15_L003", + "libraryId": "NA20905-2_S30_L003", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310850", + "metadataAccession": "SRR30242275", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -112291,64 +170726,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.528616", + "ntsmScore": "0.588899", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-2_S30_L003_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02583", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02583", - "totalBp": "24916814416", - "totalGbp": "24.916814416", + "title": "Illumina Sequencing of Omni-C Libraries of NA20905", + "totalBp": "10375607032", + "totalGbp": "10.38", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021657", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021657", + "biosampleAccession": "SAMN33758801", "ccsAlgorithm": "N/A", - "coverage": "7.19", + "coverage": "3.29", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "GB23", - "filename": "HG02583-2_FC1_S16_L003_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20905-2_S30_L004_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02583-2_FC1_S16_L003", + "libraryId": "NA20905-2_S30_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310848", + "metadataAccession": "SRR30242274", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -112356,64 +170791,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.493089", + "ntsmScore": "0.633477", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-2_S30_L004_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02583", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02583", - "totalBp": "22281528139", - "totalGbp": "22.281528139", + "title": "Illumina Sequencing of Omni-C Libraries of NA20905", + "totalBp": "10205773998", + "totalGbp": "10.21", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021657", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021657", + "biosampleAccession": "SAMN33758801", "ccsAlgorithm": "N/A", - "coverage": "7.36", + "coverage": "3.29", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "GB23", - "filename": "HG02583-2_FC2_S16_L003_R1_001.fastq.gz", + "familyId": null, + "filename": "NA20905-2_S30_L004_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02583-2_FC2_S16_L003", + "libraryId": "NA20905-2_S30_L004", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310847", + "metadataAccession": "SRR30242274", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -112421,64 +170856,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.550728", + "ntsmScore": "0.582213", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/hic/NA20905-2_S30_L004_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR4", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02583", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02583", - "totalBp": "22801913701", - "totalGbp": "22.801913701", + "title": "Illumina Sequencing of Omni-C Libraries of NA20905", + "totalBp": "10205214056", + "totalGbp": "10.21", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758787", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758787", + "biosampleAccession": "SAMN41021627", "ccsAlgorithm": "N/A", - "coverage": "3.38", + "coverage": "5.68", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PK26", - "filename": "HG02735-1_S1_L004_R1_001.fastq.gz", + "familyId": null, + "filename": "NA21093-1_FC1_S9_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02735-1_S1_L004", + "libraryId": "NA21093-1_FC1_S9_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310846", + "metadataAccession": "SRR30310869", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -112486,64 +170921,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.537195", + "ntsmScore": "0.532711", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21093/raw_data/hic/NA21093-1_FC1_S9_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02735", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02735", - "totalBp": "10480992446", - "totalGbp": "10.480992446", + "title": "Illumina Sequencing of Omni-C Libraries of NA21093", + "totalBp": "17618029190", + "totalGbp": "17.62", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758787", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758787", + "biosampleAccession": "SAMN41021627", "ccsAlgorithm": "N/A", - "coverage": "10.76", + "coverage": "5.68", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PK26", - "filename": "HG02735-2_S7_L004_R1_001.fastq.gz", + "familyId": null, + "filename": "NA21093-1_FC1_S9_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02735-2_S7_L004", + "libraryId": "NA21093-1_FC1_S9_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310845", + "metadataAccession": "SRR30310869", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -112551,64 +170986,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.350536", + "ntsmScore": "0.532711", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21093/raw_data/hic/NA21093-1_FC1_S9_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02735", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02735", - "totalBp": "33352232512", - "totalGbp": "33.352232512", + "title": "Illumina Sequencing of Omni-C Libraries of NA21093", + "totalBp": "17618029190", + "totalGbp": "17.62", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797106", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797106", + "biosampleAccession": "SAMN41021627", "ccsAlgorithm": "N/A", - "coverage": "10.38", + "coverage": "5.73", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "GB74", - "filename": "HG02841-1_S5_L001_R1_001.fastq.gz", + "familyId": null, + "filename": "NA21093-1_FC2_S9_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02841-1_S5_L001", + "libraryId": "NA21093-1_FC2_S9_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310825", + "metadataAccession": "SRR30310868", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -112616,64 +171051,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.488242", + "ntsmScore": "0.494601", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21093/raw_data/hic/NA21093-1_FC2_S9_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02841", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02841", - "totalBp": "32175246855", - "totalGbp": "32.175246855", + "title": "Illumina Sequencing of Omni-C Libraries of NA21093", + "totalBp": "17763157706", + "totalGbp": "17.76", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797106", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797106", + "biosampleAccession": "SAMN41021627", "ccsAlgorithm": "N/A", - "coverage": "13.4", + "coverage": "5.73", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "GB74", - "filename": "HG02841-2_S5_L002_R1_001.fastq.gz", + "familyId": null, + "filename": "NA21093-1_FC2_S9_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02841-2_S5_L002", + "libraryId": "NA21093-1_FC2_S9_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30310824", + "metadataAccession": "SRR30310868", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -112681,64 +171116,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.437549", + "ntsmScore": "0.494601", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21093/raw_data/hic/NA21093-1_FC2_S9_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02841", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02841", - "totalBp": "41551546102", - "totalGbp": "41.551546102", + "title": "Illumina Sequencing of Omni-C Libraries of NA21093", + "totalBp": "17763157706", + "totalGbp": "17.76", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", + "biosampleAccession": "SAMN41021627", "ccsAlgorithm": "N/A", - "coverage": "5.06", + "coverage": "6.3", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-1_S18_L001_R1_001.fastq.gz", + "familyId": null, + "filename": "NA21093-2_FC1_S10_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-1_S18_L001", + "libraryId": "NA21093-2_FC1_S10_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242185", + "metadataAccession": "SRR30310867", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -112746,64 +171181,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.541485", + "ntsmScore": "0.453901", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21093/raw_data/hic/NA21093-2_FC1_S10_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "15679484213", - "totalGbp": "15.679484213", + "title": "Illumina Sequencing of Omni-C Libraries of NA21093", + "totalBp": "19541671946", + "totalGbp": "19.54", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", + "biosampleAccession": "SAMN41021627", "ccsAlgorithm": "N/A", - "coverage": "5.06", + "coverage": "6.3", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-1_S18_L001_R2_001.fastq.gz", + "familyId": null, + "filename": "NA21093-2_FC1_S10_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-1_S18_L001", + "libraryId": "NA21093-2_FC1_S10_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242185", + "metadataAccession": "SRR30310867", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -112811,64 +171246,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.528025", + "ntsmScore": "0.453901", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21093/raw_data/hic/NA21093-2_FC1_S10_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "15678477524", - "totalGbp": "15.678477524", + "title": "Illumina Sequencing of Omni-C Libraries of NA21093", + "totalBp": "19541671946", + "totalGbp": "19.54", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", + "biosampleAccession": "SAMN41021627", "ccsAlgorithm": "N/A", - "coverage": "5.12", + "coverage": "6.24", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-1_S18_L002_R1_001.fastq.gz", + "familyId": null, + "filename": "NA21093-2_FC2_S10_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-1_S18_L002", + "libraryId": "NA21093-2_FC2_S10_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242184", + "metadataAccession": "SRR30310866", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -112876,64 +171311,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.566459", + "ntsmScore": "0.475376", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21093/raw_data/hic/NA21093-2_FC2_S10_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "15878378348", - "totalGbp": "15.878378348", + "title": "Illumina Sequencing of Omni-C Libraries of NA21093", + "totalBp": "19354976452", + "totalGbp": "19.35", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", + "biosampleAccession": "SAMN41021627", "ccsAlgorithm": "N/A", - "coverage": "5.12", + "coverage": "6.24", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-1_S18_L002_R2_001.fastq.gz", + "familyId": null, + "filename": "NA21093-2_FC2_S10_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-1_S18_L002", + "libraryId": "NA21093-2_FC2_S10_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242184", + "metadataAccession": "SRR30310866", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -112941,64 +171376,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.540985", + "ntsmScore": "0.475376", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21093/raw_data/hic/NA21093-2_FC2_S10_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "15877680604", - "totalGbp": "15.877680604", + "title": "Illumina Sequencing of Omni-C Libraries of NA21093", + "totalBp": "19354976452", + "totalGbp": "19.35", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", + "biosampleAccession": "SAMN41021629", "ccsAlgorithm": "N/A", - "coverage": "4.95", + "coverage": "7.29", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-1_S18_L003_R1_001.fastq.gz", + "familyId": null, + "filename": "NA21106-1_FC1_S11_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-1_S18_L003", + "libraryId": "NA21106-1_FC1_S11_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242176", + "metadataAccession": "SRR30310864", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -113006,64 +171441,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.560546", + "ntsmScore": "0.457198", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21106/raw_data/hic/NA21106-1_FC1_S11_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "15353893039", - "totalGbp": "15.353893039", + "title": "Illumina Sequencing of Omni-C Libraries of NA21106", + "totalBp": "22600425794", + "totalGbp": "22.6", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", + "biosampleAccession": "SAMN41021629", "ccsAlgorithm": "N/A", - "coverage": "4.95", + "coverage": "7.29", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-1_S18_L003_R2_001.fastq.gz", + "familyId": null, + "filename": "NA21106-1_FC1_S11_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-1_S18_L003", + "libraryId": "NA21106-1_FC1_S11_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242176", + "metadataAccession": "SRR30310864", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -113071,64 +171506,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.569764", + "ntsmScore": "0.457198", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21106/raw_data/hic/NA21106-1_FC1_S11_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "15353059475", - "totalGbp": "15.353059475", + "title": "Illumina Sequencing of Omni-C Libraries of NA21106", + "totalBp": "22600425794", + "totalGbp": "22.6", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", + "biosampleAccession": "SAMN41021629", "ccsAlgorithm": "N/A", - "coverage": "4.86", + "coverage": "7.48", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-1_S18_L004_R1_001.fastq.gz", + "familyId": null, + "filename": "NA21106-1_FC2_S11_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-1_S18_L004", + "libraryId": "NA21106-1_FC2_S11_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242183", + "metadataAccession": "SRR30310863", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -113136,64 +171571,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.534743", + "ntsmScore": "0.452267", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21106/raw_data/hic/NA21106-1_FC2_S11_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "15058862575", - "totalGbp": "15.058862575", + "title": "Illumina Sequencing of Omni-C Libraries of NA21106", + "totalBp": "23180756242", + "totalGbp": "23.18", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", + "biosampleAccession": "SAMN41021629", "ccsAlgorithm": "N/A", - "coverage": "4.86", + "coverage": "7.48", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-1_S18_L004_R2_001.fastq.gz", + "familyId": null, + "filename": "NA21106-1_FC2_S11_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-1_S18_L004", + "libraryId": "NA21106-1_FC2_S11_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242183", + "metadataAccession": "SRR30310863", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -113201,64 +171636,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.538057", + "ntsmScore": "0.452267", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21106/raw_data/hic/NA21106-1_FC2_S11_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "15057987757", - "totalGbp": "15.057987757", + "title": "Illumina Sequencing of Omni-C Libraries of NA21106", + "totalBp": "23180756242", + "totalGbp": "23.18", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", + "biosampleAccession": "SAMN41021629", "ccsAlgorithm": "N/A", - "coverage": "11.12", + "coverage": "7.2", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-1_S18i_L001_R1_001.fastq.gz", + "familyId": null, + "filename": "NA21106-2_FC1_S12_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-1_S18i_L001", + "libraryId": "NA21106-2_FC1_S12_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242404", + "metadataAccession": "SRR30310862", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -113266,64 +171701,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.45325", + "ntsmScore": "0.456851", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21106/raw_data/hic/NA21106-2_FC1_S12_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "34473291574", - "totalGbp": "34.473291574", + "title": "Illumina Sequencing of Omni-C Libraries of NA21106", + "totalBp": "22320651031", + "totalGbp": "22.32", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", + "biosampleAccession": "SAMN41021629", "ccsAlgorithm": "N/A", - "coverage": "11.12", + "coverage": "7.2", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-1_S18i_L001_R2_001.fastq.gz", + "familyId": null, + "filename": "NA21106-2_FC1_S12_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-1_S18i_L001", + "libraryId": "NA21106-2_FC1_S12_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242404", + "metadataAccession": "SRR30310862", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -113331,64 +171766,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.47633", + "ntsmScore": "0.456851", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21106/raw_data/hic/NA21106-2_FC1_S12_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "34470837368", - "totalGbp": "34.470837368", + "title": "Illumina Sequencing of Omni-C Libraries of NA21106", + "totalBp": "22320651031", + "totalGbp": "22.32", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", + "biosampleAccession": "SAMN41021629", "ccsAlgorithm": "N/A", - "coverage": "11.83", + "coverage": "7.29", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-1_S18i_L002_R1_001.fastq.gz", + "familyId": null, + "filename": "NA21106-2_FC2_S12_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-1_S18i_L002", + "libraryId": "NA21106-2_FC2_S12_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242403", + "metadataAccession": "SRR30310861", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -113396,64 +171831,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.497254", + "ntsmScore": "0.524822", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21106/raw_data/hic/NA21106-2_FC2_S12_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "36674507291", - "totalGbp": "36.674507291", + "title": "Illumina Sequencing of Omni-C Libraries of NA21106", + "totalBp": "22591797805", + "totalGbp": "22.59", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", + "biosampleAccession": "SAMN41021629", "ccsAlgorithm": "N/A", - "coverage": "11.83", + "coverage": "7.29", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-1_S18i_L002_R2_001.fastq.gz", + "familyId": null, + "filename": "NA21106-2_FC2_S12_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-1_S18i_L002", + "libraryId": "NA21106-2_FC2_S12_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242403", + "metadataAccession": "SRR30310861", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -113461,64 +171896,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.459331", + "ntsmScore": "0.524822", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21106/raw_data/hic/NA21106-2_FC2_S12_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "36673265858", - "totalGbp": "36.673265858", + "title": "Illumina Sequencing of Omni-C Libraries of NA21106", + "totalBp": "22591797805", + "totalGbp": "22.59", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", + "biosampleAccession": "SAMN41021624", "ccsAlgorithm": "N/A", - "coverage": "10.13", + "coverage": "5.12", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-1_S18i_L003_R1_001.fastq.gz", + "familyId": null, + "filename": "NA21110-1_FC1_S1_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-1_S18i_L003", + "libraryId": "NA21110-1_FC1_S1_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242402", + "metadataAccession": "SRR30310860", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -113526,64 +171961,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.460186", + "ntsmScore": "0.476082", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21110/raw_data/hic/NA21110-1_FC1_S1_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "31405734054", - "totalGbp": "31.405734054", + "title": "Illumina Sequencing of Omni-C Libraries of NA21110", + "totalBp": "15872921435", + "totalGbp": "15.87", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", + "biosampleAccession": "SAMN41021624", "ccsAlgorithm": "N/A", - "coverage": "10.13", + "coverage": "5.12", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-1_S18i_L003_R2_001.fastq.gz", + "familyId": null, + "filename": "NA21110-1_FC1_S1_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-1_S18i_L003", + "libraryId": "NA21110-1_FC1_S1_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242402", + "metadataAccession": "SRR30310860", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -113591,64 +172026,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.451275", + "ntsmScore": "0.476082", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21110/raw_data/hic/NA21110-1_FC1_S1_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "31404653189", - "totalGbp": "31.404653189", + "title": "Illumina Sequencing of Omni-C Libraries of NA21110", + "totalBp": "15872921435", + "totalGbp": "15.87", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", + "biosampleAccession": "SAMN41021624", "ccsAlgorithm": "N/A", - "coverage": "8.74", + "coverage": "5.12", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-1_S18i_L004_R1_001.fastq.gz", + "familyId": null, + "filename": "NA21110-1_FC2_S1_L002_R1_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-1_S18i_L004", + "libraryId": "NA21110-1_FC2_S1_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242401", + "metadataAccession": "SRR30310859", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -113656,64 +172091,64 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.485954", + "ntsmScore": "0.512692", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21110/raw_data/hic/NA21110-1_FC2_S1_L002_R1_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "27099399518", - "totalGbp": "27.099399518", + "title": "Illumina Sequencing of Omni-C Libraries of NA21110", + "totalBp": "15872702636", + "totalGbp": "15.87", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": null, + "assembly": "unaligned", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", + "biosampleAccession": "SAMN41021624", "ccsAlgorithm": "N/A", - "coverage": "8.74", + "coverage": "5.12", "dataType": "unaligned reads", "deepConsensusVersion": "N/A", "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-1_S18i_L004_R2_001.fastq.gz", + "familyId": null, + "filename": "NA21110-1_FC2_S1_L002_R2_001.fastq.gz", "filetype": "fastq", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "wseligma@ucsc.edu", "generatorFacility": "University of California Santa Cruz", "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-1_S18i_L004", + "libraryId": "NA21110-1_FC2_S1_L002", "libraryLayout": "paired", "librarySelection": "RANDOM", "librarySource": "GENOMIC", "libraryStrategy": "Hi-C", "max": "N/A", "mean": "N/A", - "metadataAccession": "SRR30242401", + "metadataAccession": "SRR30310859", "min": "N/A", "mmTag": "N/A", "n25": "N/A", @@ -113721,42531 +172156,43116 @@ "n75": "N/A", "notes": "N/A", "ntsmResult": "Similar", - "ntsmScore": "0.48088", + "ntsmScore": "0.512692", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21110/raw_data/hic/NA21110-1_FC2_S1_L002_R2_001.fastq.gz", "platform": "ILLUMINA", "polymeraseVersion": "N/A", - "productionYear": "YR3", + "productionYear": null, "quartile25": "N/A", "quartile50": "N/A", "quartile75": "N/A", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "N/A", "seqKit": "N/A", "seqPlateChemistryVersion": "N/A", "shearMethod": "no shear", "sizeSelection": "N/A", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "27098330323", - "totalGbp": "27.098330323", + "title": "Illumina Sequencing of Omni-C Libraries of NA21110", + "totalBp": "15872702636", + "totalGbp": "15.87", "totalReads": "N/A", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": "SAMN37706910", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "N/A", - "coverage": "4.67", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706910", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", + "dataType": "unaligned reads", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD53", + "filename": "m54306Ue_210713_140744.5mc.hifi_reads.bam", + "filetype": "N/A", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG04160_PB1_m54306Ue_210713_140744", + "libraryLayout": "single", + "librarySelection": "size fractionation", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "53687", + "mean": "16108", + "metadataAccession": "SRR30151640", + "min": "86", + "mmTag": true, + "n25": "14021", + "n50": "16378", + "n75": "19452", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m54306Ue_210713_140744.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "13392", + "quartile50": "15498", + "quartile75": "18313", + "readN50": "N/A", + "result": "N/A", + "sampleId": "HG04160", + "seqKit": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", + "study": "SRP305758", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "N/A", + "title": "N/A", + "totalBp": "26720127719", + "totalGbp": "26.72", + "totalReads": "1658709", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": "SAMN37706910", + "assembly": "N/A", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706910", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", + "dataType": "unaligned reads", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD53", + "filename": "m54306Ue_210715_000620.5mc.hifi_reads.bam", + "filetype": "N/A", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG04160_PB1_m54306Ue_210715_000620", + "libraryLayout": "single", + "librarySelection": "size fractionation", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "48768", + "mean": "15596", + "metadataAccession": "SRR30151639", + "min": "86", + "mmTag": true, + "n25": "13549", + "n50": "15822", + "n75": "18840", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m54306Ue_210715_000620.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "12940", + "quartile50": "14970", + "quartile75": "17686", + "readN50": "N/A", + "result": "N/A", + "sampleId": "HG04160", + "seqKit": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", + "study": "SRP305758", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "N/A", + "title": "N/A", + "totalBp": "22925478214", + "totalGbp": "22.93", + "totalReads": "1469884", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": "SAMN37706907", + "assembly": "N/A", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706907", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", + "dataType": "unaligned reads", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD18", + "filename": "m54306Ue_210716_134443.5mc.hifi_reads.bam", + "filetype": "N/A", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG03804_PB1_m54306Ue_210716_134443", + "libraryLayout": "single", + "librarySelection": "size fractionation", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "52699", + "mean": "17277", + "metadataAccession": "SRR30151631", + "min": "86", + "mmTag": true, + "n25": "14779", + "n50": "17694", + "n75": "21423", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m54306Ue_210716_134443.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "13889", + "quartile50": "16482", + "quartile75": "19841", + "readN50": "N/A", + "result": "N/A", + "sampleId": "HG03804", + "seqKit": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", + "study": "SRP305758", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "N/A", + "title": "N/A", + "totalBp": "21523857623", + "totalGbp": "21.52", + "totalReads": "1245794", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": "SAMN37706908", + "assembly": "N/A", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706908", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", + "dataType": "unaligned reads", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD22", + "filename": "m54306Ue_210723_183738.5mc.hifi_reads.bam", + "filetype": "N/A", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG03816_PB3_m54306Ue_210723_183738", + "libraryLayout": "single", + "librarySelection": "size fractionation", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "54660", + "mean": "16321", + "metadataAccession": "SRR30151649", + "min": "85", + "mmTag": true, + "n25": "13886", + "n50": "16911", + "n75": "20654", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m54306Ue_210723_183738.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "12872", + "quartile50": "15561", + "quartile75": "18986", + "readN50": "N/A", + "result": "N/A", + "sampleId": "HG03816", + "seqKit": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", + "study": "SRP305758", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "N/A", + "title": "N/A", + "totalBp": "24450898193", + "totalGbp": "24.45", + "totalReads": "1498091", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": "SAMN37706909", + "assembly": "N/A", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706909", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", + "dataType": "unaligned reads", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD52", + "filename": "m54306Ue_210725_040349.5mc.hifi_reads.bam", + "filetype": "N/A", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG04157_PB3_m54306Ue_210725_040349", + "libraryLayout": "single", + "librarySelection": "size fractionation", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "54115", + "mean": "16688", + "metadataAccession": "SRR30151645", + "min": "75", + "mmTag": true, + "n25": "14238", + "n50": "17292", + "n75": "21051", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210725_040349.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "13219", + "quartile50": "15942", + "quartile75": "19398", + "readN50": "N/A", + "result": "N/A", + "sampleId": "HG04157", + "seqKit": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", + "study": "SRP305758", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "N/A", + "title": "N/A", + "totalBp": "27148740947", + "totalGbp": "27.15", + "totalReads": "1626778", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": "SAMN37706909", + "assembly": "N/A", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706909", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", + "dataType": "unaligned reads", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD52", + "filename": "m54306Ue_210727_144948.5mc.hifi_reads.bam", + "filetype": "N/A", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG04157_PB3_m54306Ue_210727_144948", + "libraryLayout": "single", + "librarySelection": "size fractionation", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "62026", + "mean": "16741", + "metadataAccession": "SRR30151644", + "min": "55", + "mmTag": true, + "n25": "14290", + "n50": "17339", + "n75": "21092", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210727_144948.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "13280", + "quartile50": "15994", + "quartile75": "19456", + "readN50": "N/A", + "result": "N/A", + "sampleId": "HG04157", + "seqKit": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", + "study": "SRP305758", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "N/A", + "title": "N/A", + "totalBp": "27655706749", + "totalGbp": "27.66", + "totalReads": "1651932", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": "SAMN37706909", + "assembly": "N/A", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706909", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", + "dataType": "unaligned reads", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD52", + "filename": "m54306Ue_210729_003128.5mc.hifi_reads.bam", + "filetype": "N/A", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG04157_PB3_m54306Ue_210729_003128", + "libraryLayout": "single", + "librarySelection": "size fractionation", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "53734", + "mean": "16595", + "metadataAccession": "SRR30151643", + "min": "47", + "mmTag": true, + "n25": "14137", + "n50": "17191", + "n75": "20961", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210729_003128.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "13121", + "quartile50": "15831", + "quartile75": "19295", + "readN50": "N/A", + "result": "N/A", + "sampleId": "HG04157", + "seqKit": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", + "study": "SRP305758", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "N/A", + "title": "N/A", + "totalBp": "25986857190", + "totalGbp": "25.99", + "totalReads": "1565878", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": "SAMN37706909", + "assembly": "N/A", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706909", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", + "dataType": "unaligned reads", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD52", + "filename": "m54306Ue_210730_180007.5mc.hifi_reads.bam", + "filetype": "N/A", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG04157_PB3_m54306Ue_210730_180007", + "libraryLayout": "single", + "librarySelection": "size fractionation", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "55237", + "mean": "16134", + "metadataAccession": "SRR30151642", + "min": "50", + "mmTag": true, + "n25": "13675", + "n50": "16708", + "n75": "20522", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210730_180007.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "12673", + "quartile50": "15325", + "quartile75": "18788", + "readN50": "N/A", + "result": "N/A", + "sampleId": "HG04157", + "seqKit": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", + "study": "SRP305758", + "subpopulation": "BEB", + "superpopulation": "SAS", + "threeHundredkbPlus": "N/A", + "title": "N/A", + "totalBp": "26908338226", + "totalGbp": "26.91", + "totalReads": "1667725", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": "SAMN37706906", + "assembly": "N/A", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706906", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", + "dataType": "unaligned reads", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB40", + "filename": "m54306Ue_210801_045414.5mc.hifi_reads.bam", + "filetype": "N/A", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG02668_PB1_m54306Ue_210801_045414", + "libraryLayout": "single", + "librarySelection": "size fractionation", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "57148", + "mean": "17510", + "metadataAccession": "SRR30151635", + "min": "84", + "mmTag": true, + "n25": "15138", + "n50": "18066", + "n75": "21647", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m54306Ue_210801_045414.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "14207", + "quartile50": "16874", + "quartile75": "20215", + "readN50": "N/A", + "result": "N/A", + "sampleId": "HG02668", + "seqKit": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", + "study": "SRP305758", + "subpopulation": "GWD", + "superpopulation": "AFR", + "threeHundredkbPlus": "N/A", + "title": "N/A", + "totalBp": "26571933038", + "totalGbp": "26.57", + "totalReads": "1517517", + "twoHundredkbPlus": "N/A", + "whales": "N/A" + }, + { + "Gb": "N/A", + "accession": "SAMN37706906", + "assembly": "N/A", + "basecaller": "N/A", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706906", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-2_S20_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB40", + "filename": "m54306Ue_210802_164702.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-2_S20_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG02668_PB1_m54306Ue_210802_164702", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242400", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.559289", + "libraryStrategy": "WGS", + "max": "61042", + "mean": "16391", + "metadataAccession": "SRR30151634", + "min": "64", + "mmTag": true, + "n25": "14047", + "n50": "16832", + "n75": "20429", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m54306Ue_210802_164702.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "13178", + "quartile50": "15654", + "quartile75": "18901", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "HG02668", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "GWD", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "14475042591", - "totalGbp": "14.475042591", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "27022607363", + "totalGbp": "27.02", + "totalReads": "1648600", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": "SAMN37706906", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "N/A", - "coverage": "4.67", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706906", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-2_S20_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB40", + "filename": "m54306Ue_210804_021745.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-2_S20_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG02668_PB1_m54306Ue_210804_021745", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242400", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.571817", + "libraryStrategy": "WGS", + "max": "61259", + "mean": "16535", + "metadataAccession": "SRR30151633", + "min": "86", + "mmTag": true, + "n25": "14180", + "n50": "16991", + "n75": "20616", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m54306Ue_210804_021745.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "13297", + "quartile50": "15799", + "quartile75": "19074", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "HG02668", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "GWD", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "14473925138", - "totalGbp": "14.473925138", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "19183912203", + "totalGbp": "19.18", + "totalReads": "1160173", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": "SAMN37797107", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "N/A", - "coverage": "4.73", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797107", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-2_S20_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB97", + "filename": "m54306Ue_220223_194148.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-2_S20_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG02984_PB1_m54306Ue_220223_194148_m54306Ue_220223_194148", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242399", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.541696", + "libraryStrategy": "WGS", + "max": "65089", + "mean": "21219", + "metadataAccession": "SRR30151979", + "min": "111", + "mmTag": true, + "n25": "18256", + "n50": "21241", + "n75": "25288", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m54306Ue_220223_194148.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17591", + "quartile50": "20150", + "quartile75": "23760", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "HG02984", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "GWD", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "14674740969", - "totalGbp": "14.674740969", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "21557851977", + "totalGbp": "21.56", + "totalReads": "1015947", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": "SAMN37797105", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "N/A", - "coverage": "4.73", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797105", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-2_S20_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "VN087", + "filename": "m54306Ue_220225_190349.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-2_S20_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG02514_PB1_m54306Ue_220225_190349_m54306Ue_220225_190349", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242399", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.527607", + "libraryStrategy": "WGS", + "max": "64880", + "mean": "22999", + "metadataAccession": "SRR30151935", + "min": "192", + "mmTag": true, + "n25": "19556", + "n50": "23027", + "n75": "27873", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/primrose/m54306Ue_220225_190349.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18761", + "quartile50": "21654", + "quartile75": "25900", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "HG02514", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "14673914780", - "totalGbp": "14.67391478", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "15671912691", + "totalGbp": "15.67", + "totalReads": "681405", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": "SAMN37797103", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "N/A", - "coverage": "4.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797103", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-2_S20_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL023", + "filename": "m54306Ue_220227_055825.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-2_S20_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01969_PB1_m54306Ue_220227_055825_m54306Ue_220227_055825", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242398", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.569154", + "libraryStrategy": "WGS", + "max": "66510", + "mean": "23473", + "metadataAccession": "SRR30151995", + "min": "65", + "mmTag": true, + "n25": "20005", + "n50": "23515", + "n75": "28513", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m54306Ue_220227_055825.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "19182", + "quartile50": "22126", + "quartile75": "26462", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "HG01969", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "14568201510", - "totalGbp": "14.56820151", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "18938830210", + "totalGbp": "18.94", + "totalReads": "806826", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": "SAMN37797098", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "N/A", - "coverage": "4.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797098", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-2_S20_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "CLM14", + "filename": "m54306Ue_220228_165421.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-2_S20_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01252_PB1_m54306Ue_220228_165421_m54306Ue_220228_165421", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242398", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.546273", + "libraryStrategy": "WGS", + "max": "59699", + "mean": "21896", + "metadataAccession": "SRR30151990", + "min": "82", + "mmTag": true, + "n25": "18810", + "n50": "21897", + "n75": "26236", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/primrose/m54306Ue_220228_165421.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18118", + "quartile50": "20727", + "quartile75": "24554", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "HG01252", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "14567183879", - "totalGbp": "14.567183879", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "22283872315", + "totalGbp": "22.28", + "totalReads": "1017689", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": "SAMN37797106", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "N/A", - "coverage": "4.52", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797106", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-2_S20_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB74", + "filename": "m54306Ue_220326_050928.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-2_S20_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG02841_PB1_m54306Ue_220326_050928_m54306Ue_220326_050928", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242397", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.54842", + "libraryStrategy": "WGS", + "max": "52400", + "mean": "16223", + "metadataAccession": "SRR30151973", + "min": "189", + "mmTag": true, + "n25": "14059", + "n50": "16375", + "n75": "19439", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/primrose/m54306Ue_220326_050928.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "13479", + "quartile50": "15524", + "quartile75": "18296", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "HG02841", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "GWD", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "14013170961", - "totalGbp": "14.013170961", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "31236330105", + "totalGbp": "31.24", + "totalReads": "1925403", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": "SAMN37797106", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "N/A", - "coverage": "4.52", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797106", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-2_S20_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB74", + "filename": "m54306Ue_220327_160600.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-2_S20_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG02841_PB1_m54306Ue_220327_160600_m54306Ue_220327_160600", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242397", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.524473", + "libraryStrategy": "WGS", + "max": "52304", + "mean": "16282", + "metadataAccession": "SRR30151972", + "min": "148", + "mmTag": true, + "n25": "14095", + "n50": "16523", + "n75": "19677", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/primrose/m54306Ue_220327_160600.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "13449", + "quartile50": "15606", + "quartile75": "18475", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "HG02841", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "GWD", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "14012189171", - "totalGbp": "14.012189171", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "31882411301", + "totalGbp": "31.88", + "totalReads": "1958075", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": "SAMN37797108", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "N/A", - "coverage": "9.23", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797108", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-2_S20i_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB113", + "filename": "m54306Ue_220402_052301.demultiplex.bc1012--bc1012.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-2_S20i_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG03050_PB1_m54306Ue_220402_052301_m54306Ue_220402_052301", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242396", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.448434", + "libraryStrategy": "WGS", + "max": "55017", + "mean": "18725", + "metadataAccession": "SRR30151961", + "min": "79", + "mmTag": true, + "n25": "16673", + "n50": "18756", + "n75": "21449", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/primrose/m54306Ue_220402_052301.demultiplex.bc1012--bc1012.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16230", + "quartile50": "18143", + "quartile75": "20624", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "HG03050", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "GWD", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "28606795597", - "totalGbp": "28.606795597", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "9392895139", + "totalGbp": "9.39", + "totalReads": "501610", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": "SAMN37797097", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "N/A", - "coverage": "9.23", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797097", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-2_S20i_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "CLM12", + "filename": "m54306Ue_220402_052301.demultiplex.bc1015--bc1015.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-2_S20i_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01150_PB1_m54306Ue_220402_052301_m54306Ue_220402_052301", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242396", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.472228", + "libraryStrategy": "WGS", + "max": "56471", + "mean": "18047", + "metadataAccession": "SRR30151915", + "min": "82", + "mmTag": true, + "n25": "15385", + "n50": "18565", + "n75": "22532", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/primrose/m54306Ue_220402_052301.demultiplex.bc1015--bc1015.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "14369", + "quartile50": "17200", + "quartile75": "20806", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "HG01150", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "28604467707", - "totalGbp": "28.604467707", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "7580552350", + "totalGbp": "7.58", + "totalReads": "420036", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": "SAMN37797102", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "N/A", - "coverage": "9.67", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797102", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-2_S20i_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BB11", + "filename": "m54306Ue_220409_033640.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-2_S20i_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01960_PB1_m54306Ue_220409_033640_m54306Ue_220409_033640", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242395", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.495269", + "libraryStrategy": "WGS", + "max": "62890", + "mean": "18090", + "metadataAccession": "SRR30151967", + "min": "145", + "mmTag": true, + "n25": "15305", + "n50": "18636", + "n75": "22857", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01960/raw_data/PacBio_HiFi/primrose/m54306Ue_220409_033640.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "14273", + "quartile50": "17156", + "quartile75": "20995", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "HG01960", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "ACB", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "29969805791", - "totalGbp": "29.969805791", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "31237108828", + "totalGbp": "31.24", + "totalReads": "1726705", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": "SAMN37797102", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "N/A", - "coverage": "9.67", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797102", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-2_S20i_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BB11", + "filename": "m54306Ue_220410_130603.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-2_S20i_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01960_PB1_m54306Ue_220410_130603_m54306Ue_220410_130603", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242395", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.471149", + "libraryStrategy": "WGS", + "max": "63512", + "mean": "18177", + "metadataAccession": "SRR30151966", + "min": "145", + "mmTag": true, + "n25": "15378", + "n50": "18739", + "n75": "22984", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01960/raw_data/PacBio_HiFi/primrose/m54306Ue_220410_130603.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "14334", + "quartile50": "17245", + "quartile75": "21110", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "HG01960", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "ACB", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "29968611585", - "totalGbp": "29.968611585", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "26111870066", + "totalGbp": "26.11", + "totalReads": "1436508", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": "SAMN37797098", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "N/A", - "coverage": "8.65", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797098", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-2_S20i_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "CLM14", + "filename": "m54306Ue_220419_182803.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-2_S20i_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01252_PB1_m54306Ue_220419_182803_m54306Ue_220419_182803", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242393", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.516831", + "libraryStrategy": "WGS", + "max": "62179", + "mean": "19034", + "metadataAccession": "SRR30151991", + "min": "174", + "mmTag": true, + "n25": "16124", + "n50": "19792", + "n75": "24328", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/primrose/m54306Ue_220419_182803.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "14832", + "quartile50": "18086", + "quartile75": "22223", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "HG01252", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "26806180472", - "totalGbp": "26.806180472", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "25064791757", + "totalGbp": "25.06", + "totalReads": "1316796", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": "SAMN37797105", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "N/A", - "coverage": "8.65", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797105", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-2_S20i_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "VN087", + "filename": "m54306Ue_220421_052313.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-2_S20i_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG02514_PB1_m54306Ue_220421_052313_m54306Ue_220421_052313", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242393", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.490183", + "libraryStrategy": "WGS", + "max": "58533", + "mean": "16135", + "metadataAccession": "SRR30151933", + "min": "79", + "mmTag": true, + "n25": "13866", + "n50": "16492", + "n75": "19847", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/primrose/m54306Ue_220421_052313.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "13090", + "quartile50": "15426", + "quartile75": "18468", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "HG02514", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "26805199204", - "totalGbp": "26.805199204", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "31688645215", + "totalGbp": "31.69", + "totalReads": "1963936", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": "SAMN37797103", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "N/A", - "coverage": "7.55", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797103", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-2_S20i_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL023", + "filename": "m54306Ue_220422_144937.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-2_S20i_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01969_PB1_m54306Ue_220422_144937_m54306Ue_220422_144937", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242392", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.504828", + "libraryStrategy": "WGS", + "max": "67665", + "mean": "23494", + "metadataAccession": "SRR30151996", + "min": "81", + "mmTag": true, + "n25": "19961", + "n50": "23516", + "n75": "28660", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m54306Ue_220422_144937.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "19132", + "quartile50": "22078", + "quartile75": "26505", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "HG01969", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "23402723198", - "totalGbp": "23.402723198", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "34020179111", + "totalGbp": "34.02", + "totalReads": "1448031", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758788", - "assembly": null, + "accession": "SAMN37797091", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758788", - "ccsAlgorithm": "N/A", - "coverage": "7.55", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797091", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG06", - "filename": "HG02922-2_S20i_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m54306Ue_220722_175158.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02922-2_S20i_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA19338_PB1_m54306Ue_220722_175158_m54306Ue_220722_175158", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242392", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.48997", + "libraryStrategy": "WGS", + "max": "51516", + "mean": "22936", + "metadataAccession": "SRR30152007", + "min": "171", + "mmTag": true, + "n25": "19061", + "n50": "24162", + "n75": "30456", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/primrose/m54306Ue_220722_175158.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17156", + "quartile50": "21545", + "quartile75": "27252", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02922", + "sampleId": "NA19338", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "LWK", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02922", - "totalBp": "23401744757", - "totalGbp": "23.401744757", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "40497124857", + "totalGbp": "40.5", + "totalReads": "1765604", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621954", - "assembly": null, + "accession": "SAMN37797092", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621954", - "ccsAlgorithm": "N/A", - "coverage": "3.52", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797092", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG20", - "filename": "HG02965-1_S1_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m54306Ue_220815_144205.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02965-1_S1_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA19391_PB1_m54306Ue_220815_144205_m54306Ue_220815_144205", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242391", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.628871", + "libraryStrategy": "WGS", + "max": "51001", + "mean": "21768", + "metadataAccession": "SRR30151923", + "min": "201", + "mmTag": true, + "n25": "18156", + "n50": "22267", + "n75": "27731", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/PacBio_HiFi/primrose/m54306Ue_220815_144205.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16933", + "quartile50": "20359", + "quartile75": "25126", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02965", + "sampleId": "NA19391", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "LWK", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02965", - "totalBp": "10909100017", - "totalGbp": "10.909100017", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "39421303285", + "totalGbp": "39.42", + "totalReads": "1810918", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621954", - "assembly": null, + "accession": "SAMN37797110", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621954", - "ccsAlgorithm": "N/A", - "coverage": "3.52", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797110", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG20", - "filename": "HG02965-1_S1_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SL56", + "filename": "m54306Ue_220817_100412.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02965-1_S1_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG03470_PB1_m54306Ue_220817_100412_m54306Ue_220817_100412", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242391", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.611813", + "libraryStrategy": "WGS", + "max": "51522", + "mean": "25686", + "metadataAccession": "SRR30152005", + "min": "96", + "mmTag": true, + "n25": "21674", + "n50": "26831", + "n75": "33148", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/PacBio_HiFi/primrose/m54306Ue_220817_100412.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "19883", + "quartile50": "24417", + "quartile75": "30230", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02965", + "sampleId": "HG03470", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02965", - "totalBp": "10908367237", - "totalGbp": "10.908367237", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "38139494892", + "totalGbp": "38.14", + "totalReads": "1484828", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621954", - "assembly": null, + "accession": "SAMN37797110", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621954", - "ccsAlgorithm": "N/A", - "coverage": "3.61", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797110", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG20", - "filename": "HG02965-1_S1_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SL56", + "filename": "m54306Ue_220819_070258.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02965-1_S1_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG03470_PB1_m54306Ue_220819_070258_m54306Ue_220819_070258", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242390", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.594433", + "libraryStrategy": "WGS", + "max": "51534", + "mean": "25644", + "metadataAccession": "SRR30151960", + "min": "104", + "mmTag": true, + "n25": "21598", + "n50": "26821", + "n75": "33247", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/PacBio_HiFi/primrose/m54306Ue_220819_070258.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "19763", + "quartile50": "24349", + "quartile75": "30243", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02965", + "sampleId": "HG03470", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02965", - "totalBp": "11188624282", - "totalGbp": "11.188624282", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "45154689797", + "totalGbp": "45.15", + "totalReads": "1760828", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621954", - "assembly": null, + "accession": "SAMN37797104", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621954", - "ccsAlgorithm": "N/A", - "coverage": "3.61", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797104", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG20", - "filename": "HG02965-1_S1_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m54306Ue_220821_023435.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02965-1_S1_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG02391_PB1_m54306Ue_220821_023435_m54306Ue_220821_023435", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242390", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.588381", + "libraryStrategy": "WGS", + "max": "51847", + "mean": "24015", + "metadataAccession": "SRR30151937", + "min": "88", + "mmTag": true, + "n25": "20143", + "n50": "24968", + "n75": "30987", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/PacBio_HiFi/primrose/m54306Ue_220821_023435.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18550", + "quartile50": "22683", + "quartile75": "28174", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02965", + "sampleId": "HG02391", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02965", - "totalBp": "11187675916", - "totalGbp": "11.187675916", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "45855625550", + "totalGbp": "45.86", + "totalReads": "1909393", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621954", - "assembly": null, + "accession": "SAMN37797087", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621954", - "ccsAlgorithm": "N/A", - "coverage": "3.49", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797087", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG20", - "filename": "HG02965-1_S1_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m54306Ue_220902_172744.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02965-1_S1_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA19087_PB1_m54306Ue_220902_172744_m54306Ue_220902_172744", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242389", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.613123", + "libraryStrategy": "WGS", + "max": "51672", + "mean": "20569", + "metadataAccession": "SRR30151942", + "min": "194", + "mmTag": true, + "n25": "17571", + "n50": "20578", + "n75": "25009", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/PacBio_HiFi/primrose/m54306Ue_220902_172744.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16836", + "quartile50": "19341", + "quartile75": "23111", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02965", + "sampleId": "NA19087", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02965", - "totalBp": "10804113739", - "totalGbp": "10.804113739", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "46222507016", + "totalGbp": "46.22", + "totalReads": "2247170", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621954", - "assembly": null, + "accession": "SAMN37797089", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621954", - "ccsAlgorithm": "N/A", - "coverage": "3.48", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797089", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG20", - "filename": "HG02965-1_S1_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "Y056", + "filename": "m54306Ue_220907_175549.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02965-1_S1_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA19159_PB1_m54306Ue_220907_175549_m54306Ue_220907_175549", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242389", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.519883", + "libraryStrategy": "WGS", + "max": "51147", + "mean": "23508", + "metadataAccession": "SRR30151955", + "min": "149", + "mmTag": true, + "n25": "19953", + "n50": "23857", + "n75": "29002", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/PacBio_HiFi/primrose/m54306Ue_220907_175549.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18929", + "quartile50": "22239", + "quartile75": "26862", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02965", + "sampleId": "NA19159", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "YRI", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02965", - "totalBp": "10803222671", - "totalGbp": "10.803222671", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "46232897055", + "totalGbp": "46.23", + "totalReads": "1966632", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621954", - "assembly": null, + "accession": "SAMN37797094", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621954", - "ccsAlgorithm": "N/A", - "coverage": "3.56", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797094", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG20", - "filename": "HG02965-1_S1_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m54306Ue_220920_181216.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02965-1_S1_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA20799_PB1_m54306Ue_220920_181216_m54306Ue_220920_181216", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242388", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.601814", + "libraryStrategy": "WGS", + "max": "50956", + "mean": "22964", + "metadataAccession": "SRR30151949", + "min": "158", + "mmTag": true, + "n25": "19374", + "n50": "23540", + "n75": "28841", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/primrose/m54306Ue_220920_181216.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18152", + "quartile50": "21713", + "quartile75": "26511", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02965", + "sampleId": "NA20799", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "TSI", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02965", - "totalBp": "11042916113", - "totalGbp": "11.042916113", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "35581760637", + "totalGbp": "35.58", + "totalReads": "1549427", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621954", - "assembly": null, + "accession": "SAMN37797094", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621954", - "ccsAlgorithm": "N/A", - "coverage": "3.56", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797094", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG20", - "filename": "HG02965-1_S1_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m54306Ue_220922_132103.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02965-1_S1_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA20799_PB1_m54306Ue_220922_132103_m54306Ue_220922_132103", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242388", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.576679", + "libraryStrategy": "WGS", + "max": "50995", + "mean": "22921", + "metadataAccession": "SRR30151948", + "min": "360", + "mmTag": true, + "n25": "19341", + "n50": "23513", + "n75": "28801", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/primrose/m54306Ue_220922_132103.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18114", + "quartile50": "21678", + "quartile75": "26484", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02965", + "sampleId": "NA20799", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "TSI", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02965", - "totalBp": "11042022598", - "totalGbp": "11.042022598", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "33578377768", + "totalGbp": "33.58", + "totalReads": "1464951", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621954", - "assembly": null, + "accession": "SAMN37797093", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621954", - "ccsAlgorithm": "N/A", - "coverage": "3.1", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797093", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG20", - "filename": "HG02965-2_S9_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m54306Ue_220927_182256.demultiplex.bc1008--bc1008.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02965-2_S9_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA19468_PB1_m54306Ue_220927_182256_m54306Ue_220927_182256", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242387", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.617718", + "libraryStrategy": "WGS", + "max": "51751", + "mean": "24769", + "metadataAccession": "SRR30151934", + "min": "127", + "mmTag": true, + "n25": "20784", + "n50": "25526", + "n75": "31682", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/primrose/m54306Ue_220927_182256.demultiplex.bc1008--bc1008.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "19326", + "quartile50": "23325", + "quartile75": "28833", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02965", + "sampleId": "NA19468", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "LWK", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02965", - "totalBp": "9617944611", - "totalGbp": "9.617944611", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "16691743838", + "totalGbp": "16.69", + "totalReads": "673872", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621954", - "assembly": null, + "accession": "SAMN37797094", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621954", - "ccsAlgorithm": "N/A", - "coverage": "3.1", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797094", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG20", - "filename": "HG02965-2_S9_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m54306Ue_220927_182256.demultiplex.bc1018--bc1018.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02965-2_S9_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA20799_PB1_m54306Ue_220927_182256_m54306Ue_220927_182256", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242387", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.591012", + "libraryStrategy": "WGS", + "max": "51136", + "mean": "22156", + "metadataAccession": "SRR30151947", + "min": "774", + "mmTag": true, + "n25": "18704", + "n50": "22598", + "n75": "27683", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/primrose/m54306Ue_220927_182256.demultiplex.bc1018--bc1018.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17614", + "quartile50": "20895", + "quartile75": "25431", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02965", + "sampleId": "NA20799", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "TSI", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02965", - "totalBp": "9617317510", - "totalGbp": "9.61731751", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "17947625220", + "totalGbp": "17.95", + "totalReads": "810053", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621954", - "assembly": null, + "accession": "SAMN33758795", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621954", - "ccsAlgorithm": "N/A", - "coverage": "3.18", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758795", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG20", - "filename": "HG02965-2_S9_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 26kb fractionated gDNA", + "familyId": "PK60", + "filename": "m54329U_211105_213234-bc1001.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02965-2_S9_L002", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03704_SRE.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242386", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.576885", + "libraryStrategy": "WGS", + "max": "61181", + "mean": "20735", + "metadataAccession": "SRR23922655", + "min": "493", + "mmTag": true, + "n25": "17908", + "n50": "20760", + "n75": "24604", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m54329U_211105_213234-bc1001.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17290", + "quartile50": "19755", + "quartile75": "23225", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02965", + "sampleId": "HG03704", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02965", - "totalBp": "9855703706", - "totalGbp": "9.855703706", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "25139477214", + "totalGbp": "25.14", + "totalReads": "1212386", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621954", - "assembly": null, + "accession": "SAMN33758787", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621954", - "ccsAlgorithm": "N/A", - "coverage": "3.18", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758787", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG20", - "filename": "HG02965-2_S9_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "PK26", + "filename": "m54329U_211109_002533-bc1002.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02965-2_S9_L002", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02735_SRE.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242386", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.621251", + "libraryStrategy": "WGS", + "max": "55937", + "mean": "19329", + "metadataAccession": "SRR23922666", + "min": "120", + "mmTag": true, + "n25": "16796", + "n50": "19279", + "n75": "22705", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m54329U_211109_002533-bc1002.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16296", + "quartile50": "18426", + "quartile75": "21500", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02965", + "sampleId": "HG02735", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02965", - "totalBp": "9854880335", - "totalGbp": "9.854880335", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "11815933021", + "totalGbp": "11.82", + "totalReads": "611305", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621954", - "assembly": null, + "accession": "SAMN33758782", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621954", - "ccsAlgorithm": "N/A", - "coverage": "3.06", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758782", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG20", - "filename": "HG02965-2_S9_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": "PR18", + "filename": "m54329U_211110_112322-bc1008.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02965-2_S9_L003", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG01074_SRE.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242385", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.606758", + "libraryStrategy": "WGS", + "max": "61655", + "mean": "21008", + "metadataAccession": "SRR23922644", + "min": "139", + "mmTag": true, + "n25": "18146", + "n50": "21004", + "n75": "24897", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m54329U_211110_112322-bc1008.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17537", + "quartile50": "19990", + "quartile75": "23484", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02965", + "sampleId": "HG01074", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02965", - "totalBp": "9483522303", - "totalGbp": "9.483522303", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "15230826716", + "totalGbp": "15.23", + "totalReads": "724982", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621954", - "assembly": null, + "accession": "SAMN33758795", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621954", - "ccsAlgorithm": "N/A", - "coverage": "3.06", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758795", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG20", - "filename": "HG02965-2_S9_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 26kb fractionated gDNA", + "familyId": "PK60", + "filename": "m54329U_211111_222027-bc1001.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02965-2_S9_L003", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03704_SRE.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242385", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.581478", + "libraryStrategy": "WGS", + "max": "67087", + "mean": "20659", + "metadataAccession": "SRR23922655", + "min": "727", + "mmTag": true, + "n25": "17853", + "n50": "20671", + "n75": "24461", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m54329U_211111_222027-bc1001.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17248", + "quartile50": "19681", + "quartile75": "23109", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02965", + "sampleId": "HG03704", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02965", - "totalBp": "9482716711", - "totalGbp": "9.482716711", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "20852506753", + "totalGbp": "20.85", + "totalReads": "1009358", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621954", - "assembly": null, + "accession": "SAMN33758787", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621954", - "ccsAlgorithm": "N/A", - "coverage": "3.13", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758787", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG20", - "filename": "HG02965-2_S9_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": "PK26", + "filename": "m54329U_211204_121716-bc1002.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02965-2_S9_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02735.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242384", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.606566", + "libraryStrategy": "WGS", + "max": "57951", + "mean": "19522", + "metadataAccession": "SRR23922665", + "min": "55", + "mmTag": true, + "n25": "16940", + "n50": "19656", + "n75": "23239", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m54329U_211204_121716-bc1002.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16317", + "quartile50": "18697", + "quartile75": "21974", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02965", + "sampleId": "HG02735", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02965", - "totalBp": "9692742184", - "totalGbp": "9.692742184", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "31721863148", + "totalGbp": "31.72", + "totalReads": "1624922", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621954", - "assembly": null, + "accession": "SAMN33758782", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621954", - "ccsAlgorithm": "N/A", - "coverage": "3.13", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758782", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG20", - "filename": "HG02965-2_S9_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "PR18", + "filename": "m54329U_211208_005551-bc1008.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02965-2_S9_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG01074.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242384", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.59662", + "libraryStrategy": "WGS", + "max": "53902", + "mean": "19049", + "metadataAccession": "SRR23922645", + "min": "200", + "mmTag": true, + "n25": "16436", + "n50": "19215", + "n75": "22858", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m54329U_211208_005551-bc1008.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15785", + "quartile50": "18197", + "quartile75": "21525", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02965", + "sampleId": "HG01074", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02965", - "totalBp": "9691974613", - "totalGbp": "9.691974613", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "34933587178", + "totalGbp": "34.93", + "totalReads": "1833869", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758787", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "4.39", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758787", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-1_S6_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": "PK26", + "filename": "m54329U_211209_115915-bc1002.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-1_S6_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02735.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242382", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.5947", + "libraryStrategy": "WGS", + "max": "62313", + "mean": "19615", + "metadataAccession": "SRR23922665", + "min": "53", + "mmTag": true, + "n25": "17011", + "n50": "19773", + "n75": "23407", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m54329U_211209_115915-bc1002.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16371", + "quartile50": "18792", + "quartile75": "22115", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG02735", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "13615945405", - "totalGbp": "13.615945405", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "32462661287", + "totalGbp": "32.46", + "totalReads": "1654923", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758782", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "4.39", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758782", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-1_S6_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "PR18", + "filename": "m54329U_211211_014820-bc1008.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-1_S6_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG01074.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242382", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.592511", + "libraryStrategy": "WGS", + "max": "61840", + "mean": "19128", + "metadataAccession": "SRR23922645", + "min": "139", + "mmTag": true, + "n25": "16493", + "n50": "19304", + "n75": "22988", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m54329U_211211_014820-bc1008.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15826", + "quartile50": "18266", + "quartile75": "21628", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG01074", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "13615192282", - "totalGbp": "13.615192282", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "37481785263", + "totalGbp": "37.48", + "totalReads": "1959425", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758782", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "4.46", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758782", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-1_S6_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "PR18", + "filename": "m54329U_211212_111219-bc1008.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-1_S6_L002", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG01074.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242381", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.571247", + "libraryStrategy": "WGS", + "max": "57471", + "mean": "19180", + "metadataAccession": "SRR23922645", + "min": "112", + "mmTag": true, + "n25": "16537", + "n50": "19364", + "n75": "23063", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m54329U_211212_111219-bc1008.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15858", + "quartile50": "18322", + "quartile75": "21695", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG01074", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "13833717712", - "totalGbp": "13.833717712", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "37561501658", + "totalGbp": "37.56", + "totalReads": "1958351", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758790", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "4.46", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758790", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-1_S6_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "GB110", + "filename": "m54329U_211214_012740-bc1009.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-1_S6_L002", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03041.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242381", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.549554", + "libraryStrategy": "WGS", + "max": "54806", + "mean": "19306", + "metadataAccession": "SRR23922661", + "min": "122", + "mmTag": true, + "n25": "16610", + "n50": "19602", + "n75": "23411", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m54329U_211214_012740-bc1009.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15843", + "quartile50": "18462", + "quartile75": "21965", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG03041", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "GWD", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "13833181288", - "totalGbp": "13.833181288", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "38046233336", + "totalGbp": "38.05", + "totalReads": "1970604", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758790", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "4.24", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758790", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-1_S6_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "GB110", + "filename": "m54329U_211215_225017-bc1009.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-1_S6_L003", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03041.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242380", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.54991", + "libraryStrategy": "WGS", + "max": "56131", + "mean": "19439", + "metadataAccession": "SRR23922661", + "min": "118", + "mmTag": true, + "n25": "16724", + "n50": "19757", + "n75": "23596", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m54329U_211215_225017-bc1009.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15931", + "quartile50": "18603", + "quartile75": "22146", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG03041", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "GWD", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "13135668935", - "totalGbp": "13.135668935", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "36724761349", + "totalGbp": "36.72", + "totalReads": "1889210", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758790", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "4.24", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758790", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-1_S6_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "GB110", + "filename": "m54329U_211217_080751-bc1009.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-1_S6_L003", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03041.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242380", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.568814", + "libraryStrategy": "WGS", + "max": "58287", + "mean": "19356", + "metadataAccession": "SRR23922661", + "min": "117", + "mmTag": true, + "n25": "16644", + "n50": "19654", + "n75": "23489", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m54329U_211217_080751-bc1009.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15871", + "quartile50": "18510", + "quartile75": "22035", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG03041", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "GWD", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "13135049409", - "totalGbp": "13.135049409", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "37659966853", + "totalGbp": "37.66", + "totalReads": "1945591", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758781", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "4.2", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758781", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-1_S6_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "PR03", + "filename": "m54329U_211222_104516-bc1010.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-1_S6_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00639.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242379", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.615965", + "libraryStrategy": "WGS", + "max": "64002", + "mean": "19762", + "metadataAccession": "SRR23922643", + "min": "79", + "mmTag": true, + "n25": "16931", + "n50": "20504", + "n75": "24966", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/m54329U_211222_104516-bc1010.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15750", + "quartile50": "18909", + "quartile75": "22999", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG00639", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "13006089425", - "totalGbp": "13.006089425", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "30157424611", + "totalGbp": "30.16", + "totalReads": "1525960", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758783", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "4.2", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758783", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-1_S6_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": "PR21", + "filename": "m54329U_211223_214216-bc1011.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-1_S6_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG01081.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242379", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.578165", + "libraryStrategy": "WGS", + "max": "58991", + "mean": "19422", + "metadataAccession": "SRR23922647", + "min": "61", + "mmTag": true, + "n25": "16588", + "n50": "20463", + "n75": "25067", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/m54329U_211223_214216-bc1011.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15137", + "quartile50": "18626", + "quartile75": "22945", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG01081", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "13005431684", - "totalGbp": "13.005431684", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "34516634519", + "totalGbp": "34.52", + "totalReads": "1777187", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758789", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "3.94", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758789", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-2_S14_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": "PK35", + "filename": "m54329U_211225_070909-bc1012.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-2_S14_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03017.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242378", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.587759", + "libraryStrategy": "WGS", + "max": "64185", + "mean": "19500", + "metadataAccession": "SRR23922662", + "min": "61", + "mmTag": true, + "n25": "16617", + "n50": "20225", + "n75": "24689", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m54329U_211225_070909-bc1012.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15437", + "quartile50": "18613", + "quartile75": "22719", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG03017", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "12202402986", - "totalGbp": "12.202402986", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "34046953548", + "totalGbp": "34.05", + "totalReads": "1745970", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758781", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "3.94", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758781", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-2_S14_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "PR03", + "filename": "m54329U_211230_014258-bc1010.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-2_S14_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00639.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242378", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.589188", + "libraryStrategy": "WGS", + "max": "56516", + "mean": "19943", + "metadataAccession": "SRR23922643", + "min": "61", + "mmTag": true, + "n25": "17062", + "n50": "20664", + "n75": "25118", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/m54329U_211230_014258-bc1010.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15883", + "quartile50": "19084", + "quartile75": "23193", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG00639", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "12201618883", - "totalGbp": "12.201618883", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "32778391595", + "totalGbp": "32.78", + "totalReads": "1643577", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758781", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "4", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758781", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-2_S14_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "PR03", + "filename": "m54329U_211231_123903-bc1010.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-2_S14_L002", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00639.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242377", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.611986", + "libraryStrategy": "WGS", + "max": "61767", + "mean": "20150", + "metadataAccession": "SRR23922643", + "min": "118", + "mmTag": true, + "n25": "17196", + "n50": "20876", + "n75": "25416", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/m54329U_211231_123903-bc1010.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15989", + "quartile50": "19255", + "quartile75": "23451", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG00639", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "12415186534", - "totalGbp": "12.415186534", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "37535814568", + "totalGbp": "37.54", + "totalReads": "1862777", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758783", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "4", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758783", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-2_S14_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": "PR21", + "filename": "m54329U_220101_220852-bc1011.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-2_S14_L002", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG01081.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242377", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.572139", + "libraryStrategy": "WGS", + "max": "66384", + "mean": "19615", + "metadataAccession": "SRR23922647", + "min": "72", + "mmTag": true, + "n25": "16724", + "n50": "20665", + "n75": "25307", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/m54329U_220101_220852-bc1011.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15259", + "quartile50": "18807", + "quartile75": "23180", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG01081", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "12414632826", - "totalGbp": "12.414632826", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "38127675820", + "totalGbp": "38.13", + "totalReads": "1943784", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758783", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "4", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758783", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-2_S14_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": "PR21", + "filename": "m54329U_220103_072943-bc1011.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-2_S14_L003", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG01081.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242376", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.59877", + "libraryStrategy": "WGS", + "max": "70984", + "mean": "19600", + "metadataAccession": "SRR23922647", + "min": "62", + "mmTag": true, + "n25": "16723", + "n50": "20642", + "n75": "25280", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/m54329U_220103_072943-bc1011.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15254", + "quartile50": "18803", + "quartile75": "23168", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG01081", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "12414356855", - "totalGbp": "12.414356855", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "35477098664", + "totalGbp": "35.48", + "totalReads": "1809964", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758794", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "4", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758794", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-2_S14_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "PK41", + "filename": "m54329U_220105_011819-bc1015.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-2_S14_L003", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03239.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242376", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.575913", + "libraryStrategy": "WGS", + "max": "62749", + "mean": "20108", + "metadataAccession": "SRR23922656", + "min": "136", + "mmTag": true, + "n25": "17274", + "n50": "20592", + "n75": "24716", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/m54329U_220105_011819-bc1015.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16345", + "quartile50": "19264", + "quartile75": "23104", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG03239", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "12413702363", - "totalGbp": "12.413702363", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "35760461752", + "totalGbp": "35.76", + "totalReads": "1778411", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758780", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "3.85", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758780", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-2_S14_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "SH045", + "filename": "m54329U_220107_233847-bc1016.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-2_S14_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00558.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242375", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.580856", + "libraryStrategy": "WGS", + "max": "60416", + "mean": "21059", + "metadataAccession": "SRR23922640", + "min": "61", + "mmTag": true, + "n25": "17870", + "n50": "21746", + "n75": "26503", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m54329U_220107_233847-bc1016.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16632", + "quartile50": "20068", + "quartile75": "24477", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG00558", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "11921734213", - "totalGbp": "11.921734213", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "33821381595", + "totalGbp": "33.82", + "totalReads": "1605959", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758789", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "3.85", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758789", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-2_S14_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": "PK35", + "filename": "m54329U_220109_103416-bc1012.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-2_S14_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03017.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242375", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.574769", + "libraryStrategy": "WGS", + "max": "61362", + "mean": "20013", + "metadataAccession": "SRR23922662", + "min": "61", + "mmTag": true, + "n25": "16992", + "n50": "20799", + "n75": "25417", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m54329U_220109_103416-bc1012.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15745", + "quartile50": "19090", + "quartile75": "23391", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG03017", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "11921026808", - "totalGbp": "11.921026808", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "31400943238", + "totalGbp": "31.4", + "totalReads": "1569013", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758780", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "9.05", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758780", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-2_S14i_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "SH045", + "filename": "m54329U_220114_143904-bc1016.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-2_S14i_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00558.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242374", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.49904", + "libraryStrategy": "WGS", + "max": "67560", + "mean": "21101", + "metadataAccession": "SRR23922640", + "min": "61", + "mmTag": true, + "n25": "17911", + "n50": "21795", + "n75": "26553", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m54329U_220114_143904-bc1016.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16663", + "quartile50": "20114", + "quartile75": "24516", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG00558", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "28058254078", - "totalGbp": "28.058254078", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "35323811810", + "totalGbp": "35.32", + "totalReads": "1673999", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758780", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "9.05", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758780", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-2_S14i_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "SH045", + "filename": "m54329U_220116_013607-bc1016.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-2_S14i_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00558.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242374", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.494608", + "libraryStrategy": "WGS", + "max": "56168", + "mean": "21008", + "metadataAccession": "SRR23922640", + "min": "60", + "mmTag": true, + "n25": "17832", + "n50": "21688", + "n75": "26407", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m54329U_220116_013607-bc1016.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16605", + "quartile50": "20020", + "quartile75": "24384", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG00558", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "28056392408", - "totalGbp": "28.056392408", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "33954147643", + "totalGbp": "33.95", + "totalReads": "1616247", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758789", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "9.2", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758789", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-2_S14i_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": "PK35", + "filename": "m54329U_220117_123334-bc1012.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-2_S14i_L002", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03017.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242373", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.495795", + "libraryStrategy": "WGS", + "max": "67494", + "mean": "19961", + "metadataAccession": "SRR23922662", + "min": "52", + "mmTag": true, + "n25": "16960", + "n50": "20748", + "n75": "25330", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m54329U_220117_123334-bc1012.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15714", + "quartile50": "19049", + "quartile75": "23321", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG03017", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "28508736738", - "totalGbp": "28.508736738", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "28780552619", + "totalGbp": "28.78", + "totalReads": "1441796", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758795", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "9.2", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758795", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-2_S14i_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": "PK60", + "filename": "m54329U_220203_054640-bc1001.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-2_S14i_L002", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03704.HFSS3", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242373", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.471465", + "libraryStrategy": "WGS", + "max": "64236", + "mean": "19805", + "metadataAccession": "SRR23922654", + "min": "77", + "mmTag": true, + "n25": "16931", + "n50": "20064", + "n75": "24078", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m54329U_220203_054640-bc1001.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16127", + "quartile50": "18857", + "quartile75": "22528", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG03704", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "28507899595", - "totalGbp": "28.507899595", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "15515677051", + "totalGbp": "15.52", + "totalReads": "783402", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758795", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "8.01", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758795", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-2_S14i_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "PK60", + "filename": "m54329U_220203_054640-bc1018.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-2_S14i_L003", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03704.HFSS4", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242371", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.513093", + "libraryStrategy": "WGS", + "max": "48616", + "mean": "19289", + "metadataAccession": "SRR23922653", + "min": "61", + "mmTag": true, + "n25": "16754", + "n50": "19296", + "n75": "22712", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m54329U_220203_054640-bc1018.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16218", + "quartile50": "18426", + "quartile75": "21504", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG03704", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "24826749519", - "totalGbp": "24.826749519", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "4818202256", + "totalGbp": "4.82", + "totalReads": "249779", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758795", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "8.01", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758795", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-2_S14i_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": "PK60", + "filename": "m54329U_220207_224702-bc1001.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-2_S14i_L003", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03704.HFSS3", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242371", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.517213", + "libraryStrategy": "WGS", + "max": "63954", + "mean": "19930", + "metadataAccession": "SRR23922654", + "min": "65", + "mmTag": true, + "n25": "17016", + "n50": "20217", + "n75": "24294", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m54329U_220207_224702-bc1001.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16192", + "quartile50": "18974", + "quartile75": "22705", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG03704", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "24826011545", - "totalGbp": "24.826011545", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "27431572003", + "totalGbp": "27.43", + "totalReads": "1376378", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758792", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "6.8", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758792", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-2_S14i_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": null, + "filename": "m54329U_220519_225150-bc2019.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-2_S14i_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03139.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242370", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.537468", + "libraryStrategy": "WGS", + "max": "69263", + "mean": "21306", + "metadataAccession": "SRR23922659", + "min": "81", + "mmTag": true, + "n25": "18311", + "n50": "21741", + "n75": "25979", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/m54329U_220519_225150-bc2019.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17377", + "quartile50": "20423", + "quartile75": "24372", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG03139", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "21083832226", - "totalGbp": "21.083832226", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "39824520384", + "totalGbp": "39.82", + "totalReads": "1869144", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621955", - "assembly": null, + "accession": "SAMN33758792", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621955", - "ccsAlgorithm": "N/A", - "coverage": "6.8", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758792", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG24", - "filename": "HG02976-2_S14i_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": null, + "filename": "m54329U_220523_155616-bc2019.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02976-2_S14i_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03139.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242370", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.529189", + "libraryStrategy": "WGS", + "max": "69240", + "mean": "21547", + "metadataAccession": "SRR23922659", + "min": "87", + "mmTag": true, + "n25": "18531", + "n50": "22043", + "n75": "26312", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/m54329U_220523_155616-bc2019.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17554", + "quartile50": "20687", + "quartile75": "24701", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02976", + "sampleId": "HG03139", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02976", - "totalBp": "21083129517", - "totalGbp": "21.083129517", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "45152468620", + "totalGbp": "45.15", + "totalReads": "2095470", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797107", - "assembly": null, + "accession": "SAMN33758792", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797107", - "ccsAlgorithm": "N/A", - "coverage": "10.84", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758792", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "GB97", - "filename": "HG02984-1_S6_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": null, + "filename": "m54329U_220525_111437-bc2019.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02984-1_S6_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03139.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310823", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.450685", + "libraryStrategy": "WGS", + "max": "66085", + "mean": "21499", + "metadataAccession": "SRR23922659", + "min": "90", + "mmTag": true, + "n25": "18495", + "n50": "21985", + "n75": "26234", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/m54329U_220525_111437-bc2019.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17524", + "quartile50": "20644", + "quartile75": "24640", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02984", + "sampleId": "HG03139", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "GWD", + "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02984", - "totalBp": "33601463750", - "totalGbp": "33.60146375", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "43172373160", + "totalGbp": "43.17", + "totalReads": "2008028", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797107", - "assembly": null, + "accession": "SAMN33758796", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797107", - "ccsAlgorithm": "N/A", - "coverage": "9.71", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758796", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "GB97", - "filename": "HG02984-2_S6_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "Y016", + "filename": "m54329U_220604_002013-bc2021.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG02984-2_S6_L002", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "NA18522.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310822", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.466494", + "libraryStrategy": "WGS", + "max": "62801", + "mean": "20434", + "metadataAccession": "SRR23922652", + "min": "89", + "mmTag": true, + "n25": "17705", + "n50": "20717", + "n75": "24537", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/m54329U_220604_002013-bc2021.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16965", + "quartile50": "19634", + "quartile75": "23192", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02984", + "sampleId": "NA18522", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "GWD", + "subpopulation": "YRI", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG02984", - "totalBp": "30110076480", - "totalGbp": "30.11007648", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "41706367952", + "totalGbp": "41.71", + "totalReads": "2040973", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758789", - "assembly": null, + "accession": "SAMN33758796", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758789", - "ccsAlgorithm": "N/A", - "coverage": "28.12", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758796", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PK35", - "filename": "HG03017-1_S3_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "Y016", + "filename": "m54329U_220605_194957-bc2021.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03017-1_S3_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "NA18522.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310844", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.4146", + "libraryStrategy": "WGS", + "max": "57002", + "mean": "20386", + "metadataAccession": "SRR23922652", + "min": "89", + "mmTag": true, + "n25": "17666", + "n50": "20663", + "n75": "24465", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/m54329U_220605_194957-bc2021.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16934", + "quartile50": "19589", + "quartile75": "23129", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03017", + "sampleId": "NA18522", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "YRI", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03017", - "totalBp": "87156808155", - "totalGbp": "87.156808155", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "42511152283", + "totalGbp": "42.51", + "totalReads": "2085214", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758789", - "assembly": null, + "accession": "SAMN33758796", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758789", - "ccsAlgorithm": "N/A", - "coverage": "27.86", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758796", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PK35", - "filename": "HG03017-2_S4_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "Y016", + "filename": "m54329U_220607_194753-bc2021.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03017-2_S4_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "NA18522.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310843", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.37944", + "libraryStrategy": "WGS", + "max": "69031", + "mean": "20210", + "metadataAccession": "SRR23922652", + "min": "69", + "mmTag": true, + "n25": "17488", + "n50": "20454", + "n75": "24255", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/m54329U_220607_194753-bc2021.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16774", + "quartile50": "19386", + "quartile75": "22898", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03017", + "sampleId": "NA18522", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "YRI", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03017", - "totalBp": "86375269452", - "totalGbp": "86.375269452", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "46372792364", + "totalGbp": "46.37", + "totalReads": "2294482", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758790", - "assembly": null, + "accession": "SAMN33758788", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758790", - "ccsAlgorithm": "N/A", - "coverage": "8.3", - "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "GB110", - "filename": "HG03041-1_S3_L001_R1_001.fastq.gz", - "filetype": "fastq", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", + "dataType": "unaligned reads", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "NG06", + "filename": "m54329U_220816_182601-bc2045.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03041-1_S3_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG02922.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310842", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.496384", + "libraryStrategy": "WGS", + "max": "48799", + "mean": "18233", + "metadataAccession": "SRR23922664", + "min": "141", + "mmTag": true, + "n25": "15986", + "n50": "18264", + "n75": "21324", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m54329U_220816_182601-bc2045.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15504", + "quartile50": "17513", + "quartile75": "20303", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03041", + "sampleId": "HG02922", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "GWD", + "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03041", - "totalBp": "25740160036", - "totalGbp": "25.740160036", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "19937213389", + "totalGbp": "19.94", + "totalReads": "1093416", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758790", - "assembly": null, + "accession": "SAMN33758797", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758790", - "ccsAlgorithm": "N/A", - "coverage": "8.75", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758797", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "GB110", - "filename": "HG03041-2_S7_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": null, + "filename": "m54329U_220823_191353-bc2011.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03041-2_S7_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG18747_1.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310841", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.492089", + "libraryStrategy": "WGS", + "max": "62402", + "mean": "20063", + "metadataAccession": "SRR23922651", + "min": "53", + "mmTag": true, + "n25": "17771", + "n50": "20172", + "n75": "23299", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/m54329U_220823_191353-bc2011.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17271", + "quartile50": "19431", + "quartile75": "22353", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03041", + "sampleId": "NA18747", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03041", - "totalBp": "27119442356", - "totalGbp": "27.119442356", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "44479802984", + "totalGbp": "44.48", + "totalReads": "2216924", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797108", - "assembly": "unaligned", + "accession": "SAMN33758778", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797108", - "ccsAlgorithm": "N/A", - "coverage": "60.68", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758778", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "GB113", - "filename": "HG03050-1_S2_L001_R1_001.fastq.gz", - "filetype": "bam", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m54329U_220825_174247-bc2012.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03050-1_S2_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG00099_1.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310840", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.423403", + "libraryStrategy": "WGS", + "max": "64390", + "mean": "20844", + "metadataAccession": "SRR23922670", + "min": "87", + "mmTag": true, + "n25": "18329", + "n50": "20991", + "n75": "24424", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/PacBio_HiFi/m54329U_220825_174247-bc2012.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17755", + "quartile50": "20124", + "quartile75": "23333", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03050", + "sampleId": "HG00099", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03050", - "totalBp": "188117962773", - "totalGbp": "188.117962773", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "47677590021", + "totalGbp": "47.68", + "totalReads": "2287312", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797108", - "assembly": null, + "accession": "SAMN33758778", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797108", - "ccsAlgorithm": "N/A", - "coverage": "11.69", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758778", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "GB113", - "filename": "HG03050-2_S6_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": null, + "filename": "m54329U_220827_143814-bc2050.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03050-2_S6_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG00099_2.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310839", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.476047", + "libraryStrategy": "WGS", + "max": "54052", + "mean": "19996", + "metadataAccession": "SRR23922669", + "min": "52", + "mmTag": true, + "n25": "17720", + "n50": "20026", + "n75": "23102", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/PacBio_HiFi/m54329U_220827_143814-bc2050.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17274", + "quartile50": "19325", + "quartile75": "22189", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03050", + "sampleId": "HG00099", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03050", - "totalBp": "36254239904", - "totalGbp": "36.254239904", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "45528316868", + "totalGbp": "45.53", + "totalReads": "2276772", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758791", - "assembly": null, + "accession": "SAMN33758778", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758791", - "ccsAlgorithm": "N/A", - "coverage": "4.35", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758778", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG36", - "filename": "HG03130-1_S5_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": null, + "filename": "m54329U_220829_095708-bc2050.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03130-1_S5_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG00099_2.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242369", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.574426", + "libraryStrategy": "WGS", + "max": "59908", + "mean": "20052", + "metadataAccession": "SRR23922669", + "min": "138", + "mmTag": true, + "n25": "17765", + "n50": "20098", + "n75": "23193", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/PacBio_HiFi/m54329U_220829_095708-bc2050.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17309", + "quartile50": "19387", + "quartile75": "22273", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03130", + "sampleId": "HG00099", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03130", - "totalBp": "13499572647", - "totalGbp": "13.499572647", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "50762698477", + "totalGbp": "50.76", + "totalReads": "2531476", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758791", - "assembly": null, + "accession": "SAMN33758779", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758791", - "ccsAlgorithm": "N/A", - "coverage": "4.35", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758779", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG36", - "filename": "HG03130-1_S5_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": null, + "filename": "m54329U_220901_221341-bc2051.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03130-1_S5_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG00280.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242369", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.513182", + "libraryStrategy": "WGS", + "max": "57069", + "mean": "19893", + "metadataAccession": "SRR23922658", + "min": "87", + "mmTag": true, + "n25": "17461", + "n50": "19906", + "n75": "23180", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/PacBio_HiFi/m54329U_220901_221341-bc2051.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16982", + "quartile50": "19131", + "quartile75": "22147", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03130", + "sampleId": "HG00280", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03130", - "totalBp": "13498735238", - "totalGbp": "13.498735238", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "47176915770", + "totalGbp": "47.18", + "totalReads": "2371461", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758791", - "assembly": null, + "accession": "SAMN33758788", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758791", - "ccsAlgorithm": "N/A", - "coverage": "4.47", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG36", - "filename": "HG03130-1_S5_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "NG06", + "filename": "m54329U_220903_190900-bc2053.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03130-1_S5_L002", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG02922.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242368", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.569608", + "libraryStrategy": "WGS", + "max": "76923", + "mean": "22047", + "metadataAccession": "SRR23922663", + "min": "110", + "mmTag": true, + "n25": "18975", + "n50": "22556", + "n75": "26969", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m54329U_220903_190900-bc2053.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17970", + "quartile50": "21163", + "quartile75": "25288", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03130", + "sampleId": "HG02922", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03130", - "totalBp": "13860885604", - "totalGbp": "13.860885604", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "43896414378", + "totalGbp": "43.9", + "totalReads": "1990977", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758791", - "assembly": null, + "accession": "SAMN33758798", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758791", - "ccsAlgorithm": "N/A", - "coverage": "4.47", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758798", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG36", - "filename": "HG03130-1_S5_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": null, + "filename": "m54329U_220903_190900-bc2055.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03130-1_S5_L002", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG18983.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242368", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.541266", + "libraryStrategy": "WGS", + "max": "33909", + "mean": "15264", + "metadataAccession": "SRR23922649", + "min": "1468", + "mmTag": true, + "n25": "14632", + "n50": "18402", + "n75": "22221", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m54329U_220903_190900-bc2055.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "10464", + "quartile50": "15809", + "quartile75": "19988", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03130", + "sampleId": "NA18983", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03130", - "totalBp": "13859849667", - "totalGbp": "13.859849667", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "72199804", + "totalGbp": "0.07", + "totalReads": "4730", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758791", - "assembly": null, + "accession": "SAMN33758788", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758791", - "ccsAlgorithm": "N/A", - "coverage": "4.25", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG36", - "filename": "HG03130-1_S5_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "NG06", + "filename": "m54329U_220905_144015-bc2053.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03130-1_S5_L003", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG02922.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242367", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.573949", + "libraryStrategy": "WGS", + "max": "68274", + "mean": "22119", + "metadataAccession": "SRR23922663", + "min": "106", + "mmTag": true, + "n25": "19050", + "n50": "22658", + "n75": "27045", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m54329U_220905_144015-bc2053.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18030", + "quartile50": "21258", + "quartile75": "25382", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03130", + "sampleId": "HG02922", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03130", - "totalBp": "13167995623", - "totalGbp": "13.167995623", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "46375666417", + "totalGbp": "46.38", + "totalReads": "2096626", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758791", - "assembly": null, + "accession": "SAMN33758798", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758791", - "ccsAlgorithm": "N/A", - "coverage": "4.25", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758798", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG36", - "filename": "HG03130-1_S5_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": null, + "filename": "m54329U_220905_144015-bc2055.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03130-1_S5_L003", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG18983.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242367", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.512745", + "libraryStrategy": "WGS", + "max": "34905", + "mean": "15906", + "metadataAccession": "SRR23922649", + "min": "1528", + "mmTag": true, + "n25": "14885", + "n50": "18612", + "n75": "22626", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m54329U_220905_144015-bc2055.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "11550", + "quartile50": "16246", + "quartile75": "20407", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03130", + "sampleId": "NA18983", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03130", - "totalBp": "13167045749", - "totalGbp": "13.167045749", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "77255780", + "totalGbp": "0.08", + "totalReads": "4857", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758791", - "assembly": null, + "accession": "SAMN33758788", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758791", - "ccsAlgorithm": "N/A", - "coverage": "4.36", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG36", - "filename": "HG03130-1_S5_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "NG06", + "filename": "m54329U_220907_100858-bc2053.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03130-1_S5_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG02922.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242359", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.557848", + "libraryStrategy": "WGS", + "max": "79328", + "mean": "22118", + "metadataAccession": "SRR23922663", + "min": "62", + "mmTag": true, + "n25": "19046", + "n50": "22651", + "n75": "27039", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m54329U_220907_100858-bc2053.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18032", + "quartile50": "21258", + "quartile75": "25381", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03130", + "sampleId": "HG02922", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03130", - "totalBp": "13524884287", - "totalGbp": "13.524884287", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "44475348827", + "totalGbp": "44.48", + "totalReads": "2010767", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758791", - "assembly": null, + "accession": "SAMN33758798", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758791", - "ccsAlgorithm": "N/A", - "coverage": "4.36", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758798", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG36", - "filename": "HG03130-1_S5_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": null, + "filename": "m54329U_220907_100858-bc2055.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03130-1_S5_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG18983.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242359", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.559787", + "libraryStrategy": "WGS", + "max": "35951", + "mean": "16025", + "metadataAccession": "SRR23922649", + "min": "1389", + "mmTag": true, + "n25": "14998", + "n50": "18874", + "n75": "22950", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m54329U_220907_100858-bc2055.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "11779", + "quartile50": "16362", + "quartile75": "20701", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03130", + "sampleId": "NA18983", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03130", - "totalBp": "13523916317", - "totalGbp": "13.523916317", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "73078048", + "totalGbp": "0.07", + "totalReads": "4560", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758791", - "assembly": null, + "accession": "SAMN33758799", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758791", - "ccsAlgorithm": "N/A", - "coverage": "3.71", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758799", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG36", - "filename": "HG03130-2_S13_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": null, + "filename": "m54329U_220916_162216-bc2061.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03130-2_S13_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG19043.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242360", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.605598", + "libraryStrategy": "WGS", + "max": "64342", + "mean": "21267", + "metadataAccession": "SRR23922639", + "min": "92", + "mmTag": true, + "n25": "18546", + "n50": "21557", + "n75": "25367", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/m54329U_220916_162216-bc2061.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17811", + "quartile50": "20499", + "quartile75": "24051", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03130", + "sampleId": "NA19043", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "LWK", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03130", - "totalBp": "11497934604", - "totalGbp": "11.497934604", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "43517972648", + "totalGbp": "43.52", + "totalReads": "2046237", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758791", - "assembly": null, + "accession": "SAMN33758799", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758791", - "ccsAlgorithm": "N/A", - "coverage": "3.71", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758799", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG36", - "filename": "HG03130-2_S13_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": null, + "filename": "m54329U_220918_114340-bc2061.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03130-2_S13_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG19043.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242360", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.577007", + "libraryStrategy": "WGS", + "max": "68642", + "mean": "20980", + "metadataAccession": "SRR23922639", + "min": "91", + "mmTag": true, + "n25": "18299", + "n50": "21233", + "n75": "24994", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/m54329U_220918_114340-bc2061.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17591", + "quartile50": "20198", + "quartile75": "23685", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03130", + "sampleId": "NA19043", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "LWK", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03130", - "totalBp": "11497300137", - "totalGbp": "11.497300137", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "41394833271", + "totalGbp": "41.39", + "totalReads": "1972976", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758791", - "assembly": null, + "accession": "SAMN33758799", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758791", - "ccsAlgorithm": "N/A", - "coverage": "3.8", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758799", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG36", - "filename": "HG03130-2_S13_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": null, + "filename": "m54329U_220920_065703-bc2061.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03130-2_S13_L002", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG19043.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242361", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.605748", + "libraryStrategy": "WGS", + "max": "73652", + "mean": "21064", + "metadataAccession": "SRR23922639", + "min": "59", + "mmTag": true, + "n25": "18360", + "n50": "21333", + "n75": "25123", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/m54329U_220920_065703-bc2061.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17643", + "quartile50": "20280", + "quartile75": "23804", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03130", + "sampleId": "NA19043", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "LWK", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03130", - "totalBp": "11785363728", - "totalGbp": "11.785363728", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "44045561368", + "totalGbp": "44.05", + "totalReads": "2090945", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758791", - "assembly": null, + "accession": "SAMN33621948", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758791", - "ccsAlgorithm": "N/A", - "coverage": "3.8", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621948", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG36", - "filename": "HG03130-2_S13_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "VN046", + "filename": "m64043_210901_164337-bc1022.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03130-2_S13_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02015_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242361", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.55918", + "libraryStrategy": "WGS", + "max": "373990", + "mean": "18903", + "metadataAccession": "SRR23732276", + "min": "51", + "mmTag": true, + "n25": "16510", + "n50": "18970", + "n75": "22812", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02015/raw_data/PacBio_HiFi/m64043_210901_164337-bc1022.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15928", + "quartile50": "17686", + "quartile75": "21174", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03130", + "sampleId": "HG02015", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03130", - "totalBp": "11784559031", - "totalGbp": "11.784559031", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "58139125879", + "totalGbp": "58.14", + "totalReads": "3075646", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758791", - "assembly": null, + "accession": "SAMN33621948", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758791", - "ccsAlgorithm": "N/A", - "coverage": "3.59", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621948", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG36", - "filename": "HG03130-2_S13_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "VN046", + "filename": "m64043_210903_163032-bc1022.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03130-2_S13_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02015_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242362", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.588376", + "libraryStrategy": "WGS", + "max": "388970", + "mean": "19410", + "metadataAccession": "SRR23732276", + "min": "51", + "mmTag": true, + "n25": "16688", + "n50": "19402", + "n75": "23437", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02015/raw_data/PacBio_HiFi/m64043_210903_163032-bc1022.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16061", + "quartile50": "17931", + "quartile75": "21538", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03130", + "sampleId": "HG02015", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03130", - "totalBp": "11135847597", - "totalGbp": "11.135847597", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "75027463744", + "totalGbp": "75.03", + "totalReads": "3865204", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758791", - "assembly": null, + "accession": "SAMN33621948", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758791", - "ccsAlgorithm": "N/A", - "coverage": "3.59", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621948", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG36", - "filename": "HG03130-2_S13_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "VN046", + "filename": "m64043_210905_032603-bc1022.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03130-2_S13_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02015_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242362", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.537702", + "libraryStrategy": "WGS", + "max": "48424", + "mean": "18655", + "metadataAccession": "SRR23732276", + "min": "76", + "mmTag": true, + "n25": "16432", + "n50": "18225", + "n75": "21552", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02015/raw_data/PacBio_HiFi/m64043_210905_032603-bc1022.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16173", + "quartile50": "17620", + "quartile75": "20670", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03130", + "sampleId": "HG02015", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03130", - "totalBp": "11135087450", - "totalGbp": "11.13508745", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "37828131839", + "totalGbp": "37.83", + "totalReads": "2027744", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758791", - "assembly": null, + "accession": "SAMN33621947", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758791", - "ccsAlgorithm": "N/A", - "coverage": "3.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621947", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG36", - "filename": "HG03130-2_S13_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL25", + "filename": "m64043_211113_003158-bc1003.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03130-2_S13_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG01975_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242363", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.630068", + "libraryStrategy": "WGS", + "max": "58778", + "mean": "19715", + "metadataAccession": "SRR23732277", + "min": "230", + "mmTag": true, + "n25": "17823", + "n50": "19259", + "n75": "21526", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/m64043_211113_003158-bc1003.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17636", + "quartile50": "18916", + "quartile75": "20851", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03130", + "sampleId": "HG01975", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03130", - "totalBp": "11475577542", - "totalGbp": "11.475577542", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "37414972875", + "totalGbp": "37.41", + "totalReads": "1897742", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758791", - "assembly": null, + "accession": "SAMN33621947", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758791", - "ccsAlgorithm": "N/A", - "coverage": "3.7", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621947", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG36", - "filename": "HG03130-2_S13_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL25", + "filename": "m64043_211114_112934-bc1003.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03130-2_S13_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG01975_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242363", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.567845", + "libraryStrategy": "WGS", + "max": "61049", + "mean": "19701", + "metadataAccession": "SRR23732277", + "min": "142", + "mmTag": true, + "n25": "17814", + "n50": "19250", + "n75": "21498", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/m64043_211114_112934-bc1003.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17627", + "quartile50": "18908", + "quartile75": "20835", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03130", + "sampleId": "HG01975", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03130", - "totalBp": "11474815636", - "totalGbp": "11.474815636", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "36273475358", + "totalGbp": "36.27", + "totalReads": "1841180", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758792", - "assembly": null, + "accession": "SAMN33621947", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758792", - "ccsAlgorithm": "N/A", - "coverage": "3.86", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621947", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03139-1_S6_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL25", + "filename": "m64043_211115_222749-bc1003.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03139-1_S6_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG01975_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242365", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.600621", + "libraryStrategy": "WGS", + "max": "60746", + "mean": "19733", + "metadataAccession": "SRR23732277", + "min": "818", + "mmTag": true, + "n25": "17828", + "n50": "19276", + "n75": "21558", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/m64043_211115_222749-bc1003.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17640", + "quartile50": "18930", + "quartile75": "20876", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03139", + "sampleId": "HG01975", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03139", - "totalBp": "11952931713", - "totalGbp": "11.952931713", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "29243979674", + "totalGbp": "29.24", + "totalReads": "1481915", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758792", - "assembly": null, + "accession": null, + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758792", - "ccsAlgorithm": "N/A", - "coverage": "3.86", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621959", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03139-1_S6_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64043_211118_185250-bc1008.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03139-1_S6_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "MGISTL_PAN027_HG06807_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242365", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.599319", + "libraryStrategy": "WGS", + "max": "54058", + "mean": "19464", + "metadataAccession": "SRR23732285", + "min": "53", + "mmTag": true, + "n25": "17558", + "n50": "19607", + "n75": "22015", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC_PLUS/HG06807/raw_data/PacBio_HiFi/m64043_211118_185250-bc1008.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", + "productionYear": null, + "quartile25": "17014", + "quartile50": "19094", + "quartile75": "21311", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03139", + "sampleId": "MGISTL_PAN027_HG06807", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03139", - "totalBp": "11952237057", - "totalGbp": "11.952237057", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "35381492742", + "totalGbp": "35.38", + "totalReads": "1817775", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758792", - "assembly": null, + "accession": null, + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758792", - "ccsAlgorithm": "N/A", - "coverage": "3.97", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621959", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03139-1_S6_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64043_211120_054831-bc1008.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03139-1_S6_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "MGISTL_PAN027_HG06807_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242366", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.623442", + "libraryStrategy": "WGS", + "max": "61992", + "mean": "19472", + "metadataAccession": "SRR23732285", + "min": "777", + "mmTag": true, + "n25": "17552", + "n50": "19611", + "n75": "22035", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC_PLUS/HG06807/raw_data/PacBio_HiFi/m64043_211120_054831-bc1008.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", + "productionYear": null, + "quartile25": "17006", + "quartile50": "19086", + "quartile75": "21325", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03139", + "sampleId": "MGISTL_PAN027_HG06807", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03139", - "totalBp": "12303021339", - "totalGbp": "12.303021339", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "35737691389", + "totalGbp": "35.74", + "totalReads": "1835294", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758792", - "assembly": null, + "accession": null, + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758792", - "ccsAlgorithm": "N/A", - "coverage": "3.97", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621959", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03139-1_S6_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64043_211121_164646-bc1008.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03139-1_S6_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "MGISTL_PAN027_HG06807_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242366", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.58376", + "libraryStrategy": "WGS", + "max": "54067", + "mean": "19403", + "metadataAccession": "SRR23732285", + "min": "611", + "mmTag": true, + "n25": "17498", + "n50": "19545", + "n75": "21937", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC_PLUS/HG06807/raw_data/PacBio_HiFi/m64043_211121_164646-bc1008.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", + "productionYear": null, + "quartile25": "16950", + "quartile50": "19031", + "quartile75": "21242", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03139", + "sampleId": "MGISTL_PAN027_HG06807", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03139", - "totalBp": "12302107333", - "totalGbp": "12.302107333", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "34242835423", + "totalGbp": "34.24", + "totalReads": "1764732", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758792", - "assembly": null, + "accession": "SAMN33621945", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758792", - "ccsAlgorithm": "N/A", - "coverage": "3.75", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621945", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03139-1_S6_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PR40", + "filename": "m64043_211124_192057.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03139-1_S6_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG01192_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242342", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.620107", + "libraryStrategy": "WGS", + "max": "52946", + "mean": "20562", + "metadataAccession": "SRR23732279", + "min": "203", + "mmTag": true, + "n25": "18441", + "n50": "20419", + "n75": "23268", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01192/raw_data/PacBio_HiFi/m64043_211124_192057.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18064", + "quartile50": "19864", + "quartile75": "22408", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03139", + "sampleId": "HG01192", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03139", - "totalBp": "11636777051", - "totalGbp": "11.636777051", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "36240709779", + "totalGbp": "36.24", + "totalReads": "1762460", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758792", - "assembly": null, + "accession": "SAMN33621945", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758792", - "ccsAlgorithm": "N/A", - "coverage": "3.75", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621945", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03139-1_S6_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PR40", + "filename": "m64043_211126_061537.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03139-1_S6_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG01192_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242342", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.583228", + "libraryStrategy": "WGS", + "max": "53478", + "mean": "20583", + "metadataAccession": "SRR23732279", + "min": "153", + "mmTag": true, + "n25": "18452", + "n50": "20438", + "n75": "23304", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01192/raw_data/PacBio_HiFi/m64043_211126_061537.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18074", + "quartile50": "19879", + "quartile75": "22435", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03139", + "sampleId": "HG01192", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03139", - "totalBp": "11635941925", - "totalGbp": "11.635941925", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "37677927562", + "totalGbp": "37.68", + "totalReads": "1830528", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758792", - "assembly": null, + "accession": "SAMN33621945", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758792", - "ccsAlgorithm": "N/A", - "coverage": "3.88", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621945", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03139-1_S6_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PR40", + "filename": "m64043_211127_171224.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03139-1_S6_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG01192_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242343", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.581818", + "libraryStrategy": "WGS", + "max": "52726", + "mean": "20560", + "metadataAccession": "SRR23732279", + "min": "82", + "mmTag": true, + "n25": "18438", + "n50": "20412", + "n75": "23274", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01192/raw_data/PacBio_HiFi/m64043_211127_171224.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18058", + "quartile50": "19858", + "quartile75": "22404", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03139", + "sampleId": "HG01192", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03139", - "totalBp": "12029450790", - "totalGbp": "12.02945079", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "35850177288", + "totalGbp": "35.85", + "totalReads": "1743655", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758792", - "assembly": null, + "accession": "SAMN33621944", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758792", - "ccsAlgorithm": "N/A", - "coverage": "3.88", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621944", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03139-1_S6_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH058", + "filename": "m64043_211210_180342-bc1021.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03139-1_S6_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00597_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242343", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.596229", + "libraryStrategy": "WGS", + "max": "56238", + "mean": "21055", + "metadataAccession": "SRR23732280", + "min": "406", + "mmTag": true, + "n25": "19270", + "n50": "20815", + "n75": "22972", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/m64043_211210_180342-bc1021.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "19061", + "quartile50": "20477", + "quartile75": "22470", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03139", + "sampleId": "HG00597", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03139", - "totalBp": "12028614997", - "totalGbp": "12.028614997", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "34138087985", + "totalGbp": "34.14", + "totalReads": "1621355", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758792", - "assembly": null, + "accession": "SAMN33621944", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758792", - "ccsAlgorithm": "N/A", - "coverage": "4.11", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621944", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03139-2_S14_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH058", + "filename": "m64043_211212_045901-bc1021.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03139-2_S14_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00597_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242344", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.587956", + "libraryStrategy": "WGS", + "max": "54098", + "mean": "21027", + "metadataAccession": "SRR23732280", + "min": "62", + "mmTag": true, + "n25": "19260", + "n50": "20789", + "n75": "22926", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/m64043_211212_045901-bc1021.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "19052", + "quartile50": "20458", + "quartile75": "22436", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03139", + "sampleId": "HG00597", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03139", - "totalBp": "12748095306", - "totalGbp": "12.748095306", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "33361982455", + "totalGbp": "33.36", + "totalReads": "1586624", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758792", - "assembly": null, + "accession": "SAMN33621944", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758792", - "ccsAlgorithm": "N/A", - "coverage": "4.11", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621944", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03139-2_S14_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH058", + "filename": "m64043_211213_155654-bc1021.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03139-2_S14_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00597_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242344", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.552105", + "libraryStrategy": "WGS", + "max": "54955", + "mean": "21006", + "metadataAccession": "SRR23732280", + "min": "61", + "mmTag": true, + "n25": "19247", + "n50": "20774", + "n75": "22899", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/m64043_211213_155654-bc1021.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "19041", + "quartile50": "20445", + "quartile75": "22411", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03139", + "sampleId": "HG00597", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03139", - "totalBp": "12747435871", - "totalGbp": "12.747435871", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "32720246548", + "totalGbp": "32.72", + "totalReads": "1557646", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758792", - "assembly": null, + "accession": "SAMN33621952", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758792", - "ccsAlgorithm": "N/A", - "coverage": "4.23", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621952", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03139-2_S14_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BB22", + "filename": "m64043_211217_180919-bc1011.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03139-2_S14_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02258_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242345", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.5655", + "libraryStrategy": "WGS", + "max": "53399", + "mean": "20643", + "metadataAccession": "SRR23732292", + "min": "61", + "mmTag": true, + "n25": "18946", + "n50": "20502", + "n75": "22571", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/m64043_211217_180919-bc1011.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18701", + "quartile50": "20169", + "quartile75": "22088", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03139", + "sampleId": "HG02258", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "ACB", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03139", - "totalBp": "13102628356", - "totalGbp": "13.102628356", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "30383642106", + "totalGbp": "30.38", + "totalReads": "1471798", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758792", - "assembly": null, + "accession": "SAMN33621952", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758792", - "ccsAlgorithm": "N/A", - "coverage": "4.23", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621952", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03139-2_S14_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BB22", + "filename": "m64043_211219_050421-bc1011.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03139-2_S14_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02258_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242345", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.581126", + "libraryStrategy": "WGS", + "max": "53658", + "mean": "20619", + "metadataAccession": "SRR23732292", + "min": "203", + "mmTag": true, + "n25": "18916", + "n50": "20475", + "n75": "22548", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/m64043_211219_050421-bc1011.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18671", + "quartile50": "20138", + "quartile75": "22062", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03139", + "sampleId": "HG02258", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "ACB", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03139", - "totalBp": "13101759299", - "totalGbp": "13.101759299", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "36007958539", + "totalGbp": "36.01", + "totalReads": "1746272", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758792", - "assembly": null, + "accession": "SAMN33621952", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758792", - "ccsAlgorithm": "N/A", - "coverage": "3.98", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621952", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03139-2_S14_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BB22", + "filename": "m64043_211220_160211-bc1011.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03139-2_S14_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02258_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242346", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.60048", + "libraryStrategy": "WGS", + "max": "50640", + "mean": "20578", + "metadataAccession": "SRR23732292", + "min": "100", + "mmTag": true, + "n25": "18894", + "n50": "20440", + "n75": "22488", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/m64043_211220_160211-bc1011.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18651", + "quartile50": "20107", + "quartile75": "22012", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03139", + "sampleId": "HG02258", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "ACB", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03139", - "totalBp": "12351349239", - "totalGbp": "12.351349239", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "40089424862", + "totalGbp": "40.09", + "totalReads": "1948134", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758792", - "assembly": null, + "accession": "SAMN33621946", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758792", - "ccsAlgorithm": "N/A", - "coverage": "3.98", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621946", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03139-2_S14_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "CLM17", + "filename": "m64043_211222_184851-bc1001.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03139-2_S14_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG01261_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242346", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.549756", + "libraryStrategy": "WGS", + "max": "67189", + "mean": "20999", + "metadataAccession": "SRR23732278", + "min": "718", + "mmTag": true, + "n25": "18369", + "n50": "20229", + "n75": "24356", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/m64043_211222_184851-bc1001.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18072", + "quartile50": "19630", + "quartile75": "22593", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03139", + "sampleId": "HG01261", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03139", - "totalBp": "12350569304", - "totalGbp": "12.350569304", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "13944839852", + "totalGbp": "13.94", + "totalReads": "664050", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758792", - "assembly": null, + "accession": "SAMN33621947", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758792", - "ccsAlgorithm": "N/A", - "coverage": "4.1", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621947", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03139-2_S14_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL25", + "filename": "m64043_211222_184851-bc1003.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03139-2_S14_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG01975_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242347", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.572203", + "libraryStrategy": "WGS", + "max": "67517", + "mean": "19696", + "metadataAccession": "SRR23732277", + "min": "811", + "mmTag": true, + "n25": "17814", + "n50": "19237", + "n75": "21478", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/m64043_211222_184851-bc1003.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17631", + "quartile50": "18899", + "quartile75": "20818", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03139", + "sampleId": "HG01975", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03139", - "totalBp": "12697988712", - "totalGbp": "12.697988712", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "5813671901", + "totalGbp": "5.81", + "totalReads": "295158", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758792", - "assembly": null, + "accession": null, + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758792", - "ccsAlgorithm": "N/A", - "coverage": "4.1", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621959", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03139-2_S14_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64043_211222_184851-bc1008.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03139-2_S14_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "MGISTL_PAN027_HG06807_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242347", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.562295", + "libraryStrategy": "WGS", + "max": "49585", + "mean": "20200", + "metadataAccession": "SRR23732285", + "min": "473", + "mmTag": true, + "n25": "18577", + "n50": "20065", + "n75": "22049", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC_PLUS/HG06807/raw_data/PacBio_HiFi/m64043_211222_184851-bc1008.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", + "productionYear": null, + "quartile25": "18352", + "quartile50": "19757", + "quartile75": "21611", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03139", + "sampleId": "MGISTL_PAN027_HG06807", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03139", - "totalBp": "12697196399", - "totalGbp": "12.697196399", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "4703143471", + "totalGbp": "4.7", + "totalReads": "232821", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621944", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "4.78", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621944", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-1_S7_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH058", + "filename": "m64043_211222_184851-bc1021.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-1_S7_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00597_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242348", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.56484", + "libraryStrategy": "WGS", + "max": "38317", + "mean": "15831", + "metadataAccession": "SRR23732280", + "min": "124", + "mmTag": true, + "n25": "15074", + "n50": "15865", + "n75": "16687", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/m64043_211222_184851-bc1021.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15003", + "quartile50": "15777", + "quartile75": "16605", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "HG00597", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "14832803612", - "totalGbp": "14.832803612", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "13455521650", + "totalGbp": "13.46", + "totalReads": "849916", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621958", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "4.78", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621958", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-1_S7_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD28", + "filename": "m64043_220107_191226-bc1012.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-1_S7_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03834_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242348", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.538429", + "libraryStrategy": "WGS", + "max": "62493", + "mean": "20891", + "metadataAccession": "SRR23732286", + "min": "123", + "mmTag": true, + "n25": "19092", + "n50": "20668", + "n75": "22878", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03834/raw_data/PacBio_HiFi/m64043_220107_191226-bc1012.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18853", + "quartile50": "20313", + "quartile75": "22331", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "HG03834", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "14831815272", - "totalGbp": "14.831815272", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "38210943876", + "totalGbp": "38.21", + "totalReads": "1829039", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621958", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "4.85", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621958", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-1_S7_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD28", + "filename": "m64043_220109_060731-bc1012.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-1_S7_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03834_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242349", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.570263", + "libraryStrategy": "WGS", + "max": "58988", + "mean": "20886", + "metadataAccession": "SRR23732286", + "min": "365", + "mmTag": true, + "n25": "19083", + "n50": "20657", + "n75": "22877", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03834/raw_data/PacBio_HiFi/m64043_220109_060731-bc1012.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18844", + "quartile50": "20303", + "quartile75": "22326", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "HG03834", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "15041853062", - "totalGbp": "15.041853062", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "40253924320", + "totalGbp": "40.25", + "totalReads": "1927254", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621958", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "4.85", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621958", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-1_S7_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD28", + "filename": "m64043_220110_170603-bc1012.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-1_S7_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03834_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242349", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.533578", + "libraryStrategy": "WGS", + "max": "62573", + "mean": "20862", + "metadataAccession": "SRR23732286", + "min": "124", + "mmTag": true, + "n25": "19071", + "n50": "20638", + "n75": "22829", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03834/raw_data/PacBio_HiFi/m64043_220110_170603-bc1012.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18833", + "quartile50": "20288", + "quartile75": "22289", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "HG03834", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "15041101316", - "totalGbp": "15.041101316", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "38424503061", + "totalGbp": "38.42", + "totalReads": "1841790", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621949", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "4.53", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621949", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-1_S7_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "VN060", + "filename": "m64043_220114_181052-bc1009.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-1_S7_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02056_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242351", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.588908", + "libraryStrategy": "WGS", + "max": "62255", + "mean": "20647", + "metadataAccession": "SRR23732275", + "min": "276", + "mmTag": true, + "n25": "18454", + "n50": "20670", + "n75": "24438", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/m64043_220114_181052-bc1009.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17986", + "quartile50": "19880", + "quartile75": "23140", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "HG02056", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "14040285498", - "totalGbp": "14.040285498", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "29056368441", + "totalGbp": "29.06", + "totalReads": "1407236", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621952", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "4.53", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621952", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-1_S7_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BB22", + "filename": "m64043_220114_181052-bc1011.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-1_S7_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02258_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242351", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.565042", + "libraryStrategy": "WGS", + "max": "47039", + "mean": "20639", + "metadataAccession": "SRR23732292", + "min": "217", + "mmTag": true, + "n25": "18935", + "n50": "20497", + "n75": "22571", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/m64043_220114_181052-bc1011.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18686", + "quartile50": "20163", + "quartile75": "22078", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "HG02258", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "ACB", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "14039451752", - "totalGbp": "14.039451752", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "6878212374", + "totalGbp": "6.88", + "totalReads": "333250", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621953", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "4.51", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-1_S7_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL46", + "filename": "m64043_220429_171542-bc1002.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-1_S7_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02273_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242352", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.550107", + "libraryStrategy": "WGS", + "max": "58982", + "mean": "20567", + "metadataAccession": "SRR23732291", + "min": "139", + "mmTag": true, + "n25": "17731", + "n50": "20899", + "n75": "23890", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/PacBio_HiFi/m64043_220429_171542-bc1002.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17280", + "quartile50": "20013", + "quartile75": "22954", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "HG02273", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "13982392584", - "totalGbp": "13.982392584", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "38026194906", + "totalGbp": "38.03", + "totalReads": "1848889", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621953", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "4.51", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-1_S7_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL46", + "filename": "m64043_220501_041051-bc1002.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-1_S7_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02273_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242352", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.553076", + "libraryStrategy": "WGS", + "max": "60518", + "mean": "20590", + "metadataAccession": "SRR23732291", + "min": "139", + "mmTag": true, + "n25": "17739", + "n50": "20923", + "n75": "23937", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/PacBio_HiFi/m64043_220501_041051-bc1002.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17281", + "quartile50": "20032", + "quartile75": "22984", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "HG02273", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "13981512589", - "totalGbp": "13.981512589", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "39207885275", + "totalGbp": "39.21", + "totalReads": "1904184", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621953", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "4.61", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621953", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-2_S15_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL46", + "filename": "m64043_220503_153752-bc1002.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-2_S15_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02273_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242353", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.581302", + "libraryStrategy": "WGS", + "max": "67692", + "mean": "20629", + "metadataAccession": "SRR23732291", + "min": "327", + "mmTag": true, + "n25": "17766", + "n50": "20967", + "n75": "23999", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02273/raw_data/PacBio_HiFi/m64043_220503_153752-bc1002.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17297", + "quartile50": "20076", + "quartile75": "23036", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "HG02273", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "14303290679", - "totalGbp": "14.303290679", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "44366503595", + "totalGbp": "44.37", + "totalReads": "2150606", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621957", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "4.61", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621957", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-2_S15_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m64043_220516_150157-bc1008.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-2_S15_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03225_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242353", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.526772", + "libraryStrategy": "WGS", + "max": "56783", + "mean": "21296", + "metadataAccession": "SRR23732287", + "min": "83", + "mmTag": true, + "n25": "19029", + "n50": "21243", + "n75": "24403", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/PacBio_HiFi/m64043_220516_150157-bc1008.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18584", + "quartile50": "20581", + "quartile75": "23437", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "HG03225", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "14302336909", - "totalGbp": "14.302336909", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "28643913675", + "totalGbp": "28.64", + "totalReads": "1344981", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621957", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "4.68", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621957", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-2_S15_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m64043_220518_120044-bc1008.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-2_S15_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03225_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242354", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.544862", + "libraryStrategy": "WGS", + "max": "64236", + "mean": "21357", + "metadataAccession": "SRR23732287", + "min": "188", + "mmTag": true, + "n25": "19060", + "n50": "21306", + "n75": "24500", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/PacBio_HiFi/m64043_220518_120044-bc1008.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18611", + "quartile50": "20634", + "quartile75": "23516", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "HG03225", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "14501402402", - "totalGbp": "14.501402402", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "32725639816", + "totalGbp": "32.73", + "totalReads": "1532258", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621955", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "4.68", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-2_S15_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "NG24", + "filename": "m64043_220617_195135-bc1009.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-2_S15_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02976_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242354", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.510395", + "libraryStrategy": "WGS", + "max": "53116", + "mean": "20017", + "metadataAccession": "SRR23732289", + "min": "396", + "mmTag": true, + "n25": "18347", + "n50": "19941", + "n75": "21988", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/m64043_220617_195135-bc1009.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18072", + "quartile50": "19589", + "quartile75": "21498", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "HG02976", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", "subpopulation": "ESN", "superpopulation": "AFR", - "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "14500663032", - "totalGbp": "14.500663032", - "totalReads": "N/A", + "threeHundredkbPlus": "N/A", + "title": "N/A", + "totalBp": "35330491836", + "totalGbp": "35.33", + "totalReads": "1765009", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621955", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "4.36", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-2_S15_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "NG24", + "filename": "m64043_220619_164635-bc1009.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-2_S15_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02976_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242355", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.57522", + "libraryStrategy": "WGS", + "max": "69085", + "mean": "19961", + "metadataAccession": "SRR23732289", + "min": "633", + "mmTag": true, + "n25": "18314", + "n50": "19893", + "n75": "21915", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/m64043_220619_164635-bc1009.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18043", + "quartile50": "19546", + "quartile75": "21434", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "HG02976", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "13509928125", - "totalGbp": "13.509928125", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "37286464203", + "totalGbp": "37.29", + "totalReads": "1867914", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621955", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "4.36", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-2_S15_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "NG24", + "filename": "m64043_220621_134351-bc1009.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-2_S15_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02976_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242355", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.574072", + "libraryStrategy": "WGS", + "max": "54707", + "mean": "19958", + "metadataAccession": "SRR23732289", + "min": "214", + "mmTag": true, + "n25": "18311", + "n50": "19886", + "n75": "21906", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/m64043_220621_134351-bc1009.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18038", + "quartile50": "19542", + "quartile75": "21427", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "HG02976", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "13509134049", - "totalGbp": "13.509134049", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "25120924503", + "totalGbp": "25.12", + "totalReads": "1258651", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621961", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "4.36", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621961", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-2_S15_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m64043_220701_181144-bc1011.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-2_S15_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "NA18971_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242356", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.56572", + "libraryStrategy": "WGS", + "max": "62433", + "mean": "20716", + "metadataAccession": "SRR23732282", + "min": "61", + "mmTag": true, + "n25": "18582", + "n50": "20932", + "n75": "23785", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/m64043_220701_181144-bc1011.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18018", + "quartile50": "20255", + "quartile75": "22941", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "NA18971", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "13501792797", - "totalGbp": "13.501792797", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "34029092180", + "totalGbp": "34.03", + "totalReads": "1642606", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621961", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "4.36", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621961", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-2_S15_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m64043_220703_150718-bc1011.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-2_S15_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "NA18971_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242356", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.543852", + "libraryStrategy": "WGS", + "max": "65993", + "mean": "20667", + "metadataAccession": "SRR23732282", + "min": "62", + "mmTag": true, + "n25": "18541", + "n50": "20882", + "n75": "23733", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/m64043_220703_150718-bc1011.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17974", + "quartile50": "20210", + "quartile75": "22885", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "NA18971", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "13500963017", - "totalGbp": "13.500963017", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "31815106412", + "totalGbp": "31.82", + "totalReads": "1539349", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621961", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "11.91", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621961", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-2_S15i_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m64043_220705_120954-bc1011.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-2_S15i_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "NA18971_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242357", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.469732", + "libraryStrategy": "WGS", + "max": "65996", + "mean": "20793", + "metadataAccession": "SRR23732282", + "min": "249", + "mmTag": true, + "n25": "18634", + "n50": "21002", + "n75": "23888", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/m64043_220705_120954-bc1011.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18069", + "quartile50": "20318", + "quartile75": "23028", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "NA18971", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "36917053749", - "totalGbp": "36.917053749", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "34591963353", + "totalGbp": "34.59", + "totalReads": "1663617", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621960", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "11.91", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621960", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-2_S15i_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m64043_220708_205637-bc1015.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-2_S15i_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "NA18612_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242357", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.441498", + "libraryStrategy": "WGS", + "max": "70458", + "mean": "19211", + "metadataAccession": "SRR23732284", + "min": "61", + "mmTag": true, + "n25": "17131", + "n50": "18974", + "n75": "21901", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/m64043_220708_205637-bc1015.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16783", + "quartile50": "18429", + "quartile75": "20931", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "NA18612", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "36914321619", - "totalGbp": "36.914321619", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "35568838553", + "totalGbp": "35.57", + "totalReads": "1851400", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621960", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "13.5", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621960", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-2_S15i_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m64043_220710_175250-bc1015.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-2_S15i_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "NA18612_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242358", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.485264", + "libraryStrategy": "WGS", + "max": "56913", + "mean": "19256", + "metadataAccession": "SRR23732284", + "min": "62", + "mmTag": true, + "n25": "17163", + "n50": "19020", + "n75": "21964", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/m64043_220710_175250-bc1015.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16812", + "quartile50": "18470", + "quartile75": "20993", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "NA18612", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "41838825896", - "totalGbp": "41.838825896", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "39242478493", + "totalGbp": "39.24", + "totalReads": "2037867", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621960", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "13.5", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621960", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-2_S15i_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m64043_220712_145025-bc1015.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-2_S15i_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "NA18612_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242358", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.44424", + "libraryStrategy": "WGS", + "max": "55884", + "mean": "19109", + "metadataAccession": "SRR23732284", + "min": "61", + "mmTag": true, + "n25": "17070", + "n50": "18873", + "n75": "21719", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/m64043_220712_145025-bc1015.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16729", + "quartile50": "18347", + "quartile75": "20782", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "NA18612", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "41837025639", - "totalGbp": "41.837025639", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "37307640683", + "totalGbp": "37.31", + "totalReads": "1952320", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621954", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "11.22", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621954", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-2_S15i_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "NG20", + "filename": "m64043_220715_182700-bc1017.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-2_S15i_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02965_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242341", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.51802", + "libraryStrategy": "WGS", + "max": "73722", + "mean": "20989", + "metadataAccession": "SRR23732290", + "min": "61", + "mmTag": true, + "n25": "18203", + "n50": "20521", + "n75": "24916", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/PacBio_HiFi/m64043_220715_182700-bc1017.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17769", + "quartile50": "19678", + "quartile75": "23131", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "HG02965", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "34794784186", - "totalGbp": "34.794784186", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "35646111219", + "totalGbp": "35.65", + "totalReads": "1698253", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621954", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "11.22", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621954", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-2_S15i_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "NG20", + "filename": "m64043_220717_152237-bc1017.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-2_S15i_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02965_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242341", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.434257", + "libraryStrategy": "WGS", + "max": "67060", + "mean": "20743", + "metadataAccession": "SRR23732290", + "min": "61", + "mmTag": true, + "n25": "18087", + "n50": "20257", + "n75": "24333", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/PacBio_HiFi/m64043_220717_152237-bc1017.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17692", + "quartile50": "19502", + "quartile75": "22679", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "HG02965", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "34793350416", - "totalGbp": "34.793350416", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "40119820394", + "totalGbp": "40.12", + "totalReads": "1934110", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621954", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "9.65", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621954", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-2_S15i_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "NG20", + "filename": "m64043_220719_122051-bc1017.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-2_S15i_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02965_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242340", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.477419", + "libraryStrategy": "WGS", + "max": "66417", + "mean": "20820", + "metadataAccession": "SRR23732290", + "min": "61", + "mmTag": true, + "n25": "18128", + "n50": "20329", + "n75": "24489", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02965/raw_data/PacBio_HiFi/m64043_220719_122051-bc1017.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17723", + "quartile50": "19557", + "quartile75": "22800", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "HG02965", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "29901590068", - "totalGbp": "29.901590068", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "41992148990", + "totalGbp": "41.99", + "totalReads": "2016822", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621956", - "assembly": null, + "accession": "SAMN33621957", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621956", - "ccsAlgorithm": "N/A", - "coverage": "9.65", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621957", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "NG58", - "filename": "HG03195-2_S15i_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m64043_220726_203720-bc1008.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03195-2_S15i_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03225_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242340", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.458188", + "libraryStrategy": "WGS", + "max": "59173", + "mean": "20095", + "metadataAccession": "SRR23732287", + "min": "521", + "mmTag": true, + "n25": "18363", + "n50": "20023", + "n75": "22169", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/PacBio_HiFi/m64043_220726_203720-bc1008.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18057", + "quartile50": "19643", + "quartile75": "21619", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03195", + "sampleId": "HG03225", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ESN", + "subpopulation": "MSL", "superpopulation": "AFR", - "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03195", - "totalBp": "29900251317", - "totalGbp": "29.900251317", - "totalReads": "N/A", + "threeHundredkbPlus": "N/A", + "title": "N/A", + "totalBp": "23862784465", + "totalGbp": "23.86", + "totalReads": "1187476", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758793", - "assembly": null, + "accession": "SAMN33621955", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758793", - "ccsAlgorithm": "N/A", - "coverage": "5", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621955", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03209-1_S7_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "NG24", + "filename": "m64043_220726_203720-bc1009.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03209-1_S7_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02976_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242338", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.527096", + "libraryStrategy": "WGS", + "max": "57617", + "mean": "19914", + "metadataAccession": "SRR23732289", + "min": "205", + "mmTag": true, + "n25": "18278", + "n50": "19846", + "n75": "21842", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/m64043_220726_203720-bc1009.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18011", + "quartile50": "19503", + "quartile75": "21372", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03209", + "sampleId": "HG02976", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "MSL", + "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03209", - "totalBp": "15485841647", - "totalGbp": "15.485841647", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "15045982932", + "totalGbp": "15.05", + "totalReads": "755542", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758793", - "assembly": null, + "accession": "SAMN33621956", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758793", - "ccsAlgorithm": "N/A", - "coverage": "5", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03209-1_S7_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "NG58", + "filename": "m64043_220726_203720-bc1010.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03209-1_S7_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03195_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242338", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.522831", + "libraryStrategy": "WGS", + "max": "57429", + "mean": "23841", + "metadataAccession": "SRR23732288", + "min": "894", + "mmTag": true, + "n25": "21539", + "n50": "23799", + "n75": "26818", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/m64043_220726_203720-bc1010.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "21102", + "quartile50": "23205", + "quartile75": "25986", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03209", + "sampleId": "HG03195", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "MSL", + "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03209", - "totalBp": "15485160859", - "totalGbp": "15.485160859", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "2810055296", + "totalGbp": "2.81", + "totalReads": "117862", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758793", - "assembly": null, + "accession": "SAMN33621961", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758793", - "ccsAlgorithm": "N/A", - "coverage": "5.13", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621961", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03209-1_S7_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64043_220728_173215-bc1011.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03209-1_S7_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "NA18971_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242337", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.553008", + "libraryStrategy": "WGS", + "max": "41182", + "mean": "16065", + "metadataAccession": "SRR23732282", + "min": "123", + "mmTag": true, + "n25": "14925", + "n50": "16155", + "n75": "17514", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/m64043_220728_173215-bc1011.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "14712", + "quartile50": "15923", + "quartile75": "17251", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03209", + "sampleId": "NA18971", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03209", - "totalBp": "15915046864", - "totalGbp": "15.915046864", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "12335160946", + "totalGbp": "12.34", + "totalReads": "767828", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758793", - "assembly": null, + "accession": "SAMN33621951", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758793", - "ccsAlgorithm": "N/A", - "coverage": "5.13", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621951", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03209-1_S7_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64043_220728_173215-bc1012.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03209-1_S7_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02155_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242337", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.518024", + "libraryStrategy": "WGS", + "max": "55945", + "mean": "20033", + "metadataAccession": "SRR23732293", + "min": "61", + "mmTag": true, + "n25": "17476", + "n50": "19953", + "n75": "23518", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/m64043_220728_173215-bc1012.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17036", + "quartile50": "19069", + "quartile75": "22395", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03209", + "sampleId": "HG02155", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03209", - "totalBp": "15914161942", - "totalGbp": "15.914161942", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "12121610916", + "totalGbp": "12.12", + "totalReads": "605059", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758793", - "assembly": null, + "accession": "SAMN33621942", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758793", - "ccsAlgorithm": "N/A", - "coverage": "4.76", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621942", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03209-1_S7_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64043_220728_173215-bc1016.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03209-1_S7_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00323_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242221", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.554386", + "libraryStrategy": "WGS", + "max": "51718", + "mean": "21318", + "metadataAccession": "SRR23732294", + "min": "62", + "mmTag": true, + "n25": "19395", + "n50": "21416", + "n75": "23864", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/m64043_220728_173215-bc1016.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18987", + "quartile50": "20930", + "quartile75": "23238", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03209", + "sampleId": "HG00323", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03209", - "totalBp": "14757163472", - "totalGbp": "14.757163472", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "6741622889", + "totalGbp": "6.74", + "totalReads": "316229", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758793", - "assembly": null, + "accession": "SAMN33621941", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758793", - "ccsAlgorithm": "N/A", - "coverage": "4.76", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621941", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03209-1_S7_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64043_220728_173215-bc1018.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03209-1_S7_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00140_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242221", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.532258", + "libraryStrategy": "WGS", + "max": "53341", + "mean": "19783", + "metadataAccession": "SRR23732295", + "min": "51", + "mmTag": true, + "n25": "18131", + "n50": "19724", + "n75": "21738", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/m64043_220728_173215-bc1018.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17853", + "quartile50": "19373", + "quartile75": "21259", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03209", + "sampleId": "HG00140", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03209", - "totalBp": "14756398358", - "totalGbp": "14.756398358", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "10233445025", + "totalGbp": "10.23", + "totalReads": "517275", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758793", - "assembly": null, + "accession": "SAMN37706907", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758793", - "ccsAlgorithm": "N/A", - "coverage": "4.94", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706907", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03209-1_S7_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD18", + "filename": "m64055e_210709_184151.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03209-1_S7_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG03804_PB1_m64055e_210709_184151", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242220", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.588467", + "libraryStrategy": "WGS", + "max": "56669", + "mean": "17416", + "metadataAccession": "SRR30151630", + "min": "85", + "mmTag": true, + "n25": "14871", + "n50": "17950", + "n75": "21842", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m64055e_210709_184151.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "13867", + "quartile50": "16626", + "quartile75": "20146", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03209", + "sampleId": "HG03804", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03209", - "totalBp": "15315851335", - "totalGbp": "15.315851335", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "33213912092", + "totalGbp": "33.21", + "totalReads": "1906994", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758793", - "assembly": null, + "accession": "SAMN37706910", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758793", - "ccsAlgorithm": "N/A", - "coverage": "4.94", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706910", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03209-1_S7_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD53", + "filename": "m64055e_210711_053617.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03209-1_S7_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG04160_PB1_m64055e_210711_053617", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242220", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.536059", + "libraryStrategy": "WGS", + "max": "51475", + "mean": "15770", + "metadataAccession": "SRR30151638", + "min": "84", + "mmTag": true, + "n25": "13674", + "n50": "16006", + "n75": "19133", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m64055e_210711_053617.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "13047", + "quartile50": "15116", + "quartile75": "17931", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03209", + "sampleId": "HG04160", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03209", - "totalBp": "15315027568", - "totalGbp": "15.315027568", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "26423796459", + "totalGbp": "26.42", + "totalReads": "1675553", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758793", - "assembly": null, + "accession": "SAMN37706907", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758793", - "ccsAlgorithm": "N/A", - "coverage": "3.83", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706907", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03209-2_S15_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD18", + "filename": "m64055e_210712_200125.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03209-2_S15_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG03804_PB1_m64055e_210712_200125", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242219", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.616049", + "libraryStrategy": "WGS", + "max": "63476", + "mean": "17229", + "metadataAccession": "SRR30151651", + "min": "51", + "mmTag": true, + "n25": "14721", + "n50": "17741", + "n75": "21559", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m64055e_210712_200125.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "13744", + "quartile50": "16447", + "quartile75": "19903", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03209", + "sampleId": "HG03804", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03209", - "totalBp": "11880470588", - "totalGbp": "11.880470588", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "28792837074", + "totalGbp": "28.79", + "totalReads": "1671138", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758793", - "assembly": null, + "accession": "SAMN37706907", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758793", - "ccsAlgorithm": "N/A", - "coverage": "3.83", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706907", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03209-2_S15_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD18", + "filename": "m64055e_210714_052746.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03209-2_S15_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG03804_PB1_m64055e_210714_052746", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242219", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.538166", + "libraryStrategy": "WGS", + "max": "56031", + "mean": "17305", + "metadataAccession": "SRR30151650", + "min": "49", + "mmTag": true, + "n25": "14820", + "n50": "17802", + "n75": "21563", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m64055e_210714_052746.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "13857", + "quartile50": "16546", + "quartile75": "19948", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03209", + "sampleId": "HG03804", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03209", - "totalBp": "11879927823", - "totalGbp": "11.879927823", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "28207159246", + "totalGbp": "28.21", + "totalReads": "1629954", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758793", - "assembly": null, + "accession": "SAMN37706910", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758793", - "ccsAlgorithm": "N/A", - "coverage": "3.94", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706910", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03209-2_S15_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD53", + "filename": "m64055e_210715_181933.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03209-2_S15_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG04160_PB1_m64055e_210715_181933", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242336", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.593427", + "libraryStrategy": "WGS", + "max": "57540", + "mean": "13806", + "metadataAccession": "SRR30151637", + "min": "84", + "mmTag": true, + "n25": "11697", + "n50": "14386", + "n75": "17653", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m64055e_210715_181933.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "10733", + "quartile50": "13163", + "quartile75": "16156", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03209", + "sampleId": "HG04160", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03209", - "totalBp": "12222747126", - "totalGbp": "12.222747126", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "21543489843", + "totalGbp": "21.54", + "totalReads": "1560360", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758793", - "assembly": null, + "accession": "SAMN37706908", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758793", - "ccsAlgorithm": "N/A", - "coverage": "3.94", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706908", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03209-2_S15_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD22", + "filename": "m64055e_210726_155147.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03209-2_S15_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG03816_PB3_m64055e_210726_155147", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242336", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.564085", + "libraryStrategy": "WGS", + "max": "55188", + "mean": "16543", + "metadataAccession": "SRR30151648", + "min": "49", + "mmTag": true, + "n25": "14079", + "n50": "17160", + "n75": "20956", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m64055e_210726_155147.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "13043", + "quartile50": "15783", + "quartile75": "19263", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03209", + "sampleId": "HG03816", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03209", - "totalBp": "12222037317", - "totalGbp": "12.222037317", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "26328421546", + "totalGbp": "26.33", + "totalReads": "1591506", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758793", - "assembly": null, + "accession": "SAMN37706908", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758793", - "ccsAlgorithm": "N/A", - "coverage": "3.68", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706908", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03209-2_S15_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD22", + "filename": "m64055e_210728_024601.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03209-2_S15_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG03816_PB3_m64055e_210728_024601", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242239", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.599817", + "libraryStrategy": "WGS", + "max": "52349", + "mean": "17178", + "metadataAccession": "SRR30151647", + "min": "85", + "mmTag": true, + "n25": "14718", + "n50": "17827", + "n75": "21629", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m64055e_210728_024601.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "13645", + "quartile50": "16473", + "quartile75": "19986", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03209", + "sampleId": "HG03816", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03209", - "totalBp": "11395230541", - "totalGbp": "11.395230541", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "28037716098", + "totalGbp": "28.04", + "totalReads": "1632098", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758793", - "assembly": null, + "accession": "SAMN37706908", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758793", - "ccsAlgorithm": "N/A", - "coverage": "3.68", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706908", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03209-2_S15_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD22", + "filename": "m64055e_210729_122949.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03209-2_S15_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG03816_PB3_m64055e_210729_122949", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242239", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.51788", + "libraryStrategy": "WGS", + "max": "57010", + "mean": "16787", + "metadataAccession": "SRR30151646", + "min": "52", + "mmTag": true, + "n25": "14322", + "n50": "17420", + "n75": "21236", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m64055e_210729_122949.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "13264", + "quartile50": "16051", + "quartile75": "19547", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03209", + "sampleId": "HG03816", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03209", - "totalBp": "11394635181", - "totalGbp": "11.394635181", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "26609986781", + "totalGbp": "26.61", + "totalReads": "1585079", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758793", - "assembly": null, + "accession": "SAMN37706905", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758793", - "ccsAlgorithm": "N/A", - "coverage": "3.8", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706905", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03209-2_S15_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH090", + "filename": "m64055e_210731_145204.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03209-2_S15_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG00706_PB1_m64055e_210731_145204", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242238", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.587912", + "libraryStrategy": "WGS", + "max": "63996", + "mean": "15917", + "metadataAccession": "SRR30151653", + "min": "47", + "mmTag": true, + "n25": "13634", + "n50": "16478", + "n75": "19969", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210731_145204.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "12677", + "quartile50": "15246", + "quartile75": "18454", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03209", + "sampleId": "HG00706", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03209", - "totalBp": "11780225528", - "totalGbp": "11.780225528", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "27575841441", + "totalGbp": "27.58", + "totalReads": "1732468", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758793", - "assembly": null, + "accession": "SAMN37706906", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758793", - "ccsAlgorithm": "N/A", - "coverage": "3.8", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706906", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03209-2_S15_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB40", + "filename": "m64055e_210810_194150.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03209-2_S15_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG02668_PB1_m64055e_210810_194150", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242238", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.549943", + "libraryStrategy": "WGS", + "max": "60518", + "mean": "16307", + "metadataAccession": "SRR30151632", + "min": "85", + "mmTag": true, + "n25": "14002", + "n50": "16689", + "n75": "20198", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m64055e_210810_194150.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "13193", + "quartile50": "15570", + "quartile75": "18723", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03209", + "sampleId": "HG02668", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", + "subpopulation": "GWD", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03209", - "totalBp": "11779594297", - "totalGbp": "11.779594297", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "31511359527", + "totalGbp": "31.51", + "totalReads": "1932274", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621957", - "assembly": null, + "accession": "SAMN37706905", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621957", - "ccsAlgorithm": "N/A", - "coverage": "4.28", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706905", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03225-1_S4_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH090", + "filename": "m64055e_210812_050522.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03225-1_S4_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG00706_PB1_m64055e_210812_050522", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242237", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.618107", + "libraryStrategy": "WGS", + "max": "56270", + "mean": "16525", + "metadataAccession": "SRR30151652", + "min": "49", + "mmTag": true, + "n25": "14329", + "n50": "16983", + "n75": "20349", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210812_050522.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "13486", + "quartile50": "15904", + "quartile75": "18972", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03225", + "sampleId": "HG00706", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03225", - "totalBp": "13264492114", - "totalGbp": "13.264492114", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "24186668138", + "totalGbp": "24.19", + "totalReads": "1463583", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621957", - "assembly": null, + "accession": "SAMN37706905", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621957", - "ccsAlgorithm": "N/A", - "coverage": "4.28", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706905", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03225-1_S4_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH090", + "filename": "m64055e_210813_141904.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03225-1_S4_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG00706_PB1_m64055e_210813_141904", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242237", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.562888", + "libraryStrategy": "WGS", + "max": "69934", + "mean": "16601", + "metadataAccession": "SRR30151641", + "min": "54", + "mmTag": true, + "n25": "14373", + "n50": "17069", + "n75": "20494", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210813_141904.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "13513", + "quartile50": "15967", + "quartile75": "19082", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03225", + "sampleId": "HG00706", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03225", - "totalBp": "13263638492", - "totalGbp": "13.263638492", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "29455811991", + "totalGbp": "29.46", + "totalReads": "1774263", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621957", - "assembly": null, + "accession": "SAMN37706905", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621957", - "ccsAlgorithm": "N/A", - "coverage": "4.37", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37706905", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03225-1_S4_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH090", + "filename": "m64055e_210814_234047.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03225-1_S4_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG00706_PB1_m64055e_210814_234047", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242236", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.57144", + "libraryStrategy": "WGS", + "max": "59621", + "mean": "16824", + "metadataAccession": "SRR30151636", + "min": "48", + "mmTag": true, + "n25": "14563", + "n50": "17300", + "n75": "20758", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210814_234047.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "c2", + "productionYear": "YR2", + "quartile25": "13694", + "quartile50": "16182", + "quartile75": "19336", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03225", + "sampleId": "HG00706", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03225", - "totalBp": "13551937789", - "totalGbp": "13.551937789", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "29562459419", + "totalGbp": "29.56", + "totalReads": "1757155", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621957", - "assembly": null, + "accession": "SAMN37797096", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621957", - "ccsAlgorithm": "N/A", - "coverage": "4.37", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797096", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03225-1_S4_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH074", + "filename": "m64055e_220304_184221.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03225-1_S4_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG00658_PB1_m64055e_220304_184221_m64055e_220304_184221", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242236", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.566573", + "libraryStrategy": "WGS", + "max": "59283", + "mean": "17506", + "metadataAccession": "SRR30151929", + "min": "176", + "mmTag": true, + "n25": "14806", + "n50": "18269", + "n75": "22720", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64055e_220304_184221.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "13570", + "quartile50": "16565", + "quartile75": "20560", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03225", + "sampleId": "HG00658", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03225", - "totalBp": "13550869907", - "totalGbp": "13.550869907", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "18919774271", + "totalGbp": "18.92", + "totalReads": "1080733", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621957", - "assembly": null, + "accession": "SAMN37797096", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621957", - "ccsAlgorithm": "N/A", - "coverage": "4.19", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797096", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03225-1_S4_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH074", + "filename": "m64055e_220403_045718.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03225-1_S4_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG00658_PB1_m64055e_220403_045718_m64055e_220403_045718", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242234", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.580506", + "libraryStrategy": "WGS", + "max": "51430", + "mean": "15292", + "metadataAccession": "SRR30151928", + "min": "159", + "mmTag": true, + "n25": "13569", + "n50": "15866", + "n75": "18763", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64055e_220403_045718.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "12772", + "quartile50": "14937", + "quartile75": "17615", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03225", + "sampleId": "HG00658", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03225", - "totalBp": "12982900077", - "totalGbp": "12.982900077", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "15083805889", + "totalGbp": "15.08", + "totalReads": "986362", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621957", - "assembly": null, + "accession": "SAMN37797096", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621957", - "ccsAlgorithm": "N/A", - "coverage": "4.19", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797096", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03225-1_S4_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH074", + "filename": "m64055e_220504_181614.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03225-1_S4_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG00658_PB1_m64055e_220504_181614_m64055e_220504_181614", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242234", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.568687", + "libraryStrategy": "WGS", + "max": "57037", + "mean": "17086", + "metadataAccession": "SRR30151927", + "min": "87", + "mmTag": true, + "n25": "14163", + "n50": "17908", + "n75": "22590", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64055e_220504_181614.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "12858", + "quartile50": "15976", + "quartile75": "20204", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03225", + "sampleId": "HG00658", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03225", - "totalBp": "12981889183", - "totalGbp": "12.981889183", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "18061539277", + "totalGbp": "18.06", + "totalReads": "1057088", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621957", - "assembly": null, + "accession": "SAMN37797103", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621957", - "ccsAlgorithm": "N/A", - "coverage": "4.26", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797103", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03225-1_S4_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL023", + "filename": "m64055e_220506_051029.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03225-1_S4_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01969_PB1_m64055e_220506_051029_m64055e_220506_051029", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242233", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.563984", + "libraryStrategy": "WGS", + "max": "59034", + "mean": "17632", + "metadataAccession": "SRR30151998", + "min": "50", + "mmTag": true, + "n25": "14458", + "n50": "18834", + "n75": "24059", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m64055e_220506_051029.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "12784", + "quartile50": "16415", + "quartile75": "21199", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03225", + "sampleId": "HG01969", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03225", - "totalBp": "13208233630", - "totalGbp": "13.20823363", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "22292378612", + "totalGbp": "22.29", + "totalReads": "1264297", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621957", - "assembly": null, + "accession": "SAMN37797103", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621957", - "ccsAlgorithm": "N/A", - "coverage": "4.26", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797103", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03225-1_S4_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL023", + "filename": "m64055e_220517_182131.demultiplex.bc1002--bc1002.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03225-1_S4_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01969_PB1_m64055e_220517_182131_m64055e_220517_182131", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242233", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.530182", + "libraryStrategy": "WGS", + "max": "54635", + "mean": "17628", + "metadataAccession": "SRR30152001", + "min": "58", + "mmTag": true, + "n25": "14473", + "n50": "18855", + "n75": "24088", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m64055e_220517_182131.demultiplex.bc1002--bc1002.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "12768", + "quartile50": "16429", + "quartile75": "21229", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03225", + "sampleId": "HG01969", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03225", - "totalBp": "13207245038", - "totalGbp": "13.207245038", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "9719026793", + "totalGbp": "9.72", + "totalReads": "551333", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621957", - "assembly": null, + "accession": "SAMN37797107", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621957", - "ccsAlgorithm": "N/A", - "coverage": "4.44", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797107", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03225-2_S12_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB97", + "filename": "m64055e_220517_182131.demultiplex.bc1009--bc1009.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03225-2_S12_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG02984_PB1_m64055e_220517_182131_m64055e_220517_182131", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242232", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.589349", + "libraryStrategy": "WGS", + "max": "50187", + "mean": "16715", + "metadataAccession": "SRR30151975", + "min": "122", + "mmTag": true, + "n25": "14292", + "n50": "17263", + "n75": "20935", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m64055e_220517_182131.demultiplex.bc1009--bc1009.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "13317", + "quartile50": "15970", + "quartile75": "19343", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03225", + "sampleId": "HG02984", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", + "subpopulation": "GWD", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03225", - "totalBp": "13753800959", - "totalGbp": "13.753800959", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "2004239111", + "totalGbp": "2", + "totalReads": "119906", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621957", - "assembly": null, + "accession": "SAMN37797091", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621957", - "ccsAlgorithm": "N/A", - "coverage": "4.44", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797091", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03225-2_S12_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64055e_220729_170145.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03225-2_S12_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA19338_PB1_m64055e_220729_170145_m64055e_220729_170145", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242232", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.578433", + "libraryStrategy": "WGS", + "max": "51207", + "mean": "23947", + "metadataAccession": "SRR30152006", + "min": "95", + "mmTag": true, + "n25": "20016", + "n50": "25364", + "n75": "31771", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/primrose/m64055e_220729_170145.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17944", + "quartile50": "22646", + "quartile75": "28584", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03225", + "sampleId": "NA19338", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", + "subpopulation": "LWK", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03225", - "totalBp": "13753000600", - "totalGbp": "13.7530006", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "35086441089", + "totalGbp": "35.09", + "totalReads": "1465150", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621957", - "assembly": null, + "accession": "SAMN37797091", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621957", - "ccsAlgorithm": "N/A", - "coverage": "4.54", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797091", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03225-2_S12_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64055e_220731_124800.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03225-2_S12_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA19338_PB1_m64055e_220731_124800_m64055e_220731_124800", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242231", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.568515", + "libraryStrategy": "WGS", + "max": "51719", + "mean": "23871", + "metadataAccession": "SRR30151951", + "min": "103", + "mmTag": true, + "n25": "19950", + "n50": "25286", + "n75": "31645", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/primrose/m64055e_220731_124800.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17881", + "quartile50": "22577", + "quartile75": "28487", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03225", + "sampleId": "NA19338", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", + "subpopulation": "LWK", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03225", - "totalBp": "14081546800", - "totalGbp": "14.0815468", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "39136064597", + "totalGbp": "39.14", + "totalReads": "1639435", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621957", - "assembly": null, + "accession": "SAMN37797109", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621957", - "ccsAlgorithm": "N/A", - "coverage": "4.54", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797109", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03225-2_S12_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64055e_220815_142254.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03225-2_S12_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG03458_PB1_m64055e_220815_142254_m64055e_220815_142254", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242231", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.550283", + "libraryStrategy": "WGS", + "max": "50474", + "mean": "21425", + "metadataAccession": "SRR30151987", + "min": "137", + "mmTag": true, + "n25": "18095", + "n50": "21772", + "n75": "26657", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03458/raw_data/PacBio_HiFi/primrose/m64055e_220815_142254.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17077", + "quartile50": "20196", + "quartile75": "24502", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03225", + "sampleId": "HG03458", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03225", - "totalBp": "14080492078", - "totalGbp": "14.080492078", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "46167929306", + "totalGbp": "46.17", + "totalReads": "2154798", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621957", - "assembly": null, + "accession": "SAMN37797093", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621957", - "ccsAlgorithm": "N/A", - "coverage": "4.33", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797093", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03225-2_S12_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64055e_220817_094430.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03225-2_S12_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA19468_PB1_m64055e_220817_094430_m64055e_220817_094430", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242230", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.569739", + "libraryStrategy": "WGS", + "max": "51454", + "mean": "25173", + "metadataAccession": "SRR30151940", + "min": "133", + "mmTag": true, + "n25": "21080", + "n50": "25992", + "n75": "32361", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/primrose/m64055e_220817_094430.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "19572", + "quartile50": "23685", + "quartile75": "29407", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03225", + "sampleId": "NA19468", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", + "subpopulation": "LWK", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03225", - "totalBp": "13415679158", - "totalGbp": "13.415679158", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "34921826370", + "totalGbp": "34.92", + "totalReads": "1387230", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621957", - "assembly": null, + "accession": "SAMN37797093", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621957", - "ccsAlgorithm": "N/A", - "coverage": "4.33", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797093", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03225-2_S12_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64055e_220819_064153.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03225-2_S12_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA19468_PB1_m64055e_220819_064153_m64055e_220819_064153", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242230", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.557953", + "libraryStrategy": "WGS", + "max": "51141", + "mean": "25904", + "metadataAccession": "SRR30151986", + "min": "159", + "mmTag": true, + "n25": "21765", + "n50": "26889", + "n75": "33307", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/primrose/m64055e_220819_064153.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "20122", + "quartile50": "24501", + "quartile75": "30376", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03225", + "sampleId": "NA19468", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", + "subpopulation": "LWK", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03225", - "totalBp": "13414715840", - "totalGbp": "13.41471584", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "36811399723", + "totalGbp": "36.81", + "totalReads": "1421052", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621957", - "assembly": null, + "accession": "SAMN37797104", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621957", - "ccsAlgorithm": "N/A", - "coverage": "4.43", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797104", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03225-2_S12_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64055e_220821_033925.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03225-2_S12_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG02391_PB1_m64055e_220821_033925_m64055e_220821_033925", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242229", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.617625", + "libraryStrategy": "WGS", + "max": "51343", + "mean": "23767", + "metadataAccession": "SRR30151981", + "min": "136", + "mmTag": true, + "n25": "19902", + "n50": "24632", + "n75": "30676", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/PacBio_HiFi/primrose/m64055e_220821_033925.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18349", + "quartile50": "22387", + "quartile75": "27807", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03225", + "sampleId": "HG02391", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03225", - "totalBp": "13747816543", - "totalGbp": "13.747816543", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "45992454620", + "totalGbp": "45.99", + "totalReads": "1935113", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621957", - "assembly": null, + "accession": "SAMN37797090", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621957", - "ccsAlgorithm": "N/A", - "coverage": "4.43", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797090", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03225-2_S12_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "Y039", + "filename": "m64055e_220902_174345.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03225-2_S12_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA19185_PB1_m64055e_220902_174345_m64055e_220902_174345", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242229", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.566993", + "libraryStrategy": "WGS", + "max": "50610", + "mean": "20991", + "metadataAccession": "SRR30151983", + "min": "183", + "mmTag": true, + "n25": "17926", + "n50": "21181", + "n75": "25680", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/PacBio_HiFi/primrose/m64055e_220902_174345.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17086", + "quartile50": "19845", + "quartile75": "23785", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03225", + "sampleId": "NA19185", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", + "subpopulation": "YRI", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03225", - "totalBp": "13746864304", - "totalGbp": "13.746864304", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "46990376639", + "totalGbp": "46.99", + "totalReads": "2238569", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758794", - "assembly": null, + "accession": "SAMN37797090", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758794", - "ccsAlgorithm": "N/A", - "coverage": "21.06", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797090", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PK41", - "filename": "HG03239-1_S1_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "Y039", + "filename": "m64055e_220907_174608.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03239-1_S1_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA19185_PB1_m64055e_220907_174608_m64055e_220907_174608", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310837", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.418687", + "libraryStrategy": "WGS", + "max": "50723", + "mean": "21473", + "metadataAccession": "SRR30151984", + "min": "109", + "mmTag": true, + "n25": "18316", + "n50": "21760", + "n75": "26387", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/PacBio_HiFi/primrose/m64055e_220907_174608.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17400", + "quartile50": "20338", + "quartile75": "24443", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03239", + "sampleId": "NA19185", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "YRI", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03239", - "totalBp": "65277299547", - "totalGbp": "65.277299547", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "45757724576", + "totalGbp": "45.76", + "totalReads": "2130932", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758794", - "assembly": null, + "accession": "SAMN37797090", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758794", - "ccsAlgorithm": "N/A", - "coverage": "6.3", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797090", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PK41", - "filename": "HG03239-2_S2_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "Y039", + "filename": "m64055e_220909_131447.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03239-2_S2_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA19185_PB1_m64055e_220909_131447_m64055e_220909_131447", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310836", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.505738", + "libraryStrategy": "WGS", + "max": "50759", + "mean": "21415", + "metadataAccession": "SRR30151985", + "min": "126", + "mmTag": true, + "n25": "18242", + "n50": "21711", + "n75": "26372", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/PacBio_HiFi/primrose/m64055e_220909_131447.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17323", + "quartile50": "20261", + "quartile75": "24406", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03239", + "sampleId": "NA19185", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "YRI", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03239", - "totalBp": "19542904861", - "totalGbp": "19.542904861", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "50319900835", + "totalGbp": "50.32", + "totalReads": "2349733", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021631", - "assembly": null, + "accession": "SAMN37797087", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021631", - "ccsAlgorithm": "N/A", - "coverage": "7", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797087", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03270-1_FC1_S1_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64055e_220911_090142.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03270-1_FC1_S1_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA19087_PB1_m64055e_220911_090142_m64055e_220911_090142", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310835", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.489839", + "libraryStrategy": "WGS", + "max": "51572", + "mean": "21059", + "metadataAccession": "SRR30151941", + "min": "108", + "mmTag": true, + "n25": "17946", + "n50": "21148", + "n75": "25684", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/PacBio_HiFi/primrose/m64055e_220911_090142.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "17157", + "quartile50": "19831", + "quartile75": "23769", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03270", + "sampleId": "NA19087", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03270", - "totalBp": "21691936257", - "totalGbp": "21.691936257", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "38868364644", + "totalGbp": "38.87", + "totalReads": "1845688", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021631", - "assembly": null, + "accession": "SAMN37797087", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021631", - "ccsAlgorithm": "N/A", - "coverage": "7.15", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797087", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03270-1_FC2_S1_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64055e_220913_060032.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03270-1_FC2_S1_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", - "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310810", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.456019", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA19087_PB1_m64055e_220913_060032_m64055e_220913_060032", + "libraryLayout": "single", + "librarySelection": "size fractionation", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "50665", + "mean": "20959", + "metadataAccession": "SRR30151939", + "min": "103", + "mmTag": true, + "n25": "17863", + "n50": "21032", + "n75": "25559", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/PacBio_HiFi/primrose/m64055e_220913_060032.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "17081", + "quartile50": "19722", + "quartile75": "23638", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03270", + "sampleId": "NA19087", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03270", - "totalBp": "22171447478", - "totalGbp": "22.171447478", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "43576607076", + "totalGbp": "43.58", + "totalReads": "2079114", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021631", - "assembly": null, + "accession": "SAMN37797099", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021631", - "ccsAlgorithm": "N/A", - "coverage": "10.26", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03270-2_FC1_S2_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64055e_220915_170505.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03270-2_FC1_S2_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01530_PB1_m64055e_220915_170505_m64055e_220915_170505", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310809", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.4784", + "libraryStrategy": "WGS", + "max": "50604", + "mean": "18528", + "metadataAccession": "SRR30151945", + "min": "282", + "mmTag": true, + "n25": "16326", + "n50": "18388", + "n75": "21348", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/primrose/m64055e_220915_170505.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "15897", + "quartile50": "17719", + "quartile75": "20321", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03270", + "sampleId": "HG01530", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "IBS", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03270", - "totalBp": "31810967811", - "totalGbp": "31.810967811", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "47227190614", + "totalGbp": "47.23", + "totalReads": "2548955", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021631", - "assembly": null, + "accession": "SAMN37797111", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021631", - "ccsAlgorithm": "N/A", - "coverage": "10.57", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797111", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03270-2_FC2_S2_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64055e_220917_121508.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03270-2_FC2_S2_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG03742_PB1_m64055e_220917_121508_m64055e_220917_121508", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310808", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.494294", + "libraryStrategy": "WGS", + "max": "50482", + "mean": "20213", + "metadataAccession": "SRR30151952", + "min": "115", + "mmTag": true, + "n25": "17699", + "n50": "20108", + "n75": "23537", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/PacBio_HiFi/primrose/m64055e_220917_121508.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "17216", + "quartile50": "19303", + "quartile75": "22351", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03270", + "sampleId": "HG03742", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ESN", - "superpopulation": "AFR", + "subpopulation": "ITU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03270", - "totalBp": "32756866692", - "totalGbp": "32.756866692", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "45064274340", + "totalGbp": "45.06", + "totalReads": "2229418", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797109", - "assembly": null, + "accession": "SAMN37797100", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797109", - "ccsAlgorithm": "N/A", - "coverage": "2.37", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797100", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03458-1_S17_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64055e_220920_175231.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03458-1_S17_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01784_PB1_m64055e_220920_175231_m64055e_220920_175231", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242228", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.648711", + "libraryStrategy": "WGS", + "max": "51040", + "mean": "23614", + "metadataAccession": "SRR30151958", + "min": "103", + "mmTag": true, + "n25": "20032", + "n50": "24079", + "n75": "29330", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01784/raw_data/PacBio_HiFi/primrose/m64055e_220920_175231.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18899", + "quartile50": "22354", + "quartile75": "27082", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03458", + "sampleId": "HG01784", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "IBS", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03458", - "totalBp": "7342759890", - "totalGbp": "7.34275989", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "38314696847", + "totalGbp": "38.31", + "totalReads": "1622540", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797109", - "assembly": null, + "accession": "SAMN37797100", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797109", - "ccsAlgorithm": "N/A", - "coverage": "2.37", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797100", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03458-1_S17_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64055e_220922_130045.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03458-1_S17_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01784_PB1_m64055e_220922_130045_m64055e_220922_130045", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242228", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.657246", + "libraryStrategy": "WGS", + "max": "50998", + "mean": "24281", + "metadataAccession": "SRR30151957", + "min": "133", + "mmTag": true, + "n25": "20642", + "n50": "24889", + "n75": "30216", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01784/raw_data/PacBio_HiFi/primrose/m64055e_220922_130045.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "19395", + "quartile50": "23096", + "quartile75": "27956", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03458", + "sampleId": "HG01784", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "IBS", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03458", - "totalBp": "7342347586", - "totalGbp": "7.342347586", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "41388556948", + "totalGbp": "41.39", + "totalReads": "1704532", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797109", - "assembly": null, + "accession": "SAMN37797111", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797109", - "ccsAlgorithm": "N/A", - "coverage": "2.43", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797111", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03458-1_S17_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64055e_220924_080740.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03458-1_S17_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG03742_PB1_m64055e_220924_080740_m64055e_220924_080740", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242227", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.631313", + "libraryStrategy": "WGS", + "max": "50753", + "mean": "20204", + "metadataAccession": "SRR30151950", + "min": "149", + "mmTag": true, + "n25": "17708", + "n50": "20105", + "n75": "23518", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/PacBio_HiFi/primrose/m64055e_220924_080740.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17228", + "quartile50": "19313", + "quartile75": "22345", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03458", + "sampleId": "HG03742", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "ITU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03458", - "totalBp": "7541210310", - "totalGbp": "7.54121031", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "41703134220", + "totalGbp": "41.7", + "totalReads": "2064034", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797109", - "assembly": null, + "accession": "SAMN33758786", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797109", - "ccsAlgorithm": "N/A", - "coverage": "2.43", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758786", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03458-1_S17_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": "BB46", + "filename": "m64076_211109_232223-bc1003.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03458-1_S17_L002", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02451_SRE.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242227", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.664157", + "libraryStrategy": "WGS", + "max": "58519", + "mean": "21225", + "metadataAccession": "SRR23922668", + "min": "139", + "mmTag": true, + "n25": "18403", + "n50": "21230", + "n75": "25048", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/m64076_211109_232223-bc1003.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17810", + "quartile50": "20246", + "quartile75": "23690", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03458", + "sampleId": "HG02451", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "MSL", + "subpopulation": "ACB", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03458", - "totalBp": "7540661411", - "totalGbp": "7.540661411", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "12874949688", + "totalGbp": "12.87", + "totalReads": "606568", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797109", - "assembly": null, + "accession": "SAMN33758786", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797109", - "ccsAlgorithm": "N/A", - "coverage": "2.32", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758786", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03458-1_S17_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "BB46", + "filename": "m64076_211208_005550-bc1003.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03458-1_S17_L003", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02451.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242226", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.637325", + "libraryStrategy": "WGS", + "max": "50248", + "mean": "17319", + "metadataAccession": "SRR23922667", + "min": "424", + "mmTag": true, + "n25": "15174", + "n50": "17364", + "n75": "20294", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/m64076_211208_005550-bc1003.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "14736", + "quartile50": "16646", + "quartile75": "19353", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03458", + "sampleId": "HG02451", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "MSL", + "subpopulation": "ACB", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03458", - "totalBp": "7184535005", - "totalGbp": "7.184535005", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "38494025289", + "totalGbp": "38.49", + "totalReads": "2222540", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797109", - "assembly": null, + "accession": "SAMN33758787", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797109", - "ccsAlgorithm": "N/A", - "coverage": "2.32", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758787", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03458-1_S17_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": "PK26", + "filename": "m64076_211209_102926-bc1002.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03458-1_S17_L003", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02735.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242226", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.634673", + "libraryStrategy": "WGS", + "max": "59898", + "mean": "19674", + "metadataAccession": "SRR23922665", + "min": "59", + "mmTag": true, + "n25": "17062", + "n50": "19856", + "n75": "23486", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m64076_211209_102926-bc1002.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16411", + "quartile50": "18859", + "quartile75": "22198", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03458", + "sampleId": "HG02735", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03458", - "totalBp": "7184028769", - "totalGbp": "7.184028769", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "36782283250", + "totalGbp": "36.78", + "totalReads": "1869576", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797109", - "assembly": null, + "accession": "SAMN33758786", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797109", - "ccsAlgorithm": "N/A", - "coverage": "2.37", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758786", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03458-1_S17_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "BB46", + "filename": "m64076_211211_014755-bc1003.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03458-1_S17_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02451.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242225", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.665429", + "libraryStrategy": "WGS", + "max": "51805", + "mean": "17401", + "metadataAccession": "SRR23922667", + "min": "199", + "mmTag": true, + "n25": "15239", + "n50": "17471", + "n75": "20411", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/m64076_211211_014755-bc1003.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "14790", + "quartile50": "16739", + "quartile75": "19472", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03458", + "sampleId": "HG02451", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "MSL", + "subpopulation": "ACB", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03458", - "totalBp": "7354789323", - "totalGbp": "7.354789323", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "40519515849", + "totalGbp": "40.52", + "totalReads": "2328484", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797109", - "assembly": null, + "accession": "SAMN33758786", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797109", - "ccsAlgorithm": "N/A", - "coverage": "2.37", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758786", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03458-1_S17_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "BB46", + "filename": "m64076_211212_112351-bc1003.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03458-1_S17_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02451.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242225", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.60862", + "libraryStrategy": "WGS", + "max": "56001", + "mean": "17314", + "metadataAccession": "SRR23922667", + "min": "122", + "mmTag": true, + "n25": "15169", + "n50": "17361", + "n75": "20287", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/m64076_211212_112351-bc1003.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "14730", + "quartile50": "16643", + "quartile75": "19345", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03458", + "sampleId": "HG02451", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "MSL", + "subpopulation": "ACB", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03458", - "totalBp": "7354296718", - "totalGbp": "7.354296718", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "39439776523", + "totalGbp": "39.44", + "totalReads": "2277851", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797110", - "assembly": null, + "accession": "SAMN33758794", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797110", - "ccsAlgorithm": "N/A", - "coverage": "3.82", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758794", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SL56", - "filename": "HG03470-1_S18_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "PK41", + "filename": "m64076_220106_231243-bc1015.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03470-1_S18_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03239.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242223", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.594815", + "libraryStrategy": "WGS", + "max": "67645", + "mean": "20251", + "metadataAccession": "SRR23922656", + "min": "77", + "mmTag": true, + "n25": "17390", + "n50": "20721", + "n75": "24825", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/m64076_220106_231243-bc1015.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16457", + "quartile50": "19407", + "quartile75": "23235", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03470", + "sampleId": "HG03239", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03470", - "totalBp": "11849763503", - "totalGbp": "11.849763503", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "36349648567", + "totalGbp": "36.35", + "totalReads": "1794879", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797110", - "assembly": null, + "accession": "SAMN33758794", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797110", - "ccsAlgorithm": "N/A", - "coverage": "3.82", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758794", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SL56", - "filename": "HG03470-1_S18_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "PK41", + "filename": "m64076_220108_100904-bc1015.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03470-1_S18_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", - "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242223", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.577085", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03239.HFSS", + "libraryLayout": "single", + "librarySelection": "RANDOM", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "57608", + "mean": "20045", + "metadataAccession": "SRR23922656", + "min": "61", + "mmTag": true, + "n25": "17225", + "n50": "20513", + "n75": "24597", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/m64076_220108_100904-bc1015.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16305", + "quartile50": "19208", + "quartile75": "23004", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03470", + "sampleId": "HG03239", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03470", - "totalBp": "11849107556", - "totalGbp": "11.849107556", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "35954386623", + "totalGbp": "35.95", + "totalReads": "1793658", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797110", - "assembly": null, + "accession": "SAMN33758795", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797110", - "ccsAlgorithm": "N/A", - "coverage": "3.91", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758795", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SL56", - "filename": "HG03470-1_S18_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": "PK60", + "filename": "m64076_220216_013707-bc1001.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03470-1_S18_L002", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03704.HFSS3", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242222", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.600467", + "libraryStrategy": "WGS", + "max": "62497", + "mean": "19965", + "metadataAccession": "SRR23922654", + "min": "54", + "mmTag": true, + "n25": "17037", + "n50": "20253", + "n75": "24361", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m64076_220216_013707-bc1001.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16204", + "quartile50": "19002", + "quartile75": "22753", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03470", + "sampleId": "HG03704", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03470", - "totalBp": "12135092146", - "totalGbp": "12.135092146", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "12144176455", + "totalGbp": "12.14", + "totalReads": "608249", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797110", - "assembly": null, + "accession": "SAMN33758781", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797110", - "ccsAlgorithm": "N/A", - "coverage": "3.91", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758781", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SL56", - "filename": "HG03470-1_S18_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "PR03", + "filename": "m64076_220216_013707-bc1010.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03470-1_S18_L002", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00639.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242222", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.552266", + "libraryStrategy": "WGS", + "max": "52534", + "mean": "19981", + "metadataAccession": "SRR23922643", + "min": "61", + "mmTag": true, + "n25": "17104", + "n50": "20746", + "n75": "25246", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/m64076_220216_013707-bc1010.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15886", + "quartile50": "19132", + "quartile75": "23275", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03470", + "sampleId": "HG00639", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03470", - "totalBp": "12134176924", - "totalGbp": "12.134176924", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "5693715374", + "totalGbp": "5.69", + "totalReads": "284943", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797110", - "assembly": null, + "accession": "SAMN33758789", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797110", - "ccsAlgorithm": "N/A", - "coverage": "3.75", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758789", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SL56", - "filename": "HG03470-1_S18_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": "PK35", + "filename": "m64076_220216_013707-bc1012.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03470-1_S18_L003", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03017.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242319", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.594667", + "libraryStrategy": "WGS", + "max": "53564", + "mean": "19618", + "metadataAccession": "SRR23922662", + "min": "136", + "mmTag": true, + "n25": "16707", + "n50": "20379", + "n75": "24868", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m64076_220216_013707-bc1012.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15514", + "quartile50": "18737", + "quartile75": "22888", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03470", + "sampleId": "HG03017", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03470", - "totalBp": "11634327328", - "totalGbp": "11.634327328", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "8141215131", + "totalGbp": "8.14", + "totalReads": "414973", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797110", - "assembly": null, + "accession": "SAMN33758780", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797110", - "ccsAlgorithm": "N/A", - "coverage": "3.75", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758780", + "ccsAlgorithm": "6.2.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SL56", - "filename": "HG03470-1_S18_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "SH045", + "filename": "m64076_220216_013707-bc1016.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03470-1_S18_L003", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00558.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242319", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.574864", + "libraryStrategy": "WGS", + "max": "61233", + "mean": "20813", + "metadataAccession": "SRR23922640", + "min": "61", + "mmTag": true, + "n25": "17676", + "n50": "21415", + "n75": "26110", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m64076_220216_013707-bc1016.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16484", + "quartile50": "19802", + "quartile75": "24088", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03470", + "sampleId": "HG00558", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03470", - "totalBp": "11633456348", - "totalGbp": "11.633456348", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "2266821485", + "totalGbp": "2.27", + "totalReads": "108911", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797110", - "assembly": null, + "accession": "SAMN33758791", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797110", - "ccsAlgorithm": "N/A", - "coverage": "3.83", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758791", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SL56", - "filename": "HG03470-1_S18_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": "NG36", + "filename": "m64076_220513_215716-bc2018.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03470-1_S18_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03130.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242318", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.6004", + "libraryStrategy": "WGS", + "max": "54183", + "mean": "19549", + "metadataAccession": "SRR23922660", + "min": "63", + "mmTag": true, + "n25": "16848", + "n50": "19851", + "n75": "23622", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/PacBio_HiFi/m64076_220513_215716-bc2018.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16080", + "quartile50": "18732", + "quartile75": "22231", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03470", + "sampleId": "HG03130", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "MSL", + "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03470", - "totalBp": "11860368970", - "totalGbp": "11.86036897", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "39686464232", + "totalGbp": "39.69", + "totalReads": "2030081", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797110", - "assembly": null, + "accession": "SAMN33758791", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797110", - "ccsAlgorithm": "N/A", - "coverage": "3.83", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758791", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SL56", - "filename": "HG03470-1_S18_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": "NG36", + "filename": "m64076_220516_221911-bc2018.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03470-1_S18_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03130.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242318", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.567967", + "libraryStrategy": "WGS", + "max": "63690", + "mean": "19623", + "metadataAccession": "SRR23922660", + "min": "88", + "mmTag": true, + "n25": "16938", + "n50": "19932", + "n75": "23673", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/PacBio_HiFi/m64076_220516_221911-bc2018.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16170", + "quartile50": "18830", + "quartile75": "22304", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03470", + "sampleId": "HG03130", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "MSL", + "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03470", - "totalBp": "11859518640", - "totalGbp": "11.85951864", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "39141478923", + "totalGbp": "39.14", + "totalReads": "1994630", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797110", - "assembly": null, + "accession": "SAMN33758791", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797110", - "ccsAlgorithm": "N/A", - "coverage": "3.09", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758791", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SL56", - "filename": "HG03470-2_S26_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": "NG36", + "filename": "m64076_220518_191414-bc2018.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03470-2_S26_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03130.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242317", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.620073", + "libraryStrategy": "WGS", + "max": "55594", + "mean": "19705", + "metadataAccession": "SRR23922660", + "min": "78", + "mmTag": true, + "n25": "17005", + "n50": "20034", + "n75": "23797", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/PacBio_HiFi/m64076_220518_191414-bc2018.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16222", + "quartile50": "18912", + "quartile75": "22419", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03470", + "sampleId": "HG03130", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "MSL", + "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03470", - "totalBp": "9587897548", - "totalGbp": "9.587897548", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "38602098340", + "totalGbp": "38.6", + "totalReads": "1958959", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797110", - "assembly": null, + "accession": "SAMN33758793", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797110", - "ccsAlgorithm": "N/A", - "coverage": "3.09", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758793", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SL56", - "filename": "HG03470-2_S26_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": null, + "filename": "m64076_220520_234906-bc2020.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03470-2_S26_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03209.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242317", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.593232", + "libraryStrategy": "WGS", + "max": "59822", + "mean": "18766", + "metadataAccession": "SRR23922657", + "min": "88", + "mmTag": true, + "n25": "16387", + "n50": "18885", + "n75": "22158", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/m64076_220520_234906-bc2020.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15843", + "quartile50": "18042", + "quartile75": "21068", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03470", + "sampleId": "HG03209", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03470", - "totalBp": "9587299787", - "totalGbp": "9.587299787", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "41408759487", + "totalGbp": "41.41", + "totalReads": "2206531", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797110", - "assembly": null, + "accession": "SAMN33758793", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797110", - "ccsAlgorithm": "N/A", - "coverage": "3.17", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758793", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SL56", - "filename": "HG03470-2_S26_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": null, + "filename": "m64076_220524_161808-bc2020.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03470-2_S26_L002", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03209.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242218", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.572677", + "libraryStrategy": "WGS", + "max": "52802", + "mean": "18697", + "metadataAccession": "SRR23922657", + "min": "111", + "mmTag": true, + "n25": "16331", + "n50": "18799", + "n75": "22046", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/m64076_220524_161808-bc2020.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15799", + "quartile50": "17970", + "quartile75": "20972", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03470", + "sampleId": "HG03209", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03470", - "totalBp": "9825240348", - "totalGbp": "9.825240348", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "39036651192", + "totalGbp": "39.04", + "totalReads": "2087855", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797110", - "assembly": null, + "accession": "SAMN33758793", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797110", - "ccsAlgorithm": "N/A", - "coverage": "3.17", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758793", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SL56", - "filename": "HG03470-2_S26_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": null, + "filename": "m64076_220526_115049-bc2020.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03470-2_S26_L002", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03209.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242218", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.595658", + "libraryStrategy": "WGS", + "max": "53890", + "mean": "18307", + "metadataAccession": "SRR23922657", + "min": "91", + "mmTag": true, + "n25": "16050", + "n50": "18337", + "n75": "21412", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/m64076_220526_115049-bc2020.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15577", + "quartile50": "17588", + "quartile75": "20402", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03470", + "sampleId": "HG03209", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03470", - "totalBp": "9824464467", - "totalGbp": "9.824464467", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "21783182095", + "totalGbp": "21.78", + "totalReads": "1189873", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797110", - "assembly": null, + "accession": "SAMN33758797", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797110", - "ccsAlgorithm": "N/A", - "coverage": "3.02", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758797", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SL56", - "filename": "HG03470-2_S26_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": null, + "filename": "m64076_220826_143529-bc2049.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03470-2_S26_L003", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG18747_2.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242217", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.598062", + "libraryStrategy": "WGS", + "max": "86286", + "mean": "21168", + "metadataAccession": "SRR23922650", + "min": "95", + "mmTag": true, + "n25": "18567", + "n50": "21454", + "n75": "24961", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/m64076_220826_143529-bc2049.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17906", + "quartile50": "20506", + "quartile75": "23861", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03470", + "sampleId": "NA18747", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03470", - "totalBp": "9358371465", - "totalGbp": "9.358371465", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "31669760595", + "totalGbp": "31.67", + "totalReads": "1496050", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797110", - "assembly": null, + "accession": "SAMN33758797", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797110", - "ccsAlgorithm": "N/A", - "coverage": "3.02", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758797", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SL56", - "filename": "HG03470-2_S26_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": null, + "filename": "m64076_220828_113336-bc2049.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03470-2_S26_L003", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG18747_2.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242217", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.572006", + "libraryStrategy": "WGS", + "max": "85977", + "mean": "20876", + "metadataAccession": "SRR23922650", + "min": "158", + "mmTag": true, + "n25": "18289", + "n50": "21114", + "n75": "24619", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/m64076_220828_113336-bc2049.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17657", + "quartile50": "20179", + "quartile75": "23497", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03470", + "sampleId": "NA18747", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03470", - "totalBp": "9357642820", - "totalGbp": "9.35764282", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "33237414229", + "totalGbp": "33.24", + "totalReads": "1592112", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797110", - "assembly": null, + "accession": "SAMN33758779", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797110", - "ccsAlgorithm": "N/A", - "coverage": "3.08", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758779", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SL56", - "filename": "HG03470-2_S26_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": null, + "filename": "m64076_220831_191646-bc2051.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03470-2_S26_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG00280.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242216", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.603151", + "libraryStrategy": "WGS", + "max": "56326", + "mean": "19962", + "metadataAccession": "SRR23922658", + "min": "83", + "mmTag": true, + "n25": "17534", + "n50": "19996", + "n75": "23256", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/PacBio_HiFi/m64076_220831_191646-bc2051.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17046", + "quartile50": "19212", + "quartile75": "22241", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03470", + "sampleId": "HG00280", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03470", - "totalBp": "9560358443", - "totalGbp": "9.560358443", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "35342284205", + "totalGbp": "35.34", + "totalReads": "1770422", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797110", - "assembly": null, + "accession": "SAMN33758785", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797110", - "ccsAlgorithm": "N/A", - "coverage": "3.08", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758785", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SL56", - "filename": "HG03470-2_S26_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": null, + "filename": "m64076_220902_143723-bc2054.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03470-2_S26_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG02165.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242216", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.579355", + "libraryStrategy": "WGS", + "max": "66727", + "mean": "20945", + "metadataAccession": "SRR23922648", + "min": "84", + "mmTag": true, + "n25": "18503", + "n50": "21207", + "n75": "24441", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/PacBio_HiFi/m64076_220902_143723-bc2054.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17918", + "quartile50": "20372", + "quartile75": "23498", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03470", + "sampleId": "HG02165", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03470", - "totalBp": "9559639900", - "totalGbp": "9.5596399", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "48389996564", + "totalGbp": "48.39", + "totalReads": "2310300", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021645", - "assembly": null, + "accession": "SAMN33758785", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021645", - "ccsAlgorithm": "N/A", - "coverage": "3.31", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758785", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SL73", - "filename": "HG03583-1_FC1_S15_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": null, + "filename": "m64076_220904_113359-bc2054.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03583-1_FC1_S15_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG02165.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310807", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.587735", + "libraryStrategy": "WGS", + "max": "61252", + "mean": "20321", + "metadataAccession": "SRR23922648", + "min": "85", + "mmTag": true, + "n25": "17970", + "n50": "20447", + "n75": "23596", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/PacBio_HiFi/m64076_220904_113359-bc2054.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", + "productionYear": "YR3", + "quartile25": "17465", + "quartile50": "19685", + "quartile75": "22659", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03583", + "sampleId": "HG02165", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03583", - "totalBp": "10268000000", - "totalGbp": "10.268", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "42083036071", + "totalGbp": "42.08", + "totalReads": "2070860", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021645", - "assembly": null, + "accession": "SAMN33758785", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021645", - "ccsAlgorithm": "N/A", - "coverage": "3.11", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758785", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SL73", - "filename": "HG03583-1_FC2_S15_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": null, + "filename": "m64076_220906_083112-bc2054.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03583-1_FC2_S15_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG02165.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310806", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.555637", + "libraryStrategy": "WGS", + "max": "57739", + "mean": "20170", + "metadataAccession": "SRR23922648", + "min": "87", + "mmTag": true, + "n25": "17829", + "n50": "20270", + "n75": "23418", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/PacBio_HiFi/m64076_220906_083112-bc2054.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", + "productionYear": "YR3", + "quartile25": "17338", + "quartile50": "19513", + "quartile75": "22476", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03583", + "sampleId": "HG02165", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03583", - "totalBp": "9656429011", - "totalGbp": "9.656429011", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "44241695516", + "totalGbp": "44.24", + "totalReads": "2193354", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021645", - "assembly": null, + "accession": "SAMN33758784", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021645", - "ccsAlgorithm": "N/A", - "coverage": "3.91", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758784", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SL73", - "filename": "HG03583-2_FC1_S16_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": null, + "filename": "m64076_220908_204946-bc2056.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03583-2_FC1_S16_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02040.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310805", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.559499", + "libraryStrategy": "WGS", + "max": "63774", + "mean": "20362", + "metadataAccession": "SRR23922646", + "min": "72", + "mmTag": true, + "n25": "18052", + "n50": "20662", + "n75": "24153", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/PacBio_HiFi/m64076_220908_204946-bc2056.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", + "productionYear": "YR3", + "quartile25": "17430", + "quartile50": "19743", + "quartile75": "22962", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03583", + "sampleId": "HG02040", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03583", - "totalBp": "12121397556", - "totalGbp": "12.121397556", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "40975751860", + "totalGbp": "40.98", + "totalReads": "2012274", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021645", - "assembly": null, + "accession": "SAMN33758784", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021645", - "ccsAlgorithm": "N/A", - "coverage": "3.79", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758784", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "SL73", - "filename": "HG03583-2_FC2_S16_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": null, + "filename": "m64076_220910_174812-bc2056.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03583-2_FC2_S16_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02040.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310804", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.557892", + "libraryStrategy": "WGS", + "max": "72682", + "mean": "20935", + "metadataAccession": "SRR23922646", + "min": "106", + "mmTag": true, + "n25": "18390", + "n50": "21140", + "n75": "24689", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/PacBio_HiFi/m64076_220910_174812-bc2056.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", + "productionYear": "YR3", + "quartile25": "17777", + "quartile50": "20216", + "quartile75": "23524", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03583", + "sampleId": "HG02040", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03583", - "totalBp": "11736739401", - "totalGbp": "11.736739401", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "44556381201", + "totalGbp": "44.56", + "totalReads": "2128239", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758795", - "assembly": null, + "accession": "SAMN33758784", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758795", - "ccsAlgorithm": "N/A", - "coverage": "24.15", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758784", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PK60", - "filename": "HG03704-1_S1_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": null, + "filename": "m64076_220912_140850-bc2056.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03704-1_S1_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02040.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310978", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.288385", + "libraryStrategy": "WGS", + "max": "56457", + "mean": "21135", + "metadataAccession": "SRR23922646", + "min": "88", + "mmTag": true, + "n25": "18550", + "n50": "21351", + "n75": "24919", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/PacBio_HiFi/m64076_220912_140850-bc2056.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17919", + "quartile50": "20417", + "quartile75": "23768", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03704", + "sampleId": "HG02040", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PJL", - "superpopulation": "SAS", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03704", - "totalBp": "74878233793", - "totalGbp": "74.878233793", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "44365842122", + "totalGbp": "44.37", + "totalReads": "2099134", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758795", - "assembly": null, + "accession": "SAMN33758801", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758795", - "ccsAlgorithm": "N/A", - "coverage": "18.3", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758801", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "PK60", - "filename": "HG03704-2_S1_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": null, + "filename": "m64076_220914_214248-bc2060.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03704-2_S1_L002", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG20905.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310977", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.26475", + "libraryStrategy": "WGS", + "max": "60851", + "mean": "20442", + "metadataAccession": "SRR23922642", + "min": "79", + "mmTag": true, + "n25": "17852", + "n50": "20849", + "n75": "24428", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/m64076_220914_214248-bc2060.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17087", + "quartile50": "19810", + "quartile75": "23243", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03704", + "sampleId": "NA20905", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "PJL", + "subpopulation": "GIH", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03704", - "totalBp": "56722768121", - "totalGbp": "56.722768121", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "43916560522", + "totalGbp": "43.92", + "totalReads": "2148277", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797111", - "assembly": null, + "accession": "SAMN33758801", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797111", - "ccsAlgorithm": "N/A", - "coverage": "2.18", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758801", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", "familyId": null, - "filename": "HG03742-1_S24_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64076_220916_183810-bc2060.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03742-1_S24_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG20905.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242335", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.650114", + "libraryStrategy": "WGS", + "max": "65512", + "mean": "19751", + "metadataAccession": "SRR23922642", + "min": "82", + "mmTag": true, + "n25": "17191", + "n50": "20025", + "n75": "23576", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/m64076_220916_183810-bc2060.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16508", + "quartile50": "19031", + "quartile75": "22356", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03742", + "sampleId": "NA20905", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ITU", + "subpopulation": "GIH", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03742", - "totalBp": "6754019188", - "totalGbp": "6.754019188", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "41700838716", + "totalGbp": "41.7", + "totalReads": "2111321", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797111", - "assembly": null, + "accession": "SAMN33758801", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797111", - "ccsAlgorithm": "N/A", - "coverage": "2.18", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758801", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", "familyId": null, - "filename": "HG03742-1_S24_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64076_220918_143117-bc2060.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03742-1_S24_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG20905.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242335", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.651477", + "libraryStrategy": "WGS", + "max": "69049", + "mean": "19793", + "metadataAccession": "SRR23922642", + "min": "54", + "mmTag": true, + "n25": "17228", + "n50": "20081", + "n75": "23645", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/m64076_220918_143117-bc2060.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16533", + "quartile50": "19077", + "quartile75": "22417", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03742", + "sampleId": "NA20905", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ITU", + "subpopulation": "GIH", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03742", - "totalBp": "6753334539", - "totalGbp": "6.753334539", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "43283072105", + "totalGbp": "43.28", + "totalReads": "2186710", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797111", - "assembly": null, + "accession": "SAMN33758789", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797111", - "ccsAlgorithm": "N/A", - "coverage": "2.28", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758789", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03742-1_S24_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": "PK35", + "filename": "m64076_221001_041132-bc1012.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03742-1_S24_L002", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03017.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242334", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.612799", + "libraryStrategy": "WGS", + "max": "67114", + "mean": "21129", + "metadataAccession": "SRR23922662", + "min": "396", + "mmTag": true, + "n25": "18187", + "n50": "21954", + "n75": "26294", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m64076_221001_041132-bc1012.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16904", + "quartile50": "20408", + "quartile75": "24540", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03742", + "sampleId": "HG03017", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ITU", + "subpopulation": "PJL", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03742", - "totalBp": "7071031529", - "totalGbp": "7.071031529", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "15298343686", + "totalGbp": "15.3", + "totalReads": "724011", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797111", - "assembly": null, + "accession": "SAMN33758797", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797111", - "ccsAlgorithm": "N/A", - "coverage": "2.28", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758797", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", "familyId": null, - "filename": "HG03742-1_S24_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64076_221001_041132-bc2011.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03742-1_S24_L002", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG18747_1.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242334", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.610281", + "libraryStrategy": "WGS", + "max": "53613", + "mean": "20597", + "metadataAccession": "SRR23922651", + "min": "89", + "mmTag": true, + "n25": "18231", + "n50": "20819", + "n75": "24016", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/m64076_221001_041132-bc2011.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17677", + "quartile50": "20028", + "quartile75": "23080", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03742", + "sampleId": "NA18747", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03742", - "totalBp": "7070557687", - "totalGbp": "7.070557687", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "9845535652", + "totalGbp": "9.85", + "totalReads": "477989", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797111", - "assembly": null, + "accession": "SAMN33758793", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797111", - "ccsAlgorithm": "N/A", - "coverage": "2.28", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758793", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "HG03742-1_S24_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64076_221001_041132-bc2020.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03742-1_S24_L003", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03209.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242332", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.633073", + "libraryStrategy": "WGS", + "max": "56747", + "mean": "19301", + "metadataAccession": "SRR23922657", + "min": "1106", + "mmTag": true, + "n25": "16905", + "n50": "19552", + "n75": "22812", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/m64076_221001_041132-bc2020.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16295", + "quartile50": "18678", + "quartile75": "21777", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03742", + "sampleId": "HG03209", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "MSL", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03742", - "totalBp": "7069840467", - "totalGbp": "7.069840467", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "14062564475", + "totalGbp": "14.06", + "totalReads": "728559", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797111", - "assembly": null, + "accession": "SAMN33621946", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797111", - "ccsAlgorithm": "N/A", - "coverage": "2.28", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621946", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03742-1_S24_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "CLM17", + "filename": "m64136_211105_181124-bc1001.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03742-1_S24_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG01261_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242332", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.655928", + "libraryStrategy": "WGS", + "max": "58704", + "mean": "20987", + "metadataAccession": "SRR23732278", + "min": "986", + "mmTag": true, + "n25": "18395", + "n50": "20237", + "n75": "24263", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/m64136_211105_181124-bc1001.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18104", + "quartile50": "19655", + "quartile75": "22562", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03742", + "sampleId": "HG01261", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03742", - "totalBp": "7069350018", - "totalGbp": "7.069350018", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "30182743796", + "totalGbp": "30.18", + "totalReads": "1438147", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797111", - "assembly": null, + "accession": "SAMN33621946", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797111", - "ccsAlgorithm": "N/A", - "coverage": "2.26", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621946", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03742-1_S24_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "CLM17", + "filename": "m64136_211107_050725-bc1001.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03742-1_S24_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG01261_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242331", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.632801", + "libraryStrategy": "WGS", + "max": "64761", + "mean": "21233", + "metadataAccession": "SRR23732278", + "min": "170", + "mmTag": true, + "n25": "18510", + "n50": "20474", + "n75": "24807", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/m64136_211107_050725-bc1001.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18194", + "quartile50": "19824", + "quartile75": "23063", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03742", + "sampleId": "HG01261", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03742", - "totalBp": "7012952628", - "totalGbp": "7.012952628", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "32158315632", + "totalGbp": "32.16", + "totalReads": "1514497", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797111", - "assembly": null, + "accession": "SAMN33621946", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797111", - "ccsAlgorithm": "N/A", - "coverage": "2.26", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621946", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03742-1_S24_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "CLM17", + "filename": "m64136_211108_160613-bc1001.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03742-1_S24_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG01261_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242331", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.636586", + "libraryStrategy": "WGS", + "max": "65223", + "mean": "21072", + "metadataAccession": "SRR23732278", + "min": "204", + "mmTag": true, + "n25": "18429", + "n50": "20313", + "n75": "24465", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/m64136_211108_160613-bc1001.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18129", + "quartile50": "19707", + "quartile75": "22728", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03742", + "sampleId": "HG01261", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03742", - "totalBp": "7012492701", - "totalGbp": "7.012492701", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "32544026126", + "totalGbp": "32.54", + "totalReads": "1544394", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797111", - "assembly": null, + "accession": "SAMN33621943", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797111", - "ccsAlgorithm": "N/A", - "coverage": "6.09", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621943", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03742-2_S32_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH002", + "filename": "m64136_211111_194404-bc1002.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03742-2_S32_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00408_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242330", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.500177", + "libraryStrategy": "WGS", + "max": "58108", + "mean": "19152", + "metadataAccession": "SRR23732283", + "min": "81", + "mmTag": true, + "n25": "16758", + "n50": "18490", + "n75": "22251", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00408/raw_data/PacBio_HiFi/m64136_211111_194404-bc1002.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16477", + "quartile50": "17924", + "quartile75": "20859", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03742", + "sampleId": "HG00408", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03742", - "totalBp": "18877366518", - "totalGbp": "18.877366518", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "38355055565", + "totalGbp": "38.36", + "totalReads": "2002652", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797111", - "assembly": null, + "accession": "SAMN33621943", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797111", - "ccsAlgorithm": "N/A", - "coverage": "6.09", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621943", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03742-2_S32_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH002", + "filename": "m64136_211113_063830-bc1002.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03742-2_S32_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00408_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242330", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.510251", + "libraryStrategy": "WGS", + "max": "59031", + "mean": "19250", + "metadataAccession": "SRR23732283", + "min": "124", + "mmTag": true, + "n25": "16802", + "n50": "18580", + "n75": "22446", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00408/raw_data/PacBio_HiFi/m64136_211113_063830-bc1002.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16510", + "quartile50": "17982", + "quartile75": "21042", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03742", + "sampleId": "HG00408", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03742", - "totalBp": "18875657885", - "totalGbp": "18.875657885", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "38660030224", + "totalGbp": "38.66", + "totalReads": "2008291", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797111", - "assembly": null, + "accession": "SAMN33621943", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797111", - "ccsAlgorithm": "N/A", - "coverage": "6.63", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621943", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03742-2_S32_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH002", + "filename": "m64136_211114_164241-bc1002.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03742-2_S32_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00408_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242329", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.551993", + "libraryStrategy": "WGS", + "max": "53377", + "mean": "19185", + "metadataAccession": "SRR23732283", + "min": "139", + "mmTag": true, + "n25": "16770", + "n50": "18510", + "n75": "22318", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00408/raw_data/PacBio_HiFi/m64136_211114_164241-bc1002.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16486", + "quartile50": "17935", + "quartile75": "20910", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03742", + "sampleId": "HG00408", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03742", - "totalBp": "20557546849", - "totalGbp": "20.557546849", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "38730219265", + "totalGbp": "38.73", + "totalReads": "2018757", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797111", - "assembly": null, + "accession": "SAMN33621949", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797111", - "ccsAlgorithm": "N/A", - "coverage": "6.63", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621949", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03742-2_S32_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "VN060", + "filename": "m64136_211118_185339-bc1009.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03742-2_S32_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02056_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242329", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.52019", + "libraryStrategy": "WGS", + "max": "51507", + "mean": "19854", + "metadataAccession": "SRR23732275", + "min": "122", + "mmTag": true, + "n25": "18083", + "n50": "19712", + "n75": "22301", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/m64136_211118_185339-bc1009.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17756", + "quartile50": "19247", + "quartile75": "21406", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03742", + "sampleId": "HG02056", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03742", - "totalBp": "20556396284", - "totalGbp": "20.556396284", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "29158250441", + "totalGbp": "29.16", + "totalReads": "1468626", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797111", - "assembly": null, + "accession": "SAMN33621949", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797111", - "ccsAlgorithm": "N/A", - "coverage": "6.63", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621949", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03742-2_S32_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "VN060", + "filename": "m64136_211120_043838-bc1009.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03742-2_S32_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02056_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242328", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.525506", + "libraryStrategy": "WGS", + "max": "50015", + "mean": "19815", + "metadataAccession": "SRR23732275", + "min": "116", + "mmTag": true, + "n25": "18068", + "n50": "19682", + "n75": "22217", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/m64136_211120_043838-bc1009.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17748", + "quartile50": "19225", + "quartile75": "21357", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03742", + "sampleId": "HG02056", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03742", - "totalBp": "20566876467", - "totalGbp": "20.566876467", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "27141258277", + "totalGbp": "27.14", + "totalReads": "1369700", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797111", - "assembly": null, + "accession": "SAMN33621949", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797111", - "ccsAlgorithm": "N/A", - "coverage": "6.63", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621949", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03742-2_S32_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "VN060", + "filename": "m64136_211121_153454-bc1009.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03742-2_S32_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02056_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242328", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.5459", + "libraryStrategy": "WGS", + "max": "55264", + "mean": "19862", + "metadataAccession": "SRR23732275", + "min": "199", + "mmTag": true, + "n25": "18090", + "n50": "19721", + "n75": "22333", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/m64136_211121_153454-bc1009.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17760", + "quartile50": "19254", + "quartile75": "21430", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03742", + "sampleId": "HG02056", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03742", - "totalBp": "20565643644", - "totalGbp": "20.565643644", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "28490874747", + "totalGbp": "28.49", + "totalReads": "1434407", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797111", - "assembly": null, + "accession": "SAMN33621950", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797111", - "ccsAlgorithm": "N/A", - "coverage": "6.59", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621950", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03742-2_S32_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "VN079", + "filename": "m64136_220422_181133-bc1001.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03742-2_S32_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02129_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242327", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.508401", + "libraryStrategy": "WGS", + "max": "65275", + "mean": "19191", + "metadataAccession": "SRR23732274", + "min": "139", + "mmTag": true, + "n25": "16939", + "n50": "19334", + "n75": "21674", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02129/raw_data/PacBio_HiFi/m64136_220422_181133-bc1001.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16313", + "quartile50": "18805", + "quartile75": "20933", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03742", + "sampleId": "HG02129", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03742", - "totalBp": "20431898061", - "totalGbp": "20.431898061", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "37306593554", + "totalGbp": "37.31", + "totalReads": "1943961", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797111", - "assembly": null, + "accession": "SAMN33621950", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797111", - "ccsAlgorithm": "N/A", - "coverage": "6.59", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621950", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03742-2_S32_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "VN079", + "filename": "m64136_220424_050632-bc1001.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03742-2_S32_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02129_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242327", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.520253", + "libraryStrategy": "WGS", + "max": "56783", + "mean": "19216", + "metadataAccession": "SRR23732274", + "min": "95", + "mmTag": true, + "n25": "16979", + "n50": "19358", + "n75": "21704", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02129/raw_data/PacBio_HiFi/m64136_220424_050632-bc1001.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16330", + "quartile50": "18825", + "quartile75": "20955", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03742", + "sampleId": "HG02129", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03742", - "totalBp": "20430728922", - "totalGbp": "20.430728922", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "32061676319", + "totalGbp": "32.06", + "totalReads": "1668439", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797112", - "assembly": null, + "accession": "SAMN33621950", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797112", - "ccsAlgorithm": "N/A", - "coverage": "2.87", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621950", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03792-1_S19_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "VN079", + "filename": "m64136_220426_155627-bc1001.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03792-1_S19_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02129_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242326", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.652957", + "libraryStrategy": "WGS", + "max": "61990", + "mean": "19272", + "metadataAccession": "SRR23732274", + "min": "61", + "mmTag": true, + "n25": "17036", + "n50": "19403", + "n75": "21791", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02129/raw_data/PacBio_HiFi/m64136_220426_155627-bc1001.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", + "productionYear": "YR3", + "quartile25": "16361", + "quartile50": "18861", + "quartile75": "21022", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03792", + "sampleId": "HG02129", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03792", - "totalBp": "8894617797", - "totalGbp": "8.894617797", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "42004596679", + "totalGbp": "42", + "totalReads": "2179533", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797112", - "assembly": null, + "accession": "SAMN33621957", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797112", - "ccsAlgorithm": "N/A", - "coverage": "2.87", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621957", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03792-1_S19_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64136_220518_004520-bc1008.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03792-1_S19_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03225_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242326", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.620963", + "libraryStrategy": "WGS", + "max": "56904", + "mean": "21381", + "metadataAccession": "SRR23732287", + "min": "83", + "mmTag": true, + "n25": "19083", + "n50": "21321", + "n75": "24508", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03225/raw_data/PacBio_HiFi/m64136_220518_004520-bc1008.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", + "productionYear": "YR3", + "quartile25": "18637", + "quartile50": "20656", + "quartile75": "23529", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03792", + "sampleId": "HG03225", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "MSL", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03792", - "totalBp": "8894046349", - "totalGbp": "8.894046349", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "26980532443", + "totalGbp": "26.98", + "totalReads": "1261872", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797112", - "assembly": null, + "accession": "SAMN33621956", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797112", - "ccsAlgorithm": "N/A", - "coverage": "3.15", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03792-1_S19_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "NG58", + "filename": "m64136_220617_195203-bc1010.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03792-1_S19_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03195_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242325", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.647623", + "libraryStrategy": "WGS", + "max": "68687", + "mean": "20729", + "metadataAccession": "SRR23732288", + "min": "54", + "mmTag": true, + "n25": "17921", + "n50": "20557", + "n75": "24463", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/m64136_220617_195203-bc1010.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", + "productionYear": "YR3", + "quartile25": "17481", + "quartile50": "19529", + "quartile75": "23196", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03792", + "sampleId": "HG03195", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "ESN", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03792", - "totalBp": "9758746396", - "totalGbp": "9.758746396", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "38391026616", + "totalGbp": "38.39", + "totalReads": "1851955", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797112", - "assembly": null, + "accession": "SAMN33621956", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797112", - "ccsAlgorithm": "N/A", - "coverage": "3.15", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03792-1_S19_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "NG58", + "filename": "m64136_220619_164654-bc1010.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03792-1_S19_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03195_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242325", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.60376", + "libraryStrategy": "WGS", + "max": "64535", + "mean": "20666", + "metadataAccession": "SRR23732288", + "min": "52", + "mmTag": true, + "n25": "17895", + "n50": "20471", + "n75": "24342", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/m64136_220619_164654-bc1010.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", + "productionYear": "YR3", + "quartile25": "17464", + "quartile50": "19472", + "quartile75": "23096", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03792", + "sampleId": "HG03195", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "ESN", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03792", - "totalBp": "9758351664", - "totalGbp": "9.758351664", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "34900743310", + "totalGbp": "34.9", + "totalReads": "1688750", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797112", - "assembly": null, + "accession": "SAMN33621956", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797112", - "ccsAlgorithm": "N/A", - "coverage": "3.15", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621956", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03792-1_S19_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "NG58", + "filename": "m64136_220621_134558-bc1010.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03792-1_S19_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG03195_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242324", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.636941", + "libraryStrategy": "WGS", + "max": "69884", + "mean": "20880", + "metadataAccession": "SRR23732288", + "min": "139", + "mmTag": true, + "n25": "18042", + "n50": "20781", + "n75": "24628", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/m64136_220621_134558-bc1010.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", + "productionYear": "YR3", + "quartile25": "17587", + "quartile50": "19710", + "quartile75": "23384", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03792", + "sampleId": "HG03195", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "ESN", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03792", - "totalBp": "9768810382", - "totalGbp": "9.768810382", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "32834403528", + "totalGbp": "32.83", + "totalReads": "1572497", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797112", - "assembly": null, + "accession": "SAMN33621951", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797112", - "ccsAlgorithm": "N/A", - "coverage": "3.15", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621951", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03792-1_S19_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64136_220701_181202-bc1012.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03792-1_S19_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02155_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242324", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.60274", + "libraryStrategy": "WGS", + "max": "63056", + "mean": "19653", + "metadataAccession": "SRR23732293", + "min": "69", + "mmTag": true, + "n25": "17224", + "n50": "19369", + "n75": "22944", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/m64136_220701_181202-bc1012.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", + "productionYear": "YR3", + "quartile25": "16848", + "quartile50": "18635", + "quartile75": "21767", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03792", + "sampleId": "HG02155", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03792", - "totalBp": "9768393628", - "totalGbp": "9.768393628", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "34332255688", + "totalGbp": "34.33", + "totalReads": "1746882", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797112", - "assembly": null, + "accession": "SAMN33621951", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797112", - "ccsAlgorithm": "N/A", - "coverage": "3.1", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621951", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03792-1_S19_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64136_220703_150713-bc1012.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03792-1_S19_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02155_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242323", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.592393", + "libraryStrategy": "WGS", + "max": "56609", + "mean": "19601", + "metadataAccession": "SRR23732293", + "min": "61", + "mmTag": true, + "n25": "17196", + "n50": "19308", + "n75": "22847", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/m64136_220703_150713-bc1012.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", + "productionYear": "YR3", + "quartile25": "16826", + "quartile50": "18592", + "quartile75": "21674", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03792", + "sampleId": "HG02155", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03792", - "totalBp": "9615301263", - "totalGbp": "9.615301263", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "31298698030", + "totalGbp": "31.3", + "totalReads": "1596721", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797112", - "assembly": null, + "accession": "SAMN33621951", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797112", - "ccsAlgorithm": "N/A", - "coverage": "3.1", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621951", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03792-1_S19_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64136_220705_120453-bc1012.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03792-1_S19_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG02155_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242323", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.602769", + "libraryStrategy": "WGS", + "max": "64074", + "mean": "19740", + "metadataAccession": "SRR23732293", + "min": "219", + "mmTag": true, + "n25": "17269", + "n50": "19476", + "n75": "23090", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/m64136_220705_120453-bc1012.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", + "productionYear": "YR3", + "quartile25": "16881", + "quartile50": "18713", + "quartile75": "21906", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03792", + "sampleId": "HG02155", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03792", - "totalBp": "9614885527", - "totalGbp": "9.614885527", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "31584932406", + "totalGbp": "31.58", + "totalReads": "1599995", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797112", - "assembly": null, + "accession": "SAMN33621942", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797112", - "ccsAlgorithm": "N/A", - "coverage": "2.94", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621942", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03792-2_S27_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64136_220708_205611-bc1016.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03792-2_S27_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00323_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242320", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.639005", + "libraryStrategy": "WGS", + "max": "61839", + "mean": "19187", + "metadataAccession": "SRR23732294", + "min": "61", + "mmTag": true, + "n25": "16743", + "n50": "19365", + "n75": "22473", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/m64136_220708_205611-bc1016.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", + "productionYear": "YR3", + "quartile25": "16250", + "quartile50": "18478", + "quartile75": "21546", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03792", + "sampleId": "HG00323", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03792", - "totalBp": "9122844278", - "totalGbp": "9.122844278", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "33478490857", + "totalGbp": "33.48", + "totalReads": "1744844", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797112", - "assembly": null, + "accession": "SAMN33621942", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797112", - "ccsAlgorithm": "N/A", - "coverage": "2.94", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621942", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03792-2_S27_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64136_220710_175208-bc1016.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03792-2_S27_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00323_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242320", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.607542", + "libraryStrategy": "WGS", + "max": "62063", + "mean": "19118", + "metadataAccession": "SRR23732294", + "min": "52", + "mmTag": true, + "n25": "16692", + "n50": "19270", + "n75": "22381", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/m64136_220710_175208-bc1016.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", + "productionYear": "YR3", + "quartile25": "16209", + "quartile50": "18393", + "quartile75": "21456", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03792", + "sampleId": "HG00323", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03792", - "totalBp": "9122210111", - "totalGbp": "9.122210111", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "33941426923", + "totalGbp": "33.94", + "totalReads": "1775333", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797112", - "assembly": null, + "accession": "SAMN33621942", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797112", - "ccsAlgorithm": "N/A", - "coverage": "3.23", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621942", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03792-2_S27_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64136_220712_144943-bc1016.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03792-2_S27_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00323_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242316", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.613655", + "libraryStrategy": "WGS", + "max": "59292", + "mean": "19145", + "metadataAccession": "SRR23732294", + "min": "61", + "mmTag": true, + "n25": "16716", + "n50": "19311", + "n75": "22414", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/m64136_220712_144943-bc1016.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", + "productionYear": "YR3", + "quartile25": "16227", + "quartile50": "18433", + "quartile75": "21488", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03792", + "sampleId": "HG00323", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03792", - "totalBp": "10004351060", - "totalGbp": "10.00435106", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "34715893912", + "totalGbp": "34.72", + "totalReads": "1813262", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797112", - "assembly": null, + "accession": "SAMN33621941", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797112", - "ccsAlgorithm": "N/A", - "coverage": "3.23", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621941", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03792-2_S27_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64136_220715_182717-bc1018.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03792-2_S27_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", - "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242316", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.647329", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00140_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "72755", + "mean": "21967", + "metadataAccession": "SRR23732295", + "min": "199", + "mmTag": true, + "n25": "19094", + "n50": "21721", + "n75": "25959", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/m64136_220715_182717-bc1018.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", + "productionYear": "YR3", + "quartile25": "18553", + "quartile50": "20771", + "quartile75": "24326", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03792", + "sampleId": "HG00140", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03792", - "totalBp": "10003875652", - "totalGbp": "10.003875652", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "32183433807", + "totalGbp": "32.18", + "totalReads": "1465069", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797112", - "assembly": null, + "accession": "SAMN33621941", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797112", - "ccsAlgorithm": "N/A", - "coverage": "3.23", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621941", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03792-2_S27_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64136_220717_152248-bc1018.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03792-2_S27_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00140_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242172", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.6202", + "libraryStrategy": "WGS", + "max": "68045", + "mean": "21979", + "metadataAccession": "SRR23732295", + "min": "51", + "mmTag": true, + "n25": "19100", + "n50": "21722", + "n75": "25987", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/m64136_220717_152248-bc1018.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", + "productionYear": "YR3", + "quartile25": "18559", + "quartile50": "20771", + "quartile75": "24336", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03792", + "sampleId": "HG00140", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03792", - "totalBp": "10008059210", - "totalGbp": "10.00805921", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "34068521767", + "totalGbp": "34.07", + "totalReads": "1550035", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797112", - "assembly": null, + "accession": "SAMN33621941", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797112", - "ccsAlgorithm": "N/A", - "coverage": "3.23", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621941", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03792-2_S27_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64136_220719_122056-bc1018.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03792-2_S27_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "HG00140_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242172", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.620433", + "libraryStrategy": "WGS", + "max": "73370", + "mean": "21889", + "metadataAccession": "SRR23732295", + "min": "137", + "mmTag": true, + "n25": "19047", + "n50": "21631", + "n75": "25828", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/m64136_220719_122056-bc1018.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", + "productionYear": "YR3", + "quartile25": "18518", + "quartile50": "20699", + "quartile75": "24213", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03792", + "sampleId": "HG00140", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03792", - "totalBp": "10007585293", - "totalGbp": "10.007585293", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "33866031514", + "totalGbp": "33.87", + "totalReads": "1547133", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797112", - "assembly": null, + "accession": "SAMN33621962", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797112", - "ccsAlgorithm": "N/A", - "coverage": "3.17", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621962", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03792-2_S27_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64136_220726_203708-bc1020.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03792-2_S27_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "NA20805_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242171", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.607695", + "libraryStrategy": "WGS", + "max": "66827", + "mean": "20660", + "metadataAccession": "SRR23732281", + "min": "133", + "mmTag": true, + "n25": "19189", + "n50": "20755", + "n75": "22563", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/m64136_220726_203708-bc1020.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", + "productionYear": "YR3", + "quartile25": "18923", + "quartile50": "20455", + "quartile75": "22209", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03792", + "sampleId": "NA20805", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "TSI", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03792", - "totalBp": "9834207094", - "totalGbp": "9.834207094", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "37967752313", + "totalGbp": "37.97", + "totalReads": "1837659", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797112", - "assembly": null, + "accession": "SAMN33621962", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797112", - "ccsAlgorithm": "N/A", - "coverage": "3.17", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621962", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "HG03792-2_S27_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64136_220728_160902-bc1020.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03792-2_S27_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "NA20805_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242171", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.605631", + "libraryStrategy": "WGS", + "max": "69098", + "mean": "20686", + "metadataAccession": "SRR23732281", + "min": "139", + "mmTag": true, + "n25": "19207", + "n50": "20776", + "n75": "22588", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/m64136_220728_160902-bc1020.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", + "productionYear": "YR3", + "quartile25": "18940", + "quartile50": "20477", + "quartile75": "22231", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03792", + "sampleId": "NA20805", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "TSI", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03792", - "totalBp": "9833727946", - "totalGbp": "9.833727946", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "41329526305", + "totalGbp": "41.33", + "totalReads": "1997924", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621958", - "assembly": null, + "accession": "SAMN33621962", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621958", - "ccsAlgorithm": "N/A", - "coverage": "10.32", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33621962", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "BD28", - "filename": "HG03834-1_S4_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m64136_220730_113921-bc1020.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03834-1_S4_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "PacBio Sequel II", + "libraryId": "NA20805_lib1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310976", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.43792", + "libraryStrategy": "WGS", + "max": "72987", + "mean": "20683", + "metadataAccession": "SRR23732281", + "min": "61", + "mmTag": true, + "n25": "19203", + "n50": "20770", + "n75": "22581", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/m64136_220730_113921-bc1020.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18939", + "quartile50": "20471", + "quartile75": "22226", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03834", + "sampleId": "NA20805", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "TSI", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03834", - "totalBp": "31979838510", - "totalGbp": "31.97983851", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "41078853991", + "totalGbp": "41.08", + "totalReads": "1986077", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621958", - "assembly": null, + "accession": "SAMN37797108", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621958", - "ccsAlgorithm": "N/A", - "coverage": "22.54", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797108", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "BD28", - "filename": "HG03834-2_S8_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB113", + "filename": "m64330e_220218_192631.bc1012--bc1012.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03834-2_S8_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG03050_PB1_m64330e_220218_192631_m64330e_220218_192631", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310975", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.391397", + "libraryStrategy": "WGS", + "max": "58329", + "mean": "19318", + "metadataAccession": "SRR30151914", + "min": "106", + "mmTag": true, + "n25": "17264", + "n50": "19269", + "n75": "22047", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/primrose/m64330e_220218_192631.bc1012--bc1012.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16864", + "quartile50": "18682", + "quartile75": "21201", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03834", + "sampleId": "HG03050", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03834", - "totalBp": "69883486748", - "totalGbp": "69.883486748", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "26710285393", + "totalGbp": "26.71", + "totalReads": "1382611", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021625", - "assembly": null, + "accession": "SAMN37797108", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021625", - "ccsAlgorithm": "N/A", - "coverage": "3.5", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797108", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03874-1_FC1_S3_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB113", + "filename": "m64330e_220223_194839.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03874-1_FC1_S3_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG03050_PB1_m64330e_220223_194839_m64330e_220223_194839", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310974", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.577744", + "libraryStrategy": "WGS", + "max": "58639", + "mean": "19515", + "metadataAccession": "SRR30151963", + "min": "77", + "mmTag": true, + "n25": "17390", + "n50": "19466", + "n75": "22350", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/primrose/m64330e_220223_194839.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "16973", + "quartile50": "18843", + "quartile75": "21459", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03874", + "sampleId": "HG03050", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03874", - "totalBp": "10847832903", - "totalGbp": "10.847832903", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "35577169414", + "totalGbp": "35.58", + "totalReads": "1823052", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021625", - "assembly": null, + "accession": "SAMN37797096", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021625", - "ccsAlgorithm": "N/A", - "coverage": "3.37", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797096", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03874-1_FC2_S3_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH074", + "filename": "m64330e_220225_192221.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03874-1_FC2_S3_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG00658_PB1_m64330e_220225_192221_m64330e_220225_192221", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310973", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.546948", + "libraryStrategy": "WGS", + "max": "57048", + "mean": "22096", + "metadataAccession": "SRR30151926", + "min": "193", + "mmTag": true, + "n25": "19278", + "n50": "21837", + "n75": "25662", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64330e_220225_192221.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "18818", + "quartile50": "20985", + "quartile75": "24337", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03874", + "sampleId": "HG00658", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03874", - "totalBp": "10442312286", - "totalGbp": "10.442312286", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "16114668851", + "totalGbp": "16.11", + "totalReads": "729270", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021625", - "assembly": null, + "accession": "SAMN37797108", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021625", - "ccsAlgorithm": "N/A", - "coverage": "5.62", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797108", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03874-2_FC1_S4_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB113", + "filename": "m64330e_220227_061615.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03874-2_FC1_S4_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG03050_PB1_m64330e_220227_061615_m64330e_220227_061615", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310972", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.546283", + "libraryStrategy": "WGS", + "max": "65131", + "mean": "19008", + "metadataAccession": "SRR30151962", + "min": "79", + "mmTag": true, + "n25": "16859", + "n50": "19058", + "n75": "21925", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/primrose/m64330e_220227_061615.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "16379", + "quartile50": "18387", + "quartile75": "21021", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03874", + "sampleId": "HG03050", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03874", - "totalBp": "17415838378", - "totalGbp": "17.415838378", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "31228629314", + "totalGbp": "31.23", + "totalReads": "1642835", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021625", - "assembly": null, + "accession": "SAMN37797105", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021625", - "ccsAlgorithm": "N/A", - "coverage": "5.48", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797105", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "HG03874-2_FC2_S4_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "VN087", + "filename": "m64330e_220303_183543.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "HG03874-2_FC2_S4_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG02514_PB1_m64330e_220303_183543_m64330e_220303_183543", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310971", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.528561", + "libraryStrategy": "WGS", + "max": "58548", + "mean": "19417", + "metadataAccession": "SRR30151932", + "min": "293", + "mmTag": true, + "n25": "16222", + "n50": "20266", + "n75": "25410", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/primrose/m64330e_220303_183543.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "14789", + "quartile50": "18234", + "quartile75": "22842", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03874", + "sampleId": "HG02514", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of HG03874", - "totalBp": "17001269237", - "totalGbp": "17.001269237", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "14011797437", + "totalGbp": "14.01", + "totalReads": "721617", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021643", - "assembly": null, + "accession": "SAMN37797103", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021643", - "ccsAlgorithm": "N/A", - "coverage": "7.14", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797103", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y005", - "filename": "NA18505-1_FC1_S13_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL023", + "filename": "m64330e_220305_053001.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18505-1_FC1_S13_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01969_PB1_m64330e_220305_053001_m64330e_220305_053001", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310970", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.467255", + "libraryStrategy": "WGS", + "max": "61742", + "mean": "19007", + "metadataAccession": "SRR30151999", + "min": "67", + "mmTag": true, + "n25": "15786", + "n50": "20122", + "n75": "25672", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m64330e_220305_053001.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "14113", + "quartile50": "17751", + "quartile75": "22635", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18505", + "sampleId": "HG01969", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18505", - "totalBp": "22139961713", - "totalGbp": "22.139961713", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "14847062963", + "totalGbp": "14.85", + "totalReads": "781108", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021643", - "assembly": null, + "accession": "SAMN37797098", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021643", - "ccsAlgorithm": "N/A", - "coverage": "6.81", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797098", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y005", - "filename": "NA18505-1_FC2_S13_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "CLM14", + "filename": "m64330e_220306_155049.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18505-1_FC2_S13_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01252_PB1_m64330e_220306_155049_m64330e_220306_155049", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310969", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.489725", + "libraryStrategy": "WGS", + "max": "64212", + "mean": "18361", + "metadataAccession": "SRR30151992", + "min": "145", + "mmTag": true, + "n25": "15342", + "n50": "19265", + "n75": "24261", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/primrose/m64330e_220306_155049.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "13922", + "quartile50": "17239", + "quartile75": "21719", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18505", + "sampleId": "HG01252", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18505", - "totalBp": "21101450908", - "totalGbp": "21.101450908", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "23231673726", + "totalGbp": "23.23", + "totalReads": "1265271", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021643", - "assembly": null, + "accession": "SAMN37797097", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021643", - "ccsAlgorithm": "N/A", - "coverage": "5.58", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797097", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y005", - "filename": "NA18505-2_FC1_S14_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "CLM12", + "filename": "m64330e_220312_183407.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18505-2_FC1_S14_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01150_PB1_m64330e_220312_183407_m64330e_220312_183407", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310967", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.5285", + "libraryStrategy": "WGS", + "max": "64946", + "mean": "18733", + "metadataAccession": "SRR30152002", + "min": "89", + "mmTag": true, + "n25": "15905", + "n50": "19420", + "n75": "23852", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/primrose/m64330e_220312_183407.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "14701", + "quartile50": "17803", + "quartile75": "21821", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18505", + "sampleId": "HG01150", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18505", - "totalBp": "17310353100", - "totalGbp": "17.3103531", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "33479741334", + "totalGbp": "33.48", + "totalReads": "1787204", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021643", - "assembly": null, + "accession": "SAMN37797097", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021643", - "ccsAlgorithm": "N/A", - "coverage": "5.37", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797097", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y005", - "filename": "NA18505-2_FC2_S14_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "CLM12", + "filename": "m64330e_220314_040416.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18505-2_FC2_S14_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01150_PB1_m64330e_220314_040416_m64330e_220314_040416", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310966", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.487172", + "libraryStrategy": "WGS", + "max": "60687", + "mean": "18518", + "metadataAccession": "SRR30151917", + "min": "70", + "mmTag": true, + "n25": "15732", + "n50": "19188", + "n75": "23536", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/primrose/m64330e_220314_040416.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "14558", + "quartile50": "17608", + "quartile75": "21543", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18505", + "sampleId": "HG01150", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18505", - "totalBp": "16645942681", - "totalGbp": "16.645942681", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "30983320047", + "totalGbp": "30.98", + "totalReads": "1673110", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021626", - "assembly": null, + "accession": "SAMN37797102", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021626", - "ccsAlgorithm": "N/A", - "coverage": "5.53", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797102", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18508-1_FC1_S7_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BB11", + "filename": "m64330e_220401_181429.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18508-1_FC1_S7_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01960_PB1_m64330e_220401_181429_m64330e_220401_181429", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310965", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.511853", + "libraryStrategy": "WGS", + "max": "58485", + "mean": "17874", + "metadataAccession": "SRR30151965", + "min": "192", + "mmTag": true, + "n25": "15134", + "n50": "18373", + "n75": "22509", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01960/raw_data/PacBio_HiFi/primrose/m64330e_220401_181429.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "14152", + "quartile50": "16939", + "quartile75": "20683", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18508", + "sampleId": "HG01960", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "ACB", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18508", - "totalBp": "17138703246", - "totalGbp": "17.138703246", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "26059199917", + "totalGbp": "26.06", + "totalReads": "1457859", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021626", - "assembly": null, + "accession": "SAMN37797107", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021626", - "ccsAlgorithm": "N/A", - "coverage": "5.45", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797107", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18508-1_FC2_S7_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB97", + "filename": "m64330e_220403_050826.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18508-1_FC2_S7_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG02984_PB1_m64330e_220403_050826_m64330e_220403_050826", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310964", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.506867", + "libraryStrategy": "WGS", + "max": "48901", + "mean": "15979", + "metadataAccession": "SRR30151978", + "min": "61", + "mmTag": true, + "n25": "13946", + "n50": "16107", + "n75": "18985", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m64330e_220403_050826.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "13408", + "quartile50": "15344", + "quartile75": "17937", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18508", + "sampleId": "HG02984", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "GWD", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18508", - "totalBp": "16893840740", - "totalGbp": "16.89384074", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "25922780932", + "totalGbp": "25.92", + "totalReads": "1622283", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021626", - "assembly": null, + "accession": "SAMN37797108", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021626", - "ccsAlgorithm": "N/A", - "coverage": "3.32", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797108", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18508-2_FC1_S8_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB113", + "filename": "m64330e_220407_180519.demultiplex.bc1012--bc1012.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18508-2_FC1_S8_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG03050_PB1_m64330e_220407_180519_m64330e_220407_180519", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310963", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.549076", + "libraryStrategy": "WGS", + "max": "62057", + "mean": "18910", + "metadataAccession": "SRR30151913", + "min": "123", + "mmTag": true, + "n25": "16778", + "n50": "18950", + "n75": "21783", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/primrose/m64330e_220407_180519.demultiplex.bc1012--bc1012.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "16305", + "quartile50": "18292", + "quartile75": "20892", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18508", + "sampleId": "HG03050", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "GWD", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18508", - "totalBp": "10283027218", - "totalGbp": "10.283027218", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "10893343672", + "totalGbp": "10.89", + "totalReads": "576036", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021626", - "assembly": null, + "accession": "SAMN37797106", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021626", - "ccsAlgorithm": "N/A", - "coverage": "3.19", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797106", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18508-2_FC2_S8_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB74", + "filename": "m64330e_220407_180519.demultiplex.bc1021--bc1021.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18508-2_FC2_S8_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG02841_PB1_m64330e_220407_180519_m64330e_220407_180519", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310962", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.615152", + "libraryStrategy": "WGS", + "max": "47984", + "mean": "16219", + "metadataAccession": "SRR30151970", + "min": "65", + "mmTag": true, + "n25": "14039", + "n50": "16463", + "n75": "19604", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/primrose/m64330e_220407_180519.demultiplex.bc1021--bc1021.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "13397", + "quartile50": "15543", + "quartile75": "18406", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18508", + "sampleId": "HG02841", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "GWD", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18508", - "totalBp": "9883300622", - "totalGbp": "9.883300622", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "9018445903", + "totalGbp": "9.02", + "totalReads": "556026", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", - "assembly": null, + "accession": "SAMN37797102", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "N/A", - "coverage": "4.09", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797102", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y016", - "filename": "NA18522-1_S8_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BB11", + "filename": "m64330e_220412_185021.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18522-1_S8_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01960_PB1_m64330e_220412_185021_m64330e_220412_185021", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242315", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.572991", + "libraryStrategy": "WGS", + "max": "58095", + "mean": "17945", + "metadataAccession": "SRR30151964", + "min": "79", + "mmTag": true, + "n25": "15184", + "n50": "18465", + "n75": "22625", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01960/raw_data/PacBio_HiFi/primrose/m64330e_220412_185021.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "14185", + "quartile50": "17011", + "quartile75": "20793", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "HG01960", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "ACB", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18522", - "totalBp": "12670729097", - "totalGbp": "12.670729097", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "30024295514", + "totalGbp": "30.02", + "totalReads": "1673071", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", - "assembly": null, + "accession": "SAMN37797098", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "N/A", - "coverage": "4.09", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797098", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y016", - "filename": "NA18522-1_S8_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "CLM14", + "filename": "m64330e_220414_054422.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18522-1_S8_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01252_PB1_m64330e_220414_054422_m64330e_220414_054422", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242315", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.574618", + "libraryStrategy": "WGS", + "max": "58714", + "mean": "19073", + "metadataAccession": "SRR30151993", + "min": "191", + "mmTag": true, + "n25": "16164", + "n50": "19802", + "n75": "24344", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/primrose/m64330e_220414_054422.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "14898", + "quartile50": "18124", + "quartile75": "22227", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "HG01252", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18522", - "totalBp": "12669946134", - "totalGbp": "12.669946134", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "23100441860", + "totalGbp": "23.1", + "totalReads": "1211135", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", - "assembly": null, + "accession": "SAMN37797101", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "N/A", - "coverage": "4.22", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797101", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y016", - "filename": "NA18522-1_S8_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL015", + "filename": "m64330e_220415_164034.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18522-1_S8_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01940_PB1_m64330e_220415_164034_m64330e_220415_164034", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242167", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.558825", + "libraryStrategy": "WGS", + "max": "65173", + "mean": "18142", + "metadataAccession": "SRR30151922", + "min": "111", + "mmTag": true, + "n25": "15279", + "n50": "19180", + "n75": "23888", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/primrose/m64330e_220415_164034.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "13734", + "quartile50": "17201", + "quartile75": "21523", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "HG01940", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18522", - "totalBp": "13095838677", - "totalGbp": "13.095838677", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "29848671416", + "totalGbp": "29.85", + "totalReads": "1645196", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", - "assembly": null, + "accession": "SAMN37797105", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "N/A", - "coverage": "4.22", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797105", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y016", - "filename": "NA18522-1_S8_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "VN087", + "filename": "m64330e_220417_033652.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18522-1_S8_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG02514_PB1_m64330e_220417_033652_m64330e_220417_033652", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242167", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.53355", + "libraryStrategy": "WGS", + "max": "57274", + "mean": "16268", + "metadataAccession": "SRR30151931", + "min": "79", + "mmTag": true, + "n25": "14002", + "n50": "16628", + "n75": "19975", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/primrose/m64330e_220417_033652.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "13228", + "quartile50": "15572", + "quartile75": "18615", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "HG02514", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18522", - "totalBp": "13094893749", - "totalGbp": "13.094893749", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "30936543655", + "totalGbp": "30.94", + "totalReads": "1901650", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", - "assembly": null, + "accession": "SAMN37797096", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "N/A", - "coverage": "3.93", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797096", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y016", - "filename": "NA18522-1_S8_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH074", + "filename": "m64330e_220512_181140.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18522-1_S8_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG00658_PB1_m64330e_220512_181140_m64330e_220512_181140", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242166", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.611446", + "libraryStrategy": "WGS", + "max": "60879", + "mean": "17679", + "metadataAccession": "SRR30151925", + "min": "144", + "mmTag": true, + "n25": "15053", + "n50": "18478", + "n75": "22690", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64330e_220512_181140.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "13762", + "quartile50": "16859", + "quartile75": "20701", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "HG00658", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18522", - "totalBp": "12187989591", - "totalGbp": "12.187989591", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "23514775757", + "totalGbp": "23.51", + "totalReads": "1330043", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", - "assembly": null, + "accession": "SAMN37797093", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "N/A", - "coverage": "3.93", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797093", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y016", - "filename": "NA18522-1_S8_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m64330e_220801_170711.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18522-1_S8_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA19468_PB1_m64330e_220801_170711_m64330e_220801_170711", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242166", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.543095", + "libraryStrategy": "WGS", + "max": "51468", + "mean": "24696", + "metadataAccession": "SRR30151997", + "min": "227", + "mmTag": true, + "n25": "20631", + "n50": "25357", + "n75": "31718", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/primrose/m64330e_220801_170711.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "19225", + "quartile50": "23134", + "quartile75": "28711", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "NA19468", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "LWK", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18522", - "totalBp": "12187213960", - "totalGbp": "12.18721396", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "36078102199", + "totalGbp": "36.08", + "totalReads": "1460854", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", - "assembly": null, + "accession": "SAMN37797110", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "N/A", - "coverage": "4.07", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797110", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y016", - "filename": "NA18522-1_S8_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SL56", + "filename": "m64330e_220803_140136.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18522-1_S8_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG03470_PB1_m64330e_220803_140136_m64330e_220803_140136", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242165", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.608723", + "libraryStrategy": "WGS", + "max": "51631", + "mean": "25375", + "metadataAccession": "SRR30151959", + "min": "101", + "mmTag": true, + "n25": "21306", + "n50": "26421", + "n75": "32901", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/PacBio_HiFi/primrose/m64330e_220803_140136.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "19567", + "quartile50": "23991", + "quartile75": "29824", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "HG03470", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18522", - "totalBp": "12630827955", - "totalGbp": "12.630827955", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "43068072066", + "totalGbp": "43.07", + "totalReads": "1697249", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", - "assembly": null, + "accession": "SAMN37797104", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "N/A", - "coverage": "4.07", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797104", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y016", - "filename": "NA18522-1_S8_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m64330e_220805_094849.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18522-1_S8_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG02391_PB1_m64330e_220805_094849_m64330e_220805_094849", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242165", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.591182", + "libraryStrategy": "WGS", + "max": "51754", + "mean": "26048", + "metadataAccession": "SRR30151982", + "min": "133", + "mmTag": true, + "n25": "22058", + "n50": "27323", + "n75": "33685", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/PacBio_HiFi/primrose/m64330e_220805_094849.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "20160", + "quartile50": "24855", + "quartile75": "30793", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "HG02391", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18522", - "totalBp": "12629954975", - "totalGbp": "12.629954975", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "41882544788", + "totalGbp": "41.88", + "totalReads": "1607865", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", - "assembly": null, + "accession": "SAMN37797092", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "N/A", - "coverage": "5.26", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797092", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y016", - "filename": "NA18522-2_S16_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m64330e_220819_173115.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18522-2_S16_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA19391_PB1_m64330e_220819_173115_m64330e_220819_173115", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242164", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.571952", + "libraryStrategy": "WGS", + "max": "51241", + "mean": "21572", + "metadataAccession": "SRR30151980", + "min": "120", + "mmTag": true, + "n25": "18006", + "n50": "22062", + "n75": "27437", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/PacBio_HiFi/primrose/m64330e_220819_173115.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16812", + "quartile50": "20182", + "quartile75": "24910", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "NA19391", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "LWK", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18522", - "totalBp": "16313555116", - "totalGbp": "16.313555116", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "39223153519", + "totalGbp": "39.22", + "totalReads": "1818202", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", - "assembly": null, + "accession": "SAMN37797086", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "N/A", - "coverage": "5.26", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797086", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y016", - "filename": "NA18522-2_S16_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m64330e_220821_125227.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18522-2_S16_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA18570_PB1_m64330e_220821_125227_m64330e_220821_125227", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242164", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.504895", + "libraryStrategy": "WGS", + "max": "51264", + "mean": "21640", + "metadataAccession": "SRR30151938", + "min": "172", + "mmTag": true, + "n25": "18221", + "n50": "22357", + "n75": "27569", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/PacBio_HiFi/primrose/m64330e_220821_125227.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16869", + "quartile50": "20469", + "quartile75": "25180", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "NA18570", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18522", - "totalBp": "16312805022", - "totalGbp": "16.312805022", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "46050591401", + "totalGbp": "46.05", + "totalReads": "2127986", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", - "assembly": null, + "accession": "SAMN37797109", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "N/A", - "coverage": "5.39", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797109", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y016", - "filename": "NA18522-2_S16_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m64330e_220823_081200.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18522-2_S16_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG03458_PB1_m64330e_220823_081200_m64330e_220823_081200", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242163", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.578408", + "libraryStrategy": "WGS", + "max": "50617", + "mean": "21919", + "metadataAccession": "SRR30151988", + "min": "120", + "mmTag": true, + "n25": "18525", + "n50": "22413", + "n75": "27409", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03458/raw_data/PacBio_HiFi/primrose/m64330e_220823_081200.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17398", + "quartile50": "20738", + "quartile75": "25237", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "HG03458", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18522", - "totalBp": "16717750885", - "totalGbp": "16.717750885", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "44445899486", + "totalGbp": "44.45", + "totalReads": "2027705", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", - "assembly": null, + "accession": "SAMN37797089", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "N/A", - "coverage": "5.39", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797089", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y016", - "filename": "NA18522-2_S16_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "Y056", + "filename": "m64330e_220902_175209.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18522-2_S16_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA19159_PB1_m64330e_220902_175209_m64330e_220902_175209", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242163", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.512093", + "libraryStrategy": "WGS", + "max": "50954", + "mean": "22576", + "metadataAccession": "SRR30151954", + "min": "280", + "mmTag": true, + "n25": "19192", + "n50": "22692", + "n75": "27606", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/PacBio_HiFi/primrose/m64330e_220902_175209.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18342", + "quartile50": "21256", + "quartile75": "25536", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "NA19159", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", "subpopulation": "YRI", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18522", - "totalBp": "16716791220", - "totalGbp": "16.71679122", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "46101493223", + "totalGbp": "46.1", + "totalReads": "2042024", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", - "assembly": null, + "accession": "SAMN37797094", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "N/A", - "coverage": "5.04", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797094", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y016", - "filename": "NA18522-2_S16_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m64330e_220915_165522.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18522-2_S16_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA20799_PB1_ m64330e_220915_165522_ m64330e_220915_165522", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242313", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.569439", + "libraryStrategy": "WGS", + "max": "53388", + "mean": "22162", + "metadataAccession": "SRR30151946", + "min": "200", + "mmTag": true, + "n25": "18639", + "n50": "22531", + "n75": "27786", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/primrose/m64330e_220915_165522.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17565", + "quartile50": "20807", + "quartile75": "25422", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "NA20799", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "TSI", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18522", - "totalBp": "15608912229", - "totalGbp": "15.608912229", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "35836345492", + "totalGbp": "35.84", + "totalReads": "1617007", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", - "assembly": null, + "accession": "SAMN37797100", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "N/A", - "coverage": "5.03", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797100", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y016", - "filename": "NA18522-2_S16_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m64330e_220917_122517.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18522-2_S16_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01784_PB1_m64330e_220917_122517_m64330e_220917_122517", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242313", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.55818", + "libraryStrategy": "WGS", + "max": "51590", + "mean": "23692", + "metadataAccession": "SRR30151956", + "min": "124", + "mmTag": true, + "n25": "20091", + "n50": "24148", + "n75": "29428", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01784/raw_data/PacBio_HiFi/primrose/m64330e_220917_122517.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18958", + "quartile50": "22422", + "quartile75": "27156", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "HG01784", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "IBS", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18522", - "totalBp": "15608095066", - "totalGbp": "15.608095066", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "40678518461", + "totalGbp": "40.68", + "totalReads": "1716965", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", - "assembly": null, + "accession": "SAMN37797107", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "N/A", - "coverage": "5.21", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797107", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y016", - "filename": "NA18522-2_S16_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB97", + "filename": "m64334e_220218_191452.bc1011--bc1011.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18522-2_S16_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG02984_PB1_m64334e_220218_191452_m64334e_220218_191452", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242312", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.580577", + "libraryStrategy": "WGS", + "max": "55371", + "mean": "20914", + "metadataAccession": "SRR30151974", + "min": "61", + "mmTag": true, + "n25": "18050", + "n50": "20898", + "n75": "24783", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m64334e_220218_191452.bc1011--bc1011.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17437", + "quartile50": "19878", + "quartile75": "23340", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "HG02984", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "GWD", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18522", - "totalBp": "16150293852", - "totalGbp": "16.150293852", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "17423268103", + "totalGbp": "17.42", + "totalReads": "833071", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758796", - "assembly": null, + "accession": "SAMN37797101", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758796", - "ccsAlgorithm": "N/A", - "coverage": "5.21", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797101", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y016", - "filename": "NA18522-2_S16_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL015", + "filename": "m64334e_220304_185513.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18522-2_S16_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01940_PB1_m64334e_220304_185513_m64334e_220304_185513", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242312", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.539815", + "libraryStrategy": "WGS", + "max": "65765", + "mean": "17273", + "metadataAccession": "SRR30151921", + "min": "259", + "mmTag": true, + "n25": "14439", + "n50": "17758", + "n75": "22314", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/primrose/m64334e_220304_185513.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "13327", + "quartile50": "16162", + "quartile75": "19984", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18522", + "sampleId": "HG01940", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18522", - "totalBp": "16149401435", - "totalGbp": "16.149401435", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "13930028444", + "totalGbp": "13.93", + "totalReads": "806419", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797086", - "assembly": null, + "accession": "SAMN37797097", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797086", - "ccsAlgorithm": "N/A", - "coverage": "3.59", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797097", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18570-1_S6_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "CLM12", + "filename": "m64334e_220306_054934.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18570-1_S6_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01150_PB1_m64334e_220306_054934_m64334e_220306_054934", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242159", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.601569", + "libraryStrategy": "WGS", + "max": "64797", + "mean": "18306", + "metadataAccession": "SRR30151916", + "min": "79", + "mmTag": true, + "n25": "15574", + "n50": "18928", + "n75": "23149", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/primrose/m64334e_220306_054934.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "14448", + "quartile50": "17415", + "quartile75": "21235", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18570", + "sampleId": "HG01150", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18570", - "totalBp": "11128098122", - "totalGbp": "11.128098122", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "32272473361", + "totalGbp": "32.27", + "totalReads": "1762889", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797086", - "assembly": null, + "accession": "SAMN37797106", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797086", - "ccsAlgorithm": "N/A", - "coverage": "3.59", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797106", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18570-1_S6_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB74", + "filename": "m64334e_220321_180258.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18570-1_S6_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG02841_PB1_m64334e_220321_180258_m64334e_220321_180258", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242159", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.595608", + "libraryStrategy": "WGS", + "max": "53376", + "mean": "16200", + "metadataAccession": "SRR30151971", + "min": "111", + "mmTag": true, + "n25": "14048", + "n50": "16357", + "n75": "19398", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/primrose/m64334e_220321_180258.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "13472", + "quartile50": "15513", + "quartile75": "18265", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18570", + "sampleId": "HG02841", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18570", - "totalBp": "11127181174", - "totalGbp": "11.127181174", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "31549601858", + "totalGbp": "31.55", + "totalReads": "1947398", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797086", - "assembly": null, + "accession": "SAMN37797097", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797086", - "ccsAlgorithm": "N/A", - "coverage": "3.9", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797097", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18570-1_S6_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "CLM12", + "filename": "m64334e_220412_183749.demultiplex.bc1015--bc1015.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18570-1_S6_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01150_PB1_m64334e_220412_183749_m64334e_220412_183749", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242158", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.597847", + "libraryStrategy": "WGS", + "max": "56437", + "mean": "18210", + "metadataAccession": "SRR30151936", + "min": "785", + "mmTag": true, + "n25": "15476", + "n50": "18801", + "n75": "22940", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/primrose/m64334e_220412_183749.demultiplex.bc1015--bc1015.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "14398", + "quartile50": "17328", + "quartile75": "21106", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18570", + "sampleId": "HG01150", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18570", - "totalBp": "12088124186", - "totalGbp": "12.088124186", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "9693198556", + "totalGbp": "9.69", + "totalReads": "532298", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797086", - "assembly": null, + "accession": "SAMN37797106", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797086", - "ccsAlgorithm": "N/A", - "coverage": "3.9", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797106", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18570-1_S6_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB74", + "filename": "m64334e_220412_183749.demultiplex.bc1021--bc1021.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18570-1_S6_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG02841_PB1_m64334e_220412_183749_m64334e_220412_183749", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242158", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.578868", + "libraryStrategy": "WGS", + "max": "52702", + "mean": "16107", + "metadataAccession": "SRR30151968", + "min": "272", + "mmTag": true, + "n25": "13963", + "n50": "16317", + "n75": "19383", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/primrose/m64334e_220412_183749.demultiplex.bc1021--bc1021.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "13350", + "quartile50": "15440", + "quartile75": "18231", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18570", + "sampleId": "HG02841", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18570", - "totalBp": "12087460014", - "totalGbp": "12.087460014", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "11067164812", + "totalGbp": "11.07", + "totalReads": "687065", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797086", - "assembly": null, + "accession": "SAMN37797103", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797086", - "ccsAlgorithm": "N/A", - "coverage": "3.91", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797103", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18570-1_S6_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL023", + "filename": "m64334e_220415_144515.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18570-1_S6_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01969_PB1_m64334e_220415_144515_m64334e_220415_144515", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242157", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.612623", + "libraryStrategy": "WGS", + "max": "39606", + "mean": "14532", + "metadataAccession": "SRR30152000", + "min": "111", + "mmTag": true, + "n25": "13123", + "n50": "14675", + "n75": "16767", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m64334e_220415_144515.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "12750", + "quartile50": "14187", + "quartile75": "16103", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18570", + "sampleId": "HG01969", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18570", - "totalBp": "12106703496", - "totalGbp": "12.106703496", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "9504330901", + "totalGbp": "9.5", + "totalReads": "654022", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797086", - "assembly": null, + "accession": "SAMN37797098", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797086", - "ccsAlgorithm": "N/A", - "coverage": "3.91", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797098", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18570-1_S6_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "CLM14", + "filename": "m64334e_220419_183840.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18570-1_S6_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01252_PB1_m64334e_220419_183840_m64334e_220419_183840", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242157", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.595106", + "libraryStrategy": "WGS", + "max": "58849", + "mean": "19056", + "metadataAccession": "SRR30151994", + "min": "65", + "mmTag": true, + "n25": "16137", + "n50": "19822", + "n75": "24377", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/primrose/m64334e_220419_183840.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "14842", + "quartile50": "18100", + "quartile75": "22252", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18570", + "sampleId": "HG01252", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18570", - "totalBp": "12106005970", - "totalGbp": "12.10600597", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "22373384029", + "totalGbp": "22.37", + "totalReads": "1174065", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797086", - "assembly": null, + "accession": "SAMN37797107", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797086", - "ccsAlgorithm": "N/A", - "coverage": "3.85", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797107", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18570-1_S6_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB97", + "filename": "m64334e_220421_053305.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18570-1_S6_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG02984_PB1_m64334e_220421_053305_m64334e_220421_053305", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242156", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.607579", + "libraryStrategy": "WGS", + "max": "58810", + "mean": "16660", + "metadataAccession": "SRR30151977", + "min": "104", + "mmTag": true, + "n25": "14336", + "n50": "17345", + "n75": "21044", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m64334e_220421_053305.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "13216", + "quartile50": "15998", + "quartile75": "19386", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18570", + "sampleId": "HG02984", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18570", - "totalBp": "11931905360", - "totalGbp": "11.93190536", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "22717109029", + "totalGbp": "22.72", + "totalReads": "1363555", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797086", - "assembly": null, + "accession": "SAMN37797101", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797086", - "ccsAlgorithm": "N/A", - "coverage": "3.85", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797101", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18570-1_S6_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL015", + "filename": "m64334e_220422_151506.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18570-1_S6_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01940_PB1_m64334e_220422_151506_m64334e_220422_151506", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242156", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.542617", + "libraryStrategy": "WGS", + "max": "65732", + "mean": "18473", + "metadataAccession": "SRR30151920", + "min": "96", + "mmTag": true, + "n25": "15588", + "n50": "19553", + "n75": "24314", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/primrose/m64334e_220422_151506.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "13989", + "quartile50": "17542", + "quartile75": "21933", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18570", + "sampleId": "HG01940", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18570", - "totalBp": "11931251919", - "totalGbp": "11.931251919", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "30248862465", + "totalGbp": "30.25", + "totalReads": "1637435", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797086", - "assembly": null, + "accession": "SAMN37797101", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797086", - "ccsAlgorithm": "N/A", - "coverage": "3.25", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797101", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18570-2_S14_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL015", + "filename": "m64334e_220424_021126.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18570-2_S14_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01940_PB1_m64334e_220424_021126_m64334e_220424_021126", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242155", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.611813", + "libraryStrategy": "WGS", + "max": "68924", + "mean": "18380", + "metadataAccession": "SRR30151919", + "min": "103", + "mmTag": true, + "n25": "15517", + "n50": "19434", + "n75": "24124", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/primrose/m64334e_220424_021126.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "13961", + "quartile50": "17465", + "quartile75": "21800", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18570", + "sampleId": "HG01940", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18570", - "totalBp": "10078151831", - "totalGbp": "10.078151831", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "28711690224", + "totalGbp": "28.71", + "totalReads": "1562113", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797086", - "assembly": null, + "accession": "SAMN37797105", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797086", - "ccsAlgorithm": "N/A", - "coverage": "3.25", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797105", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18570-2_S14_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "VN087", + "filename": "m64334e_220426_185110.demultiplex.bc1001--bc1001.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18570-2_S14_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG02514_PB1_m64334e_220426_185110_m64334e_220426_185110", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242155", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.609444", + "libraryStrategy": "WGS", + "max": "58871", + "mean": "17012", + "metadataAccession": "SRR30151930", + "min": "54", + "mmTag": true, + "n25": "14597", + "n50": "17508", + "n75": "21137", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/primrose/m64334e_220426_185110.demultiplex.bc1001--bc1001.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "13692", + "quartile50": "16299", + "quartile75": "19638", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18570", + "sampleId": "HG02514", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", + "subpopulation": "KHV", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18570", - "totalBp": "10077433892", - "totalGbp": "10.077433892", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "15823874531", + "totalGbp": "15.82", + "totalReads": "930158", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797086", - "assembly": null, + "accession": "SAMN37797101", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797086", - "ccsAlgorithm": "N/A", - "coverage": "3.49", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797101", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18570-2_S14_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL015", + "filename": "m64334e_220426_185110.demultiplex.bc1010--bc1010.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18570-2_S14_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01940_PB1_m64334e_220426_185110_m64334e_220426_185110", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242154", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.627078", + "libraryStrategy": "WGS", + "max": "64624", + "mean": "19757", + "metadataAccession": "SRR30151918", + "min": "63", + "mmTag": true, + "n25": "16610", + "n50": "20898", + "n75": "25978", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/primrose/m64334e_220426_185110.demultiplex.bc1010--bc1010.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "14933", + "quartile50": "18729", + "quartile75": "23463", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18570", + "sampleId": "HG01940", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18570", - "totalBp": "10833167300", - "totalGbp": "10.8331673", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "8165347513", + "totalGbp": "8.17", + "totalReads": "413272", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797086", - "assembly": null, + "accession": "SAMN37797107", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797086", - "ccsAlgorithm": "N/A", - "coverage": "3.49", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797107", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18570-2_S14_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB97", + "filename": "m64334e_220428_054535.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18570-2_S14_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG02984_PB1_m64334e_220428_054535_m64334e_220428_054535", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242154", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.593433", + "libraryStrategy": "WGS", + "max": "57608", + "mean": "16626", + "metadataAccession": "SRR30151976", + "min": "89", + "mmTag": true, + "n25": "14397", + "n50": "16928", + "n75": "20223", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m64334e_220428_054535.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "13681", + "quartile50": "15936", + "quartile75": "18923", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18570", + "sampleId": "HG02984", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18570", - "totalBp": "10832689311", - "totalGbp": "10.832689311", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "19889245475", + "totalGbp": "19.89", + "totalReads": "1196204", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797086", - "assembly": null, + "accession": "SAMN37797096", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797086", - "ccsAlgorithm": "N/A", - "coverage": "3.49", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797096", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18570-2_S14_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH074", + "filename": "m64334e_220429_152228.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18570-2_S14_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG00658_PB1_m64334e_220429_152228_m64334e_220429_152228", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242153", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.638538", + "libraryStrategy": "WGS", + "max": "55657", + "mean": "18616", + "metadataAccession": "SRR30151924", + "min": "189", + "mmTag": true, + "n25": "16006", + "n50": "19569", + "n75": "23831", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64334e_220429_152228.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "14474", + "quartile50": "17995", + "quartile75": "21851", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18570", + "sampleId": "HG00658", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", + "subpopulation": "CHS", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18570", - "totalBp": "10827380755", - "totalGbp": "10.827380755", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "19615164107", + "totalGbp": "19.62", + "totalReads": "1053649", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", "accession": "SAMN37797086", - "assembly": null, + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", + "bioprojectAccession": "N/A", "biosampleAccession": "SAMN37797086", - "ccsAlgorithm": "N/A", - "coverage": "3.49", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "NA18570-2_S14_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64334e_220815_142753.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18570-2_S14_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA18570_PB1_m64334e_220815_142753_m64334e_220815_142753", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242153", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.607336", + "libraryStrategy": "WGS", + "max": "50893", + "mean": "21204", + "metadataAccession": "SRR30152003", + "min": "112", + "mmTag": true, + "n25": "17826", + "n50": "21773", + "n75": "26898", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/PacBio_HiFi/primrose/m64334e_220815_142753.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16585", + "quartile50": "19988", + "quartile75": "24514", "readN50": "N/A", "result": "N/A", "sampleId": "NA18570", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", "subpopulation": "CHB", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18570", - "totalBp": "10826886349", - "totalGbp": "10.826886349", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "42430166886", + "totalGbp": "42.43", + "totalReads": "2001019", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797086", - "assembly": null, + "accession": "SAMN37797092", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797086", - "ccsAlgorithm": "N/A", - "coverage": "3.44", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797092", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "NA18570-2_S14_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64334e_220819_174259.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18570-2_S14_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA19391_PB1_m64334e_220819_174259_m64334e_220819_174259", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242528", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.601804", + "libraryStrategy": "WGS", + "max": "51485", + "mean": "22350", + "metadataAccession": "SRR30151969", + "min": "117", + "mmTag": true, + "n25": "18754", + "n50": "22985", + "n75": "28384", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/PacBio_HiFi/primrose/m64334e_220819_174259.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17435", + "quartile50": "21060", + "quartile75": "25897", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18570", + "sampleId": "NA19391", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "LWK", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18570", - "totalBp": "10674939126", - "totalGbp": "10.674939126", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "37436208846", + "totalGbp": "37.44", + "totalReads": "1674963", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", "accession": "SAMN37797086", - "assembly": null, + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", + "bioprojectAccession": "N/A", "biosampleAccession": "SAMN37797086", - "ccsAlgorithm": "N/A", - "coverage": "3.44", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "NA18570-2_S14_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64334e_220821_130100.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18570-2_S14_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA18570_PB1_m64334e_220821_130100_m64334e_220821_130100", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242528", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.572355", + "libraryStrategy": "WGS", + "max": "51332", + "mean": "24787", + "metadataAccession": "SRR30152004", + "min": "102", + "mmTag": true, + "n25": "21259", + "n50": "26063", + "n75": "31632", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/PacBio_HiFi/primrose/m64334e_220821_130100.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "19456", + "quartile50": "23910", + "quartile75": "29238", "readN50": "N/A", "result": "N/A", "sampleId": "NA18570", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", "subpopulation": "CHB", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18570", - "totalBp": "10674467316", - "totalGbp": "10.674467316", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "43938908016", + "totalGbp": "43.94", + "totalReads": "1772623", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021619", - "assembly": null, + "accession": "SAMN37797109", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021619", - "ccsAlgorithm": "N/A", - "coverage": "3.96", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797109", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "NA18608-1_FC1_S11_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64334e_220823_095812.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18608-1_FC1_S11_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG03458_PB1_m64334e_220823_095812_m64334e_220823_095812", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310961", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.587437", + "libraryStrategy": "WGS", + "max": "50787", + "mean": "24571", + "metadataAccession": "SRR30151989", + "min": "135", + "mmTag": true, + "n25": "20975", + "n50": "25664", + "n75": "31158", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03458/raw_data/PacBio_HiFi/primrose/m64334e_220823_095812.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "19355", + "quartile50": "23610", + "quartile75": "28841", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18608", + "sampleId": "HG03458", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "MSL", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18608", - "totalBp": "12289594493", - "totalGbp": "12.289594493", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "31613679548", + "totalGbp": "31.61", + "totalReads": "1286621", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021619", - "assembly": null, + "accession": "SAMN37797089", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021619", - "ccsAlgorithm": "N/A", - "coverage": "3.83", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797089", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18608-1_FC2_S11_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "Y056", + "filename": "m64334e_220907_175418.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18608-1_FC2_S11_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "NA19159_PB1_m64334e_220907_175418_m64334e_220907_175418", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310960", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.585861", + "libraryStrategy": "WGS", + "max": "51316", + "mean": "23768", + "metadataAccession": "SRR30151953", + "min": "250", + "mmTag": true, + "n25": "20178", + "n50": "24160", + "n75": "29330", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/PacBio_HiFi/primrose/m64334e_220907_175418.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "19119", + "quartile50": "22514", + "quartile75": "27187", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18608", + "sampleId": "NA19159", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "YRI", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18608", - "totalBp": "11872385570", - "totalGbp": "11.87238557", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "46798237500", + "totalGbp": "46.8", + "totalReads": "1968924", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021619", - "assembly": null, + "accession": "SAMN37797099", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021619", - "ccsAlgorithm": "N/A", - "coverage": "4.94", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "NA18608-2_FC1_S12_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64334e_220920_180418.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18608-2_FC1_S12_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01530_PB1_m64334e_220920_180418_m64334e_220920_180418", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310959", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.558086", + "libraryStrategy": "WGS", + "max": "50671", + "mean": "18655", + "metadataAccession": "SRR30151944", + "min": "183", + "mmTag": true, + "n25": "16427", + "n50": "18530", + "n75": "21529", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/primrose/m64334e_220920_180418.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "15989", + "quartile50": "17845", + "quartile75": "20490", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18608", + "sampleId": "HG01530", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "IBS", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18608", - "totalBp": "15304368987", - "totalGbp": "15.304368987", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "43813649115", + "totalGbp": "43.81", + "totalReads": "2348559", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021619", - "assembly": null, + "accession": "SAMN37797099", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021619", - "ccsAlgorithm": "N/A", - "coverage": "4.78", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797099", + "ccsAlgorithm": "6.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "NA18608-2_FC2_S12_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64334e_220922_131140.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18608-2_FC2_S12_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "vgl-lab@rockefeller.edu", + "generatorFacility": "Rockefeller University", + "instrumentModel": "Sequel II", + "libraryId": "HG01530_PB1_m64334e_220922_131140_m64334e_220922_131140", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310958", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.546922", + "libraryStrategy": "WGS", + "max": "50739", + "mean": "18965", + "metadataAccession": "SRR30151943", + "min": "155", + "mmTag": true, + "n25": "16626", + "n50": "18864", + "n75": "22028", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/primrose/m64334e_220922_131140.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P2", + "productionYear": "YR3", + "quartile25": "16152", + "quartile50": "18115", + "quartile75": "20910", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18608", + "sampleId": "HG01530", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "IBS", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18608", - "totalBp": "14807755355", - "totalGbp": "14.807755355", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "45963012660", + "totalGbp": "45.96", + "totalReads": "2423499", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621960", - "assembly": null, + "accession": "SAMN33758779", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621960", - "ccsAlgorithm": "N/A", - "coverage": "4.68", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758779", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA18612-1_S2_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64457e_220825_195635-bc2051.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18612-1_S2_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG00280.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242174", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.593934", + "libraryStrategy": "WGS", + "max": "60934", + "mean": "20575", + "metadataAccession": "SRR23922658", + "min": "89", + "mmTag": true, + "n25": "18089", + "n50": "20753", + "n75": "24064", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/PacBio_HiFi/m64457e_220825_195635-bc2051.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17523", + "quartile50": "19914", + "quartile75": "23058", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18612", + "sampleId": "HG00280", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18612", - "totalBp": "14504938924", - "totalGbp": "14.504938924", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "45904022245", + "totalGbp": "45.9", + "totalReads": "2231036", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621960", - "assembly": null, + "accession": "SAMN33758800", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621960", - "ccsAlgorithm": "N/A", - "coverage": "4.68", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758800", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", "familyId": null, - "filename": "NA18612-1_S2_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64457e_220827_152226-bc2052.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18612-1_S2_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG20752.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242174", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.563411", + "libraryStrategy": "WGS", + "max": "57993", + "mean": "21252", + "metadataAccession": "SRR23922641", + "min": "88", + "mmTag": true, + "n25": "18633", + "n50": "21476", + "n75": "25034", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/m64457e_220827_152226-bc2052.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18001", + "quartile50": "20542", + "quartile75": "23905", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18612", + "sampleId": "NA20752", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "TSI", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18612", - "totalBp": "14504096750", - "totalGbp": "14.50409675", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "48188048219", + "totalGbp": "48.19", + "totalReads": "2267416", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621960", - "assembly": null, + "accession": "SAMN33758800", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621960", - "ccsAlgorithm": "N/A", - "coverage": "4.79", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758800", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", "familyId": null, - "filename": "NA18612-1_S2_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m64457e_220829_104034-bc2052.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18612-1_S2_L002", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG20752.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242173", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.571957", + "libraryStrategy": "WGS", + "max": "62512", + "mean": "21051", + "metadataAccession": "SRR23922641", + "min": "71", + "mmTag": true, + "n25": "18457", + "n50": "21225", + "n75": "24757", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/m64457e_220829_104034-bc2052.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17851", + "quartile50": "20320", + "quartile75": "23631", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18612", + "sampleId": "NA20752", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "TSI", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18612", - "totalBp": "14839350107", - "totalGbp": "14.839350107", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "46944843952", + "totalGbp": "46.94", + "totalReads": "2229963", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621960", - "assembly": null, + "accession": "SAMN33758800", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621960", - "ccsAlgorithm": "N/A", - "coverage": "4.79", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758800", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", "familyId": null, - "filename": "NA18612-1_S2_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64457e_220831_195843-bc2052.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18612-1_S2_L002", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG20752.HFSS", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242173", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.52518", + "libraryStrategy": "WGS", + "max": "59695", + "mean": "20957", + "metadataAccession": "SRR23922641", + "min": "88", + "mmTag": true, + "n25": "18403", + "n50": "21119", + "n75": "24581", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/m64457e_220831_195843-bc2052.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17815", + "quartile50": "20236", + "quartile75": "23481", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18612", + "sampleId": "NA20752", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "TSI", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18612", - "totalBp": "14838209778", - "totalGbp": "14.838209778", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "42154577403", + "totalGbp": "42.15", + "totalReads": "2011426", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621960", - "assembly": null, + "accession": "SAMN33758788", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621960", - "ccsAlgorithm": "N/A", - "coverage": "4.59", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18612-1_S2_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "NG06", + "filename": "m64457e_220902_165459-bc2053.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18612-1_S2_L003", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG02922.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242215", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.56045", + "libraryStrategy": "WGS", + "max": "41854", + "mean": "20570", + "metadataAccession": "SRR23922663", + "min": "1212", + "mmTag": true, + "n25": "18780", + "n50": "22731", + "n75": "27224", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m64457e_220902_165459-bc2053.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16402", + "quartile50": "20700", + "quartile75": "25116", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18612", - "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "sampleId": "HG02922", + "seqKit": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "ESN", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18612", - "totalBp": "14225785815", - "totalGbp": "14.225785815", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "195361726", + "totalGbp": "0.2", + "totalReads": "9497", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621960", - "assembly": null, + "accession": "SAMN33758798", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621960", - "ccsAlgorithm": "N/A", - "coverage": "4.59", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758798", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA18612-1_S2_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64457e_220902_165459-bc2055.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18612-1_S2_L003", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG18983.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242215", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.56213", + "libraryStrategy": "WGS", + "max": "76383", + "mean": "21122", + "metadataAccession": "SRR23922649", + "min": "79", + "mmTag": true, + "n25": "18608", + "n50": "21371", + "n75": "24756", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m64457e_220902_165459-bc2055.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17996", + "quartile50": "20489", + "quartile75": "23724", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18612", + "sampleId": "NA18983", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "CHB", + "subpopulation": "JPT", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18612", - "totalBp": "14224758234", - "totalGbp": "14.224758234", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "43050138465", + "totalGbp": "43.05", + "totalReads": "2038086", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621960", - "assembly": null, + "accession": "SAMN33758788", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621960", - "ccsAlgorithm": "N/A", - "coverage": "4.66", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18612-1_S2_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "NG06", + "filename": "m64457e_220904_135104-bc2053.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18612-1_S2_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG02922.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242214", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.586383", + "libraryStrategy": "WGS", + "max": "43604", + "mean": "21152", + "metadataAccession": "SRR23922663", + "min": "1163", + "mmTag": true, + "n25": "19118", + "n50": "23139", + "n75": "27684", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m64457e_220904_135104-bc2053.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16859", + "quartile50": "21228", + "quartile75": "25652", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18612", + "sampleId": "HG02922", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "ESN", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18612", - "totalBp": "14451088590", - "totalGbp": "14.45108859", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "194353188", + "totalGbp": "0.19", + "totalReads": "9188", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621960", - "assembly": null, + "accession": "SAMN33758798", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621960", - "ccsAlgorithm": "N/A", - "coverage": "4.66", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758798", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA18612-1_S2_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64457e_220904_135104-bc2055.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18612-1_S2_L004", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG18983.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242214", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.537692", + "libraryStrategy": "WGS", + "max": "66528", + "mean": "21337", + "metadataAccession": "SRR23922649", + "min": "82", + "mmTag": true, + "n25": "18786", + "n50": "21640", + "n75": "25068", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m64457e_220904_135104-bc2055.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18140", + "quartile50": "20727", + "quartile75": "24026", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18612", + "sampleId": "NA18983", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "CHB", + "subpopulation": "JPT", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18612", - "totalBp": "14450030677", - "totalGbp": "14.450030677", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "42152212914", + "totalGbp": "42.15", + "totalReads": "1975484", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621960", - "assembly": null, + "accession": "SAMN33758788", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621960", - "ccsAlgorithm": "N/A", - "coverage": "3.39", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18612-2_S10_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "NG06", + "filename": "m64457e_220906_104717-bc2053.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18612-2_S10_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG02922.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242213", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.629584", + "libraryStrategy": "WGS", + "max": "42061", + "mean": "19880", + "metadataAccession": "SRR23922663", + "min": "1321", + "mmTag": true, + "n25": "18159", + "n50": "22312", + "n75": "26640", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m64457e_220906_104717-bc2053.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15374", + "quartile50": "20075", + "quartile75": "24486", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18612", + "sampleId": "HG02922", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "ESN", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18612", - "totalBp": "10496884578", - "totalGbp": "10.496884578", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "200809444", + "totalGbp": "0.2", + "totalReads": "10101", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621960", - "assembly": null, + "accession": "SAMN33758798", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621960", - "ccsAlgorithm": "N/A", - "coverage": "3.39", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758798", + "ccsAlgorithm": "6.3.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA18612-2_S10_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m64457e_220906_104717-bc2055.5mc.hifi_reads.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18612-2_S10_L001", - "libraryLayout": "paired", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "PacBio Sequel II", + "libraryId": "PG18983.HFSS2", + "libraryLayout": "single", "librarySelection": "RANDOM", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242213", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.56808", + "libraryStrategy": "WGS", + "max": "58895", + "mean": "20897", + "metadataAccession": "SRR23922649", + "min": "88", + "mmTag": true, + "n25": "18385", + "n50": "21100", + "n75": "24496", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m64457e_220906_104717-bc2055.5mc.hifi_reads.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P3.2", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17794", + "quartile50": "20225", + "quartile75": "23449", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18612", + "sampleId": "NA18983", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C2", + "shearMethod": "Megaruptor 3", + "sizeSelection": "PippinHT", "study": "SRP305758", - "subpopulation": "CHB", + "subpopulation": "JPT", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18612", - "totalBp": "10496206124", - "totalGbp": "10.496206124", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "42794312016", + "totalGbp": "42.79", + "totalReads": "2047793", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621960", - "assembly": null, + "accession": "SAMN41021612", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621960", - "ccsAlgorithm": "N/A", - "coverage": "3.47", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021612", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", "familyId": null, - "filename": "NA18612-2_S10_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230428_224315_s2.hifi_reads.bc2091.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18612-2_S10_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19700.HFSS_m84046_230428_224315_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242170", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.638907", + "libraryStrategy": "WGS", + "max": "57226", + "mean": "20222", + "metadataAccession": "SRR29483268", + "min": "84", + "mmTag": true, + "n25": "17815", + "n50": "20299", + "n75": "23660", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19700/raw_data/PacBio_HiFi/m84046_230428_224315_s2.hifi_reads.bc2091.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "17282", + "quartile50": "19474", + "quartile75": "22536", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18612", + "sampleId": "NA19700", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "ASW", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18612", - "totalBp": "10759683519", - "totalGbp": "10.759683519", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "43118953859", + "totalGbp": "43.12", + "totalReads": "2132234", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621960", - "assembly": null, + "accession": "SAMN41021628", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621960", - "ccsAlgorithm": "N/A", - "coverage": "3.47", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021628", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 27kb fractionated gDNA", "familyId": null, - "filename": "NA18612-2_S10_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230428_224315_s2.hifi_reads.bc2095.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18612-2_S10_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG03611.HFSS_m84046_230428_224315_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242170", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.568986", + "libraryStrategy": "WGS", + "max": "70469", + "mean": "21240", + "metadataAccession": "SRR29483192", + "min": "97", + "mmTag": true, + "n25": "18844", + "n50": "21346", + "n75": "24661", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03611/raw_data/PacBio_HiFi/m84046_230428_224315_s2.hifi_reads.bc2095.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "18299", + "quartile50": "20564", + "quartile75": "23620", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18612", + "sampleId": "HG03611", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18612", - "totalBp": "10758805375", - "totalGbp": "10.758805375", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "50725357081", + "totalGbp": "50.73", + "totalReads": "2388156", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621960", - "assembly": null, + "accession": "SAMN41021611", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621960", - "ccsAlgorithm": "N/A", - "coverage": "3.34", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021611", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", "familyId": null, - "filename": "NA18612-2_S10_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230428_231421_s3.hifi_reads.bc2090.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18612-2_S10_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19682.HFSS_m84046_230428_231421_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242162", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.661084", + "libraryStrategy": "WGS", + "max": "58162", + "mean": "21146", + "metadataAccession": "SRR29483097", + "min": "150", + "mmTag": true, + "n25": "18490", + "n50": "21366", + "n75": "25101", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19682/raw_data/PacBio_HiFi/m84046_230428_231421_s3.hifi_reads.bc2090.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "17804", + "quartile50": "20356", + "quartile75": "23795", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18612", + "sampleId": "NA19682", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "MXL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18612", - "totalBp": "10349756404", - "totalGbp": "10.349756404", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "48098225913", + "totalGbp": "48.1", + "totalReads": "2274532", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621960", - "assembly": null, + "accession": "SAMN41021627", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621960", - "ccsAlgorithm": "N/A", - "coverage": "3.34", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021627", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", "familyId": null, - "filename": "NA18612-2_S10_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230428_231421_s3.hifi_reads.bc2094.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18612-2_S10_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG21093.HFSS_m84046_230428_231421_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242162", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.582099", + "libraryStrategy": "WGS", + "max": "69875", + "mean": "19543", + "metadataAccession": "SRR29483130", + "min": "110", + "mmTag": true, + "n25": "17581", + "n50": "19752", + "n75": "22399", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21093/raw_data/PacBio_HiFi/m84046_230428_231421_s3.hifi_reads.bc2094.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "17112", + "quartile50": "19145", + "quartile75": "21685", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18612", + "sampleId": "NA21093", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18612", - "totalBp": "10348962235", - "totalGbp": "10.348962235", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "60257689766", + "totalGbp": "60.26", + "totalReads": "3083311", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621960", - "assembly": null, + "accession": "SAMN41021629", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621960", - "ccsAlgorithm": "N/A", - "coverage": "3.41", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021629", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", "familyId": null, - "filename": "NA18612-2_S10_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230501_151821_s4.hifi_reads.bc2089.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18612-2_S10_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG21106.HFSS_m84046_230501_151821_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242161", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.642143", + "libraryStrategy": "WGS", + "max": "61270", + "mean": "20353", + "metadataAccession": "SRR29483079", + "min": "160", + "mmTag": true, + "n25": "17858", + "n50": "20434", + "n75": "23892", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21106/raw_data/PacBio_HiFi/m84046_230501_151821_s4.hifi_reads.bc2089.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "17335", + "quartile50": "19580", + "quartile75": "22772", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18612", + "sampleId": "NA21106", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18612", - "totalBp": "10576293045", - "totalGbp": "10.576293045", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "62992755287", + "totalGbp": "62.99", + "totalReads": "3094861", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621960", - "assembly": null, + "accession": "SAMN41021613", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621960", - "ccsAlgorithm": "N/A", - "coverage": "3.41", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021613", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA18612-2_S10_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230501_151821_s4.hifi_reads.bc2092.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18612-2_S10_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19390.HFSS_m84046_230501_151821_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242161", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.590349", + "libraryStrategy": "WGS", + "max": "56423", + "mean": "19784", + "metadataAccession": "SRR29483235", + "min": "68", + "mmTag": true, + "n25": "17537", + "n50": "19855", + "n75": "22896", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19390/raw_data/PacBio_HiFi/m84046_230501_151821_s4.hifi_reads.bc2092.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "17066", + "quartile50": "19145", + "quartile75": "21977", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18612", + "sampleId": "NA19390", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "LWK", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18612", - "totalBp": "10575504601", - "totalGbp": "10.575504601", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "53643124518", + "totalGbp": "53.64", + "totalReads": "2711404", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021618", - "assembly": null, + "accession": "SAMN41021612", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021618", - "ccsAlgorithm": "N/A", - "coverage": "5.39", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021612", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", "familyId": null, - "filename": "NA18620-1_FC1_S13_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230502_203455_s3.hifi_reads.bc2091.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18620-1_FC1_S13_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19700.HFSS_m84046_230502_203455_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310956", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.512003", + "libraryStrategy": "WGS", + "max": "60828", + "mean": "20519", + "metadataAccession": "SRR29483251", + "min": "308", + "mmTag": true, + "n25": "18012", + "n50": "20626", + "n75": "24141", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19700/raw_data/PacBio_HiFi/m84046_230502_203455_s3.hifi_reads.bc2091.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17441", + "quartile50": "19741", + "quartile75": "22948", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18620", + "sampleId": "NA19700", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "ASW", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18620", - "totalBp": "16711418697", - "totalGbp": "16.711418697", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "49604792343", + "totalGbp": "49.6", + "totalReads": "2417394", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021618", - "assembly": null, + "accession": "SAMN41021628", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021618", - "ccsAlgorithm": "N/A", - "coverage": "5.3", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021628", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 27kb fractionated gDNA", "familyId": null, - "filename": "NA18620-1_FC2_S13_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230502_203455_s3.hifi_reads.bc2095.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18620-1_FC2_S13_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG03611.HFSS_m84046_230502_203455_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310955", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.527546", + "libraryStrategy": "WGS", + "max": "61936", + "mean": "21530", + "metadataAccession": "SRR29483193", + "min": "90", + "mmTag": true, + "n25": "19051", + "n50": "21666", + "n75": "25125", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03611/raw_data/PacBio_HiFi/m84046_230502_203455_s3.hifi_reads.bc2095.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18474", + "quartile50": "20832", + "quartile75": "24030", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18620", + "sampleId": "HG03611", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18620", - "totalBp": "16444896902", - "totalGbp": "16.444896902", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "55038711682", + "totalGbp": "55.04", + "totalReads": "2556363", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021618", - "assembly": null, + "accession": "SAMN41021612", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021618", - "ccsAlgorithm": "N/A", - "coverage": "6.45", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021612", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", "familyId": null, - "filename": "NA18620-2_FC1_S14_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230502_210601_s4.hifi_reads.bc2091.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18620-2_FC1_S14_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19700.HFSS_m84046_230502_210601_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310930", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.491903", + "libraryStrategy": "WGS", + "max": "68960", + "mean": "20514", + "metadataAccession": "SRR29483269", + "min": "78", + "mmTag": true, + "n25": "18014", + "n50": "20622", + "n75": "24114", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19700/raw_data/PacBio_HiFi/m84046_230502_210601_s4.hifi_reads.bc2091.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17443", + "quartile50": "19743", + "quartile75": "22936", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18620", + "sampleId": "NA19700", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "ASW", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18620", - "totalBp": "20009587877", - "totalGbp": "20.009587877", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "45253526042", + "totalGbp": "45.25", + "totalReads": "2205939", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021618", - "assembly": null, + "accession": "SAMN41021628", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021618", - "ccsAlgorithm": "N/A", - "coverage": "6.4", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021628", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 27kb fractionated gDNA", "familyId": null, - "filename": "NA18620-2_FC2_S14_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230502_210601_s4.hifi_reads.bc2095.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18620-2_FC2_S14_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG03611.HFSS_m84046_230502_210601_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310929", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.495146", + "libraryStrategy": "WGS", + "max": "64183", + "mean": "21525", + "metadataAccession": "SRR29483194", + "min": "163", + "mmTag": true, + "n25": "19055", + "n50": "21657", + "n75": "25096", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03611/raw_data/PacBio_HiFi/m84046_230502_210601_s4.hifi_reads.bc2095.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18482", + "quartile50": "20831", + "quartile75": "24004", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18620", + "sampleId": "HG03611", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18620", - "totalBp": "19832201080", - "totalGbp": "19.83220108", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "50186456480", + "totalGbp": "50.19", + "totalReads": "2331526", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": null, + "accession": "SAMN41021611", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "N/A", - "coverage": "4.05", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021611", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", "familyId": null, - "filename": "NA18747-1_S3_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230504_195327_s1.hifi_reads.bc2090.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18747-1_S3_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19682.HFSS_m84046_230504_195327_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242160", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.567091", + "libraryStrategy": "WGS", + "max": "60900", + "mean": "20862", + "metadataAccession": "SRR29483077", + "min": "111", + "mmTag": true, + "n25": "18285", + "n50": "21045", + "n75": "24676", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19682/raw_data/PacBio_HiFi/m84046_230504_195327_s1.hifi_reads.bc2090.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "17638", + "quartile50": "20087", + "quartile75": "23410", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "NA19682", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "MXL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18747", - "totalBp": "12551596173", - "totalGbp": "12.551596173", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "52882168551", + "totalGbp": "52.88", + "totalReads": "2534850", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": null, + "accession": "SAMN41021627", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "N/A", - "coverage": "4.05", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021627", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", "familyId": null, - "filename": "NA18747-1_S3_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230504_195327_s1.hifi_reads.bc2094.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18747-1_S3_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG21093.HFSS_m84046_230504_195327_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242160", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.561688", + "libraryStrategy": "WGS", + "max": "55799", + "mean": "19393", + "metadataAccession": "SRR29483199", + "min": "124", + "mmTag": true, + "n25": "17466", + "n50": "19584", + "n75": "22193", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21093/raw_data/PacBio_HiFi/m84046_230504_195327_s1.hifi_reads.bc2094.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "17008", + "quartile50": "18995", + "quartile75": "21488", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "NA21093", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18747", - "totalBp": "12550734996", - "totalGbp": "12.550734996", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "53155443118", + "totalGbp": "53.16", + "totalReads": "2740877", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": null, + "accession": "SAMN41021611", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "N/A", - "coverage": "4.44", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021611", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", "familyId": null, - "filename": "NA18747-1_S3_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230504_202347_s2.hifi_reads.bc2090.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18747-1_S3_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19682.HFSS_m84046_230504_202347_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242527", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.594242", + "libraryStrategy": "WGS", + "max": "57024", + "mean": "20838", + "metadataAccession": "SRR29483096", + "min": "172", + "mmTag": true, + "n25": "18264", + "n50": "21023", + "n75": "24652", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19682/raw_data/PacBio_HiFi/m84046_230504_202347_s2.hifi_reads.bc2090.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "17619", + "quartile50": "20059", + "quartile75": "23384", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "NA19682", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "MXL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18747", - "totalBp": "13770283286", - "totalGbp": "13.770283286", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "53845834322", + "totalGbp": "53.85", + "totalReads": "2583948", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": null, + "accession": "SAMN41021627", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "N/A", - "coverage": "4.44", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021627", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", "familyId": null, - "filename": "NA18747-1_S3_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230504_202347_s2.hifi_reads.bc2094.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18747-1_S3_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG21093.HFSS_m84046_230504_202347_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242527", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.523654", + "libraryStrategy": "WGS", + "max": "56026", + "mean": "19376", + "metadataAccession": "SRR29483129", + "min": "123", + "mmTag": true, + "n25": "17449", + "n50": "19567", + "n75": "22172", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21093/raw_data/PacBio_HiFi/m84046_230504_202347_s2.hifi_reads.bc2094.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16991", + "quartile50": "18980", + "quartile75": "21470", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "NA21093", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18747", - "totalBp": "13769695959", - "totalGbp": "13.769695959", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "54112612451", + "totalGbp": "54.11", + "totalReads": "2792692", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": null, + "accession": "SAMN41021629", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "N/A", - "coverage": "4.44", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021629", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", "familyId": null, - "filename": "NA18747-1_S3_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230504_205453_s3.hifi_reads.bc2089.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18747-1_S3_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG21106.HFSS_m84046_230504_205453_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242525", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.586409", + "libraryStrategy": "WGS", + "max": "62176", + "mean": "19950", + "metadataAccession": "SRR29483080", + "min": "120", + "mmTag": true, + "n25": "17581", + "n50": "19979", + "n75": "23306", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21106/raw_data/PacBio_HiFi/m84046_230504_205453_s3.hifi_reads.bc2089.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "17104", + "quartile50": "19191", + "quartile75": "22218", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "NA21106", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18747", - "totalBp": "13779161976", - "totalGbp": "13.779161976", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "59248862130", + "totalGbp": "59.25", + "totalReads": "2969815", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": null, + "accession": "SAMN41021613", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "N/A", - "coverage": "4.44", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021613", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA18747-1_S3_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230504_205453_s3.hifi_reads.bc2092.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18747-1_S3_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19390.HFSS_m84046_230504_205453_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242525", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.544026", + "libraryStrategy": "WGS", + "max": "53621", + "mean": "19446", + "metadataAccession": "SRR29483234", + "min": "102", + "mmTag": true, + "n25": "17278", + "n50": "19458", + "n75": "22398", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19390/raw_data/PacBio_HiFi/m84046_230504_205453_s3.hifi_reads.bc2092.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16842", + "quartile50": "18801", + "quartile75": "21507", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "NA19390", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "LWK", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18747", - "totalBp": "13778551619", - "totalGbp": "13.778551619", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "55572902869", + "totalGbp": "55.57", + "totalReads": "2857712", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": null, + "accession": "SAMN41021629", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "N/A", - "coverage": "4.38", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021629", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", "familyId": null, - "filename": "NA18747-1_S3_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230504_212559_s4.hifi_reads.bc2089.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18747-1_S3_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG21106.HFSS_m84046_230504_212559_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242524", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.602279", + "libraryStrategy": "WGS", + "max": "64740", + "mean": "20063", + "metadataAccession": "SRR29483078", + "min": "103", + "mmTag": true, + "n25": "17651", + "n50": "20094", + "n75": "23456", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21106/raw_data/PacBio_HiFi/m84046_230504_212559_s4.hifi_reads.bc2089.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "17166", + "quartile50": "19289", + "quartile75": "22361", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "NA21106", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18747", - "totalBp": "13579732696", - "totalGbp": "13.579732696", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "58748127302", + "totalGbp": "58.75", + "totalReads": "2928042", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": null, + "accession": "SAMN41021613", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "N/A", - "coverage": "4.38", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021613", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA18747-1_S3_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230504_212559_s4.hifi_reads.bc2092.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18747-1_S3_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19390.HFSS_m84046_230504_212559_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242524", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.567863", + "libraryStrategy": "WGS", + "max": "54239", + "mean": "19527", + "metadataAccession": "SRR29483232", + "min": "150", + "mmTag": true, + "n25": "17341", + "n50": "19551", + "n75": "22514", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19390/raw_data/PacBio_HiFi/m84046_230504_212559_s4.hifi_reads.bc2092.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16899", + "quartile50": "18884", + "quartile75": "21620", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "NA19390", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "LWK", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18747", - "totalBp": "13579153216", - "totalGbp": "13.579153216", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "55002385545", + "totalGbp": "55", + "totalReads": "2816659", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": null, + "accession": "SAMN41021611", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "N/A", - "coverage": "4.29", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021611", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", "familyId": null, - "filename": "NA18747-2_S11_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230508_193709_s3.hifi_reads.bc2090.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18747-2_S11_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19682.HFSS_m84046_230508_193709_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242523", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.627018", + "libraryStrategy": "WGS", + "max": "67233", + "mean": "21052", + "metadataAccession": "SRR29483095", + "min": "166", + "mmTag": true, + "n25": "18421", + "n50": "21254", + "n75": "24954", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19682/raw_data/PacBio_HiFi/m84046_230508_193709_s3.hifi_reads.bc2090.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "17751", + "quartile50": "20266", + "quartile75": "23659", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "NA19682", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "MXL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18747", - "totalBp": "13292917501", - "totalGbp": "13.292917501", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "39111213756", + "totalGbp": "39.11", + "totalReads": "1857772", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": null, + "accession": "SAMN41021627", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "N/A", - "coverage": "4.29", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021627", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", "familyId": null, - "filename": "NA18747-2_S11_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230508_193709_s3.hifi_reads.bc2094.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18747-2_S11_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG21093.HFSS_m84046_230508_193709_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242523", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.547127", + "libraryStrategy": "WGS", + "max": "53286", + "mean": "19496", + "metadataAccession": "SRR29483128", + "min": "440", + "mmTag": true, + "n25": "17551", + "n50": "19704", + "n75": "22326", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21093/raw_data/PacBio_HiFi/m84046_230508_193709_s3.hifi_reads.bc2094.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "17081", + "quartile50": "19108", + "quartile75": "21617", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "NA21093", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18747", - "totalBp": "13292067409", - "totalGbp": "13.292067409", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "26413339853", + "totalGbp": "26.41", + "totalReads": "1354780", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": null, + "accession": "SAMN41021628", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "N/A", - "coverage": "4.67", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021628", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 27kb fractionated gDNA", "familyId": null, - "filename": "NA18747-2_S11_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230508_193709_s3.hifi_reads.bc2095.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18747-2_S11_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG03611.HFSS_m84046_230508_193709_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242169", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.568298", + "libraryStrategy": "WGS", + "max": "65660", + "mean": "21373", + "metadataAccession": "SRR29483191", + "min": "87", + "mmTag": true, + "n25": "18945", + "n50": "21483", + "n75": "24862", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03611/raw_data/PacBio_HiFi/m84046_230508_193709_s3.hifi_reads.bc2095.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "18387", + "quartile50": "20681", + "quartile75": "23796", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "HG03611", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18747", - "totalBp": "14462000368", - "totalGbp": "14.462000368", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "36610166478", + "totalGbp": "36.61", + "totalReads": "1712887", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": null, + "accession": "SAMN41021629", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "N/A", - "coverage": "4.66", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021629", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", "familyId": null, - "filename": "NA18747-2_S11_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230508_200815_s4.hifi_reads.bc2089.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18747-2_S11_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG21106.HFSS_m84046_230508_200815_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242169", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.547781", + "libraryStrategy": "WGS", + "max": "49086", + "mean": "20088", + "metadataAccession": "SRR29483081", + "min": "96", + "mmTag": true, + "n25": "17670", + "n50": "20133", + "n75": "23491", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21106/raw_data/PacBio_HiFi/m84046_230508_200815_s4.hifi_reads.bc2089.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "17180", + "quartile50": "19327", + "quartile75": "22403", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "NA21106", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18747", - "totalBp": "14461438438", - "totalGbp": "14.461438438", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "14313923906", + "totalGbp": "14.31", + "totalReads": "712531", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": null, + "accession": "SAMN41021612", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "N/A", - "coverage": "4.66", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021612", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", "familyId": null, - "filename": "NA18747-2_S11_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230508_200815_s4.hifi_reads.bc2091.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18747-2_S11_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19700.HFSS_m84046_230508_200815_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242168", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.586129", + "libraryStrategy": "WGS", + "max": "61204", + "mean": "20292", + "metadataAccession": "SRR29483250", + "min": "276", + "mmTag": true, + "n25": "17862", + "n50": "20373", + "n75": "23769", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19700/raw_data/PacBio_HiFi/m84046_230508_200815_s4.hifi_reads.bc2091.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "17320", + "quartile50": "19533", + "quartile75": "22629", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "NA19700", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "ASW", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18747", - "totalBp": "14439258485", - "totalGbp": "14.439258485", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "49918934430", + "totalGbp": "49.92", + "totalReads": "2459967", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": null, + "accession": "SAMN41021613", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "N/A", - "coverage": "4.66", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021613", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA18747-2_S11_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230508_200815_s4.hifi_reads.bc2092.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18747-2_S11_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19390.HFSS_m84046_230508_200815_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242168", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.568463", + "libraryStrategy": "WGS", + "max": "53448", + "mean": "19547", + "metadataAccession": "SRR29483233", + "min": "82", + "mmTag": true, + "n25": "17357", + "n50": "19579", + "n75": "22543", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19390/raw_data/PacBio_HiFi/m84046_230508_200815_s4.hifi_reads.bc2092.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16911", + "quartile50": "18907", + "quartile75": "21651", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "NA19390", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "LWK", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18747", - "totalBp": "14438684950", - "totalGbp": "14.43868495", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "32758719626", + "totalGbp": "32.76", + "totalReads": "1675885", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": null, + "accession": "SAMN41021626", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "N/A", - "coverage": "4.59", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021626", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", "familyId": null, - "filename": "NA18747-2_S11_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230513_215634_s1.hifi_reads.bc2001.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18747-2_S11_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG18508.HFSS2_m84046_230513_215634_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242522", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.555905", + "libraryStrategy": "WGS", + "max": "59160", + "mean": "21369", + "metadataAccession": "SRR29483061", + "min": "154", + "mmTag": true, + "n25": "18566", + "n50": "21565", + "n75": "25434", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18508/raw_data/PacBio_HiFi/m84046_230513_215634_s1.hifi_reads.bc2001.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "17884", + "quartile50": "20503", + "quartile75": "24079", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "NA18508", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "YRI", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18747", - "totalBp": "14233988117", - "totalGbp": "14.233988117", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "65503405021", + "totalGbp": "65.5", + "totalReads": "3065312", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758797", - "assembly": null, + "accession": "SAMN41021610", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758797", - "ccsAlgorithm": "N/A", - "coverage": "4.59", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021610", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", "familyId": null, - "filename": "NA18747-2_S11_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230513_215634_s1.hifi_reads.bc2014.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18747-2_S11_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19776.HFSS_m84046_230513_215634_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242522", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.577051", + "libraryStrategy": "WGS", + "max": "53733", + "mean": "18152", + "metadataAccession": "SRR29483245", + "min": "92", + "mmTag": true, + "n25": "15949", + "n50": "18213", + "n75": "21280", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19776/raw_data/PacBio_HiFi/m84046_230513_215634_s1.hifi_reads.bc2014.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "15498", + "quartile50": "17471", + "quartile75": "20321", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18747", + "sampleId": "NA19776", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "MXL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18747", - "totalBp": "14233416171", - "totalGbp": "14.233416171", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "64583935206", + "totalGbp": "64.58", + "totalReads": "3557844", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021621", - "assembly": null, + "accession": "SAMN41021626", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021621", - "ccsAlgorithm": "N/A", - "coverage": "16.61", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021626", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", "familyId": null, - "filename": "NA18952-1_FC1_S13_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230516_205603_s2.hifi_reads.bc2001.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18952-1_FC1_S13_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG18508.HFSS2_m84046_230516_205603_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310928", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.440657", + "libraryStrategy": "WGS", + "max": "63991", + "mean": "21225", + "metadataAccession": "SRR29483060", + "min": "106", + "mmTag": true, + "n25": "18440", + "n50": "21398", + "n75": "25254", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18508/raw_data/PacBio_HiFi/m84046_230516_205603_s2.hifi_reads.bc2001.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17783", + "quartile50": "20349", + "quartile75": "23902", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18952", + "sampleId": "NA18508", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "YRI", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18952", - "totalBp": "51483278615", - "totalGbp": "51.483278615", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "62040051803", + "totalGbp": "62.04", + "totalReads": "2922965", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021621", - "assembly": null, + "accession": "SAMN41021610", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021621", - "ccsAlgorithm": "N/A", - "coverage": "17.59", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021610", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", "familyId": null, - "filename": "NA18952-1_FC2_S13_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230516_205603_s2.hifi_reads.bc2014.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18952-1_FC2_S13_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19776.HFSS_m84046_230516_205603_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310927", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.425158", + "libraryStrategy": "WGS", + "max": "51132", + "mean": "18033", + "metadataAccession": "SRR29483246", + "min": "351", + "mmTag": true, + "n25": "15856", + "n50": "18070", + "n75": "21108", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19776/raw_data/PacBio_HiFi/m84046_230516_205603_s2.hifi_reads.bc2014.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15421", + "quartile50": "17346", + "quartile75": "20151", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18952", + "sampleId": "NA19776", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "MXL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18952", - "totalBp": "54534807717", - "totalGbp": "54.534807717", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "64385618990", + "totalGbp": "64.39", + "totalReads": "3570399", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021621", - "assembly": null, + "accession": "SAMN41021626", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021621", - "ccsAlgorithm": "N/A", - "coverage": "12.12", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021626", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", "familyId": null, - "filename": "NA18952-2_FC1_S14_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230516_212709_s3.hifi_reads.bc2001.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18952-2_FC1_S14_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG18508.HFSS2_m84046_230516_212709_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310926", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.488041", + "libraryStrategy": "WGS", + "max": "71331", + "mean": "21275", + "metadataAccession": "SRR29483075", + "min": "72", + "mmTag": true, + "n25": "18476", + "n50": "21459", + "n75": "25360", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18508/raw_data/PacBio_HiFi/m84046_230516_212709_s3.hifi_reads.bc2001.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17801", + "quartile50": "20391", + "quartile75": "23993", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18952", + "sampleId": "NA18508", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "YRI", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18952", - "totalBp": "37586941895", - "totalGbp": "37.586941895", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "62737808226", + "totalGbp": "62.74", + "totalReads": "2948816", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021621", - "assembly": null, + "accession": "SAMN41021610", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021621", - "ccsAlgorithm": "N/A", - "coverage": "12.28", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021610", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", "familyId": null, - "filename": "NA18952-2_FC2_S14_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230516_212709_s3.hifi_reads.bc2014.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18952-2_FC2_S14_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19776.HFSS_m84046_230516_212709_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310925", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.445759", + "libraryStrategy": "WGS", + "max": "49787", + "mean": "18046", + "metadataAccession": "SRR29483265", + "min": "108", + "mmTag": true, + "n25": "15860", + "n50": "18087", + "n75": "21145", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19776/raw_data/PacBio_HiFi/m84046_230516_212709_s3.hifi_reads.bc2014.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15422", + "quartile50": "17354", + "quartile75": "20179", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18952", + "sampleId": "NA19776", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "MXL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18952", - "totalBp": "38068632499", - "totalGbp": "38.068632499", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "64584192632", + "totalGbp": "64.58", + "totalReads": "3578712", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", - "assembly": null, + "accession": "SAMN33758778", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "N/A", - "coverage": "3.72", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758778", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", "familyId": null, - "filename": "NA18971-1_S3_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230517_211630_s4.hifi_reads.bc2012.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18971-1_S3_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00099_1.HFSS_m84046_230517_211630_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242521", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.587984", + "libraryStrategy": "WGS", + "max": "54368", + "mean": "20651", + "metadataAccession": "SRR29483176", + "min": "331", + "mmTag": true, + "n25": "18153", + "n50": "20772", + "n75": "24191", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00099/raw_data/PacBio_HiFi/m84046_230517_211630_s4.hifi_reads.bc2012.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17597", + "quartile50": "19914", + "quartile75": "23094", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "HG00099", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18971", - "totalBp": "11546555904", - "totalGbp": "11.546555904", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "61484744616", + "totalGbp": "61.48", + "totalReads": "2977212", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", - "assembly": null, + "accession": "SAMN33758800", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "N/A", - "coverage": "3.72", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758800", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", "familyId": null, - "filename": "NA18971-1_S3_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230517_211630_s4.hifi_reads.bc2052.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18971-1_S3_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG20752.HFSS_m84046_230517_211630_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242521", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.592032", + "libraryStrategy": "WGS", + "max": "59161", + "mean": "20759", + "metadataAccession": "SRR29483087", + "min": "295", + "mmTag": true, + "n25": "18178", + "n50": "20893", + "n75": "24415", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/m84046_230517_211630_s4.hifi_reads.bc2052.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17598", + "quartile50": "19991", + "quartile75": "23277", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "NA20752", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "TSI", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18971", - "totalBp": "11545972577", - "totalGbp": "11.545972577", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "66145642174", + "totalGbp": "66.15", + "totalReads": "3186209", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", - "assembly": null, + "accession": "SAMN33758780", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "N/A", - "coverage": "3.82", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758780", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18971-1_S3_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "SH045", + "filename": "m84046_230519_231055_s2.hifi_reads.bc1016.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18971-1_S3_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG00558.HFSS_m84046_230519_231055_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242520", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.585985", + "libraryStrategy": "WGS", + "max": "55399", + "mean": "20498", + "metadataAccession": "SRR29483184", + "min": "142", + "mmTag": true, + "n25": "17480", + "n50": "21094", + "n75": "25469", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m84046_230519_231055_s2.hifi_reads.bc1016.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16361", + "quartile50": "19597", + "quartile75": "23660", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "HG00558", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", + "subpopulation": "CHS", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18971", - "totalBp": "11847239507", - "totalGbp": "11.847239507", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "25488070000", + "totalGbp": "25.49", + "totalReads": "1243430", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", - "assembly": null, + "accession": "SAMN33758799", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "N/A", - "coverage": "3.82", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758799", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", "familyId": null, - "filename": "NA18971-1_S3_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230519_231055_s2.hifi_reads.bc2061.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18971-1_S3_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19043.HFSS_m84046_230519_231055_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242520", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.572946", + "libraryStrategy": "WGS", + "max": "53274", + "mean": "20453", + "metadataAccession": "SRR29483132", + "min": "208", + "mmTag": true, + "n25": "17898", + "n50": "20663", + "n75": "24260", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/m84046_230519_231055_s2.hifi_reads.bc2061.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17235", + "quartile50": "19694", + "quartile75": "23011", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "NA19043", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "LWK", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18971", - "totalBp": "11846461324", - "totalGbp": "11.846461324", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "27852231438", + "totalGbp": "27.85", + "totalReads": "1361729", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", - "assembly": null, + "accession": "SAMN26267395", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "N/A", - "coverage": "3.64", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267395", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18971-1_S3_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "PEL52", + "filename": "m84046_230519_231055_s2.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18971-1_S3_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02300.HFSS_m84046_230519_231055_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242519", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.592584", + "libraryStrategy": "WGS", + "max": "53764", + "mean": "17649", + "metadataAccession": "SRR29483139", + "min": "175", + "mmTag": true, + "n25": "15297", + "n50": "17906", + "n75": "21212", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/PacBio_HiFi/m84046_230519_231055_s2.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "14640", + "quartile50": "16956", + "quartile75": "20011", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "HG02300", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18971", - "totalBp": "11276006296", - "totalGbp": "11.276006296", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "39698841965", + "totalGbp": "39.7", + "totalReads": "2249313", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", - "assembly": null, + "accession": "SAMN33758801", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "N/A", - "coverage": "3.64", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758801", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", "familyId": null, - "filename": "NA18971-1_S3_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230522_234602_s2.hifi_reads.bc2060.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18971-1_S3_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG20905.HFSS_m84046_230522_234602_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242519", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.562171", + "libraryStrategy": "WGS", + "max": "60727", + "mean": "19184", + "metadataAccession": "SRR29483135", + "min": "185", + "mmTag": true, + "n25": "16722", + "n50": "19366", + "n75": "22770", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/m84046_230522_234602_s2.hifi_reads.bc2060.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16112", + "quartile50": "18448", + "quartile75": "21605", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "NA20905", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18971", - "totalBp": "11275281789", - "totalGbp": "11.275281789", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "21887464498", + "totalGbp": "21.89", + "totalReads": "1140898", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", - "assembly": null, + "accession": "SAMN26267384", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "N/A", - "coverage": "3.74", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267384", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18971-1_S3_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "PK16", + "filename": "m84046_230522_234602_s2.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18971-1_S3_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02683.HFSS_m84046_230522_234602_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242518", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.571223", + "libraryStrategy": "WGS", + "max": "52194", + "mean": "18549", + "metadataAccession": "SRR29483140", + "min": "181", + "mmTag": true, + "n25": "16242", + "n50": "18658", + "n75": "21835", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02683/raw_data/PacBio_HiFi/m84046_230522_234602_s2.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "15716", + "quartile50": "17848", + "quartile75": "20774", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "HG02683", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18971", - "totalBp": "11580409557", - "totalGbp": "11.580409557", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "83440743489", + "totalGbp": "83.44", + "totalReads": "4498174", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", - "assembly": null, + "accession": "SAMN33758790", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "N/A", - "coverage": "3.74", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758790", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18971-1_S3_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "GB110", + "filename": "m84046_230523_001708_s3.hifi_reads.bc1009.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18971-1_S3_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG03041.HFSS_m84046_230523_001708_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242518", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.573881", + "libraryStrategy": "WGS", + "max": "58882", + "mean": "18583", + "metadataAccession": "SRR29483238", + "min": "167", + "mmTag": true, + "n25": "16090", + "n50": "18765", + "n75": "22221", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m84046_230523_001708_s3.hifi_reads.bc1009.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15448", + "quartile50": "17795", + "quartile75": "20967", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "HG03041", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18971", - "totalBp": "11579687017", - "totalGbp": "11.579687017", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "38822969583", + "totalGbp": "38.82", + "totalReads": "2089108", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", - "assembly": null, + "accession": "SAMN26267397", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "N/A", - "coverage": "3.72", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267397", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18971-2_S11_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD61", + "filename": "m84046_230523_001708_s3.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18971-2_S11_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG04184.HFSS_m84046_230523_001708_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242516", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.599769", + "libraryStrategy": "WGS", + "max": "52393", + "mean": "18495", + "metadataAccession": "SRR29483256", + "min": "281", + "mmTag": true, + "n25": "16174", + "n50": "18546", + "n75": "21687", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m84046_230523_001708_s3.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "15678", + "quartile50": "17765", + "quartile75": "20650", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "HG04184", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18971", - "totalBp": "11529545009", - "totalGbp": "11.529545009", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "44684878979", + "totalGbp": "44.68", + "totalReads": "2415981", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", - "assembly": null, + "accession": "SAMN33758797", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "N/A", - "coverage": "3.72", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758797", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", "familyId": null, - "filename": "NA18971-2_S11_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230531_214232_s2.hifi_reads.bc2011.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18971-2_S11_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG18747_1.HFSS_m84046_230531_214232_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242516", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.572832", + "libraryStrategy": "WGS", + "max": "50521", + "mean": "19634", + "metadataAccession": "SRR29483196", + "min": "342", + "mmTag": true, + "n25": "17420", + "n50": "19695", + "n75": "22725", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/m84046_230531_214232_s2.hifi_reads.bc2011.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16951", + "quartile50": "18998", + "quartile75": "21798", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "NA18747", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", + "subpopulation": "CHB", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18971", - "totalBp": "11528908261", - "totalGbp": "11.528908261", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "53004210316", + "totalGbp": "53", + "totalReads": "2699589", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", - "assembly": null, + "accession": "SAMN33758796", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "N/A", - "coverage": "3.81", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758796", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18971-2_S11_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "Y016", + "filename": "m84046_230531_214232_s2.hifi_reads.bc2021.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18971-2_S11_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "NA18522.HFSS_m84046_230531_214232_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242515", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.578065", + "libraryStrategy": "WGS", + "max": "47307", + "mean": "19649", + "metadataAccession": "SRR29483174", + "min": "262", + "mmTag": true, + "n25": "17082", + "n50": "19795", + "n75": "23308", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/m84046_230531_214232_s2.hifi_reads.bc2021.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16462", + "quartile50": "18854", + "quartile75": "22075", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "NA18522", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "YRI", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18971", - "totalBp": "11808316315", - "totalGbp": "11.808316315", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "32010595867", + "totalGbp": "32.01", + "totalReads": "1629099", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", - "assembly": null, + "accession": "SAMN33758784", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "N/A", - "coverage": "3.81", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758784", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA18971-2_S11_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230531_221339_s3.hifi_reads.bc2056.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18971-2_S11_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG02040.HFSS2_m84046_230531_221339_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242515", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.573433", + "libraryStrategy": "WGS", + "max": "58406", + "mean": "20593", + "metadataAccession": "SRR29483167", + "min": "310", + "mmTag": true, + "n25": "18188", + "n50": "20858", + "n75": "24325", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02040/raw_data/PacBio_HiFi/m84046_230531_221339_s3.hifi_reads.bc2056.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17572", + "quartile50": "19939", + "quartile75": "23175", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "HG02040", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", + "subpopulation": "KHV", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18971", - "totalBp": "11807501248", - "totalGbp": "11.807501248", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "46891446851", + "totalGbp": "46.89", + "totalReads": "2277007", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", - "assembly": null, + "accession": "SAMN26267378", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "N/A", - "coverage": "3.61", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267378", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18971-2_S11_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "PR04", + "filename": "m84046_230531_221339_s3.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18971-2_S11_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", - "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242514", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.577688", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG00642.HFSS_m84046_230531_221339_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "53665", + "mean": "18760", + "metadataAccession": "SRR29483231", + "min": "111", + "mmTag": true, + "n25": "16264", + "n50": "18927", + "n75": "22328", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00642/raw_data/PacBio_HiFi/m84046_230531_221339_s3.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "15656", + "quartile50": "17984", + "quartile75": "21135", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "HG00642", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18971", - "totalBp": "11178435722", - "totalGbp": "11.178435722", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "52609914284", + "totalGbp": "52.61", + "totalReads": "2804349", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", - "assembly": null, + "accession": "SAMN41021637", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "N/A", - "coverage": "3.61", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021637", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", "familyId": null, - "filename": "NA18971-2_S11_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230602_203207_s4.hifi_reads.bc2043.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18971-2_S11_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00126.HFSS_m84046_230602_203207_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242514", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.613323", + "libraryStrategy": "WGS", + "max": "72198", + "mean": "21838", + "metadataAccession": "SRR29483146", + "min": "114", + "mmTag": true, + "n25": "19339", + "n50": "21716", + "n75": "25155", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00126/raw_data/PacBio_HiFi/m84046_230602_203207_s4.hifi_reads.bc2043.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "18891", + "quartile50": "20975", + "quartile75": "24050", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "HG00126", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18971", - "totalBp": "11177698253", - "totalGbp": "11.177698253", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "31211081209", + "totalGbp": "31.21", + "totalReads": "1429169", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", - "assembly": null, + "accession": "SAMN41021641", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "N/A", - "coverage": "3.69", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021641", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", "familyId": null, - "filename": "NA18971-2_S11_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230602_203207_s4.hifi_reads.bc2044.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18971-2_S11_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00128.HFSS_m84046_230602_203207_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242513", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.609274", + "libraryStrategy": "WGS", + "max": "56094", + "mean": "18972", + "metadataAccession": "SRR29483093", + "min": "146", + "mmTag": true, + "n25": "17354", + "n50": "18894", + "n75": "20960", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00128/raw_data/PacBio_HiFi/m84046_230602_203207_s4.hifi_reads.bc2044.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "17118", + "quartile50": "18544", + "quartile75": "20490", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "HG00128", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18971", - "totalBp": "11452546788", - "totalGbp": "11.452546788", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "33229202038", + "totalGbp": "33.23", + "totalReads": "1751436", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621961", - "assembly": null, + "accession": "SAMN41021638", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621961", - "ccsAlgorithm": "N/A", - "coverage": "3.69", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021638", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 29kb fractionated gDNA", "familyId": null, - "filename": "NA18971-2_S11_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230602_203207_s4.hifi_reads.bc2045.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18971-2_S11_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00133.HFSS_m84046_230602_203207_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242513", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.608275", + "libraryStrategy": "WGS", + "max": "72239", + "mean": "24306", + "metadataAccession": "SRR29483106", + "min": "355", + "mmTag": true, + "n25": "21625", + "n50": "24531", + "n75": "28292", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230602_203207_s4.hifi_reads.bc2045.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "20931", + "quartile50": "23631", + "quartile75": "27114", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18971", + "sampleId": "HG00133", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18971", - "totalBp": "11451809471", - "totalGbp": "11.451809471", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "31577829326", + "totalGbp": "31.58", + "totalReads": "1299153", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021620", - "assembly": null, + "accession": "SAMN33758790", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021620", - "ccsAlgorithm": "N/A", - "coverage": "4", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758790", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18974-1_FC1_S15_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "GB110", + "filename": "m84046_230602_213334_s2.hifi_reads.bc1009.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18974-1_FC1_S15_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG03041.HFSS_m84046_230602_213334_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310924", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.552761", + "libraryStrategy": "WGS", + "max": "44858", + "mean": "18547", + "metadataAccession": "SRR29483240", + "min": "51", + "mmTag": true, + "n25": "16061", + "n50": "18732", + "n75": "22169", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m84046_230602_213334_s2.hifi_reads.bc1009.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR3", + "quartile25": "15426", + "quartile50": "17761", + "quartile75": "20918", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18974", + "sampleId": "HG03041", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18974", - "totalBp": "12402378205", - "totalGbp": "12.402378205", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "2054888434", + "totalGbp": "2.05", + "totalReads": "110788", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021620", - "assembly": null, + "accession": "SAMN33758780", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021620", - "ccsAlgorithm": "N/A", - "coverage": "3.88", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758780", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18974-1_FC2_S15_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "SH045", + "filename": "m84046_230602_213334_s2.hifi_reads.bc1016.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18974-1_FC2_S15_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG00558.HFSS_m84046_230602_213334_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310923", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.545855", + "libraryStrategy": "WGS", + "max": "51616", + "mean": "20238", + "metadataAccession": "SRR29483117", + "min": "293", + "mmTag": true, + "n25": "17264", + "n50": "20787", + "n75": "25096", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m84046_230602_213334_s2.hifi_reads.bc1016.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR3", + "quartile25": "16196", + "quartile50": "19339", + "quartile75": "23325", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18974", + "sampleId": "HG00558", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", + "subpopulation": "CHS", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18974", - "totalBp": "12023989419", - "totalGbp": "12.023989419", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "12401182090", + "totalGbp": "12.4", + "totalReads": "612757", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021620", - "assembly": null, + "accession": "SAMN33758791", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021620", - "ccsAlgorithm": "N/A", - "coverage": "4.08", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758791", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18974-2_FC1_S16_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": "NG36", + "filename": "m84046_230602_213334_s2.hifi_reads.bc2018.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18974-2_FC1_S16_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG03130.HFSS_m84046_230602_213334_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310921", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.557506", + "libraryStrategy": "WGS", + "max": "47072", + "mean": "19024", + "metadataAccession": "SRR29483150", + "min": "227", + "mmTag": true, + "n25": "16444", + "n50": "19248", + "n75": "22814", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03130/raw_data/PacBio_HiFi/m84046_230602_213334_s2.hifi_reads.bc2018.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR3", + "quartile25": "15757", + "quartile50": "18235", + "quartile75": "21520", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18974", + "sampleId": "HG03130", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "ESN", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18974", - "totalBp": "12652812007", - "totalGbp": "12.652812007", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "59153812312", + "totalGbp": "59.15", + "totalReads": "3109314", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021620", - "assembly": null, + "accession": "SAMN26267397", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021620", - "ccsAlgorithm": "N/A", - "coverage": "3.97", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267397", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18974-2_FC2_S16_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD61", + "filename": "m84046_230602_213334_s2.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18974-2_FC2_S16_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG04184.HFSS_m84046_230602_213334_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310920", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.558145", + "libraryStrategy": "WGS", + "max": "51573", + "mean": "18472", + "metadataAccession": "SRR29483255", + "min": "167", + "mmTag": true, + "n25": "16162", + "n50": "18517", + "n75": "21641", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m84046_230602_213334_s2.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "15669", + "quartile50": "17747", + "quartile75": "20619", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18974", + "sampleId": "HG04184", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18974", - "totalBp": "12318140590", - "totalGbp": "12.31814059", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "16633605568", + "totalGbp": "16.63", + "totalReads": "900456", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021622", - "assembly": null, + "accession": "SAMN33758792", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021622", - "ccsAlgorithm": "N/A", - "coverage": "5.68", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758792", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", "familyId": null, - "filename": "NA18976-1_FC1_S15_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230602_220440_s3.hifi_reads.bc2019.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18976-1_FC1_S15_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG03139.HFSS_m84046_230602_220440_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310919", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.522123", + "libraryStrategy": "WGS", + "max": "65959", + "mean": "20902", + "metadataAccession": "SRR29483267", + "min": "373", + "mmTag": true, + "n25": "17994", + "n50": "21265", + "n75": "25337", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/m84046_230602_220440_s3.hifi_reads.bc2019.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR3", + "quartile25": "17129", + "quartile50": "20033", + "quartile75": "23812", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18976", + "sampleId": "HG03139", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "ESN", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18976", - "totalBp": "17594352088", - "totalGbp": "17.594352088", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "29658674895", + "totalGbp": "29.66", + "totalReads": "1418934", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021622", - "assembly": null, + "accession": "SAMN26267392", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021622", - "ccsAlgorithm": "N/A", - "coverage": "5.8", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267392", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18976-1_FC2_S15_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "VN081", + "filename": "m84046_230602_220440_s3.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18976-1_FC2_S15_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02135.HFSS3_m84046_230602_220440_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310918", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.52081", + "libraryStrategy": "WGS", + "max": "53510", + "mean": "17594", + "metadataAccession": "SRR29483221", + "min": "183", + "mmTag": true, + "n25": "15520", + "n50": "17497", + "n75": "20254", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m84046_230602_220440_s3.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "15163", + "quartile50": "16892", + "quartile75": "19394", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18976", + "sampleId": "HG02135", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", + "subpopulation": "KHV", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18976", - "totalBp": "17988627735", - "totalGbp": "17.988627735", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "24443364448", + "totalGbp": "24.44", + "totalReads": "1389290", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021622", - "assembly": null, + "accession": "SAMN33758796", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021622", - "ccsAlgorithm": "N/A", - "coverage": "5.67", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758796", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18976-2_FC1_S16_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "Y016", + "filename": "m84046_230603_204152_s4.hifi_reads.bc2021.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18976-2_FC1_S16_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "NA18522.HFSS_m84046_230603_204152_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310917", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.546516", + "libraryStrategy": "WGS", + "max": "54099", + "mean": "19590", + "metadataAccession": "SRR29483104", + "min": "544", + "mmTag": true, + "n25": "17035", + "n50": "19715", + "n75": "23227", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/m84046_230603_204152_s4.hifi_reads.bc2021.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR3", + "quartile25": "16418", + "quartile50": "18792", + "quartile75": "22005", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18976", + "sampleId": "NA18522", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "YRI", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18976", - "totalBp": "17585532782", - "totalGbp": "17.585532782", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "26512228758", + "totalGbp": "26.51", + "totalReads": "1353337", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021622", - "assembly": null, + "accession": "SAMN26267382", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021622", - "ccsAlgorithm": "N/A", - "coverage": "5.9", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267382", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18976-2_FC2_S16_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 26kb fractionated gDNA", + "familyId": "VN080", + "filename": "m84046_230603_204152_s4.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18976-2_FC2_S16_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02132.HFSSc_m84046_230603_204152_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310916", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.498766", + "libraryStrategy": "WGS", + "max": "57148", + "mean": "19635", + "metadataAccession": "SRR29483254", + "min": "276", + "mmTag": true, + "n25": "17318", + "n50": "19591", + "n75": "22726", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02132/raw_data/PacBio_HiFi/m84046_230603_204152_s4.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "16890", + "quartile50": "18876", + "quartile75": "21735", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18976", + "sampleId": "HG02132", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", + "subpopulation": "KHV", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18976", - "totalBp": "18284725296", - "totalGbp": "18.284725296", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "67412093607", + "totalGbp": "67.41", + "totalReads": "3433233", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", - "assembly": null, + "accession": "SAMN33758793", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "N/A", - "coverage": "2.98", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758793", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA18983-1_S4_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230617_033126_s1.hifi_reads.bc2020.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18983-1_S4_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG03209.HFSS_m84046_230617_033126_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242512", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.625452", + "libraryStrategy": "WGS", + "max": "53665", + "mean": "18251", + "metadataAccession": "SRR29483244", + "min": "171", + "mmTag": true, + "n25": "15993", + "n50": "18281", + "n75": "21360", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/m84046_230617_033126_s1.hifi_reads.bc2020.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15518", + "quartile50": "17532", + "quartile75": "20352", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "HG03209", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "MSL", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18983", - "totalBp": "9242082335", - "totalGbp": "9.242082335", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "54844107587", + "totalGbp": "54.84", + "totalReads": "3004908", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", - "assembly": null, + "accession": "SAMN26267391", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "N/A", - "coverage": "2.98", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267391", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18983-1_S4_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 19kb fractionated gDNA", + "familyId": "ST232", + "filename": "m84046_230617_033126_s1.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18983-1_S4_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG04228.HFSS_D_m84046_230617_033126_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242512", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.613675", + "libraryStrategy": "WGS", + "max": "59410", + "mean": "18494", + "metadataAccession": "SRR29483062", + "min": "279", + "mmTag": true, + "n25": "16138", + "n50": "18527", + "n75": "21669", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04228/raw_data/PacBio_HiFi/m84046_230617_033126_s1.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "15649", + "quartile50": "17739", + "quartile75": "20634", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "HG04228", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "STU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18983", - "totalBp": "9241439130", - "totalGbp": "9.24143913", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "47771626922", + "totalGbp": "47.77", + "totalReads": "2583006", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", - "assembly": null, + "accession": "SAMN33758795", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "N/A", - "coverage": "3.26", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758795", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18983-1_S4_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": "PK60", + "filename": "m84046_230617_040148_s2.hifi_reads.bc1001.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18983-1_S4_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG03704.HFSS3_m84046_230617_040148_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242511", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.611177", + "libraryStrategy": "WGS", + "max": "56891", + "mean": "19344", + "metadataAccession": "SRR29483160", + "min": "238", + "mmTag": true, + "n25": "16602", + "n50": "19545", + "n75": "23299", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m84046_230617_040148_s2.hifi_reads.bc1001.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15892", + "quartile50": "18445", + "quartile75": "21886", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "HG03704", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18983", - "totalBp": "10113221981", - "totalGbp": "10.113221981", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "13378951859", + "totalGbp": "13.38", + "totalReads": "691613", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", - "assembly": null, + "accession": "SAMN33758788", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "N/A", - "coverage": "3.26", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758788", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18983-1_S4_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "NG06", + "filename": "m84046_230617_040148_s2.hifi_reads.bc2053.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18983-1_S4_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG02922.HFSS2_m84046_230617_040148_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242511", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.593331", + "libraryStrategy": "WGS", + "max": "57502", + "mean": "20935", + "metadataAccession": "SRR29483121", + "min": "172", + "mmTag": true, + "n25": "18042", + "n50": "21259", + "n75": "25330", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m84046_230617_040148_s2.hifi_reads.bc2053.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17209", + "quartile50": "20041", + "quartile75": "23790", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "HG02922", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "ESN", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18983", - "totalBp": "10112772020", - "totalGbp": "10.11277202", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "20206254963", + "totalGbp": "20.21", + "totalReads": "965182", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", - "assembly": null, + "accession": "SAMN33758785", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "N/A", - "coverage": "3.26", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758785", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", "familyId": null, - "filename": "NA18983-1_S4_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230617_040148_s2.hifi_reads.bc2054.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18983-1_S4_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG02165.HFSS2_m84046_230617_040148_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242510", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.617873", + "libraryStrategy": "WGS", + "max": "54140", + "mean": "19386", + "metadataAccession": "SRR29483247", + "min": "279", + "mmTag": true, + "n25": "17301", + "n50": "19484", + "n75": "22463", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02165/raw_data/PacBio_HiFi/m84046_230617_040148_s2.hifi_reads.bc2054.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16852", + "quartile50": "18792", + "quartile75": "21539", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "HG02165", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", + "subpopulation": "CDX", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18983", - "totalBp": "10114463682", - "totalGbp": "10.114463682", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "45376049257", + "totalGbp": "45.38", + "totalReads": "2340645", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", - "assembly": null, + "accession": "SAMN26267395", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "N/A", - "coverage": "3.26", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267395", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA18983-1_S4_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "PEL52", + "filename": "m84046_230617_040148_s2.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18983-1_S4_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02300.HFSS_m84046_230617_040148_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242510", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.618289", + "libraryStrategy": "WGS", + "max": "50401", + "mean": "17448", + "metadataAccession": "SRR29483187", + "min": "181", + "mmTag": true, + "n25": "15145", + "n50": "17663", + "n75": "20886", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/PacBio_HiFi/m84046_230617_040148_s2.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "14524", + "quartile50": "16754", + "quartile75": "19719", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "HG02300", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18983", - "totalBp": "10113984842", - "totalGbp": "10.113984842", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "32052364911", + "totalGbp": "32.05", + "totalReads": "1837009", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", - "assembly": null, + "accession": "SAMN41021637", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "N/A", - "coverage": "3.22", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021637", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", "familyId": null, - "filename": "NA18983-1_S4_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230617_043254_s3.hifi_reads.bc2043.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18983-1_S4_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00126.HFSS_m84046_230617_043254_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242509", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.612165", + "libraryStrategy": "WGS", + "max": "65475", + "mean": "21250", + "metadataAccession": "SRR29483144", + "min": "221", + "mmTag": true, + "n25": "19001", + "n50": "21095", + "n75": "24190", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00126/raw_data/PacBio_HiFi/m84046_230617_043254_s3.hifi_reads.bc2043.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "18611", + "quartile50": "20482", + "quartile75": "23230", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "HG00126", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18983", - "totalBp": "9990030775", - "totalGbp": "9.990030775", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "24387352695", + "totalGbp": "24.39", + "totalReads": "1147622", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", - "assembly": null, + "accession": "SAMN41021641", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "N/A", - "coverage": "3.22", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021641", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", "familyId": null, - "filename": "NA18983-1_S4_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230617_043254_s3.hifi_reads.bc2044.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18983-1_S4_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00128.HFSS_m84046_230617_043254_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242509", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.596679", + "libraryStrategy": "WGS", + "max": "54809", + "mean": "18733", + "metadataAccession": "SRR29483094", + "min": "124", + "mmTag": true, + "n25": "17205", + "n50": "18656", + "n75": "20611", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00128/raw_data/PacBio_HiFi/m84046_230617_043254_s3.hifi_reads.bc2044.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16984", + "quartile50": "18337", + "quartile75": "20173", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "HG00128", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18983", - "totalBp": "9989587215", - "totalGbp": "9.989587215", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "43116301374", + "totalGbp": "43.12", + "totalReads": "2301584", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", - "assembly": null, + "accession": "SAMN41021638", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "N/A", - "coverage": "2.39", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021638", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 29kb fractionated gDNA", "familyId": null, - "filename": "NA18983-2_S12_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230617_043254_s3.hifi_reads.bc2045.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18983-2_S12_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00133.HFSS_m84046_230617_043254_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242508", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.675966", + "libraryStrategy": "WGS", + "max": "63763", + "mean": "23515", + "metadataAccession": "SRR29483109", + "min": "204", + "mmTag": true, + "n25": "21024", + "n50": "23704", + "n75": "27160", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230617_043254_s3.hifi_reads.bc2045.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "20391", + "quartile50": "22908", + "quartile75": "26092", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "HG00133", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18983", - "totalBp": "7423144968", - "totalGbp": "7.423144968", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "26568174953", + "totalGbp": "26.57", + "totalReads": "1129803", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", - "assembly": null, + "accession": "SAMN41021637", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "N/A", - "coverage": "2.39", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021637", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", "familyId": null, - "filename": "NA18983-2_S12_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230617_050400_s4.hifi_reads.bc2043.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18983-2_S12_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00126.HFSS_m84046_230617_050400_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242508", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.639034", + "libraryStrategy": "WGS", + "max": "66961", + "mean": "21345", + "metadataAccession": "SRR29483148", + "min": "441", + "mmTag": true, + "n25": "19050", + "n50": "21192", + "n75": "24330", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00126/raw_data/PacBio_HiFi/m84046_230617_050400_s4.hifi_reads.bc2043.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "18650", + "quartile50": "20561", + "quartile75": "23358", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "HG00126", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18983", - "totalBp": "7422624252", - "totalGbp": "7.422624252", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "27014561078", + "totalGbp": "27.01", + "totalReads": "1265571", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", - "assembly": null, + "accession": "SAMN41021641", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "N/A", - "coverage": "2.59", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021641", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", "familyId": null, - "filename": "NA18983-2_S12_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230617_050400_s4.hifi_reads.bc2044.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18983-2_S12_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00128.HFSS_m84046_230617_050400_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242507", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.663478", + "libraryStrategy": "WGS", + "max": "55452", + "mean": "18766", + "metadataAccession": "SRR29483092", + "min": "67", + "mmTag": true, + "n25": "17223", + "n50": "18688", + "n75": "20659", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00128/raw_data/PacBio_HiFi/m84046_230617_050400_s4.hifi_reads.bc2044.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "17002", + "quartile50": "18364", + "quartile75": "20215", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "HG00128", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18983", - "totalBp": "8040954772", - "totalGbp": "8.040954772", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "46970020324", + "totalGbp": "46.97", + "totalReads": "2502838", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", - "assembly": null, + "accession": "SAMN41021638", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "N/A", - "coverage": "2.59", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021638", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 29kb fractionated gDNA", "familyId": null, - "filename": "NA18983-2_S12_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230617_050400_s4.hifi_reads.bc2045.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18983-2_S12_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00133.HFSS_m84046_230617_050400_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242507", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.640635", + "libraryStrategy": "WGS", + "max": "71360", + "mean": "23674", + "metadataAccession": "SRR29483108", + "min": "496", + "mmTag": true, + "n25": "21132", + "n50": "23874", + "n75": "27395", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230617_050400_s4.hifi_reads.bc2045.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "20482", + "quartile50": "23047", + "quartile75": "26301", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "HG00133", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18983", - "totalBp": "8040583206", - "totalGbp": "8.040583206", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "30053356453", + "totalGbp": "30.05", + "totalReads": "1269426", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", - "assembly": null, + "accession": "SAMN41021637", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "N/A", - "coverage": "2.59", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021637", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", "familyId": null, - "filename": "NA18983-2_S12_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230621_231827_s1.hifi_reads.bc2043.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18983-2_S12_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00126.HFSS_m84046_230621_231827_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242505", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.643436", + "libraryStrategy": "WGS", + "max": "61779", + "mean": "21377", + "metadataAccession": "SRR29483149", + "min": "101", + "mmTag": true, + "n25": "19066", + "n50": "21223", + "n75": "24390", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00126/raw_data/PacBio_HiFi/m84046_230621_231827_s1.hifi_reads.bc2043.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "18665", + "quartile50": "20584", + "quartile75": "23411", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "HG00126", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18983", - "totalBp": "8042818109", - "totalGbp": "8.042818109", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "55422349206", + "totalGbp": "55.42", + "totalReads": "2592602", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", - "assembly": null, + "accession": "SAMN41021638", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "N/A", - "coverage": "2.59", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021638", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 29kb fractionated gDNA", "familyId": null, - "filename": "NA18983-2_S12_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230621_231827_s1.hifi_reads.bc2045.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18983-2_S12_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00133.HFSS_m84046_230621_231827_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242505", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.633691", + "libraryStrategy": "WGS", + "max": "66619", + "mean": "23673", + "metadataAccession": "SRR29483110", + "min": "129", + "mmTag": true, + "n25": "21149", + "n50": "23887", + "n75": "27366", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230621_231827_s1.hifi_reads.bc2045.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "20500", + "quartile50": "23070", + "quartile75": "26294", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "HG00133", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18983", - "totalBp": "8042451194", - "totalGbp": "8.042451194", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "44444296421", + "totalGbp": "44.44", + "totalReads": "1877396", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", - "assembly": null, + "accession": "SAMN41021637", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "N/A", - "coverage": "2.56", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021637", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", "familyId": null, - "filename": "NA18983-2_S12_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230621_234848_s2.hifi_reads.bc2043.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18983-2_S12_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00126.HFSS_m84046_230621_234848_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242504", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.659335", + "libraryStrategy": "WGS", + "max": "61977", + "mean": "21432", + "metadataAccession": "SRR29483145", + "min": "87", + "mmTag": true, + "n25": "19090", + "n50": "21277", + "n75": "24496", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00126/raw_data/PacBio_HiFi/m84046_230621_234848_s2.hifi_reads.bc2043.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "18681", + "quartile50": "20624", + "quartile75": "23493", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "HG00126", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18983", - "totalBp": "7923211922", - "totalGbp": "7.923211922", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "59614431287", + "totalGbp": "59.61", + "totalReads": "2781508", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758798", - "assembly": null, + "accession": "SAMN41021638", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758798", - "ccsAlgorithm": "N/A", - "coverage": "2.56", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021638", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 29kb fractionated gDNA", "familyId": null, - "filename": "NA18983-2_S12_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230621_234848_s2.hifi_reads.bc2045.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA18983-2_S12_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00133.HFSS_m84046_230621_234848_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242504", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.631655", + "libraryStrategy": "WGS", + "max": "66274", + "mean": "23765", + "metadataAccession": "SRR29483105", + "min": "131", + "mmTag": true, + "n25": "21210", + "n50": "23986", + "n75": "27519", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230621_234848_s2.hifi_reads.bc2045.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "20553", + "quartile50": "23142", + "quartile75": "26421", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18983", + "sampleId": "HG00133", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA18983", - "totalBp": "7922840121", - "totalGbp": "7.922840121", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "48277281549", + "totalGbp": "48.28", + "totalReads": "2031393", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021642", - "assembly": null, + "accession": "SAMN41021639", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021642", - "ccsAlgorithm": "N/A", - "coverage": "6.59", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021639", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 30kb fractionated gDNA", "familyId": null, - "filename": "NA19036-1_FC1_S11_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230623_203534_s4.hifi_reads.bc2052.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19036-1_FC1_S11_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00290.HFSS_m84046_230623_203534_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310915", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.487006", + "libraryStrategy": "WGS", + "max": "76067", + "mean": "23190", + "metadataAccession": "SRR29483165", + "min": "81", + "mmTag": true, + "n25": "20100", + "n50": "23348", + "n75": "27768", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00290/raw_data/PacBio_HiFi/m84046_230623_203534_s4.hifi_reads.bc2052.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "19302", + "quartile50": "22141", + "quartile75": "26079", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19036", + "sampleId": "HG00290", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19036", - "totalBp": "20434060051", - "totalGbp": "20.434060051", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "48925804619", + "totalGbp": "48.93", + "totalReads": "2109741", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021642", - "assembly": null, + "accession": "SAMN41021640", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021642", - "ccsAlgorithm": "N/A", - "coverage": "6.42", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021640", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 31kb fractionated gDNA", "familyId": null, - "filename": "NA19036-1_FC2_S11_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230623_203534_s4.hifi_reads.bc2053.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19036-1_FC2_S11_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19443.HFSS_m84046_230623_203534_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310914", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.500655", + "libraryStrategy": "WGS", + "max": "65167", + "mean": "24043", + "metadataAccession": "SRR29483069", + "min": "395", + "mmTag": true, + "n25": "20589", + "n50": "24374", + "n75": "29576", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19443/raw_data/PacBio_HiFi/m84046_230623_203534_s4.hifi_reads.bc2053.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "19576", + "quartile50": "22812", + "quartile75": "27402", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19036", + "sampleId": "NA19443", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", "subpopulation": "LWK", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19036", - "totalBp": "19913685210", - "totalGbp": "19.91368521", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "56713043234", + "totalGbp": "56.71", + "totalReads": "2358793", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021642", - "assembly": null, + "accession": "SAMN33758780", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021642", - "ccsAlgorithm": "N/A", - "coverage": "6.96", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758780", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19036-2_FC1_S12_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "SH045", + "filename": "m84046_230623_210640_s1.hifi_reads.bc1016.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19036-2_FC1_S12_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG00558.HFSS_m84046_230623_210640_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310913", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.47374", + "libraryStrategy": "WGS", + "max": "60697", + "mean": "20024", + "metadataAccession": "SRR29483183", + "min": "257", + "mmTag": true, + "n25": "17054", + "n50": "20519", + "n75": "24782", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m84046_230623_210640_s1.hifi_reads.bc1016.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR3", + "quartile25": "16028", + "quartile50": "19093", + "quartile75": "23018", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19036", + "sampleId": "HG00558", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19036", - "totalBp": "21585898923", - "totalGbp": "21.585898923", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "8815084955", + "totalGbp": "8.82", + "totalReads": "440223", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021642", - "assembly": null, + "accession": "SAMN33758792", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021642", - "ccsAlgorithm": "N/A", - "coverage": "7.05", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758792", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", "familyId": null, - "filename": "NA19036-2_FC2_S12_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230623_210640_s1.hifi_reads.bc2019.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19036-2_FC2_S12_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG03139.HFSS_m84046_230623_210640_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310912", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.496843", + "libraryStrategy": "WGS", + "max": "53529", + "mean": "20305", + "metadataAccession": "SRR29483073", + "min": "576", + "mmTag": true, + "n25": "17513", + "n50": "20548", + "n75": "24391", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/m84046_230623_210640_s1.hifi_reads.bc2019.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR3", + "quartile25": "16759", + "quartile50": "19438", + "quartile75": "22972", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19036", + "sampleId": "HG03139", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19036", - "totalBp": "21854926865", - "totalGbp": "21.854926865", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "9203503033", + "totalGbp": "9.2", + "totalReads": "453258", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN33758798", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "4.29", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758798", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA19043-1_S2_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230623_210640_s1.hifi_reads.bc2055.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-1_S2_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG18983.HFSS2_m84046_230623_210640_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242193", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.551493", + "libraryStrategy": "WGS", + "max": "57247", + "mean": "19849", + "metadataAccession": "SRR29483151", + "min": "91", + "mmTag": true, + "n25": "17522", + "n50": "19854", + "n75": "23031", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m84046_230623_210640_s1.hifi_reads.bc2055.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17052", + "quartile50": "19115", + "quartile75": "22023", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "NA18983", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "13298864748", - "totalGbp": "13.298864748", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "54169299224", + "totalGbp": "54.17", + "totalReads": "2729065", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN33758801", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "4.29", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758801", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", "familyId": null, - "filename": "NA19043-1_S2_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230623_210640_s1.hifi_reads.bc2060.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-1_S2_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG20905.HFSS_m84046_230623_210640_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242193", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.564106", + "libraryStrategy": "WGS", + "max": "57118", + "mean": "18993", + "metadataAccession": "SRR29483134", + "min": "1118", + "mmTag": true, + "n25": "16564", + "n50": "19129", + "n75": "22502", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/m84046_230623_210640_s1.hifi_reads.bc2060.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15983", + "quartile50": "18240", + "quartile75": "21338", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "NA20905", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "13298041923", - "totalGbp": "13.298041923", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "15990076578", + "totalGbp": "15.99", + "totalReads": "841852", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN26267392", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "4.32", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267392", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19043-1_S2_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "VN081", + "filename": "m84046_230623_210640_s1.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-1_S2_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02135.HFSS3_m84046_230623_210640_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242192", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.57845", + "libraryStrategy": "WGS", + "max": "46428", + "mean": "17215", + "metadataAccession": "SRR29483223", + "min": "239", + "mmTag": true, + "n25": "15285", + "n50": "17087", + "n75": "19621", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m84046_230623_210640_s1.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "14976", + "quartile50": "16553", + "quartile75": "18852", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "HG02135", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "13393992269", - "totalGbp": "13.393992269", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "6757940288", + "totalGbp": "6.76", + "totalReads": "392552", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN26267390", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "4.32", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267390", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19043-1_S2_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "ST006", + "filename": "m84046_230623_213746_s2.hifi_reads.bc1003.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-1_S2_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG04204.HFSS_m84046_230623_213746_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242192", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.562492", + "libraryStrategy": "WGS", + "max": "60239", + "mean": "18830", + "metadataAccession": "SRR29483198", + "min": "232", + "mmTag": true, + "n25": "16521", + "n50": "18831", + "n75": "21925", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04204/raw_data/PacBio_HiFi/m84046_230623_213746_s2.hifi_reads.bc1003.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "16070", + "quartile50": "18088", + "quartile75": "20933", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "HG04204", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "STU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "13393435932", - "totalGbp": "13.393435932", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "62394610705", + "totalGbp": "62.39", + "totalReads": "3313451", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN26267396", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "4.27", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267396", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19043-1_S2_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": "PK27", + "filename": "m84046_230623_213746_s2.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-1_S2_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02738.HFSS_m84046_230623_213746_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242455", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.536203", + "libraryStrategy": "WGS", + "max": "57240", + "mean": "18574", + "metadataAccession": "SRR29483190", + "min": "217", + "mmTag": true, + "n25": "16217", + "n50": "18680", + "n75": "21920", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m84046_230623_213746_s2.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "15671", + "quartile50": "17839", + "quartile75": "20803", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "HG02738", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "13235899441", - "totalGbp": "13.235899441", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "49064316698", + "totalGbp": "49.06", + "totalReads": "2641558", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN26267388", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "4.27", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267388", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19043-1_S2_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "ST111", + "filename": "m84046_230624_201459_s3.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-1_S2_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG04115.HFSS_m84046_230624_201459_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242455", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.577364", + "libraryStrategy": "WGS", + "max": "61259", + "mean": "18289", + "metadataAccession": "SRR29483220", + "min": "185", + "mmTag": true, + "n25": "15689", + "n50": "18817", + "n75": "22648", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04115/raw_data/PacBio_HiFi/m84046_230624_201459_s3.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "14713", + "quartile50": "17534", + "quartile75": "21059", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "HG04115", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "STU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "13235179516", - "totalGbp": "13.235179516", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "102791304261", + "totalGbp": "102.79", + "totalReads": "5620099", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN26267381", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "4.11", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267381", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19043-1_S2_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "VN066", + "filename": "m84046_230624_204605_s4.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-1_S2_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02074.HFSSb_m84046_230624_204605_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242212", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.568374", + "libraryStrategy": "WGS", + "max": "56155", + "mean": "18938", + "metadataAccession": "SRR29483182", + "min": "150", + "mmTag": true, + "n25": "16883", + "n50": "18741", + "n75": "21445", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02074/raw_data/PacBio_HiFi/m84046_230624_204605_s4.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "16591", + "quartile50": "18220", + "quartile75": "20663", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "HG02074", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "12727345287", - "totalGbp": "12.727345287", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "110611791731", + "totalGbp": "110.61", + "totalReads": "5840667", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN41021639", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "4.11", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021639", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 30kb fractionated gDNA", "familyId": null, - "filename": "NA19043-1_S2_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230627_201017_s1.hifi_reads.bc2052.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-1_S2_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00290.HFSS_m84046_230627_201017_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242212", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.584527", + "libraryStrategy": "WGS", + "max": "65547", + "mean": "23319", + "metadataAccession": "SRR29483113", + "min": "95", + "mmTag": true, + "n25": "20231", + "n50": "23502", + "n75": "27916", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00290/raw_data/PacBio_HiFi/m84046_230627_201017_s1.hifi_reads.bc2052.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "19421", + "quartile50": "22295", + "quartile75": "26247", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "HG00290", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "12726639314", - "totalGbp": "12.726639314", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "52132844954", + "totalGbp": "52.13", + "totalReads": "2235593", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN41021640", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "5.81", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021640", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 31kb fractionated gDNA", "familyId": null, - "filename": "NA19043-2_S10_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230627_201017_s1.hifi_reads.bc2053.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-2_S10_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19443.HFSS_m84046_230627_201017_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242211", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.57131", + "libraryStrategy": "WGS", + "max": "69047", + "mean": "24154", + "metadataAccession": "SRR29483067", + "min": "284", + "mmTag": true, + "n25": "20719", + "n50": "24513", + "n75": "29644", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19443/raw_data/PacBio_HiFi/m84046_230627_201017_s1.hifi_reads.bc2053.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "19705", + "quartile50": "22975", + "quartile75": "27549", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "NA19443", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", "subpopulation": "LWK", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "18017491417", - "totalGbp": "18.017491417", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "45568679596", + "totalGbp": "45.57", + "totalReads": "1886575", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN41021639", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "5.81", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021639", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 30kb fractionated gDNA", "familyId": null, - "filename": "NA19043-2_S10_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230627_204123_s2.hifi_reads.bc2052.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-2_S10_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00290.HFSS_m84046_230627_204123_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242211", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.516226", + "libraryStrategy": "WGS", + "max": "70791", + "mean": "23446", + "metadataAccession": "SRR29483166", + "min": "71", + "mmTag": true, + "n25": "20301", + "n50": "23645", + "n75": "28142", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00290/raw_data/PacBio_HiFi/m84046_230627_204123_s2.hifi_reads.bc2052.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "19471", + "quartile50": "22398", + "quartile75": "26424", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "HG00290", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "18016003549", - "totalGbp": "18.016003549", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "59212119276", + "totalGbp": "59.21", + "totalReads": "2525417", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN41021640", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "5.89", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021640", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 31kb fractionated gDNA", "familyId": null, - "filename": "NA19043-2_S10_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230627_204123_s2.hifi_reads.bc2053.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-2_S10_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19443.HFSS_m84046_230627_204123_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242210", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.575995", + "libraryStrategy": "WGS", + "max": "68598", + "mean": "24367", + "metadataAccession": "SRR29483068", + "min": "118", + "mmTag": true, + "n25": "20845", + "n50": "24761", + "n75": "30036", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19443/raw_data/PacBio_HiFi/m84046_230627_204123_s2.hifi_reads.bc2053.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "19785", + "quartile50": "23141", + "quartile75": "27839", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "NA19443", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", "subpopulation": "LWK", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "18268555097", - "totalGbp": "18.268555097", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "52195530984", + "totalGbp": "52.2", + "totalReads": "2142052", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN17861239", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "5.89", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN17861239", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19043-2_S10_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "BB68", + "filename": "m84046_230628_175536_s3.hifi_reads.bc2057.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-2_S10_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02559.HFSS_m84046_230628_175536_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242210", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.518854", + "libraryStrategy": "WGS", + "max": "66441", + "mean": "20045", + "metadataAccession": "SRR29483119", + "min": "207", + "mmTag": true, + "n25": "17419", + "n50": "20184", + "n75": "23860", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02559/raw_data/PacBio_HiFi/m84046_230628_175536_s3.hifi_reads.bc2057.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR1", + "quartile25": "16797", + "quartile50": "19190", + "quartile75": "22545", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "HG02559", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "ACB", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "18267375506", - "totalGbp": "18.267375506", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "48112123387", + "totalGbp": "48.11", + "totalReads": "2400146", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN33758787", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "5.64", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758787", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19043-2_S10_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 27kb fractionated gDNA", + "familyId": "PK26", + "filename": "m84046_230628_175536_s3.hifi_reads.bc2062.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-2_S10_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02735.HFSS_m84046_230628_175536_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242209", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.538242", + "libraryStrategy": "WGS", + "max": "58136", + "mean": "19828", + "metadataAccession": "SRR29483203", + "min": "117", + "mmTag": true, + "n25": "17223", + "n50": "19884", + "n75": "23464", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m84046_230628_175536_s3.hifi_reads.bc2062.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16632", + "quartile50": "18951", + "quartile75": "22183", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "HG02735", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "17481085109", - "totalGbp": "17.481085109", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "35078406524", + "totalGbp": "35.08", + "totalReads": "1769118", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN26267392", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "5.64", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267392", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19043-2_S10_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "VN081", + "filename": "m84046_230628_175536_s3.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-2_S10_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02135.HFSS3_m84046_230628_175536_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242209", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.519287", + "libraryStrategy": "WGS", + "max": "50299", + "mean": "17326", + "metadataAccession": "SRR29483222", + "min": "162", + "mmTag": true, + "n25": "15345", + "n50": "17194", + "n75": "19817", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m84046_230628_175536_s3.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "15024", + "quartile50": "16644", + "quartile75": "19006", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "HG02135", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "17479781708", - "totalGbp": "17.479781708", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "9496849118", + "totalGbp": "9.5", + "totalReads": "548099", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN17861237", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "5.53", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN17861237", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19043-2_S10_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": "BB21", + "filename": "m84046_230628_182559_s4.hifi_reads.bc2064.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-2_S10_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02257.HFSS_m84046_230628_182559_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242208", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.533142", + "libraryStrategy": "WGS", + "max": "63975", + "mean": "19265", + "metadataAccession": "SRR29483131", + "min": "77", + "mmTag": true, + "n25": "17339", + "n50": "19332", + "n75": "22074", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02257/raw_data/PacBio_HiFi/m84046_230628_182559_s4.hifi_reads.bc2064.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR1", + "quartile25": "16922", + "quartile50": "18740", + "quartile75": "21259", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "HG02257", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "ACB", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "17147769724", - "totalGbp": "17.147769724", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "76465650128", + "totalGbp": "76.47", + "totalReads": "3968964", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN26267396", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "5.53", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267396", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19043-2_S10_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": "PK27", + "filename": "m84046_230628_182559_s4.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-2_S10_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", - "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242208", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.513145", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02738.HFSS_m84046_230628_182559_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "53905", + "mean": "18746", + "metadataAccession": "SRR29483189", + "min": "267", + "mmTag": true, + "n25": "16333", + "n50": "18868", + "n75": "22206", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m84046_230628_182559_s4.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "15759", + "quartile50": "17990", + "quartile75": "21044", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "HG02738", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "17146463940", - "totalGbp": "17.14646394", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "36782838182", + "totalGbp": "36.78", + "totalReads": "1962110", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN33758794", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "13.69", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758794", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19043-2_S10i_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": "PK41", + "filename": "m84046_230628_210130_s1.bc2063--bc2063.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-2_S10i_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG03239.HFSS2_m84046_230628_210130_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242206", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.450461", + "libraryStrategy": "WGS", + "max": "54941", + "mean": "21468", + "metadataAccession": "SRR29483236", + "min": "74", + "mmTag": true, + "n25": "19138", + "n50": "21453", + "n75": "24638", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/m84046_230628_210130_s1.bc2063--bc2063.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18668", + "quartile50": "20762", + "quartile75": "23665", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "HG03239", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "42445471726", - "totalGbp": "42.445471726", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "42746369705", + "totalGbp": "42.75", + "totalReads": "1991153", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN33758783", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "13.69", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758783", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19043-2_S10i_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 30kb fractionated gDNA", + "familyId": "PR21", + "filename": "m84046_230628_210130_s1.bc2065--bc2065.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-2_S10i_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG01081.HFSS2_m84046_230628_210130_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242206", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.446453", + "libraryStrategy": "WGS", + "max": "59312", + "mean": "20555", + "metadataAccession": "SRR29483122", + "min": "103", + "mmTag": true, + "n25": "17382", + "n50": "21006", + "n75": "25610", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/m84046_230628_210130_s1.bc2065--bc2065.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16320", + "quartile50": "19465", + "quartile75": "23603", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "HG01081", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "42441850095", - "totalGbp": "42.441850095", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "41547174663", + "totalGbp": "41.55", + "totalReads": "2021262", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN26267395", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "15.22", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267395", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19043-2_S10i_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "PEL52", + "filename": "m84046_230628_210130_s1.default--default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-2_S10i_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02300.HFSS_m84046_230628_210130_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242205", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.458555", + "libraryStrategy": "WGS", + "max": "52469", + "mean": "17467", + "metadataAccession": "SRR29483188", + "min": "381", + "mmTag": true, + "n25": "15155", + "n50": "17676", + "n75": "20913", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02300/raw_data/PacBio_HiFi/m84046_230628_210130_s1.default--default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "14533", + "quartile50": "16767", + "quartile75": "19744", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "HG02300", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "47194300396", - "totalGbp": "47.194300396", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "17104030297", + "totalGbp": "17.1", + "totalReads": "979167", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN33758779", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "15.22", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758779", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA19043-2_S10i_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230628_213236_s2.hifi_reads.bc2051.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-2_S10i_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00280.HFSS_m84046_230628_213236_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242205", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.472157", + "libraryStrategy": "WGS", + "max": "54674", + "mean": "19728", + "metadataAccession": "SRR29483120", + "min": "165", + "mmTag": true, + "n25": "17352", + "n50": "19722", + "n75": "22899", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00280/raw_data/PacBio_HiFi/m84046_230628_213236_s2.hifi_reads.bc2051.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16892", + "quartile50": "18978", + "quartile75": "21911", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "HG00280", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "47191895994", - "totalGbp": "47.191895994", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "55575840201", + "totalGbp": "55.58", + "totalReads": "2816967", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN26267386", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "12.97", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267386", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19043-2_S10i_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": "BD37", + "filename": "m84046_230628_213236_s2.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-2_S10i_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG03927.HFSS_m84046_230628_213236_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242204", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.507915", + "libraryStrategy": "WGS", + "max": "49598", + "mean": "18609", + "metadataAccession": "SRR29483177", + "min": "155", + "mmTag": true, + "n25": "16352", + "n50": "18744", + "n75": "21771", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03927/raw_data/PacBio_HiFi/m84046_230628_213236_s2.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "15901", + "quartile50": "17968", + "quartile75": "20842", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "HG03927", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "40218516326", - "totalGbp": "40.218516326", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "49648184579", + "totalGbp": "49.65", + "totalReads": "2667914", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN41021639", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "12.97", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021639", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 30kb fractionated gDNA", "familyId": null, - "filename": "NA19043-2_S10i_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230630_233157_s3.bc2052--bc2052.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-2_S10i_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00290.HFSS_m84046_230630_233157_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242204", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.44722", + "libraryStrategy": "WGS", + "max": "61418", + "mean": "22851", + "metadataAccession": "SRR29483112", + "min": "248", + "mmTag": true, + "n25": "19901", + "n50": "23010", + "n75": "27163", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00290/raw_data/PacBio_HiFi/m84046_230630_233157_s3.bc2052--bc2052.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "19152", + "quartile50": "21892", + "quartile75": "25649", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "HG00290", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "40216454617", - "totalGbp": "40.216454617", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "24710313352", + "totalGbp": "24.71", + "totalReads": "1081336", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN41021641", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "11.11", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021641", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", "familyId": null, - "filename": "NA19043-2_S10i_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230630_233157_s3.bc2069--bc2069.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-2_S10i_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00128.HFSS2_m84046_230630_233157_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242203", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.509102", + "libraryStrategy": "WGS", + "max": "51374", + "mean": "17276", + "metadataAccession": "SRR29483091", + "min": "120", + "mmTag": true, + "n25": "15407", + "n50": "17139", + "n75": "19609", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00128/raw_data/PacBio_HiFi/m84046_230630_233157_s3.bc2069--bc2069.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "15138", + "quartile50": "16658", + "quartile75": "18930", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "HG00128", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "34446361258", - "totalGbp": "34.446361258", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "82225293457", + "totalGbp": "82.23", + "totalReads": "4759375", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758799", - "assembly": null, + "accession": "SAMN41021654", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758799", - "ccsAlgorithm": "N/A", - "coverage": "11.11", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021654", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA19043-2_S10i_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230701_000218_s4.hifi_reads.bc2048.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19043-2_S10i_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00350.HFSS_m84046_230701_000218_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242203", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.435394", + "libraryStrategy": "WGS", + "max": "66787", + "mean": "18297", + "metadataAccession": "SRR29483126", + "min": "78", + "mmTag": true, + "n25": "16087", + "n50": "18236", + "n75": "21243", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00350/raw_data/PacBio_HiFi/m84046_230701_000218_s4.hifi_reads.bc2048.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "15669", + "quartile50": "17546", + "quartile75": "20257", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19043", + "sampleId": "HG00350", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19043", - "totalBp": "34444435664", - "totalGbp": "34.444435664", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "65979378041", + "totalGbp": "65.98", + "totalReads": "3605979", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797087", - "assembly": null, + "accession": "SAMN41021640", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797087", - "ccsAlgorithm": "N/A", - "coverage": "3.78", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021640", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 31kb fractionated gDNA", "familyId": null, - "filename": "NA19087-1_S7_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230701_000218_s4.hifi_reads.bc2053.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19087-1_S7_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19443.HFSS_m84046_230701_000218_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242202", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.612259", + "libraryStrategy": "WGS", + "max": "63048", + "mean": "23566", + "metadataAccession": "SRR29483066", + "min": "283", + "mmTag": true, + "n25": "20294", + "n50": "23869", + "n75": "28673", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19443/raw_data/PacBio_HiFi/m84046_230701_000218_s4.hifi_reads.bc2053.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "19361", + "quartile50": "22443", + "quartile75": "26745", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19087", + "sampleId": "NA19443", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "LWK", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19087", - "totalBp": "11718103219", - "totalGbp": "11.718103219", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "26416408863", + "totalGbp": "26.42", + "totalReads": "1120935", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797087", - "assembly": null, + "accession": "SAMN33758789", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797087", - "ccsAlgorithm": "N/A", - "coverage": "3.78", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758789", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19087-1_S7_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "PK35", + "filename": "m84046_230701_003325_s1.hifi_reads.bc2058.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19087-1_S7_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG03017.HFSS2_m84046_230701_003325_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242202", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.61564", + "libraryStrategy": "WGS", + "max": "53663", + "mean": "20647", + "metadataAccession": "SRR29483141", + "min": "86", + "mmTag": true, + "n25": "18003", + "n50": "20636", + "n75": "24265", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m84046_230701_003325_s1.hifi_reads.bc2058.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17449", + "quartile50": "19740", + "quartile75": "22995", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19087", + "sampleId": "HG03017", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19087", - "totalBp": "11717167938", - "totalGbp": "11.717167938", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "27229904923", + "totalGbp": "27.23", + "totalReads": "1318825", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797087", - "assembly": null, + "accession": "SAMN26267393", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797087", - "ccsAlgorithm": "N/A", - "coverage": "4.13", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267393", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19087-1_S7_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 18kb fractionated gDNA", + "familyId": "BB03", + "filename": "m84046_230701_003325_s1.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19087-1_S7_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG01884.HFSS_m84046_230701_003325_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242201", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.609764", + "libraryStrategy": "WGS", + "max": "58056", + "mean": "17381", + "metadataAccession": "SRR29483163", + "min": "169", + "mmTag": true, + "n25": "15360", + "n50": "17295", + "n75": "19991", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/PacBio_HiFi/m84046_230701_003325_s1.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "14997", + "quartile50": "16702", + "quartile75": "19146", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19087", + "sampleId": "HG01884", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "ACB", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19087", - "totalBp": "12802197777", - "totalGbp": "12.802197777", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "42656028040", + "totalGbp": "42.66", + "totalReads": "2454075", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797087", - "assembly": null, + "accession": "SAMN41021654", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797087", - "ccsAlgorithm": "N/A", - "coverage": "4.13", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021654", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA19087-1_S7_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230703_222200_s3.hifi_reads.bc2048.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19087-1_S7_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00350.HFSS_m84046_230703_222200_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242201", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.570558", + "libraryStrategy": "WGS", + "max": "54183", + "mean": "18308", + "metadataAccession": "SRR29483185", + "min": "101", + "mmTag": true, + "n25": "16096", + "n50": "18257", + "n75": "21259", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00350/raw_data/PacBio_HiFi/m84046_230703_222200_s3.hifi_reads.bc2048.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "15675", + "quartile50": "17565", + "quartile75": "20287", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19087", + "sampleId": "HG00350", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19087", - "totalBp": "12801556577", - "totalGbp": "12.801556577", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "117048570883", + "totalGbp": "117.05", + "totalReads": "6393106", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797087", - "assembly": null, + "accession": "SAMN33758787", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797087", - "ccsAlgorithm": "N/A", - "coverage": "4.13", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758787", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19087-1_S7_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 27kb fractionated gDNA", + "familyId": "PK26", + "filename": "m84046_230703_225306_s4.hifi_reads.bc2062.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19087-1_S7_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02735.HFSS_m84046_230703_225306_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242200", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.601135", + "libraryStrategy": "WGS", + "max": "68232", + "mean": "19634", + "metadataAccession": "SRR29483204", + "min": "80", + "mmTag": true, + "n25": "17093", + "n50": "19661", + "n75": "23147", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m84046_230703_225306_s4.hifi_reads.bc2062.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16531", + "quartile50": "18772", + "quartile75": "21903", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19087", + "sampleId": "HG02735", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19087", - "totalBp": "12815141373", - "totalGbp": "12.815141373", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "7992405067", + "totalGbp": "7.99", + "totalReads": "407052", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797087", - "assembly": null, + "accession": "SAMN33758794", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797087", - "ccsAlgorithm": "N/A", - "coverage": "4.13", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758794", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19087-1_S7_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": "PK41", + "filename": "m84046_230703_225306_s4.hifi_reads.bc2063.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19087-1_S7_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG03239.HFSS2_m84046_230703_225306_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242200", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.570399", + "libraryStrategy": "WGS", + "max": "60287", + "mean": "21430", + "metadataAccession": "SRR29483237", + "min": "195", + "mmTag": true, + "n25": "19102", + "n50": "21406", + "n75": "24603", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/m84046_230703_225306_s4.hifi_reads.bc2063.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18634", + "quartile50": "20721", + "quartile75": "23619", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19087", + "sampleId": "HG03239", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19087", - "totalBp": "12814460471", - "totalGbp": "12.814460471", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "13194840551", + "totalGbp": "13.19", + "totalReads": "615696", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797087", - "assembly": null, + "accession": "SAMN26267389", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797087", - "ccsAlgorithm": "N/A", - "coverage": "4.09", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267389", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19087-1_S7_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": "ST203", + "filename": "m84046_230703_225306_s4.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19087-1_S7_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG04199.HFSS_m84046_230703_225306_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242199", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.622165", + "libraryStrategy": "WGS", + "max": "64393", + "mean": "17690", + "metadataAccession": "SRR29483253", + "min": "122", + "mmTag": true, + "n25": "15156", + "n50": "18235", + "n75": "21988", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04199/raw_data/PacBio_HiFi/m84046_230703_225306_s4.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "14184", + "quartile50": "16954", + "quartile75": "20428", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19087", + "sampleId": "HG04199", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "STU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19087", - "totalBp": "12664445294", - "totalGbp": "12.664445294", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "93321357983", + "totalGbp": "93.32", + "totalReads": "5275176", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797087", - "assembly": null, + "accession": "SAMN33758781", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797087", - "ccsAlgorithm": "N/A", - "coverage": "4.09", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758781", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19087-1_S7_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": "PR03", + "filename": "m84046_230707_192442_s1.hifi_reads.bc2059.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19087-1_S7_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG00639.HFSS2_m84046_230707_192442_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242199", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.585035", + "libraryStrategy": "WGS", + "max": "59856", + "mean": "20556", + "metadataAccession": "SRR29483089", + "min": "92", + "mmTag": true, + "n25": "18180", + "n50": "20509", + "n75": "23778", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/m84046_230707_192442_s1.hifi_reads.bc2059.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17709", + "quartile50": "19769", + "quartile75": "22709", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19087", + "sampleId": "HG00639", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19087", - "totalBp": "12663787818", - "totalGbp": "12.663787818", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "69026709448", + "totalGbp": "69.03", + "totalReads": "3357938", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797087", - "assembly": null, + "accession": "SAMN33758787", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797087", - "ccsAlgorithm": "N/A", - "coverage": "4.53", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758787", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19087-2_S15_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 27kb fractionated gDNA", + "familyId": "PK26", + "filename": "m84046_230707_192442_s1.hifi_reads.bc2062.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19087-2_S15_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02735.HFSS_m84046_230707_192442_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242198", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.584413", + "libraryStrategy": "WGS", + "max": "57257", + "mean": "19528", + "metadataAccession": "SRR29483201", + "min": "121", + "mmTag": true, + "n25": "17018", + "n50": "19561", + "n75": "22975", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m84046_230707_192442_s1.hifi_reads.bc2062.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16472", + "quartile50": "18685", + "quartile75": "21775", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19087", + "sampleId": "HG02735", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19087", - "totalBp": "14053826809", - "totalGbp": "14.053826809", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "8797263927", + "totalGbp": "8.8", + "totalReads": "450494", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797087", - "assembly": null, + "accession": "SAMN26267393", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797087", - "ccsAlgorithm": "N/A", - "coverage": "4.53", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267393", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19087-2_S15_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 18kb fractionated gDNA", + "familyId": "BB03", + "filename": "m84046_230707_192442_s1.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19087-2_S15_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG01884.HFSS_m84046_230707_192442_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242198", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.553335", + "libraryStrategy": "WGS", + "max": "48493", + "mean": "17266", + "metadataAccession": "SRR29483099", + "min": "326", + "mmTag": true, + "n25": "15291", + "n50": "17180", + "n75": "19819", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/PacBio_HiFi/m84046_230707_192442_s1.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "14941", + "quartile50": "16599", + "quartile75": "18996", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19087", + "sampleId": "HG01884", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "ACB", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19087", - "totalBp": "14052848081", - "totalGbp": "14.052848081", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "8216138148", + "totalGbp": "8.22", + "totalReads": "475838", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797087", - "assembly": null, + "accession": "SAMN17861238", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797087", - "ccsAlgorithm": "N/A", - "coverage": "4.91", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN17861238", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19087-2_S15_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 37kb fractionated gDNA", + "familyId": "BB55", + "filename": "m84046_230707_195504_s2.hifi_reads.bc2067.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19087-2_S15_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02486.HFSS_m84046_230707_195504_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242197", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.588101", + "libraryStrategy": "WGS", + "max": "72036", + "mean": "20969", + "metadataAccession": "SRR29483249", + "min": "85", + "mmTag": true, + "n25": "17268", + "n50": "21072", + "n75": "26697", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02486/raw_data/PacBio_HiFi/m84046_230707_195504_s2.hifi_reads.bc2067.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR1", + "quartile25": "16342", + "quartile50": "19259", + "quartile75": "23914", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19087", + "sampleId": "HG02486", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "ACB", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19087", - "totalBp": "15206352036", - "totalGbp": "15.206352036", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "26347065832", + "totalGbp": "26.35", + "totalReads": "1256460", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797087", - "assembly": null, + "accession": "SAMN26267385", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797087", - "ccsAlgorithm": "N/A", - "coverage": "4.91", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267385", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19087-2_S15_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 18kb fractionated gDNA", + "familyId": "ST016", + "filename": "m84046_230707_195504_s2.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19087-2_S15_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG03688.HFSS_b2_m84046_230707_195504_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242197", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.571684", + "libraryStrategy": "WGS", + "max": "51499", + "mean": "17566", + "metadataAccession": "SRR29483118", + "min": "101", + "mmTag": true, + "n25": "15558", + "n50": "17449", + "n75": "20094", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03688/raw_data/PacBio_HiFi/m84046_230707_195504_s2.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "15240", + "quartile50": "16894", + "quartile75": "19318", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19087", + "sampleId": "HG03688", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "STU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19087", - "totalBp": "15205724480", - "totalGbp": "15.20572448", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "60723310391", + "totalGbp": "60.72", + "totalReads": "3456854", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797087", - "assembly": null, + "accession": "SAMN33758789", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797087", - "ccsAlgorithm": "N/A", - "coverage": "4.9", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758789", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19087-2_S15_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "PK35", + "filename": "m84046_230707_202610_s3.hifi_reads.bc2058.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19087-2_S15_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG03017.HFSS2_m84046_230707_202610_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242195", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.589067", + "libraryStrategy": "WGS", + "max": "51971", + "mean": "20478", + "metadataAccession": "SRR29483143", + "min": "765", + "mmTag": true, + "n25": "17897", + "n50": "20470", + "n75": "23991", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m84046_230707_202610_s3.hifi_reads.bc2058.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17362", + "quartile50": "19599", + "quartile75": "22761", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19087", + "sampleId": "HG03017", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19087", - "totalBp": "15198648480", - "totalGbp": "15.19864848", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "8032535789", + "totalGbp": "8.03", + "totalReads": "392243", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797087", - "assembly": null, + "accession": "SAMN26267383", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797087", - "ccsAlgorithm": "N/A", - "coverage": "4.9", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267383", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19087-2_S15_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "GB38", + "filename": "m84046_230707_202610_s3.hifi_reads.bc2060.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19087-2_S15_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02647.HFSS_m84046_230707_202610_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242195", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.586585", + "libraryStrategy": "WGS", + "max": "55836", + "mean": "19602", + "metadataAccession": "SRR29483162", + "min": "150", + "mmTag": true, + "n25": "17505", + "n50": "19487", + "n75": "22369", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02647/raw_data/PacBio_HiFi/m84046_230707_202610_s3.hifi_reads.bc2060.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "17151", + "quartile50": "18903", + "quartile75": "21502", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19087", + "sampleId": "HG02647", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19087", - "totalBp": "15197962308", - "totalGbp": "15.197962308", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "46225303347", + "totalGbp": "46.23", + "totalReads": "2358113", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797087", - "assembly": null, + "accession": "SAMN17861238", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797087", - "ccsAlgorithm": "N/A", - "coverage": "4.85", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN17861238", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19087-2_S15_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 37kb fractionated gDNA", + "familyId": "BB55", + "filename": "m84046_230707_202610_s3.hifi_reads.bc2067.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19087-2_S15_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02486.HFSS_m84046_230707_202610_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242194", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.566336", + "libraryStrategy": "WGS", + "max": "69861", + "mean": "20515", + "metadataAccession": "SRR29483248", + "min": "268", + "mmTag": true, + "n25": "17015", + "n50": "20540", + "n75": "25788", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02486/raw_data/PacBio_HiFi/m84046_230707_202610_s3.hifi_reads.bc2067.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR1", + "quartile25": "16188", + "quartile50": "18919", + "quartile75": "23266", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19087", + "sampleId": "HG02486", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "ACB", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19087", - "totalBp": "15021715870", - "totalGbp": "15.02171587", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "25537218642", + "totalGbp": "25.54", + "totalReads": "1244789", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797087", - "assembly": null, + "accession": "SAMN26267392", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797087", - "ccsAlgorithm": "N/A", - "coverage": "4.85", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267392", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19087-2_S15_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "VN081", + "filename": "m84046_230707_202610_s3.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19087-2_S15_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02135.HFSS3_m84046_230707_202610_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242194", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.577717", + "libraryStrategy": "WGS", + "max": "43275", + "mean": "17162", + "metadataAccession": "SRR29483225", + "min": "422", + "mmTag": true, + "n25": "15258", + "n50": "17040", + "n75": "19561", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m84046_230707_202610_s3.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "14949", + "quartile50": "16511", + "quartile75": "18799", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19087", + "sampleId": "HG02135", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", + "subpopulation": "KHV", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19087", - "totalBp": "15021066704", - "totalGbp": "15.021066704", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "7376184912", + "totalGbp": "7.38", + "totalReads": "429774", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN33758783", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "5.17", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758783", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-1_S5_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 30kb fractionated gDNA", + "familyId": "PR21", + "filename": "m84046_230707_205716_s4.bc2065--bc2065.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-1_S5_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG01081.HFSS2_m84046_230707_205716_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242435", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.541936", + "libraryStrategy": "WGS", + "max": "65603", + "mean": "20767", + "metadataAccession": "SRR29483123", + "min": "353", + "mmTag": true, + "n25": "17533", + "n50": "21259", + "n75": "26015", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/m84046_230707_205716_s4.bc2065--bc2065.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR3", + "quartile25": "16417", + "quartile50": "19643", + "quartile75": "23928", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "HG01081", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "16029493671", - "totalGbp": "16.029493671", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "15545477788", + "totalGbp": "15.55", + "totalReads": "748539", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN26267394", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "5.17", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267394", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-1_S5_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "PEL51", + "filename": "m84046_230707_205716_s4.default--default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-1_S5_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02293.HFSS_m84046_230707_205716_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242435", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.541506", + "libraryStrategy": "WGS", + "max": "58469", + "mean": "18288", + "metadataAccession": "SRR29483072", + "min": "224", + "mmTag": true, + "n25": "16133", + "n50": "18179", + "n75": "21038", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/PacBio_HiFi/m84046_230707_205716_s4.default--default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "15762", + "quartile50": "17545", + "quartile75": "20132", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "HG02293", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "16028501092", - "totalGbp": "16.028501092", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "46858961814", + "totalGbp": "46.86", + "totalReads": "2562243", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN33758787", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "5.23", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758787", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-1_S5_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 27kb fractionated gDNA", + "familyId": "PK26", + "filename": "m84046_230711_230656_s2.hifi_reads.bc2062.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-1_S5_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02735.HFSS_m84046_230711_230656_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242434", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.563837", + "libraryStrategy": "WGS", + "max": "58940", + "mean": "19604", + "metadataAccession": "SRR29483202", + "min": "131", + "mmTag": true, + "n25": "17067", + "n50": "19632", + "n75": "23110", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m84046_230711_230656_s2.hifi_reads.bc2062.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR3", + "quartile25": "16508", + "quartile50": "18748", + "quartile75": "21880", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "HG02735", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "16217741508", - "totalGbp": "16.217741508", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "19620926536", + "totalGbp": "19.62", + "totalReads": "1000841", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN26267387", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "5.23", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267387", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-1_S5_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 18kb fractionated gDNA", + "familyId": "BD42", + "filename": "m84046_230711_230656_s2.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-1_S5_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG03942.HFSS_C_m84046_230711_230656_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242434", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.574512", + "libraryStrategy": "WGS", + "max": "52486", + "mean": "17688", + "metadataAccession": "SRR29483090", + "min": "248", + "mmTag": true, + "n25": "15650", + "n50": "17624", + "n75": "20339", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03942/raw_data/PacBio_HiFi/m84046_230711_230656_s2.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "15281", + "quartile50": "17030", + "quartile75": "19512", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "HG03942", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "16217052773", - "totalGbp": "16.217052773", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "69465942701", + "totalGbp": "69.47", + "totalReads": "3927195", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN33758789", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "5.08", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758789", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-1_S5_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "PK35", + "filename": "m84046_230711_233802_s3.hifi_reads.bc2058.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-1_S5_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG03017.HFSS2_m84046_230711_233802_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242433", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.545486", + "libraryStrategy": "WGS", + "max": "56905", + "mean": "20598", + "metadataAccession": "SRR29483142", + "min": "196", + "mmTag": true, + "n25": "17976", + "n50": "20585", + "n75": "24154", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m84046_230711_233802_s3.hifi_reads.bc2058.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR3", + "quartile25": "17426", + "quartile50": "19700", + "quartile75": "22903", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "HG03017", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "15742401699", - "totalGbp": "15.742401699", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "17291182646", + "totalGbp": "17.29", + "totalReads": "839447", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN17861240", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "5.08", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN17861240", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-1_S5_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB21", + "filename": "m84046_230711_233802_s3.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-1_S5_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02572.HFSS3_m84046_230711_233802_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242433", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.559764", + "libraryStrategy": "WGS", + "max": "57097", + "mean": "16065", + "metadataAccession": "SRR29483252", + "min": "119", + "mmTag": true, + "n25": "13622", + "n50": "16734", + "n75": "20462", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02572/raw_data/PacBio_HiFi/m84046_230711_233802_s3.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR1", + "quartile25": "12582", + "quartile50": "15327", + "quartile75": "18827", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "HG02572", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "GWD", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "15741568716", - "totalGbp": "15.741568716", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "70160006292", + "totalGbp": "70.16", + "totalReads": "4367119", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN33758799", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "4.95", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758799", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-1_S5_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230712_000908_s4.hifi_reads.bc2061.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-1_S5_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19043.HFSS_m84046_230712_000908_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242454", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.587746", + "libraryStrategy": "WGS", + "max": "52679", + "mean": "20399", + "metadataAccession": "SRR29483133", + "min": "703", + "mmTag": true, + "n25": "17843", + "n50": "20581", + "n75": "24187", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/m84046_230712_000908_s4.hifi_reads.bc2061.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR3", + "quartile25": "17194", + "quartile50": "19625", + "quartile75": "22917", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "NA19043", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "LWK", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "15341183111", - "totalGbp": "15.341183111", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "9568200153", + "totalGbp": "9.57", + "totalReads": "469037", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN26267380", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "4.95", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267380", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-1_S5_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 19kb fractionated gDNA", + "familyId": "VN065", + "filename": "m84046_230712_000908_s4.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-1_S5_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02071.HFSS_A_m84046_230712_000908_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242454", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.580991", + "libraryStrategy": "WGS", + "max": "61719", + "mean": "18039", + "metadataAccession": "SRR29483200", + "min": "224", + "mmTag": true, + "n25": "15821", + "n50": "17982", + "n75": "20929", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02071/raw_data/PacBio_HiFi/m84046_230712_000908_s4.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "15414", + "quartile50": "17295", + "quartile75": "19985", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "HG02071", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "15340327510", - "totalGbp": "15.34032751", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "76304506746", + "totalGbp": "76.3", + "totalReads": "4229810", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN41021639", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "7.03", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021639", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-2_S13_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 30kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230712_224626_s1.hifi_reads.bc2052.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-2_S13_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00290.HFSS_m84046_230712_224626_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242453", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.530724", + "libraryStrategy": "WGS", + "max": "67558", + "mean": "22852", + "metadataAccession": "SRR29483111", + "min": "299", + "mmTag": true, + "n25": "19912", + "n50": "22984", + "n75": "27160", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00290/raw_data/PacBio_HiFi/m84046_230712_224626_s1.hifi_reads.bc2052.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "19159", + "quartile50": "21877", + "quartile75": "25619", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "HG00290", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "21808416507", - "totalGbp": "21.808416507", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "11095310100", + "totalGbp": "11.1", + "totalReads": "485522", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN17861236", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "7.03", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN17861236", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-2_S13_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "BB05", + "filename": "m84046_230712_224626_s1.hifi_reads.bc2066.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-2_S13_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG01891.HFSS_m84046_230712_224626_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242453", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.524834", + "libraryStrategy": "WGS", + "max": "59862", + "mean": "17719", + "metadataAccession": "SRR29483159", + "min": "96", + "mmTag": true, + "n25": "15417", + "n50": "17702", + "n75": "20896", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01891/raw_data/PacBio_HiFi/m84046_230712_224626_s1.hifi_reads.bc2066.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR1", + "quartile25": "14944", + "quartile50": "16897", + "quartile75": "19756", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "HG01891", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "ACB", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "21807050017", - "totalGbp": "21.807050017", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "65719771205", + "totalGbp": "65.72", + "totalReads": "3708847", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN26267392", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "7.17", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267392", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-2_S13_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "VN081", + "filename": "m84046_230712_224626_s1.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-2_S13_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", - "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242452", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.534757", + "fourHundredkbPlus": "N/A", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02135.HFSS3_m84046_230712_224626_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "46258", + "mean": "17189", + "metadataAccession": "SRR29483224", + "min": "93", + "mmTag": true, + "n25": "15283", + "n50": "17064", + "n75": "19574", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m84046_230712_224626_s1.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "14978", + "quartile50": "16540", + "quartile75": "18821", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "HG02135", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "22222196021", - "totalGbp": "22.222196021", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "8573437259", + "totalGbp": "8.57", + "totalReads": "498747", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN41021654", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "7.17", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021654", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-2_S13_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230712_231732_s2.hifi_reads.bc2048.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-2_S13_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00350.HFSS_m84046_230712_231732_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242452", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.53991", + "libraryStrategy": "WGS", + "max": "52872", + "mean": "18551", + "metadataAccession": "SRR29483197", + "min": "102", + "mmTag": true, + "n25": "16260", + "n50": "18532", + "n75": "21668", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00350/raw_data/PacBio_HiFi/m84046_230712_231732_s2.hifi_reads.bc2048.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15806", + "quartile50": "17792", + "quartile75": "20634", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "HG00350", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "22221232152", - "totalGbp": "22.221232152", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "20631179910", + "totalGbp": "20.63", + "totalReads": "1112115", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN41021640", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "6.66", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021640", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-2_S13_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 31kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230712_231732_s2.hifi_reads.bc2053.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-2_S13_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19443.HFSS_m84046_230712_231732_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242451", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.5267", + "libraryStrategy": "WGS", + "max": "60102", + "mean": "24287", + "metadataAccession": "SRR29483070", + "min": "568", + "mmTag": true, + "n25": "20795", + "n50": "24663", + "n75": "29903", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19443/raw_data/PacBio_HiFi/m84046_230712_231732_s2.hifi_reads.bc2053.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "19750", + "quartile50": "23071", + "quartile75": "27722", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "NA19443", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "LWK", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "20639411200", - "totalGbp": "20.6394112", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "13925497069", + "totalGbp": "13.93", + "totalReads": "573361", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN33758782", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "6.66", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758782", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-2_S13_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 26kb fractionated gDNA", + "familyId": "PR18", + "filename": "m84046_230712_231732_s2.hifi_reads.bc2061.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-2_S13_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG01074.HFSS3_m84046_230712_231732_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242451", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.540593", + "libraryStrategy": "WGS", + "max": "62885", + "mean": "20441", + "metadataAccession": "SRR29483186", + "min": "73", + "mmTag": true, + "n25": "17727", + "n50": "20515", + "n75": "24254", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m84046_230712_231732_s2.hifi_reads.bc2061.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR3", + "quartile25": "17105", + "quartile50": "19521", + "quartile75": "22903", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "HG01074", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "20638270093", - "totalGbp": "20.638270093", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "36576237795", + "totalGbp": "36.58", + "totalReads": "1789356", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN26267393", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "6.76", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267393", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-2_S13_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 18kb fractionated gDNA", + "familyId": "BB03", + "filename": "m84046_230712_231732_s2.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-2_S13_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG01884.HFSS_m84046_230712_231732_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242450", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.516312", + "libraryStrategy": "WGS", + "max": "47627", + "mean": "17498", + "metadataAccession": "SRR29483100", + "min": "421", + "mmTag": true, + "n25": "15438", + "n50": "17430", + "n75": "20183", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/PacBio_HiFi/m84046_230712_231732_s2.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "15063", + "quartile50": "16809", + "quartile75": "19298", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "HG01884", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "ACB", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "20951317422", - "totalGbp": "20.951317422", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "6389710318", + "totalGbp": "6.39", + "totalReads": "365156", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN41021653", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "6.76", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021653", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-2_S13_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230715_060901_s1.hifi_reads.bc2083.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-2_S13_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00344.HFSS2_m84046_230715_060901_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242450", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.526534", + "libraryStrategy": "WGS", + "max": "56374", + "mean": "19344", + "metadataAccession": "SRR29483172", + "min": "122", + "mmTag": true, + "n25": "17300", + "n50": "19273", + "n75": "22021", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00344/raw_data/PacBio_HiFi/m84046_230715_060901_s1.hifi_reads.bc2083.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16957", + "quartile50": "18716", + "quartile75": "21258", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "HG00344", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "20950101316", - "totalGbp": "20.950101316", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "60692182063", + "totalGbp": "60.69", + "totalReads": "3137497", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN41021651", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "16.86", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021651", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-2_S13i_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "NG109", + "filename": "m84046_230715_060901_s1.hifi_reads.bc2084.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-2_S13i_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG03521.HFSS2_m84046_230715_060901_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242448", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.461663", + "libraryStrategy": "WGS", + "max": "58005", + "mean": "20640", + "metadataAccession": "SRR29483259", + "min": "66", + "mmTag": true, + "n25": "18408", + "n50": "20518", + "n75": "23530", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03521/raw_data/PacBio_HiFi/m84046_230715_060901_s1.hifi_reads.bc2084.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18025", + "quartile50": "19908", + "quartile75": "22635", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "HG03521", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "52270389803", - "totalGbp": "52.270389803", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "52350380501", + "totalGbp": "52.35", + "totalReads": "2536343", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN41021653", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "16.86", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021653", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-2_S13i_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230715_064007_s2.hifi_reads.bc2083.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-2_S13i_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00344.HFSS2_m84046_230715_064007_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242448", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.449159", + "libraryStrategy": "WGS", + "max": "56033", + "mean": "19456", + "metadataAccession": "SRR29483173", + "min": "85", + "mmTag": true, + "n25": "17374", + "n50": "19401", + "n75": "22208", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00344/raw_data/PacBio_HiFi/m84046_230715_064007_s2.hifi_reads.bc2083.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17020", + "quartile50": "18821", + "quartile75": "21429", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "HG00344", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "52266660540", - "totalGbp": "52.26666054", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "63874723531", + "totalGbp": "63.87", + "totalReads": "3282883", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN41021651", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "18.04", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021651", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-2_S13i_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "NG109", + "filename": "m84046_230715_064007_s2.hifi_reads.bc2084.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-2_S13i_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG03521.HFSS2_m84046_230715_064007_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242447", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.484363", + "libraryStrategy": "WGS", + "max": "57192", + "mean": "20784", + "metadataAccession": "SRR29483257", + "min": "61", + "mmTag": true, + "n25": "18499", + "n50": "20676", + "n75": "23771", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03521/raw_data/PacBio_HiFi/m84046_230715_064007_s2.hifi_reads.bc2084.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18099", + "quartile50": "20036", + "quartile75": "22840", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "HG03521", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "55926147946", - "totalGbp": "55.926147946", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "56036523269", + "totalGbp": "56.04", + "totalReads": "2696081", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN41021660", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "18.04", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021660", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-2_S13i_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230716_051716_s3.hifi_reads.bc2086.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-2_S13i_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00097.HFSS_m84046_230716_051716_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242447", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.475519", + "libraryStrategy": "WGS", + "max": "60165", + "mean": "20551", + "metadataAccession": "SRR29483082", + "min": "77", + "mmTag": true, + "n25": "18218", + "n50": "20516", + "n75": "23811", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00097/raw_data/PacBio_HiFi/m84046_230716_051716_s3.hifi_reads.bc2086.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17766", + "quartile50": "19795", + "quartile75": "22777", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "HG00097", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "55924239854", - "totalGbp": "55.924239854", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "56111550391", + "totalGbp": "56.11", + "totalReads": "2730343", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN41021659", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "15.23", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021659", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-2_S13i_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 27kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230716_051716_s3.hifi_reads.bc2087.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-2_S13i_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00272.HFSS_m84046_230716_051716_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242446", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.460326", + "libraryStrategy": "WGS", + "max": "62245", + "mean": "22209", + "metadataAccession": "SRR29483207", + "min": "70", + "mmTag": true, + "n25": "19469", + "n50": "22259", + "n75": "26112", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00272/raw_data/PacBio_HiFi/m84046_230716_051716_s3.hifi_reads.bc2087.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18841", + "quartile50": "21311", + "quartile75": "24765", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "HG00272", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "47200415951", - "totalGbp": "47.200415951", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "55893022230", + "totalGbp": "55.89", + "totalReads": "2516610", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN41021660", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "15.23", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021660", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-2_S13i_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230716_054822_s4.hifi_reads.bc2086.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-2_S13i_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00097.HFSS_m84046_230716_054822_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242446", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.50701", + "libraryStrategy": "WGS", + "max": "53858", + "mean": "20563", + "metadataAccession": "SRR29483083", + "min": "135", + "mmTag": true, + "n25": "18220", + "n50": "20531", + "n75": "23848", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00097/raw_data/PacBio_HiFi/m84046_230716_054822_s4.hifi_reads.bc2086.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17766", + "quartile50": "19800", + "quartile75": "22810", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "HG00097", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "47198861709", - "totalGbp": "47.198861709", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "59475971630", + "totalGbp": "59.48", + "totalReads": "2892254", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN41021659", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "13.11", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021659", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-2_S13i_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 27kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230716_054822_s4.hifi_reads.bc2087.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-2_S13i_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00272.HFSS_m84046_230716_054822_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242445", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.505864", + "libraryStrategy": "WGS", + "max": "71087", + "mean": "22239", + "metadataAccession": "SRR29483227", + "min": "146", + "mmTag": true, + "n25": "19487", + "n50": "22300", + "n75": "26169", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00272/raw_data/PacBio_HiFi/m84046_230716_054822_s4.hifi_reads.bc2087.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18854", + "quartile50": "21337", + "quartile75": "24814", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "HG00272", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "40634736086", - "totalGbp": "40.634736086", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "59280573492", + "totalGbp": "59.28", + "totalReads": "2665556", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797088", - "assembly": null, + "accession": "SAMN41021660", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797088", - "ccsAlgorithm": "N/A", - "coverage": "13.11", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021660", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y060", - "filename": "NA19120-2_S13i_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230718_223822_s1.hifi_reads.bc2086.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19120-2_S13i_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00097.HFSS_m84046_230718_223822_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242445", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.489479", + "libraryStrategy": "WGS", + "max": "58103", + "mean": "20427", + "metadataAccession": "SRR29483084", + "min": "131", + "mmTag": true, + "n25": "18134", + "n50": "20372", + "n75": "23618", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00097/raw_data/PacBio_HiFi/m84046_230718_223822_s1.hifi_reads.bc2086.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17693", + "quartile50": "19676", + "quartile75": "22592", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19120", + "sampleId": "HG00097", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19120", - "totalBp": "40633250382", - "totalGbp": "40.633250382", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "81988073357", + "totalGbp": "81.99", + "totalReads": "4013688", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797089", - "assembly": null, + "accession": "SAMN41021659", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797089", - "ccsAlgorithm": "N/A", - "coverage": "4.54", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021659", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y056", - "filename": "NA19159-1_S8_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 27kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230718_223822_s1.hifi_reads.bc2087.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19159-1_S8_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00272.HFSS_m84046_230718_223822_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242444", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.566407", + "libraryStrategy": "WGS", + "max": "54405", + "mean": "22049", + "metadataAccession": "SRR29483226", + "min": "201", + "mmTag": true, + "n25": "19353", + "n50": "22079", + "n75": "25872", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00272/raw_data/PacBio_HiFi/m84046_230718_223822_s1.hifi_reads.bc2087.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "18745", + "quartile50": "21161", + "quartile75": "24545", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19159", + "sampleId": "HG00272", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19159", - "totalBp": "14067634876", - "totalGbp": "14.067634876", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "28648842428", + "totalGbp": "28.65", + "totalReads": "1299274", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797089", - "assembly": null, + "accession": "SAMN41021651", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797089", - "ccsAlgorithm": "N/A", - "coverage": "4.54", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021651", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y056", - "filename": "NA19159-1_S8_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "NG109", + "filename": "m84046_230718_230843_s2.hifi_reads.bc2084.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19159-1_S8_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG03521.HFSS2_m84046_230718_230843_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242444", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.547741", + "libraryStrategy": "WGS", + "max": "63166", + "mean": "20671", + "metadataAccession": "SRR29483260", + "min": "96", + "mmTag": true, + "n25": "18419", + "n50": "20551", + "n75": "23601", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03521/raw_data/PacBio_HiFi/m84046_230718_230843_s2.hifi_reads.bc2084.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "18030", + "quartile50": "19928", + "quartile75": "22685", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19159", + "sampleId": "HG03521", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19159", - "totalBp": "14066467348", - "totalGbp": "14.066467348", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "100261536810", + "totalGbp": "100.26", + "totalReads": "4850185", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797089", - "assembly": null, + "accession": "SAMN26267393", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797089", - "ccsAlgorithm": "N/A", - "coverage": "4.94", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267393", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y056", - "filename": "NA19159-1_S8_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 18kb fractionated gDNA", + "familyId": "BB03", + "filename": "m84046_230718_230843_s2.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19159-1_S8_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG01884.HFSS_m84046_230718_230843_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242443", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.566578", + "libraryStrategy": "WGS", + "max": "51929", + "mean": "17476", + "metadataAccession": "SRR29483164", + "min": "724", + "mmTag": true, + "n25": "15428", + "n50": "17411", + "n75": "20136", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01884/raw_data/PacBio_HiFi/m84046_230718_230843_s2.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "15052", + "quartile50": "16796", + "quartile75": "19282", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19159", + "sampleId": "HG01884", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "ACB", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19159", - "totalBp": "15323640450", - "totalGbp": "15.32364045", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "9447051450", + "totalGbp": "9.45", + "totalReads": "540542", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797089", - "assembly": null, + "accession": "SAMN41021653", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797089", - "ccsAlgorithm": "N/A", - "coverage": "4.94", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021653", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y056", - "filename": "NA19159-1_S8_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230718_233949_s3.hifi_reads.bc2083.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19159-1_S8_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00344.HFSS2_m84046_230718_233949_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242443", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.545824", + "libraryStrategy": "WGS", + "max": "60663", + "mean": "19406", + "metadataAccession": "SRR29483171", + "min": "103", + "mmTag": true, + "n25": "17342", + "n50": "19345", + "n75": "22120", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00344/raw_data/PacBio_HiFi/m84046_230718_233949_s3.hifi_reads.bc2083.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16994", + "quartile50": "18777", + "quartile75": "21349", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19159", + "sampleId": "HG00344", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19159", - "totalBp": "15322839268", - "totalGbp": "15.322839268", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "77941329750", + "totalGbp": "77.94", + "totalReads": "4016176", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797089", - "assembly": null, + "accession": "SAMN26267394", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797089", - "ccsAlgorithm": "N/A", - "coverage": "4.95", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267394", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y056", - "filename": "NA19159-1_S8_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "PEL51", + "filename": "m84046_230718_233949_s3.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19159-1_S8_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02293.HFSS_m84046_230718_233949_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242442", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.608204", + "libraryStrategy": "WGS", + "max": "59398", + "mean": "18403", + "metadataAccession": "SRR29483074", + "min": "544", + "mmTag": true, + "n25": "16224", + "n50": "18309", + "n75": "21179", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/PacBio_HiFi/m84046_230718_233949_s3.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "15843", + "quartile50": "17667", + "quartile75": "20276", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19159", + "sampleId": "HG02293", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19159", - "totalBp": "15330334190", - "totalGbp": "15.33033419", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "22143072197", + "totalGbp": "22.14", + "totalReads": "1203172", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797089", - "assembly": null, + "accession": "SAMN33758782", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797089", - "ccsAlgorithm": "N/A", - "coverage": "4.94", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758782", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y056", - "filename": "NA19159-1_S8_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 26kb fractionated gDNA", + "familyId": "PR18", + "filename": "m84046_230719_001055_s4.hifi_reads.bc2061.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19159-1_S8_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG01074.HFSS3_m84046_230719_001055_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242442", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.559477", + "libraryStrategy": "WGS", + "max": "56330", + "mean": "20450", + "metadataAccession": "SRR29483147", + "min": "270", + "mmTag": true, + "n25": "17745", + "n50": "20525", + "n75": "24244", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m84046_230719_001055_s4.hifi_reads.bc2061.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17126", + "quartile50": "19537", + "quartile75": "22909", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19159", + "sampleId": "HG01074", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19159", - "totalBp": "15329439126", - "totalGbp": "15.329439126", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "18474875553", + "totalGbp": "18.47", + "totalReads": "903402", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797089", - "assembly": null, + "accession": "SAMN41021638", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797089", - "ccsAlgorithm": "N/A", - "coverage": "4.9", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021638", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y056", - "filename": "NA19159-1_S8_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 27kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230719_001055_s4.hifi_reads.bc2085.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19159-1_S8_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00133.HFSS2_m84046_230719_001055_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242441", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.589573", + "libraryStrategy": "WGS", + "max": "67080", + "mean": "21796", + "metadataAccession": "SRR29483107", + "min": "96", + "mmTag": true, + "n25": "19292", + "n50": "21676", + "n75": "25074", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230719_001055_s4.hifi_reads.bc2085.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "18839", + "quartile50": "20947", + "quartile75": "24008", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19159", + "sampleId": "HG00133", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19159", - "totalBp": "15198062363", - "totalGbp": "15.198062363", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "23522900809", + "totalGbp": "23.52", + "totalReads": "1079223", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797089", - "assembly": null, + "accession": "SAMN41021659", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797089", - "ccsAlgorithm": "N/A", - "coverage": "4.9", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021659", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y056", - "filename": "NA19159-1_S8_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 27kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230719_001055_s4.hifi_reads.bc2087.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19159-1_S8_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00272.HFSS_m84046_230719_001055_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242441", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.556074", + "libraryStrategy": "WGS", + "max": "60184", + "mean": "22165", + "metadataAccession": "SRR29483208", + "min": "86", + "mmTag": true, + "n25": "19451", + "n50": "22207", + "n75": "26022", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00272/raw_data/PacBio_HiFi/m84046_230719_001055_s4.hifi_reads.bc2087.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "18831", + "quartile50": "21277", + "quartile75": "24693", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19159", + "sampleId": "HG00272", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19159", - "totalBp": "15197214990", - "totalGbp": "15.19721499", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "66535915752", + "totalGbp": "66.54", + "totalReads": "3001821", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797089", - "assembly": null, + "accession": "SAMN33758790", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797089", - "ccsAlgorithm": "N/A", - "coverage": "5.27", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758790", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y056", - "filename": "NA19159-2_S16_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "GB110", + "filename": "m84046_230720_182350_s1.hifi_reads.bc2003.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19159-2_S16_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG03041.HFSS2_m84046_230720_182350_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242440", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.554173", + "libraryStrategy": "WGS", + "max": "52881", + "mean": "18511", + "metadataAccession": "SRR29483241", + "min": "126", + "mmTag": true, + "n25": "16140", + "n50": "18528", + "n75": "21716", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m84046_230720_182350_s1.hifi_reads.bc2003.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15640", + "quartile50": "17728", + "quartile75": "20626", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19159", + "sampleId": "HG03041", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "GWD", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19159", - "totalBp": "16324115791", - "totalGbp": "16.324115791", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "10936928289", + "totalGbp": "10.94", + "totalReads": "590816", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797089", - "assembly": null, + "accession": "SAMN33758780", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797089", - "ccsAlgorithm": "N/A", - "coverage": "5.27", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758780", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y056", - "filename": "NA19159-2_S16_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 27kb fractionated gDNA", + "familyId": "SH045", + "filename": "m84046_230720_182350_s1.hifi_reads.bc2004.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19159-2_S16_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG00558.HFSS2_m84046_230720_182350_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242440", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.569959", + "libraryStrategy": "WGS", + "max": "60806", + "mean": "21085", + "metadataAccession": "SRR29483116", + "min": "151", + "mmTag": true, + "n25": "18187", + "n50": "21393", + "n75": "25429", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m84046_230720_182350_s1.hifi_reads.bc2004.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17361", + "quartile50": "20208", + "quartile75": "23908", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19159", + "sampleId": "HG00558", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19159", - "totalBp": "16322909256", - "totalGbp": "16.322909256", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "23136924177", + "totalGbp": "23.14", + "totalReads": "1097268", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797089", - "assembly": null, + "accession": "SAMN26267379", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797089", - "ccsAlgorithm": "N/A", - "coverage": "5.74", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267379", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y056", - "filename": "NA19159-2_S16_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": "CLM27", + "filename": "m84046_230720_182350_s1.hifi_reads.bc2005.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19159-2_S16_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG01346.HFSS2_m84046_230720_182350_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242439", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.575919", + "libraryStrategy": "WGS", + "max": "68536", + "mean": "17967", + "metadataAccession": "SRR29483239", + "min": "76", + "mmTag": true, + "n25": "15796", + "n50": "18026", + "n75": "21068", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01346/raw_data/PacBio_HiFi/m84046_230720_182350_s1.hifi_reads.bc2005.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "15338", + "quartile50": "17299", + "quartile75": "20105", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19159", + "sampleId": "HG01346", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19159", - "totalBp": "17806607760", - "totalGbp": "17.80660776", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "67031281657", + "totalGbp": "67.03", + "totalReads": "3730708", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797089", - "assembly": null, + "accession": "SAMN33758795", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797089", - "ccsAlgorithm": "N/A", - "coverage": "5.74", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758795", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y056", - "filename": "NA19159-2_S16_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "PK60", + "filename": "m84046_230720_185410_s2.hifi_reads.bc2002.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19159-2_S16_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG03704.HFSS5_m84046_230720_185410_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242439", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.522968", + "libraryStrategy": "WGS", + "max": "55270", + "mean": "19506", + "metadataAccession": "SRR29483161", + "min": "94", + "mmTag": true, + "n25": "16773", + "n50": "19756", + "n75": "23569", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m84046_230720_185410_s2.hifi_reads.bc2002.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16019", + "quartile50": "18635", + "quartile75": "22124", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19159", + "sampleId": "HG03704", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "PJL", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19159", - "totalBp": "17805753536", - "totalGbp": "17.805753536", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "45275343137", + "totalGbp": "45.28", + "totalReads": "2321098", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797089", - "assembly": null, + "accession": "SAMN33758786", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797089", - "ccsAlgorithm": "N/A", - "coverage": "5.74", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN33758786", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y056", - "filename": "NA19159-2_S16_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", + "familyId": "BB46", + "filename": "m84046_230720_185410_s2.hifi_reads.bc2006.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19159-2_S16_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02451.HFSS3_m84046_230720_185410_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242437", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.535619", + "libraryStrategy": "WGS", + "max": "49086", + "mean": "18780", + "metadataAccession": "SRR29483195", + "min": "175", + "mmTag": true, + "n25": "16545", + "n50": "18768", + "n75": "21880", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/m84046_230720_185410_s2.hifi_reads.bc2006.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16117", + "quartile50": "18053", + "quartile75": "20895", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19159", + "sampleId": "HG02451", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "ACB", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19159", - "totalBp": "17808457755", - "totalGbp": "17.808457755", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "49774606276", + "totalGbp": "49.77", + "totalReads": "2650321", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797089", - "assembly": null, + "accession": "SAMN41021663", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797089", - "ccsAlgorithm": "N/A", - "coverage": "5.74", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021663", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y056", - "filename": "NA19159-2_S16_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230721_175304_s3.hifi_reads.bc2091.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19159-2_S16_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG18871.HFSS_m84046_230721_175304_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242437", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.537256", + "libraryStrategy": "WGS", + "max": "47945", + "mean": "17734", + "metadataAccession": "SRR29483169", + "min": "69", + "mmTag": true, + "n25": "15957", + "n50": "17779", + "n75": "20153", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18871/raw_data/PacBio_HiFi/m84046_230721_175304_s3.hifi_reads.bc2091.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "15615", + "quartile50": "17288", + "quartile75": "19526", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19159", + "sampleId": "NA18871", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", "subpopulation": "YRI", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19159", - "totalBp": "17807570446", - "totalGbp": "17.807570446", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "66877137813", + "totalGbp": "66.88", + "totalReads": "3770954", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797089", - "assembly": null, + "accession": "SAMN41021664", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797089", - "ccsAlgorithm": "N/A", - "coverage": "5.67", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021664", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y056", - "filename": "NA19159-2_S16_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230721_175304_s3.hifi_reads.bc2092.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19159-2_S16_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG20850.HFSS_m84046_230721_175304_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242436", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.548013", + "libraryStrategy": "WGS", + "max": "50125", + "mean": "18382", + "metadataAccession": "SRR29483085", + "min": "91", + "mmTag": true, + "n25": "16530", + "n50": "18391", + "n75": "20858", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20850/raw_data/PacBio_HiFi/m84046_230721_175304_s3.hifi_reads.bc2092.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16194", + "quartile50": "17892", + "quartile75": "20208", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19159", + "sampleId": "NA20850", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19159", - "totalBp": "17582589136", - "totalGbp": "17.582589136", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "66234086448", + "totalGbp": "66.23", + "totalReads": "3603056", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797089", - "assembly": null, + "accession": "SAMN41021663", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797089", - "ccsAlgorithm": "N/A", - "coverage": "5.67", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021663", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y056", - "filename": "NA19159-2_S16_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230721_182333_s4.hifi_reads.bc2091.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19159-2_S16_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG18871.HFSS_m84046_230721_182333_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242436", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.561775", + "libraryStrategy": "WGS", + "max": "49600", + "mean": "17760", + "metadataAccession": "SRR29483170", + "min": "89", + "mmTag": true, + "n25": "15981", + "n50": "17809", + "n75": "20188", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18871/raw_data/PacBio_HiFi/m84046_230721_182333_s4.hifi_reads.bc2091.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "15636", + "quartile50": "17317", + "quartile75": "19561", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19159", + "sampleId": "NA18871", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", "subpopulation": "YRI", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19159", - "totalBp": "17581755267", - "totalGbp": "17.581755267", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "63934526697", + "totalGbp": "63.93", + "totalReads": "3599850", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797090", - "assembly": null, + "accession": "SAMN41021664", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797090", - "ccsAlgorithm": "N/A", - "coverage": "3.95", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021664", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y039", - "filename": "NA19185-1_S17_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230721_182333_s4.hifi_reads.bc2092.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19185-1_S17_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG20850.HFSS_m84046_230721_182333_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242295", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.618567", + "libraryStrategy": "WGS", + "max": "54426", + "mean": "18401", + "metadataAccession": "SRR29483088", + "min": "88", + "mmTag": true, + "n25": "16550", + "n50": "18414", + "n75": "20877", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20850/raw_data/PacBio_HiFi/m84046_230721_182333_s4.hifi_reads.bc2092.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16213", + "quartile50": "17914", + "quartile75": "20230", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19185", + "sampleId": "NA20850", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19185", - "totalBp": "12257135185", - "totalGbp": "12.257135185", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "63327918484", + "totalGbp": "63.33", + "totalReads": "3441545", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797090", - "assembly": null, + "accession": "SAMN41021663", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797090", - "ccsAlgorithm": "N/A", - "coverage": "3.95", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021663", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y039", - "filename": "NA19185-1_S17_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230721_185439_s1.hifi_reads.bc2091.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19185-1_S17_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG18871.HFSS_m84046_230721_185439_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242295", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.568337", + "libraryStrategy": "WGS", + "max": "56615", + "mean": "17659", + "metadataAccession": "SRR29483168", + "min": "83", + "mmTag": true, + "n25": "15902", + "n50": "17694", + "n75": "20041", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18871/raw_data/PacBio_HiFi/m84046_230721_185439_s1.hifi_reads.bc2091.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "15566", + "quartile50": "17216", + "quartile75": "19420", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19185", + "sampleId": "NA18871", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", "subpopulation": "YRI", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19185", - "totalBp": "12256101559", - "totalGbp": "12.256101559", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "59501427505", + "totalGbp": "59.5", + "totalReads": "3369453", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797090", - "assembly": null, + "accession": "SAMN41021664", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797090", - "ccsAlgorithm": "N/A", - "coverage": "4.22", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021664", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y039", - "filename": "NA19185-1_S17_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230721_185439_s1.hifi_reads.bc2092.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19185-1_S17_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG20850.HFSS_m84046_230721_185439_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242294", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.609886", + "libraryStrategy": "WGS", + "max": "49617", + "mean": "18297", + "metadataAccession": "SRR29483086", + "min": "118", + "mmTag": true, + "n25": "16467", + "n50": "18296", + "n75": "20733", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20850/raw_data/PacBio_HiFi/m84046_230721_185439_s1.hifi_reads.bc2092.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16140", + "quartile50": "17808", + "quartile75": "20093", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19185", + "sampleId": "NA20850", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19185", - "totalBp": "13073641404", - "totalGbp": "13.073641404", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "58421144215", + "totalGbp": "58.42", + "totalReads": "3192817", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797090", - "assembly": null, + "accession": "SAMN41021677", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797090", - "ccsAlgorithm": "N/A", - "coverage": "4.22", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021677", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y039", - "filename": "NA19185-1_S17_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230721_192545_s2.hifi_reads.bc2080.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19185-1_S17_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG03136.HFSS_m84046_230721_192545_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242294", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.598748", + "libraryStrategy": "WGS", + "max": "50586", + "mean": "18206", + "metadataAccession": "SRR29483136", + "min": "85", + "mmTag": true, + "n25": "16386", + "n50": "18383", + "n75": "20842", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03136/raw_data/PacBio_HiFi/m84046_230721_192545_s2.hifi_reads.bc2080.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "15959", + "quartile50": "17828", + "quartile75": "20169", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19185", + "sampleId": "HG03136", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19185", - "totalBp": "13072948865", - "totalGbp": "13.072948865", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "61280281634", + "totalGbp": "61.28", + "totalReads": "3365913", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797090", - "assembly": null, + "accession": "SAMN41021662", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797090", - "ccsAlgorithm": "N/A", - "coverage": "4.22", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021662", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y039", - "filename": "NA19185-1_S17_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230721_192545_s2.hifi_reads.bc2090.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19185-1_S17_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG01766.HFSS_m84046_230721_192545_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242293", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.586516", + "libraryStrategy": "WGS", + "max": "57480", + "mean": "19432", + "metadataAccession": "SRR29483155", + "min": "181", + "mmTag": true, + "n25": "17282", + "n50": "19417", + "n75": "22331", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01766/raw_data/PacBio_HiFi/m84046_230721_192545_s2.hifi_reads.bc2090.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16868", + "quartile50": "18775", + "quartile75": "21454", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19185", + "sampleId": "HG01766", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "IBS", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19185", - "totalBp": "13085456563", - "totalGbp": "13.085456563", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "53097306006", + "totalGbp": "53.1", + "totalReads": "2732398", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797090", - "assembly": null, + "accession": "SAMN41021677", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797090", - "ccsAlgorithm": "N/A", - "coverage": "4.22", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021677", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y039", - "filename": "NA19185-1_S17_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230722_180255_s3.hifi_reads.bc2080.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19185-1_S17_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG03136.HFSS_m84046_230722_180255_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242293", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.574441", + "libraryStrategy": "WGS", + "max": "49504", + "mean": "18263", + "metadataAccession": "SRR29483206", + "min": "84", + "mmTag": true, + "n25": "16433", + "n50": "18442", + "n75": "20924", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03136/raw_data/PacBio_HiFi/m84046_230722_180255_s3.hifi_reads.bc2080.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "15999", + "quartile50": "17881", + "quartile75": "20244", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19185", + "sampleId": "HG03136", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19185", - "totalBp": "13084705432", - "totalGbp": "13.084705432", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "64399312194", + "totalGbp": "64.4", + "totalReads": "3526179", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797090", - "assembly": null, + "accession": "SAMN41021662", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797090", - "ccsAlgorithm": "N/A", - "coverage": "4.19", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021662", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y039", - "filename": "NA19185-1_S17_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230722_180255_s3.hifi_reads.bc2090.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19185-1_S17_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG01766.HFSS_m84046_230722_180255_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242432", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.594033", + "libraryStrategy": "WGS", + "max": "61514", + "mean": "19516", + "metadataAccession": "SRR29483158", + "min": "222", + "mmTag": true, + "n25": "17338", + "n50": "19506", + "n75": "22474", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01766/raw_data/PacBio_HiFi/m84046_230722_180255_s3.hifi_reads.bc2090.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16913", + "quartile50": "18846", + "quartile75": "21569", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19185", + "sampleId": "HG01766", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "IBS", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19185", - "totalBp": "12979454960", - "totalGbp": "12.97945496", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "56312489585", + "totalGbp": "56.31", + "totalReads": "2885411", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797090", - "assembly": null, + "accession": "SAMN41021677", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797090", - "ccsAlgorithm": "N/A", - "coverage": "4.19", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021677", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y039", - "filename": "NA19185-1_S17_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230722_183401_s4.hifi_reads.bc2080.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19185-1_S17_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG03136.HFSS_m84046_230722_183401_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242432", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.574654", + "libraryStrategy": "WGS", + "max": "50197", + "mean": "18172", + "metadataAccession": "SRR29483217", + "min": "89", + "mmTag": true, + "n25": "16357", + "n50": "18349", + "n75": "20811", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03136/raw_data/PacBio_HiFi/m84046_230722_183401_s4.hifi_reads.bc2080.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "15927", + "quartile50": "17794", + "quartile75": "20134", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19185", + "sampleId": "HG03136", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19185", - "totalBp": "12978755728", - "totalGbp": "12.978755728", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "67421766467", + "totalGbp": "67.42", + "totalReads": "3710029", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797090", - "assembly": null, + "accession": "SAMN41021662", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797090", - "ccsAlgorithm": "N/A", - "coverage": "4.09", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021662", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y039", - "filename": "NA19185-2_S25_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230722_183401_s4.hifi_reads.bc2090.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19185-2_S25_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG01766.HFSS_m84046_230722_183401_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242311", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.585463", + "libraryStrategy": "WGS", + "max": "55690", + "mean": "19412", + "metadataAccession": "SRR29483156", + "min": "138", + "mmTag": true, + "n25": "17264", + "n50": "19392", + "n75": "22330", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01766/raw_data/PacBio_HiFi/m84046_230722_183401_s4.hifi_reads.bc2090.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16847", + "quartile50": "18747", + "quartile75": "21431", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19185", + "sampleId": "HG01766", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "IBS", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19185", - "totalBp": "12682043444", - "totalGbp": "12.682043444", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "58353964607", + "totalGbp": "58.35", + "totalReads": "3005966", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797090", - "assembly": null, + "accession": "SAMN41021674", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797090", - "ccsAlgorithm": "N/A", - "coverage": "4.09", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021674", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y039", - "filename": "NA19185-2_S25_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230724_190043_s1.hifi_reads.bc2094.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19185-2_S25_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG01028.HFSS_m84046_230724_190043_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242311", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.579125", + "libraryStrategy": "WGS", + "max": "49266", + "mean": "17784", + "metadataAccession": "SRR29483214", + "min": "97", + "mmTag": true, + "n25": "15849", + "n50": "17793", + "n75": "20438", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01028/raw_data/PacBio_HiFi/m84046_230724_190043_s1.hifi_reads.bc2094.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "15464", + "quartile50": "17217", + "quartile75": "19649", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19185", + "sampleId": "HG01028", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19185", - "totalBp": "12680980988", - "totalGbp": "12.680980988", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "58299850347", + "totalGbp": "58.3", + "totalReads": "3278083", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797090", - "assembly": null, + "accession": "SAMN41021676", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797090", - "ccsAlgorithm": "N/A", - "coverage": "4.4", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021676", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y039", - "filename": "NA19185-2_S25_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230724_190043_s1.hifi_reads.bc2096.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19185-2_S25_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00258.HFSS_m84046_230724_190043_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242310", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.580722", + "libraryStrategy": "WGS", + "max": "55371", + "mean": "18645", + "metadataAccession": "SRR29483180", + "min": "148", + "mmTag": true, + "n25": "16729", + "n50": "18691", + "n75": "21293", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00258/raw_data/PacBio_HiFi/m84046_230724_190043_s1.hifi_reads.bc2096.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16344", + "quartile50": "18140", + "quartile75": "20558", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19185", + "sampleId": "HG00258", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19185", - "totalBp": "13649692314", - "totalGbp": "13.649692314", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "51428204939", + "totalGbp": "51.43", + "totalReads": "2758278", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797090", - "assembly": null, + "accession": "SAMN41021674", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797090", - "ccsAlgorithm": "N/A", - "coverage": "4.4", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021674", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y039", - "filename": "NA19185-2_S25_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230724_193107_s2.hifi_reads.bc2094.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19185-2_S25_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG01028.HFSS_m84046_230724_193107_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242310", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.556523", + "libraryStrategy": "WGS", + "max": "51678", + "mean": "17807", + "metadataAccession": "SRR29483211", + "min": "83", + "mmTag": true, + "n25": "15861", + "n50": "17819", + "n75": "20475", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01028/raw_data/PacBio_HiFi/m84046_230724_193107_s2.hifi_reads.bc2094.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "15475", + "quartile50": "17236", + "quartile75": "19684", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19185", + "sampleId": "HG01028", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19185", - "totalBp": "13648938374", - "totalGbp": "13.648938374", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "60855170041", + "totalGbp": "60.86", + "totalReads": "3417421", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797090", - "assembly": null, + "accession": "SAMN41021676", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797090", - "ccsAlgorithm": "N/A", - "coverage": "4.41", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021676", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y039", - "filename": "NA19185-2_S25_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230724_193107_s2.hifi_reads.bc2096.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19185-2_S25_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00258.HFSS_m84046_230724_193107_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242309", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.593398", + "libraryStrategy": "WGS", + "max": "60525", + "mean": "18670", + "metadataAccession": "SRR29483179", + "min": "103", + "mmTag": true, + "n25": "16744", + "n50": "18719", + "n75": "21334", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00258/raw_data/PacBio_HiFi/m84046_230724_193107_s2.hifi_reads.bc2096.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16353", + "quartile50": "18163", + "quartile75": "20593", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19185", + "sampleId": "HG00258", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19185", - "totalBp": "13658084505", - "totalGbp": "13.658084505", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "53789021399", + "totalGbp": "53.79", + "totalReads": "2881022", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797090", - "assembly": null, + "accession": "SAMN41021674", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797090", - "ccsAlgorithm": "N/A", - "coverage": "4.41", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021674", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y039", - "filename": "NA19185-2_S25_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230724_200213_s3.hifi_reads.bc2094.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19185-2_S25_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG01028.HFSS_m84046_230724_200213_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242309", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.567571", + "libraryStrategy": "WGS", + "max": "49951", + "mean": "17733", + "metadataAccession": "SRR29483212", + "min": "129", + "mmTag": true, + "n25": "15814", + "n50": "17739", + "n75": "20361", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01028/raw_data/PacBio_HiFi/m84046_230724_200213_s3.hifi_reads.bc2094.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "15432", + "quartile50": "17171", + "quartile75": "19582", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19185", + "sampleId": "HG01028", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19185", - "totalBp": "13657310272", - "totalGbp": "13.657310272", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "57205768778", + "totalGbp": "57.21", + "totalReads": "3225797", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797090", - "assembly": null, + "accession": "SAMN41021676", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797090", - "ccsAlgorithm": "N/A", - "coverage": "4.36", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021676", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y039", - "filename": "NA19185-2_S25_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": null, + "filename": "m84046_230724_200213_s3.hifi_reads.bc2096.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19185-2_S25_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00258.HFSS_m84046_230724_200213_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242308", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.588779", + "libraryStrategy": "WGS", + "max": "52749", + "mean": "18592", + "metadataAccession": "SRR29483178", + "min": "127", + "mmTag": true, + "n25": "16693", + "n50": "18637", + "n75": "21211", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00258/raw_data/PacBio_HiFi/m84046_230724_200213_s3.hifi_reads.bc2096.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16308", + "quartile50": "18093", + "quartile75": "20489", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19185", + "sampleId": "HG00258", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19185", - "totalBp": "13527344367", - "totalGbp": "13.527344367", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "50277136375", + "totalGbp": "50.28", + "totalReads": "2704234", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797090", - "assembly": null, + "accession": "SAMN17861232", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797090", - "ccsAlgorithm": "N/A", - "coverage": "4.36", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN17861232", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": "Y039", - "filename": "NA19185-2_S25_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 16kb fractionated gDNA", + "familyId": "CLM02", + "filename": "m84046_230724_203319_s4.hifi_reads.bc2055.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19185-2_S25_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG01123.HFSS2_m84046_230724_203319_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242308", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.571938", + "libraryStrategy": "WGS", + "max": "47325", + "mean": "13826", + "metadataAccession": "SRR29483115", + "min": "158", + "mmTag": true, + "n25": "12065", + "n50": "13705", + "n75": "16221", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01123/raw_data/PacBio_HiFi/m84046_230724_203319_s4.hifi_reads.bc2055.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR1", + "quartile25": "11740", + "quartile50": "13113", + "quartile75": "15274", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19185", + "sampleId": "HG01123", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19185", - "totalBp": "13526574718", - "totalGbp": "13.526574718", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "36561691313", + "totalGbp": "36.56", + "totalReads": "2644354", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797091", - "assembly": null, + "accession": "SAMN17861235", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797091", - "ccsAlgorithm": "N/A", - "coverage": "3.57", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN17861235", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19338-1_S19_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 18kb fractionated gDNA", + "familyId": "CLM32", + "filename": "m84046_230724_203319_s4.hifi_reads.bc2056.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19338-1_S19_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG01361.HFSS2_m84046_230724_203319_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242305", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.62636", + "libraryStrategy": "WGS", + "max": "55368", + "mean": "14341", + "metadataAccession": "SRR29483175", + "min": "195", + "mmTag": true, + "n25": "12438", + "n50": "14133", + "n75": "16723", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01361/raw_data/PacBio_HiFi/m84046_230724_203319_s4.hifi_reads.bc2056.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR1", + "quartile25": "12129", + "quartile50": "13541", + "quartile75": "15772", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19338", + "sampleId": "HG01361", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19338", - "totalBp": "11053440320", - "totalGbp": "11.05344032", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "42045826152", + "totalGbp": "42.05", + "totalReads": "2931742", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797091", - "assembly": null, + "accession": "SAMN26267394", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797091", - "ccsAlgorithm": "N/A", - "coverage": "3.57", - "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19338-1_S19_L001_R2_001.fastq.gz", - "filetype": "fastq", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26267394", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", + "dataType": "unaligned reads", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", + "familyId": "PEL51", + "filename": "m84046_230724_203319_s4.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19338-1_S19_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG02293.HFSS_m84046_230724_203319_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242305", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.592449", + "libraryStrategy": "WGS", + "max": "42508", + "mean": "18160", + "metadataAccession": "SRR29483071", + "min": "184", + "mmTag": true, + "n25": "16081", + "n50": "18053", + "n75": "20771", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02293/raw_data/PacBio_HiFi/m84046_230724_203319_s4.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR2", + "quartile25": "15728", + "quartile50": "17464", + "quartile75": "19938", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19338", + "sampleId": "HG02293", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19338", - "totalBp": "11052813837", - "totalGbp": "11.052813837", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "8717022835", + "totalGbp": "8.72", + "totalReads": "479989", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797091", - "assembly": null, + "accession": "SAMN41021661", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797091", - "ccsAlgorithm": "N/A", - "coverage": "3.65", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021661", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA19338-1_S19_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230727_225904_s1.hifi_reads.bc2089.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19338-1_S19_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG18879.HFSS_m84046_230727_225904_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242304", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.606111", + "libraryStrategy": "WGS", + "max": "53615", + "mean": "19311", + "metadataAccession": "SRR29483209", + "min": "122", + "mmTag": true, + "n25": "17158", + "n50": "19275", + "n75": "22219", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18879/raw_data/PacBio_HiFi/m84046_230727_225904_s1.hifi_reads.bc2089.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16771", + "quartile50": "18638", + "quartile75": "21350", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19338", + "sampleId": "NA18879", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "YRI", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19338", - "totalBp": "11310326695", - "totalGbp": "11.310326695", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "35952728466", + "totalGbp": "35.95", + "totalReads": "1861755", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797091", - "assembly": null, + "accession": "SAMN41021673", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797091", - "ccsAlgorithm": "N/A", - "coverage": "3.65", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021673", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", "familyId": null, - "filename": "NA19338-1_S19_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230727_225904_s1.hifi_reads.bc2093.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19338-1_S19_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG03457.HFSS_m84046_230727_225904_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242304", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.588985", + "libraryStrategy": "WGS", + "max": "53305", + "mean": "20347", + "metadataAccession": "SRR29483102", + "min": "125", + "mmTag": true, + "n25": "18216", + "n50": "20376", + "n75": "23263", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03457/raw_data/PacBio_HiFi/m84046_230727_225904_s1.hifi_reads.bc2093.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "17800", + "quartile50": "19764", + "quartile75": "22452", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19338", + "sampleId": "HG03457", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19338", - "totalBp": "11309496506", - "totalGbp": "11.309496506", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "40341169723", + "totalGbp": "40.34", + "totalReads": "1982643", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797091", - "assembly": null, + "accession": "SAMN41021675", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797091", - "ccsAlgorithm": "N/A", - "coverage": "3.5", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021675", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA19338-1_S19_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230727_225904_s1.hifi_reads.bc2095.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19338-1_S19_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG03778.HFSS_m84046_230727_225904_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242303", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.609677", + "libraryStrategy": "WGS", + "max": "53059", + "mean": "18327", + "metadataAccession": "SRR29483263", + "min": "91", + "mmTag": true, + "n25": "16558", + "n50": "18440", + "n75": "20733", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03778/raw_data/PacBio_HiFi/m84046_230727_225904_s1.hifi_reads.bc2095.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16201", + "quartile50": "17959", + "quartile75": "20169", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19338", + "sampleId": "HG03778", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "ITU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19338", - "totalBp": "10860495038", - "totalGbp": "10.860495038", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "41851544501", + "totalGbp": "41.85", + "totalReads": "2283495", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797091", - "assembly": null, + "accession": "SAMN41021661", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797091", - "ccsAlgorithm": "N/A", - "coverage": "3.5", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021661", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA19338-1_S19_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230728_195023_s2.hifi_reads.bc2089.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19338-1_S19_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG18879.HFSS_m84046_230728_195023_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242303", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.603413", + "libraryStrategy": "WGS", + "max": "55640", + "mean": "19295", + "metadataAccession": "SRR29483138", + "min": "105", + "mmTag": true, + "n25": "17146", + "n50": "19254", + "n75": "22189", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18879/raw_data/PacBio_HiFi/m84046_230728_195023_s2.hifi_reads.bc2089.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16762", + "quartile50": "18623", + "quartile75": "21322", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19338", + "sampleId": "NA18879", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "YRI", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19338", - "totalBp": "10859728554", - "totalGbp": "10.859728554", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "35231680700", + "totalGbp": "35.23", + "totalReads": "1825888", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797091", - "assembly": null, + "accession": "SAMN41021673", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797091", - "ccsAlgorithm": "N/A", - "coverage": "3.57", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021673", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", "familyId": null, - "filename": "NA19338-1_S19_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230728_195023_s2.hifi_reads.bc2093.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19338-1_S19_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG03457.HFSS_m84046_230728_195023_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242302", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.612421", + "libraryStrategy": "WGS", + "max": "51457", + "mean": "20335", + "metadataAccession": "SRR29483153", + "min": "212", + "mmTag": true, + "n25": "18205", + "n50": "20365", + "n75": "23238", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03457/raw_data/PacBio_HiFi/m84046_230728_195023_s2.hifi_reads.bc2093.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "17791", + "quartile50": "19755", + "quartile75": "22429", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19338", + "sampleId": "HG03457", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19338", - "totalBp": "11075509617", - "totalGbp": "11.075509617", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "39739563028", + "totalGbp": "39.74", + "totalReads": "1954186", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797091", - "assembly": null, + "accession": "SAMN41021675", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797091", - "ccsAlgorithm": "N/A", - "coverage": "3.57", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021675", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA19338-1_S19_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230728_195023_s2.hifi_reads.bc2095.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19338-1_S19_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG03778.HFSS_m84046_230728_195023_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242302", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.587928", + "libraryStrategy": "WGS", + "max": "53357", + "mean": "18321", + "metadataAccession": "SRR29483262", + "min": "67", + "mmTag": true, + "n25": "16551", + "n50": "18435", + "n75": "20725", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03778/raw_data/PacBio_HiFi/m84046_230728_195023_s2.hifi_reads.bc2095.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16194", + "quartile50": "17951", + "quartile75": "20165", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19338", + "sampleId": "HG03778", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "ITU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19338", - "totalBp": "11074749106", - "totalGbp": "11.074749106", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "41213430190", + "totalGbp": "41.21", + "totalReads": "2249399", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797091", - "assembly": null, + "accession": "SAMN41021661", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797091", - "ccsAlgorithm": "N/A", - "coverage": "4.63", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021661", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA19338-2_S27_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230728_202047_s3.hifi_reads.bc2089.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19338-2_S27_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG18879.HFSS_m84046_230728_202047_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242301", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.582207", + "libraryStrategy": "WGS", + "max": "59168", + "mean": "19012", + "metadataAccession": "SRR29483137", + "min": "120", + "mmTag": true, + "n25": "16954", + "n50": "18930", + "n75": "21749", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18879/raw_data/PacBio_HiFi/m84046_230728_202047_s3.hifi_reads.bc2089.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16597", + "quartile50": "18348", + "quartile75": "20912", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19338", + "sampleId": "NA18879", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "YRI", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19338", - "totalBp": "14353976469", - "totalGbp": "14.353976469", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "33948783319", + "totalGbp": "33.95", + "totalReads": "1785585", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797091", - "assembly": null, + "accession": "SAMN41021673", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797091", - "ccsAlgorithm": "N/A", - "coverage": "4.63", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021673", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", "familyId": null, - "filename": "NA19338-2_S27_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230728_202047_s3.hifi_reads.bc2093.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19338-2_S27_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG03457.HFSS_m84046_230728_202047_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242301", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.550579", + "libraryStrategy": "WGS", + "max": "54776", + "mean": "20048", + "metadataAccession": "SRR29483101", + "min": "113", + "mmTag": true, + "n25": "17991", + "n50": "20036", + "n75": "22816", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03457/raw_data/PacBio_HiFi/m84046_230728_202047_s3.hifi_reads.bc2093.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "17602", + "quartile50": "19469", + "quartile75": "22028", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19338", + "sampleId": "HG03457", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19338", - "totalBp": "14353115615", - "totalGbp": "14.353115615", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "32168165375", + "totalGbp": "32.17", + "totalReads": "1604550", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797091", - "assembly": null, + "accession": "SAMN41021675", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797091", - "ccsAlgorithm": "N/A", - "coverage": "4.74", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021675", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA19338-2_S27_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230728_202047_s3.hifi_reads.bc2095.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19338-2_S27_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG03778.HFSS_m84046_230728_202047_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242300", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.565677", + "libraryStrategy": "WGS", + "max": "53713", + "mean": "18101", + "metadataAccession": "SRR29483243", + "min": "106", + "mmTag": true, + "n25": "16373", + "n50": "18184", + "n75": "20428", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03778/raw_data/PacBio_HiFi/m84046_230728_202047_s3.hifi_reads.bc2095.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16034", + "quartile50": "17726", + "quartile75": "19871", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19338", + "sampleId": "HG03778", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "ITU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19338", - "totalBp": "14703424250", - "totalGbp": "14.70342425", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "42363322281", + "totalGbp": "42.36", + "totalReads": "2340299", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797091", - "assembly": null, + "accession": "SAMN41021661", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797091", - "ccsAlgorithm": "N/A", - "coverage": "4.74", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021661", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA19338-2_S27_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230728_205153_s4.hifi_reads.bc2089.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19338-2_S27_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG18879.HFSS_m84046_230728_205153_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242300", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.563184", + "libraryStrategy": "WGS", + "max": "53708", + "mean": "18979", + "metadataAccession": "SRR29483210", + "min": "213", + "mmTag": true, + "n25": "16927", + "n50": "18885", + "n75": "21715", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18879/raw_data/PacBio_HiFi/m84046_230728_205153_s4.hifi_reads.bc2089.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16571", + "quartile50": "18309", + "quartile75": "20873", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19338", + "sampleId": "NA18879", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "YRI", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19338", - "totalBp": "14702293665", - "totalGbp": "14.702293665", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "33673965830", + "totalGbp": "33.67", + "totalReads": "1774191", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797091", - "assembly": null, + "accession": "SAMN41021673", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797091", - "ccsAlgorithm": "N/A", - "coverage": "4.53", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021673", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", "familyId": null, - "filename": "NA19338-2_S27_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230728_205153_s4.hifi_reads.bc2093.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19338-2_S27_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG03457.HFSS_m84046_230728_205153_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242299", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.593926", + "libraryStrategy": "WGS", + "max": "62363", + "mean": "20011", + "metadataAccession": "SRR29483103", + "min": "104", + "mmTag": true, + "n25": "17961", + "n50": "19997", + "n75": "22775", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03457/raw_data/PacBio_HiFi/m84046_230728_205153_s4.hifi_reads.bc2093.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "17574", + "quartile50": "19429", + "quartile75": "21990", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19338", + "sampleId": "HG03457", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19338", - "totalBp": "14050211042", - "totalGbp": "14.050211042", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "31921561388", + "totalGbp": "31.92", + "totalReads": "1595159", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797091", - "assembly": null, + "accession": "SAMN41021675", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797091", - "ccsAlgorithm": "N/A", - "coverage": "4.53", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021675", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA19338-2_S27_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230728_205153_s4.hifi_reads.bc2095.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19338-2_S27_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG03778.HFSS_m84046_230728_205153_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242299", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.545612", + "libraryStrategy": "WGS", + "max": "58389", + "mean": "18065", + "metadataAccession": "SRR29483261", + "min": "163", + "mmTag": true, + "n25": "16342", + "n50": "18145", + "n75": "20384", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03778/raw_data/PacBio_HiFi/m84046_230728_205153_s4.hifi_reads.bc2095.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16005", + "quartile50": "17688", + "quartile75": "19830", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19338", + "sampleId": "HG03778", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "ITU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19338", - "totalBp": "14049151602", - "totalGbp": "14.049151602", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "42162842373", + "totalGbp": "42.16", + "totalReads": "2333827", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797091", - "assembly": null, + "accession": "SAMN41021662", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797091", - "ccsAlgorithm": "N/A", - "coverage": "4.62", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021662", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA19338-2_S27_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230728_232723_s1.hifi_reads.bc2090.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19338-2_S27_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG01766.HFSS_m84046_230728_232723_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242298", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.618126", + "libraryStrategy": "WGS", + "max": "52137", + "mean": "19323", + "metadataAccession": "SRR29483157", + "min": "64", + "mmTag": true, + "n25": "17225", + "n50": "19299", + "n75": "22149", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01766/raw_data/PacBio_HiFi/m84046_230728_232723_s1.hifi_reads.bc2090.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16820", + "quartile50": "18682", + "quartile75": "21289", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19338", + "sampleId": "HG01766", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "IBS", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19338", - "totalBp": "14334585396", - "totalGbp": "14.334585396", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "27492756899", + "totalGbp": "27.49", + "totalReads": "1422746", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797091", - "assembly": null, + "accession": "SAMN41021674", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797091", - "ccsAlgorithm": "N/A", - "coverage": "4.62", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021674", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA19338-2_S27_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230728_232723_s1.hifi_reads.bc2094.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19338-2_S27_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG01028.HFSS_m84046_230728_232723_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242298", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.559476", + "libraryStrategy": "WGS", + "max": "51477", + "mean": "17735", + "metadataAccession": "SRR29483213", + "min": "147", + "mmTag": true, + "n25": "15818", + "n50": "17739", + "n75": "20357", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01028/raw_data/PacBio_HiFi/m84046_230728_232723_s1.hifi_reads.bc2094.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "15438", + "quartile50": "17171", + "quartile75": "19579", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19338", + "sampleId": "HG01028", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19338", - "totalBp": "14333528623", - "totalGbp": "14.333528623", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "28974810104", + "totalGbp": "28.97", + "totalReads": "1633726", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797092", - "assembly": null, + "accession": "SAMN41021676", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797092", - "ccsAlgorithm": "N/A", - "coverage": "4.36", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021676", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA19391-1_S20_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230728_232723_s1.hifi_reads.bc2096.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19391-1_S20_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG00258.HFSS_m84046_230728_232723_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242297", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.609815", + "libraryStrategy": "WGS", + "max": "56068", + "mean": "18590", + "metadataAccession": "SRR29483181", + "min": "135", + "mmTag": true, + "n25": "16692", + "n50": "18633", + "n75": "21200", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00258/raw_data/PacBio_HiFi/m84046_230728_232723_s1.hifi_reads.bc2096.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16311", + "quartile50": "18091", + "quartile75": "20477", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19391", + "sampleId": "HG00258", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19391", - "totalBp": "13518986850", - "totalGbp": "13.51898685", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "50381614416", + "totalGbp": "50.38", + "totalReads": "2710084", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797092", - "assembly": null, + "accession": "SAMN41021661", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797092", - "ccsAlgorithm": "N/A", - "coverage": "4.36", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021661", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA19391-1_S20_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230731_200859_s2.hifi_reads.bc2089.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19391-1_S20_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG18879.HFSS_m84046_230731_200859_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242297", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.544625", + "libraryStrategy": "WGS", + "max": "55809", + "mean": "18948", + "metadataAccession": "SRR29483205", + "min": "72", + "mmTag": true, + "n25": "16912", + "n50": "18864", + "n75": "21657", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18879/raw_data/PacBio_HiFi/m84046_230731_200859_s2.hifi_reads.bc2089.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16560", + "quartile50": "18291", + "quartile75": "20831", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19391", + "sampleId": "NA18879", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "YRI", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19391", - "totalBp": "13518244805", - "totalGbp": "13.518244805", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "58568710214", + "totalGbp": "58.57", + "totalReads": "3090957", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797092", - "assembly": null, + "accession": "SAMN41021673", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797092", - "ccsAlgorithm": "N/A", - "coverage": "4.45", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021673", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", "familyId": null, - "filename": "NA19391-1_S20_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230731_200859_s2.hifi_reads.bc2093.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19391-1_S20_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG03457.HFSS_m84046_230731_200859_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242296", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.587456", + "libraryStrategy": "WGS", + "max": "53032", + "mean": "19977", + "metadataAccession": "SRR29483152", + "min": "65", + "mmTag": true, + "n25": "17939", + "n50": "19969", + "n75": "22719", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03457/raw_data/PacBio_HiFi/m84046_230731_200859_s2.hifi_reads.bc2093.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "17555", + "quartile50": "19406", + "quartile75": "21946", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19391", + "sampleId": "HG03457", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19391", - "totalBp": "13806306273", - "totalGbp": "13.806306273", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "47333857834", + "totalGbp": "47.33", + "totalReads": "2369344", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797092", - "assembly": null, + "accession": "SAMN41021675", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797092", - "ccsAlgorithm": "N/A", - "coverage": "4.45", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021675", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", "familyId": null, - "filename": "NA19391-1_S20_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230731_200859_s2.hifi_reads.bc2095.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19391-1_S20_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG03778.HFSS_m84046_230731_200859_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242296", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.539666", + "libraryStrategy": "WGS", + "max": "48971", + "mean": "18038", + "metadataAccession": "SRR29483242", + "min": "332", + "mmTag": true, + "n25": "16321", + "n50": "18116", + "n75": "20351", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03778/raw_data/PacBio_HiFi/m84046_230731_200859_s2.hifi_reads.bc2095.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "15986", + "quartile50": "17660", + "quartile75": "19802", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19391", + "sampleId": "HG03778", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "ITU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19391", - "totalBp": "13805315933", - "totalGbp": "13.805315933", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "7492283139", + "totalGbp": "7.49", + "totalReads": "415348", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797092", - "assembly": null, + "accession": "SAMN41021686", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797092", - "ccsAlgorithm": "N/A", - "coverage": "4.25", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021686", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", "familyId": null, - "filename": "NA19391-1_S20_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230831_231439_s1.hifi_reads.bc2033.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19391-1_S20_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG03103.HFSS_m84046_230831_231439_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242492", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.585312", + "libraryStrategy": "WGS", + "max": "58234", + "mean": "18443", + "metadataAccession": "SRR29483127", + "min": "64", + "mmTag": true, + "n25": "16267", + "n50": "18439", + "n75": "21420", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03103/raw_data/PacBio_HiFi/m84046_230831_231439_s1.hifi_reads.bc2033.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "15834", + "quartile50": "17755", + "quartile75": "20472", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19391", + "sampleId": "HG03103", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19391", - "totalBp": "13184382871", - "totalGbp": "13.184382871", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "63888430038", + "totalGbp": "63.89", + "totalReads": "3464099", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797092", - "assembly": null, + "accession": "SAMN41021687", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797092", - "ccsAlgorithm": "N/A", - "coverage": "4.25", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021687", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", "familyId": null, - "filename": "NA19391-1_S20_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230831_231439_s1.hifi_reads.bc2034.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19391-1_S20_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG01048.HFSS_m84046_230831_231439_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242492", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.550523", + "libraryStrategy": "WGS", + "max": "60075", + "mean": "19703", + "metadataAccession": "SRR29483229", + "min": "112", + "mmTag": true, + "n25": "17227", + "n50": "19817", + "n75": "23257", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01048/raw_data/PacBio_HiFi/m84046_230831_231439_s1.hifi_reads.bc2034.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16642", + "quartile50": "18931", + "quartile75": "22072", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19391", + "sampleId": "HG01048", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19391", - "totalBp": "13183479160", - "totalGbp": "13.18347916", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "56294891530", + "totalGbp": "56.29", + "totalReads": "2857155", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797092", - "assembly": null, + "accession": "SAMN41021686", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797092", - "ccsAlgorithm": "N/A", - "coverage": "4.31", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021686", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", "familyId": null, - "filename": "NA19391-1_S20_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230831_234545_s2.hifi_reads.bc2033.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19391-1_S20_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG03103.HFSS_m84046_230831_234545_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242491", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.601529", + "libraryStrategy": "WGS", + "max": "56378", + "mean": "18585", + "metadataAccession": "SRR29483124", + "min": "85", + "mmTag": true, + "n25": "16387", + "n50": "18611", + "n75": "21617", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03103/raw_data/PacBio_HiFi/m84046_230831_234545_s2.hifi_reads.bc2033.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "15937", + "quartile50": "17907", + "quartile75": "20668", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19391", + "sampleId": "HG03103", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19391", - "totalBp": "13361652282", - "totalGbp": "13.361652282", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "62604382554", + "totalGbp": "62.6", + "totalReads": "3368424", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797092", - "assembly": null, + "accession": "SAMN41021687", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797092", - "ccsAlgorithm": "N/A", - "coverage": "4.31", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021687", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", "familyId": null, - "filename": "NA19391-1_S20_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230831_234545_s2.hifi_reads.bc2034.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19391-1_S20_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG01048.HFSS_m84046_230831_234545_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242491", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.53483", + "libraryStrategy": "WGS", + "max": "59663", + "mean": "19854", + "metadataAccession": "SRR29483230", + "min": "128", + "mmTag": true, + "n25": "17360", + "n50": "19992", + "n75": "23444", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01048/raw_data/PacBio_HiFi/m84046_230831_234545_s2.hifi_reads.bc2034.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16761", + "quartile50": "19095", + "quartile75": "22264", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19391", + "sampleId": "HG01048", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19391", - "totalBp": "13360758809", - "totalGbp": "13.360758809", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "56024496861", + "totalGbp": "56.02", + "totalReads": "2821770", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797092", - "assembly": null, + "accession": "SAMN41021689", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797092", - "ccsAlgorithm": "N/A", - "coverage": "3.37", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021689", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 19kb fractionated gDNA", "familyId": null, - "filename": "NA19391-2_S28_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230901_223052_s3.hifi_reads.bc2036.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19391-2_S28_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG04225.HFSS_m84046_230901_223052_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242490", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.631885", + "libraryStrategy": "WGS", + "max": "53307", + "mean": "17422", + "metadataAccession": "SRR29483216", + "min": "82", + "mmTag": true, + "n25": "15544", + "n50": "17534", + "n75": "20094", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04225/raw_data/PacBio_HiFi/m84046_230901_223052_s3.hifi_reads.bc2036.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "15127", + "quartile50": "16947", + "quartile75": "19354", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19391", + "sampleId": "HG04225", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "ITU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19391", - "totalBp": "10436347266", - "totalGbp": "10.436347266", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "63736463295", + "totalGbp": "63.74", + "totalReads": "3658213", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797092", - "assembly": null, + "accession": "SAMN41021690", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797092", - "ccsAlgorithm": "N/A", - "coverage": "3.37", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021690", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "NA19391-2_S28_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230901_223052_s3.hifi_reads.bc2037.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19391-2_S28_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19012.HFSS_m84046_230901_223052_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242490", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.595998", + "libraryStrategy": "WGS", + "max": "52097", + "mean": "17279", + "metadataAccession": "SRR29483064", + "min": "93", + "mmTag": true, + "n25": "14949", + "n50": "17641", + "n75": "21083", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19012/raw_data/PacBio_HiFi/m84046_230901_223052_s3.hifi_reads.bc2037.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "14168", + "quartile50": "16610", + "quartile75": "19754", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19391", + "sampleId": "NA19012", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19391", - "totalBp": "10435705406", - "totalGbp": "10.435705406", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "59685857099", + "totalGbp": "59.69", + "totalReads": "3454109", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797092", - "assembly": null, + "accession": "SAMN41021689", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797092", - "ccsAlgorithm": "N/A", - "coverage": "3.46", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021689", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 19kb fractionated gDNA", "familyId": null, - "filename": "NA19391-2_S28_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230901_230230_s4.hifi_reads.bc2036.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19391-2_S28_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG04225.HFSS_m84046_230901_230230_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242489", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.598073", + "libraryStrategy": "WGS", + "max": "58413", + "mean": "17284", + "metadataAccession": "SRR29483215", + "min": "146", + "mmTag": true, + "n25": "15427", + "n50": "17375", + "n75": "19912", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04225/raw_data/PacBio_HiFi/m84046_230901_230230_s4.hifi_reads.bc2036.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "15019", + "quartile50": "16801", + "quartile75": "19173", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19391", + "sampleId": "HG04225", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "ITU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19391", - "totalBp": "10731057735", - "totalGbp": "10.731057735", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "62627446083", + "totalGbp": "62.63", + "totalReads": "3623260", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797092", - "assembly": null, + "accession": "SAMN41021690", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797092", - "ccsAlgorithm": "N/A", - "coverage": "3.46", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021690", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "NA19391-2_S28_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230901_230230_s4.hifi_reads.bc2037.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19391-2_S28_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19012.HFSS_m84046_230901_230230_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242489", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.583996", + "libraryStrategy": "WGS", + "max": "59026", + "mean": "17041", + "metadataAccession": "SRR29483065", + "min": "259", + "mmTag": true, + "n25": "14729", + "n50": "17363", + "n75": "20769", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19012/raw_data/PacBio_HiFi/m84046_230901_230230_s4.hifi_reads.bc2037.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "13973", + "quartile50": "16354", + "quartile75": "19436", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19391", + "sampleId": "NA19012", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19391", - "totalBp": "10730260451", - "totalGbp": "10.730260451", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "58892224761", + "totalGbp": "58.89", + "totalReads": "3455827", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797092", - "assembly": null, + "accession": "SAMN41021686", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797092", - "ccsAlgorithm": "N/A", - "coverage": "3.28", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021686", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 21kb fractionated gDNA", "familyId": null, - "filename": "NA19391-2_S28_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230905_231311_s2.hifi_reads.bc2033.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19391-2_S28_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG03103.HFSS_m84046_230905_231311_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242292", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.616016", + "libraryStrategy": "WGS", + "max": "55667", + "mean": "18204", + "metadataAccession": "SRR29483125", + "min": "94", + "mmTag": true, + "n25": "16105", + "n50": "18160", + "n75": "21031", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03103/raw_data/PacBio_HiFi/m84046_230905_231311_s2.hifi_reads.bc2033.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "15703", + "quartile50": "17521", + "quartile75": "20126", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19391", + "sampleId": "HG03103", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19391", - "totalBp": "10166644606", - "totalGbp": "10.166644606", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "59498338298", + "totalGbp": "59.5", + "totalReads": "3268313", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797092", - "assembly": null, + "accession": "SAMN41021687", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797092", - "ccsAlgorithm": "N/A", - "coverage": "3.28", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021687", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", "familyId": null, - "filename": "NA19391-2_S28_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230905_231311_s2.hifi_reads.bc2034.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19391-2_S28_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG01048.HFSS_m84046_230905_231311_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242292", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.562347", + "libraryStrategy": "WGS", + "max": "58044", + "mean": "19385", + "metadataAccession": "SRR29483228", + "min": "164", + "mmTag": true, + "n25": "17002", + "n50": "19452", + "n75": "22752", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01048/raw_data/PacBio_HiFi/m84046_230905_231311_s2.hifi_reads.bc2034.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "16464", + "quartile50": "18631", + "quartile75": "21631", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19391", + "sampleId": "HG01048", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19391", - "totalBp": "10165906652", - "totalGbp": "10.165906652", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "39578673831", + "totalGbp": "39.58", + "totalReads": "2041679", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797092", - "assembly": null, + "accession": "SAMN41021689", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797092", - "ccsAlgorithm": "N/A", - "coverage": "3.37", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021689", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 19kb fractionated gDNA", "familyId": null, - "filename": "NA19391-2_S28_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230906_215022_s3.hifi_reads.bc2036.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19391-2_S28_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG04225.HFSS_m84046_230906_215022_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242291", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.624638", + "libraryStrategy": "WGS", + "max": "48211", + "mean": "17132", + "metadataAccession": "SRR29483218", + "min": "176", + "mmTag": true, + "n25": "15313", + "n50": "17212", + "n75": "19687", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04225/raw_data/PacBio_HiFi/m84046_230906_215022_s3.hifi_reads.bc2036.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "14918", + "quartile50": "16658", + "quartile75": "18967", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19391", + "sampleId": "HG04225", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "ITU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19391", - "totalBp": "10446413932", - "totalGbp": "10.446413932", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "36205086640", + "totalGbp": "36.21", + "totalReads": "2113201", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797092", - "assembly": null, + "accession": "SAMN41021690", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797092", - "ccsAlgorithm": "N/A", - "coverage": "3.37", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021690", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "NA19391-2_S28_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230906_215022_s3.hifi_reads.bc2037.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19391-2_S28_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19012.HFSS_m84046_230906_215022_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242291", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.585156", + "libraryStrategy": "WGS", + "max": "58421", + "mean": "16774", + "metadataAccession": "SRR29483063", + "min": "115", + "mmTag": true, + "n25": "14509", + "n50": "17066", + "n75": "20350", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19012/raw_data/PacBio_HiFi/m84046_230906_215022_s3.hifi_reads.bc2037.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR4", + "quartile25": "13779", + "quartile50": "16104", + "quartile75": "19070", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19391", + "sampleId": "NA19012", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19391", - "totalBp": "10445658425", - "totalGbp": "10.445658425", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "75460808834", + "totalGbp": "75.46", + "totalReads": "4498538", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021640", - "assembly": null, + "accession": "SAMN41021687", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021640", - "ccsAlgorithm": "N/A", - "coverage": "7.36", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021687", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 23kb fractionated gDNA", "familyId": null, - "filename": "NA19443-1_FC1_S13_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230906_222128_s4.hifi_reads.bc2034.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19443-1_FC1_S13_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG01048.HFSS_m84046_230906_222128_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310910", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.509644", + "libraryStrategy": "WGS", + "max": "63360", + "mean": "19991", + "metadataAccession": "SRR29483266", + "min": "359", + "mmTag": true, + "n25": "17468", + "n50": "20142", + "n75": "23647", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01048/raw_data/PacBio_HiFi/m84046_230906_222128_s4.hifi_reads.bc2034.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16853", + "quartile50": "19228", + "quartile75": "22437", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19443", + "sampleId": "HG01048", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19443", - "totalBp": "22826931381", - "totalGbp": "22.826931381", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "61822391486", + "totalGbp": "61.82", + "totalReads": "3092444", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021640", - "assembly": null, + "accession": "SAMN41021689", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021640", - "ccsAlgorithm": "N/A", - "coverage": "7.49", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021689", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 19kb fractionated gDNA", "familyId": null, - "filename": "NA19443-1_FC2_S13_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230906_222128_s4.hifi_reads.bc2036.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19443-1_FC2_S13_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG04225.HFSS_m84046_230906_222128_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310909", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.522303", + "libraryStrategy": "WGS", + "max": "53953", + "mean": "17368", + "metadataAccession": "SRR29483219", + "min": "130", + "mmTag": true, + "n25": "15501", + "n50": "17477", + "n75": "20013", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG04225/raw_data/PacBio_HiFi/m84046_230906_222128_s4.hifi_reads.bc2036.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "15086", + "quartile50": "16893", + "quartile75": "19281", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19443", + "sampleId": "HG04225", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "ITU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19443", - "totalBp": "23204091329", - "totalGbp": "23.204091329", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "44071477955", + "totalGbp": "44.07", + "totalReads": "2537506", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021640", - "assembly": null, + "accession": "SAMN41021688", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021640", - "ccsAlgorithm": "N/A", - "coverage": "6.13", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021688", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", "familyId": null, - "filename": "NA19443-2_FC1_S14_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230909_231800_s4.hifi_reads.bc2035.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19443-2_FC1_S14_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19190.HFSS_m84046_230909_231800_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310908", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.536895", + "libraryStrategy": "WGS", + "max": "73514", + "mean": "20606", + "metadataAccession": "SRR29483258", + "min": "118", + "mmTag": true, + "n25": "18062", + "n50": "20748", + "n75": "24325", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19190/raw_data/PacBio_HiFi/m84046_230909_231800_s4.hifi_reads.bc2035.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17453", + "quartile50": "19823", + "quartile75": "23101", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19443", + "sampleId": "NA19190", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "YRI", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19443", - "totalBp": "18998543519", - "totalGbp": "18.998543519", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "108911448346", + "totalGbp": "108.91", + "totalReads": "5285173", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021640", - "assembly": null, + "accession": "SAMN41021688", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021640", - "ccsAlgorithm": "N/A", - "coverage": "6.28", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021688", + "ccsAlgorithm": "v7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 24kb fractionated gDNA", "familyId": null, - "filename": "NA19443-2_FC2_S14_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84046_230913_204538_s3.hifi_reads.bc2035.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19443-2_FC2_S14_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "PG19190.HFSS_m84046_230913_204538_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310907", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.546267", + "libraryStrategy": "WGS", + "max": "65090", + "mean": "20563", + "metadataAccession": "SRR29483264", + "min": "122", + "mmTag": true, + "n25": "18034", + "n50": "20697", + "n75": "24253", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19190/raw_data/PacBio_HiFi/m84046_230913_204538_s3.hifi_reads.bc2035.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17426", + "quartile50": "19786", + "quartile75": "23023", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19443", + "sampleId": "NA19190", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "YRI", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19443", - "totalBp": "19467063450", - "totalGbp": "19.46706345", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "112259504727", + "totalGbp": "112.26", + "totalReads": "5459074", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797093", - "assembly": null, + "accession": "SAMN17861235", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797093", - "ccsAlgorithm": "N/A", - "coverage": "3.95", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN17861235", + "ccsAlgorithm": "v8.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19468-1_S21_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 27kb fractionated gDNA", + "familyId": "CLM32", + "filename": "m84046_231202_071034_s1.hifi_reads.bc2052.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19468-1_S21_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG01361.HFSS3_m84046_231202_071034_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242290", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.60731", + "libraryStrategy": "WGS", + "max": "72539", + "mean": "22058", + "metadataAccession": "SRR29483098", + "min": "51", + "mmTag": true, + "n25": "18986", + "n50": "22251", + "n75": "26513", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01361/raw_data/PacBio_HiFi/m84046_231202_071034_s1.hifi_reads.bc2052.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR1", + "quartile25": "18204", + "quartile50": "21031", + "quartile75": "24921", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19468", + "sampleId": "HG01361", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19468", - "totalBp": "12240955911", - "totalGbp": "12.240955911", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "75651333730", + "totalGbp": "75.65", + "totalReads": "3429635", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797093", - "assembly": null, + "accession": "SAMN17861234", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797093", - "ccsAlgorithm": "N/A", - "coverage": "3.95", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN17861234", + "ccsAlgorithm": "v8.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19468-1_S21_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 26kb fractionated gDNA", + "familyId": "CLM31", + "filename": "m84046_231202_071034_s1.hifi_reads.bc2053.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19468-1_S21_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG01358.HFSS2_m84046_231202_071034_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242290", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.579113", + "libraryStrategy": "WGS", + "max": "65908", + "mean": "21635", + "metadataAccession": "SRR29483271", + "min": "63", + "mmTag": true, + "n25": "18662", + "n50": "21906", + "n75": "26034", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m84046_231202_071034_s1.hifi_reads.bc2053.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR1", + "quartile25": "17831", + "quartile50": "20701", + "quartile75": "24489", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19468", + "sampleId": "HG01358", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19468", - "totalBp": "12240254262", - "totalGbp": "12.240254262", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "23725857199", + "totalGbp": "23.73", + "totalReads": "1096627", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797093", - "assembly": null, + "accession": "SAMN17861233", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797093", - "ccsAlgorithm": "N/A", - "coverage": "4.04", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN17861233", + "ccsAlgorithm": "v8.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19468-1_S21_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": "CLM16", + "filename": "m84046_231202_090949_s3.hifi_reads.bc2054.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19468-1_S21_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG01258.HFSS2_m84046_231202_090949_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242289", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.615993", + "libraryStrategy": "WGS", + "max": "65204", + "mean": "20494", + "metadataAccession": "SRR29483154", + "min": "74", + "mmTag": true, + "n25": "17826", + "n50": "20574", + "n75": "24233", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01258/raw_data/PacBio_HiFi/m84046_231202_090949_s3.hifi_reads.bc2054.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR1", + "quartile25": "17228", + "quartile50": "19622", + "quartile75": "22959", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19468", + "sampleId": "HG01258", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19468", - "totalBp": "12523728405", - "totalGbp": "12.523728405", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "50288278175", + "totalGbp": "50.29", + "totalReads": "2453786", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797093", - "assembly": null, + "accession": "SAMN17861232", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797093", - "ccsAlgorithm": "N/A", - "coverage": "4.04", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN17861232", + "ccsAlgorithm": "v8.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19468-1_S21_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 25kb fractionated gDNA", + "familyId": "CLM02", + "filename": "m84046_231202_090949_s3.hifi_reads.bc2055.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19468-1_S21_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG01123.HFSS3_m84046_231202_090949_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242289", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.578908", + "libraryStrategy": "WGS", + "max": "60699", + "mean": "21612", + "metadataAccession": "SRR29483114", + "min": "106", + "mmTag": true, + "n25": "18721", + "n50": "21753", + "n75": "25731", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01123/raw_data/PacBio_HiFi/m84046_231202_090949_s3.hifi_reads.bc2055.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR1", + "quartile25": "18022", + "quartile50": "20671", + "quartile75": "24294", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19468", + "sampleId": "HG01123", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19468", - "totalBp": "12522807560", - "totalGbp": "12.52280756", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "45092269241", + "totalGbp": "45.09", + "totalReads": "2086408", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797093", - "assembly": null, + "accession": "SAMN17861234", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797093", - "ccsAlgorithm": "N/A", - "coverage": "3.83", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN17861234", + "ccsAlgorithm": "v8.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19468-1_S21_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 26kb fractionated gDNA", + "familyId": "CLM31", + "filename": "m84046_231202_110908_s4.hifi_reads.bc2053.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19468-1_S21_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG01358.HFSS2_m84046_231202_110908_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242288", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.595639", + "libraryStrategy": "WGS", + "max": "61399", + "mean": "21541", + "metadataAccession": "SRR29483270", + "min": "97", + "mmTag": true, + "n25": "18580", + "n50": "21794", + "n75": "25898", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m84046_231202_110908_s4.hifi_reads.bc2053.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR1", + "quartile25": "17767", + "quartile50": "20614", + "quartile75": "24354", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19468", + "sampleId": "HG01358", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19468", - "totalBp": "11875186444", - "totalGbp": "11.875186444", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "22537442552", + "totalGbp": "22.54", + "totalReads": "1046235", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797093", - "assembly": null, + "accession": "SAMN17861241", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797093", - "ccsAlgorithm": "N/A", - "coverage": "3.83", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN17861241", + "ccsAlgorithm": "v8.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19468-1_S21_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 22kb fractionated gDNA", + "familyId": "NG107", + "filename": "m84046_231202_110908_s4.hifi_reads.bc2056.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19468-1_S21_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "kmiyamot@uw.edu", + "generatorFacility": "University of Washington", + "instrumentModel": "Revio", + "libraryId": "HG03516.HFSS_m84046_231202_110908_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242288", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.560997", + "libraryStrategy": "WGS", + "max": "68453", + "mean": "18230", + "metadataAccession": "SRR29483076", + "min": "72", + "mmTag": true, + "n25": "15849", + "n50": "18248", + "n75": "21503", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03516/raw_data/PacBio_HiFi/m84046_231202_110908_s4.hifi_reads.bc2056.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "P1", + "productionYear": "YR1", + "quartile25": "15348", + "quartile50": "17425", + "quartile75": "20374", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19468", + "sampleId": "HG03516", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "C1", + "shearMethod": "Megaruptor 3", + "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19468", - "totalBp": "11874352869", - "totalGbp": "11.874352869", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "69896055959", + "totalGbp": "69.9", + "totalReads": "3833995", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797093", - "assembly": null, + "accession": "SAMN37797095", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797093", - "ccsAlgorithm": "N/A", - "coverage": "3.91", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797095", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA19468-1_S21_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230508_193526_s1.hifi_reads.bc2002.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19468-1_S21_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA20858_lib1_m84081_230508_193526_s1_m84081_230508_193526_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242503", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.635543", + "libraryStrategy": "WGS", + "max": "64082", + "mean": "19195", + "metadataAccession": "SRR29396835", + "min": "78", + "mmTag": true, + "n25": "17189", + "n50": "19137", + "n75": "21757", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/PacBio_HiFi/m84081_230508_193526_s1.hifi_reads.bc2002.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16558", + "quartile50": "18539", + "quartile75": "20779", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19468", + "sampleId": "NA20858", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19468", - "totalBp": "12120041298", - "totalGbp": "12.120041298", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "103680551157", + "totalGbp": "103.68", + "totalReads": "5401183", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797093", - "assembly": null, + "accession": "SAMN37797088", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797093", - "ccsAlgorithm": "N/A", - "coverage": "3.91", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797088", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19468-1_S21_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", + "familyId": "Y060", + "filename": "m84081_230508_200546_s2.hifi_reads.bc2003.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19468-1_S21_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA19120_lib1_m84081_230508_200546_s2_m84081_230508_200546_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242503", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.594546", + "libraryStrategy": "WGS", + "max": "55134", + "mean": "17886", + "metadataAccession": "SRR29396868", + "min": "141", + "mmTag": true, + "n25": "15850", + "n50": "18107", + "n75": "20460", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/PacBio_HiFi/m84081_230508_200546_s2.hifi_reads.bc2003.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "15453", + "quartile50": "17439", + "quartile75": "19846", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19468", + "sampleId": "NA19120", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "YRI", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19468", - "totalBp": "12119181785", - "totalGbp": "12.119181785", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "108117696397", + "totalGbp": "108.12", + "totalReads": "6044757", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797093", - "assembly": null, + "accession": "SAMN37797095", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797093", - "ccsAlgorithm": "N/A", - "coverage": "3.89", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797095", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA19468-2_S29_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230511_180835_s3.hifi_reads.bc2002.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19468-2_S29_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA20858_lib1_m84081_230511_180835_s3_m84081_230511_180835_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242501", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.599757", + "libraryStrategy": "WGS", + "max": "63295", + "mean": "19757", + "metadataAccession": "SRR29396834", + "min": "161", + "mmTag": true, + "n25": "17530", + "n50": "19535", + "n75": "22627", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20858/raw_data/PacBio_HiFi/m84081_230511_180835_s3.hifi_reads.bc2002.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16967", + "quartile50": "18868", + "quartile75": "21313", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19468", + "sampleId": "NA20858", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19468", - "totalBp": "12047225949", - "totalGbp": "12.047225949", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "84879874354", + "totalGbp": "84.88", + "totalReads": "4296083", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797093", - "assembly": null, + "accession": "SAMN37797088", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797093", - "ccsAlgorithm": "N/A", - "coverage": "3.89", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797088", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA19468-2_S29_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", + "familyId": "Y060", + "filename": "m84081_230511_183900_s4.hifi_reads.bc2003.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19468-2_S29_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA19120_lib1_m84081_230511_183900_s4_m84081_230511_183900_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242501", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.594036", + "libraryStrategy": "WGS", + "max": "52931", + "mean": "17696", + "metadataAccession": "SRR29396869", + "min": "104", + "mmTag": true, + "n25": "15681", + "n50": "17843", + "n75": "20250", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19120/raw_data/PacBio_HiFi/m84081_230511_183900_s4.hifi_reads.bc2003.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "15317", + "quartile50": "17177", + "quartile75": "19632", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19468", + "sampleId": "NA19120", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "YRI", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19468", - "totalBp": "12046627353", - "totalGbp": "12.046627353", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "110418103547", + "totalGbp": "110.42", + "totalReads": "6239650", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797093", - "assembly": null, + "accession": "SAMN41021608", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797093", - "ccsAlgorithm": "N/A", - "coverage": "3.99", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021608", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA19468-2_S29_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230516_191559_s1.hifi_reads.bc2004.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19468-2_S29_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA20282_lib1_m84081_230516_191559_s1_m84081_230516_191559_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242500", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.620903", + "libraryStrategy": "WGS", + "max": "59671", + "mean": "20325", + "metadataAccession": "SRR29396845", + "min": "80", + "mmTag": true, + "n25": "18437", + "n50": "20033", + "n75": "22430", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20282/raw_data/PacBio_HiFi/m84081_230516_191559_s1.hifi_reads.bc2004.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18184", + "quartile50": "19636", + "quartile75": "21758", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19468", + "sampleId": "NA20282", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "ASW", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19468", - "totalBp": "12353976938", - "totalGbp": "12.353976938", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "110933334360", + "totalGbp": "110.93", + "totalReads": "5457889", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797093", - "assembly": null, + "accession": "SAMN37797112", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797093", - "ccsAlgorithm": "N/A", - "coverage": "3.98", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797112", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA19468-2_S29_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230516_194621_s2.hifi_reads.bc1019.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19468-2_S29_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG03792_lib1_m84081_230516_194621_s2_m84081_230516_194621_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242500", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.591322", + "libraryStrategy": "WGS", + "max": "57876", + "mean": "16097", + "metadataAccession": "SRR29396884", + "min": "272", + "mmTag": true, + "n25": "12883", + "n50": "16614", + "n75": "21492", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/PacBio_HiFi/m84081_230516_194621_s2.hifi_reads.bc1019.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "12554", + "quartile50": "13686", + "quartile75": "19898", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19468", + "sampleId": "HG03792", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "ITU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19468", - "totalBp": "12353146997", - "totalGbp": "12.353146997", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "96934869826", + "totalGbp": "96.93", + "totalReads": "6021669", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797093", - "assembly": null, + "accession": "SAMN41021608", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797093", - "ccsAlgorithm": "N/A", - "coverage": "3.79", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021608", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA19468-2_S29_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230519_180923_s3.hifi_reads.bc2004.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19468-2_S29_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA20282_lib1_m84081_230519_180923_s3_m84081_230519_180923_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242499", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.579837", + "libraryStrategy": "WGS", + "max": "63641", + "mean": "20251", + "metadataAccession": "SRR29396844", + "min": "86", + "mmTag": true, + "n25": "18405", + "n50": "19965", + "n75": "22284", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20282/raw_data/PacBio_HiFi/m84081_230519_180923_s3.hifi_reads.bc2004.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18160", + "quartile50": "19586", + "quartile75": "21648", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19468", + "sampleId": "NA20282", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "ASW", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19468", - "totalBp": "11751376969", - "totalGbp": "11.751376969", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "105471260068", + "totalGbp": "105.47", + "totalReads": "5208064", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797093", - "assembly": null, + "accession": "SAMN37797112", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797093", - "ccsAlgorithm": "N/A", - "coverage": "3.79", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN37797112", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA19468-2_S29_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230519_183943_s4.hifi_reads.bc1019.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19468-2_S29_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG03792_lib1_m84081_230519_183943_s4_m84081_230519_183943_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242499", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.57708", + "libraryStrategy": "WGS", + "max": "58126", + "mean": "17831", + "metadataAccession": "SRR29396883", + "min": "70", + "mmTag": true, + "n25": "15778", + "n50": "17596", + "n75": "20589", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03792/raw_data/PacBio_HiFi/m84081_230519_183943_s4.hifi_reads.bc1019.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "15463", + "quartile50": "17021", + "quartile75": "19621", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19468", + "sampleId": "HG03792", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "ITU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19468", - "totalBp": "11750624626", - "totalGbp": "11.750624626", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "104383006633", + "totalGbp": "104.38", + "totalReads": "5853810", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797093", - "assembly": null, + "accession": "SAMN41021607", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797093", - "ccsAlgorithm": "N/A", - "coverage": "3.88", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021607", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA19468-2_S29_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230523_180945_s1.hifi_reads.bc2005.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19468-2_S29_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA19909_lib1_m84081_230523_180945_s1_m84081_230523_180945_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242498", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.617989", + "libraryStrategy": "WGS", + "max": "57607", + "mean": "18430", + "metadataAccession": "SRR29396872", + "min": "106", + "mmTag": true, + "n25": "16483", + "n50": "18789", + "n75": "20901", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_230523_180945_s1.hifi_reads.bc2005.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "15942", + "quartile50": "18242", + "quartile75": "20340", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19468", + "sampleId": "NA19909", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "ASW", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19468", - "totalBp": "12025993794", - "totalGbp": "12.025993794", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "96297665360", + "totalGbp": "96.3", + "totalReads": "5224855", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797093", - "assembly": null, + "accession": "SAMN41021609", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797093", - "ccsAlgorithm": "N/A", - "coverage": "3.88", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021609", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA19468-2_S29_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230523_184006_s2.hifi_reads.bc2006.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19468-2_S29_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA20346_lib1_m84081_230523_184006_s2_m84081_230523_184006_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242498", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.599243", + "libraryStrategy": "WGS", + "max": "49406", + "mean": "18873", + "metadataAccession": "SRR29396843", + "min": "98", + "mmTag": true, + "n25": "17149", + "n50": "19520", + "n75": "21918", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20346/raw_data/PacBio_HiFi/m84081_230523_184006_s2.hifi_reads.bc2006.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16365", + "quartile50": "18835", + "quartile75": "21147", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19468", + "sampleId": "NA20346", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "ASW", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19468", - "totalBp": "12025256732", - "totalGbp": "12.025256732", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "87476288770", + "totalGbp": "87.48", + "totalReads": "4634901", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021612", - "assembly": null, + "accession": "SAMN41021607", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021612", - "ccsAlgorithm": "N/A", - "coverage": "5.18", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021607", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA19700-1_FC1_S1_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230525_172954_s3.hifi_reads.bc2005.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19700-1_FC1_S1_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA19909_lib1_m84081_230525_172954_s3_m84081_230525_172954_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310882", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.384847", + "libraryStrategy": "WGS", + "max": "61002", + "mean": "18665", + "metadataAccession": "SRR29396873", + "min": "147", + "mmTag": true, + "n25": "16837", + "n50": "19008", + "n75": "21069", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_230525_172954_s3.hifi_reads.bc2005.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16265", + "quartile50": "18511", + "quartile75": "20525", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19700", + "sampleId": "NA19909", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", "subpopulation": "ASW", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19700", - "totalBp": "16058502851", - "totalGbp": "16.058502851", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "101875080979", + "totalGbp": "101.88", + "totalReads": "5457862", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021612", - "assembly": null, + "accession": "SAMN41021609", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021612", - "ccsAlgorithm": "N/A", - "coverage": "5.09", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021609", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA19700-1_FC2_S1_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230525_180017_s4.hifi_reads.bc2006.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19700-1_FC2_S1_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA20346_lib1_m84081_230525_180017_s4_m84081_230525_180017_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310881", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.43614", + "libraryStrategy": "WGS", + "max": "57217", + "mean": "19342", + "metadataAccession": "SRR29396842", + "min": "86", + "mmTag": true, + "n25": "17649", + "n50": "19871", + "n75": "22305", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20346/raw_data/PacBio_HiFi/m84081_230525_180017_s4.hifi_reads.bc2006.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16880", + "quartile50": "19243", + "quartile75": "21521", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19700", + "sampleId": "NA20346", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", "subpopulation": "ASW", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19700", - "totalBp": "15787288580", - "totalGbp": "15.78728858", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "98945478632", + "totalGbp": "98.95", + "totalReads": "5115540", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021612", - "assembly": null, + "accession": "SAMN41021619", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021612", - "ccsAlgorithm": "N/A", - "coverage": "5.57", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021619", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA19700-2_FC1_S2_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230601_202307_s1.hifi_reads.bc2007.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19700-2_FC1_S2_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA18608_lib1_m84081_230601_202307_s1_m84081_230601_202307_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310880", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.39049", + "libraryStrategy": "WGS", + "max": "55691", + "mean": "18947", + "metadataAccession": "SRR29396852", + "min": "84", + "mmTag": true, + "n25": "16700", + "n50": "19282", + "n75": "21832", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18608/raw_data/PacBio_HiFi/m84081_230601_202307_s1.hifi_reads.bc2007.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16136", + "quartile50": "18571", + "quartile75": "21088", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19700", + "sampleId": "NA18608", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19700", - "totalBp": "17266491224", - "totalGbp": "17.266491224", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "38302395427", + "totalGbp": "38.3", + "totalReads": "2021458", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021612", - "assembly": null, + "accession": "SAMN41021619", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021612", - "ccsAlgorithm": "N/A", - "coverage": "5.5", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021619", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA19700-2_FC2_S2_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230601_210338_s2.hifi_reads.bc2007.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA19700-2_FC2_S2_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA18608_lib1_m84081_230601_210338_s2_m84081_230601_210338_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310879", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.433272", + "libraryStrategy": "WGS", + "max": "59027", + "mean": "19576", + "metadataAccession": "SRR29396853", + "min": "102", + "mmTag": true, + "n25": "17367", + "n50": "19920", + "n75": "22570", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18608/raw_data/PacBio_HiFi/m84081_230601_210338_s2.hifi_reads.bc2007.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16693", + "quartile50": "19229", + "quartile75": "21770", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19700", + "sampleId": "NA18608", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "ASW", - "superpopulation": "AFR", + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA19700", - "totalBp": "17056973137", - "totalGbp": "17.056973137", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "126144469880", + "totalGbp": "126.14", + "totalReads": "6443731", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021630", - "assembly": null, + "accession": "SAMN41021620", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021630", - "ccsAlgorithm": "N/A", - "coverage": "10.68", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021620", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20503-1_FC1_S3_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230601_213444_s3.hifi_reads.bc2008.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20503-1_FC1_S3_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA18974_lib1_m84081_230601_213444_s3_m84081_230601_213444_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310878", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.504887", + "libraryStrategy": "WGS", + "max": "57105", + "mean": "20164", + "metadataAccession": "SRR29396859", + "min": "108", + "mmTag": true, + "n25": "18405", + "n50": "20084", + "n75": "22257", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18974/raw_data/PacBio_HiFi/m84081_230601_213444_s3.hifi_reads.bc2008.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18100", + "quartile50": "19697", + "quartile75": "21703", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20503", + "sampleId": "NA18974", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20503", - "totalBp": "33098049078", - "totalGbp": "33.098049078", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "122716117340", + "totalGbp": "122.72", + "totalReads": "6085854", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021630", - "assembly": null, + "accession": "SAMN41021620", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021630", - "ccsAlgorithm": "N/A", - "coverage": "10.93", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021620", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20503-1_FC2_S3_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230601_220550_s4.hifi_reads.bc2008.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20503-1_FC2_S3_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA18974_lib1_m84081_230601_220550_s4_m84081_230601_220550_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310877", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.498824", + "libraryStrategy": "WGS", + "max": "59690", + "mean": "20232", + "metadataAccession": "SRR29396860", + "min": "110", + "mmTag": true, + "n25": "18446", + "n50": "20144", + "n75": "22355", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18974/raw_data/PacBio_HiFi/m84081_230601_220550_s4.hifi_reads.bc2008.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18138", + "quartile50": "19749", + "quartile75": "21784", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20503", + "sampleId": "NA18974", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20503", - "totalBp": "33877784539", - "totalGbp": "33.877784539", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "130053489701", + "totalGbp": "130.05", + "totalReads": "6428043", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021630", - "assembly": null, + "accession": "SAMN41021607", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021630", - "ccsAlgorithm": "N/A", - "coverage": "11.57", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021607", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20503-2_FC1_S4_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230609_194256_s2.hifi_reads.bc2001.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20503-2_FC1_S4_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA19909_lib1_m84081_230609_194256_s2_m84081_230609_194256_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310875", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.454984", + "libraryStrategy": "WGS", + "max": "68370", + "mean": "10935", + "metadataAccession": "SRR29396874", + "min": "103", + "mmTag": true, + "n25": "9208", + "n50": "16322", + "n75": "22107", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_230609_194256_s2.hifi_reads.bc2001.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "4569", + "quartile50": "8259", + "quartile75": "16194", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20503", + "sampleId": "NA19909", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "ASW", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20503", - "totalBp": "35852541248", - "totalGbp": "35.852541248", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "75084927598", + "totalGbp": "75.08", + "totalReads": "6866185", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021630", - "assembly": null, + "accession": "SAMN41021621", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021630", - "ccsAlgorithm": "N/A", - "coverage": "11.98", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021621", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20503-2_FC2_S4_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230609_201402_s3.hifi_reads.bc2009.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20503-2_FC2_S4_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA18952_lib1_m84081_230609_201402_s3_m84081_230609_201402_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310874", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.482764", + "libraryStrategy": "WGS", + "max": "60825", + "mean": "18761", + "metadataAccession": "SRR29396857", + "min": "111", + "mmTag": true, + "n25": "16437", + "n50": "18517", + "n75": "21881", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18952/raw_data/PacBio_HiFi/m84081_230609_201402_s3.hifi_reads.bc2009.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "16068", + "quartile50": "17806", + "quartile75": "20751", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20503", + "sampleId": "NA18952", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20503", - "totalBp": "37124680914", - "totalGbp": "37.124680914", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "114630102801", + "totalGbp": "114.63", + "totalReads": "6109785", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": "SAMN41021621", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "6.35", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021621", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-1_S1_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230609_204508_s4.hifi_reads.bc2009.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-1_S1_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA18952_lib1_m84081_230609_204508_s4_m84081_230609_204508_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242497", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.523421", + "libraryStrategy": "WGS", + "max": "59176", + "mean": "18813", + "metadataAccession": "SRR29396858", + "min": "88", + "mmTag": true, + "n25": "16463", + "n50": "18574", + "n75": "21974", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18952/raw_data/PacBio_HiFi/m84081_230609_204508_s4.hifi_reads.bc2009.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16090", + "quartile50": "17847", + "quartile75": "20830", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "NA18952", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "19690591453", - "totalGbp": "19.690591453", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "121866756120", + "totalGbp": "121.87", + "totalReads": "6477676", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": "SAMN41021622", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "6.35", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021622", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-1_S1_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230610_192218_s1.hifi_reads.bc2010.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-1_S1_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA18976_lib1_m84081_230610_192218_s1_m84081_230610_192218_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242497", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.521492", + "libraryStrategy": "WGS", + "max": "56767", + "mean": "19991", + "metadataAccession": "SRR29396861", + "min": "211", + "mmTag": true, + "n25": "18353", + "n50": "19960", + "n75": "21963", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18976/raw_data/PacBio_HiFi/m84081_230610_192218_s1.hifi_reads.bc2010.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18064", + "quartile50": "19603", + "quartile75": "21493", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "NA18976", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "19689103089", - "totalGbp": "19.689103089", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "111506398484", + "totalGbp": "111.51", + "totalReads": "5577778", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": "SAMN41021622", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "6.46", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021622", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-1_S1_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230610_195324_s2.hifi_reads.bc2010.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-1_S1_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA18976_lib1_m84081_230610_195324_s2_m84081_230610_195324_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242496", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.533744", + "libraryStrategy": "WGS", + "max": "57421", + "mean": "19905", + "metadataAccession": "SRR29396862", + "min": "124", + "mmTag": true, + "n25": "18294", + "n50": "19884", + "n75": "21860", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18976/raw_data/PacBio_HiFi/m84081_230610_195324_s2.hifi_reads.bc2010.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18008", + "quartile50": "19535", + "quartile75": "21403", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "NA18976", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "20025200989", - "totalGbp": "20.025200989", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "116006257856", + "totalGbp": "116.01", + "totalReads": "5827789", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": "SAMN41021632", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "6.46", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021632", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-1_S1_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230610_202430_s3.hifi_reads.bc2011.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-1_S1_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG00320_lib1_m84081_230610_202430_s3_m84081_230610_202430_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242496", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.508134", + "libraryStrategy": "WGS", + "max": "60709", + "mean": "19726", + "metadataAccession": "SRR29396921", + "min": "81", + "mmTag": true, + "n25": "17642", + "n50": "19342", + "n75": "21981", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00320/raw_data/PacBio_HiFi/m84081_230610_202430_s3.hifi_reads.bc2011.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17326", + "quartile50": "18861", + "quartile75": "21063", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "HG00320", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", + "subpopulation": "FIN", "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "20024129403", - "totalGbp": "20.024129403", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "89163244941", + "totalGbp": "89.16", + "totalReads": "4519882", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": "SAMN41021632", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "6.05", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021632", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-1_S1_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230610_205536_s4.hifi_reads.bc2011.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-1_S1_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG00320_lib1_m84081_230610_205536_s4_m84081_230610_205536_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242495", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.521817", + "libraryStrategy": "WGS", + "max": "69079", + "mean": "19771", + "metadataAccession": "SRR29396920", + "min": "117", + "mmTag": true, + "n25": "17646", + "n50": "19363", + "n75": "22068", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00320/raw_data/PacBio_HiFi/m84081_230610_205536_s4.hifi_reads.bc2011.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17324", + "quartile50": "18869", + "quartile75": "21103", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "HG00320", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", + "subpopulation": "FIN", "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "18740355922", - "totalGbp": "18.740355922", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "122345830061", + "totalGbp": "122.35", + "totalReads": "6188084", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": "SAMN41021633", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "6.04", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021633", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-1_S1_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230616_172650_s1.hifi_reads.bc2012.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-1_S1_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG01786_lib1_m84081_230616_172650_s1_m84081_230616_172650_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242495", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.544839", + "libraryStrategy": "WGS", + "max": "50578", + "mean": "17901", + "metadataAccession": "SRR29396901", + "min": "196", + "mmTag": true, + "n25": "16076", + "n50": "18208", + "n75": "20275", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01786/raw_data/PacBio_HiFi/m84081_230616_172650_s1.hifi_reads.bc2012.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "15623", + "quartile50": "17685", + "quartile75": "19754", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "HG01786", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", + "subpopulation": "IBS", "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "18739099351", - "totalGbp": "18.739099351", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "112999869409", + "totalGbp": "113", + "totalReads": "6312457", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": "SAMN41021633", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "6.05", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021633", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-1_S1_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230616_175717_s2.hifi_reads.bc2012.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-1_S1_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG01786_lib1_m84081_230616_175717_s2_m84081_230616_175717_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242494", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.535841", + "libraryStrategy": "WGS", + "max": "59847", + "mean": "17946", + "metadataAccession": "SRR29396900", + "min": "67", + "mmTag": true, + "n25": "16115", + "n50": "18250", + "n75": "20321", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01786/raw_data/PacBio_HiFi/m84081_230616_175717_s2.hifi_reads.bc2012.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "15658", + "quartile50": "17729", + "quartile75": "19799", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "HG01786", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", + "subpopulation": "IBS", "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "18768231936", - "totalGbp": "18.768231936", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "114898048594", + "totalGbp": "114.9", + "totalReads": "6402094", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": "SAMN41021634", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "6.05", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021634", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-1_S1_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230616_182824_s3.hifi_reads.bc2013.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-1_S1_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG00146_lib1_m84081_230616_182824_s3_m84081_230616_182824_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242494", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.529485", + "libraryStrategy": "WGS", + "max": "60682", + "mean": "20383", + "metadataAccession": "SRR29396881", + "min": "104", + "mmTag": true, + "n25": "18565", + "n50": "20268", + "n75": "22546", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00146/raw_data/PacBio_HiFi/m84081_230616_182824_s3.hifi_reads.bc2013.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18255", + "quartile50": "19863", + "quartile75": "21947", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "HG00146", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", + "subpopulation": "GBR", "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "18766931778", - "totalGbp": "18.766931778", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "113249664653", + "totalGbp": "113.25", + "totalReads": "5556039", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": "SAMN41021634", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "6.09", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021634", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-2_S9_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230616_185930_s4.hifi_reads.bc2013.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-2_S9_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG00146_lib1_m84081_230616_185930_s4_m84081_230616_185930_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242426", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.548052", + "libraryStrategy": "WGS", + "max": "58620", + "mean": "20349", + "metadataAccession": "SRR29396855", + "min": "67", + "mmTag": true, + "n25": "18538", + "n50": "20235", + "n75": "22498", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00146/raw_data/PacBio_HiFi/m84081_230616_185930_s4.hifi_reads.bc2013.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18230", + "quartile50": "19832", + "quartile75": "21906", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "HG00146", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", + "subpopulation": "GBR", "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "18872657779", - "totalGbp": "18.872657779", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "112060886510", + "totalGbp": "112.06", + "totalReads": "5506717", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": "SAMN41021619", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "6.09", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021619", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-2_S9_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230623_202140_s1.hifi_reads.bc2007.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-2_S9_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA18608_lib1_m84081_230623_202140_s1_m84081_230623_202140_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242426", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.50303", + "libraryStrategy": "WGS", + "max": "37936", + "mean": "15785", + "metadataAccession": "SRR29396854", + "min": "222", + "mmTag": true, + "n25": "14946", + "n50": "15796", + "n75": "16779", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18608/raw_data/PacBio_HiFi/m84081_230623_202140_s1.hifi_reads.bc2007.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "14852", + "quartile50": "15680", + "quartile75": "16650", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "NA18608", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "18871293988", - "totalGbp": "18.871293988", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "13512296010", + "totalGbp": "13.51", + "totalReads": "856010", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": "SAMN41021635", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "6.2", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021635", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-2_S9_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230623_202140_s1.hifi_reads.bc2014.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-2_S9_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG00232_lib1_m84081_230623_202140_s1_m84081_230623_202140_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242425", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.550298", + "libraryStrategy": "WGS", + "max": "49595", + "mean": "18385", + "metadataAccession": "SRR29396866", + "min": "98", + "mmTag": true, + "n25": "16572", + "n50": "18682", + "n75": "20737", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230623_202140_s1.hifi_reads.bc2014.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16076", + "quartile50": "18183", + "quartile75": "20208", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "HG00232", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", + "subpopulation": "GBR", "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "19215002188", - "totalGbp": "19.215002188", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "81313868165", + "totalGbp": "81.31", + "totalReads": "4422744", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": "SAMN41021619", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "6.2", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021619", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-2_S9_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230623_205201_s2.hifi_reads.bc2007.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-2_S9_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA18608_lib1_m84081_230623_205201_s2_m84081_230623_205201_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242425", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.529809", + "libraryStrategy": "WGS", + "max": "35337", + "mean": "15815", + "metadataAccession": "SRR29396856", + "min": "106", + "mmTag": true, + "n25": "14970", + "n50": "15823", + "n75": "16816", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18608/raw_data/PacBio_HiFi/m84081_230623_205201_s2.hifi_reads.bc2007.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "14877", + "quartile50": "15705", + "quartile75": "16685", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "NA18608", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "19213995724", - "totalGbp": "19.213995724", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "13001339007", + "totalGbp": "13", + "totalReads": "822059", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": "SAMN41021635", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "5.8", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021635", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-2_S9_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230623_205201_s2.hifi_reads.bc2014.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-2_S9_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG00232_lib1_m84081_230623_205201_s2_m84081_230623_205201_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242423", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.565838", + "libraryStrategy": "WGS", + "max": "53546", + "mean": "18530", + "metadataAccession": "SRR29396847", + "min": "110", + "mmTag": true, + "n25": "16716", + "n50": "18822", + "n75": "20895", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230623_205201_s2.hifi_reads.bc2014.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16210", + "quartile50": "18325", + "quartile75": "20354", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "HG00232", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", + "subpopulation": "GBR", "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "17984837570", - "totalGbp": "17.98483757", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "82640938538", + "totalGbp": "82.64", + "totalReads": "4459695", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": "SAMN41021636", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "5.8", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021636", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-2_S9_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230623_212309_s3.hifi_reads.bc2015.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-2_S9_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG00321_lib1_m84081_230623_212309_s3_m84081_230623_212309_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242423", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.550279", + "libraryStrategy": "WGS", + "max": "54945", + "mean": "19328", + "metadataAccession": "SRR29396919", + "min": "121", + "mmTag": true, + "n25": "17219", + "n50": "19652", + "n75": "22061", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00321/raw_data/PacBio_HiFi/m84081_230623_212309_s3.hifi_reads.bc2015.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16644", + "quartile50": "19027", + "quartile75": "21383", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "HG00321", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", + "subpopulation": "FIN", "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "17983704070", - "totalGbp": "17.98370407", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "87765176697", + "totalGbp": "87.77", + "totalReads": "4540789", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": "SAMN41021636", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "5.83", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021636", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-2_S9_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230623_215414_s4.hifi_reads.bc2015.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-2_S9_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG00321_lib1_m84081_230623_215414_s4_m84081_230623_215414_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242422", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.550269", + "libraryStrategy": "WGS", + "max": "58041", + "mean": "19429", + "metadataAccession": "SRR29396918", + "min": "100", + "mmTag": true, + "n25": "17309", + "n50": "19749", + "n75": "22192", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00321/raw_data/PacBio_HiFi/m84081_230623_215414_s4.hifi_reads.bc2015.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16717", + "quartile50": "19122", + "quartile75": "21494", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "HG00321", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", + "subpopulation": "FIN", "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "18074423221", - "totalGbp": "18.074423221", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "87052360386", + "totalGbp": "87.05", + "totalReads": "4480452", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": null, + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "5.83", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41708789", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-2_S9_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230624_203119_s1.hifi_reads.bc2016.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-2_S9_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG01248_lib1_m84081_230624_203119_s1_m84081_230624_203119_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242422", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.53068", + "libraryStrategy": "WGS", + "max": "61976", + "mean": "17882", + "metadataAccession": "SRR29396910", + "min": "66", + "mmTag": true, + "n25": "16106", + "n50": "17401", + "n75": "19434", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01248/raw_data/PacBio_HiFi/m84081_230624_203119_s1.hifi_reads.bc2016.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": null, + "quartile25": "15906", + "quartile50": "17070", + "quartile75": "18759", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "HG01248", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "18073203675", - "totalGbp": "18.073203675", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "89192360395", + "totalGbp": "89.19", + "totalReads": "4987552", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": null, + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "14.15", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41708789", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-2_S9i_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230624_210225_s2.hifi_reads.bc2016.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-2_S9i_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG01248_lib1_m84081_230624_210225_s2_m84081_230624_210225_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242488", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.480913", + "libraryStrategy": "WGS", + "max": "60735", + "mean": "17854", + "metadataAccession": "SRR29396909", + "min": "111", + "mmTag": true, + "n25": "16091", + "n50": "17375", + "n75": "19381", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01248/raw_data/PacBio_HiFi/m84081_230624_210225_s2.hifi_reads.bc2016.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": null, + "quartile25": "15893", + "quartile50": "17050", + "quartile75": "18723", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "HG01248", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "43860690211", - "totalGbp": "43.860690211", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "94995476037", + "totalGbp": "95", + "totalReads": "5320601", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": "SAMN41021647", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "14.15", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021647", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-2_S9i_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230624_213331_s3.hifi_reads.bc2017.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-2_S9i_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG03784_lib1_m84081_230624_213331_s3_m84081_230624_213331_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242488", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.467534", + "libraryStrategy": "WGS", + "max": "52498", + "mean": "19740", + "metadataAccession": "SRR29396886", + "min": "112", + "mmTag": true, + "n25": "18183", + "n50": "19680", + "n75": "21584", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03784/raw_data/PacBio_HiFi/m84081_230624_213331_s3.hifi_reads.bc2017.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17942", + "quartile50": "19367", + "quartile75": "21164", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "HG03784", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "ITU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "43857149837", - "totalGbp": "43.857149837", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "101373501273", + "totalGbp": "101.37", + "totalReads": "5135431", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": "SAMN41021647", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "15.38", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021647", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-2_S9i_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230624_220437_s4.hifi_reads.bc2017.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-2_S9i_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG03784_lib1_m84081_230624_220437_s4_m84081_230624_220437_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242487", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.461152", + "libraryStrategy": "WGS", + "max": "52968", + "mean": "19759", + "metadataAccession": "SRR29396885", + "min": "109", + "mmTag": true, + "n25": "18197", + "n50": "19700", + "n75": "21609", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03784/raw_data/PacBio_HiFi/m84081_230624_220437_s4.hifi_reads.bc2017.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17955", + "quartile50": "19386", + "quartile75": "21188", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "HG03784", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "ITU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "47681058086", - "totalGbp": "47.681058086", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "92325346149", + "totalGbp": "92.33", + "totalReads": "4672355", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": null, + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "15.38", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41708789", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-2_S9i_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230628_183924_s1.hifi_reads.bc2016.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-2_S9i_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG01248_lib1_m84081_230628_183924_s1_m84081_230628_183924_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242487", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.433645", + "libraryStrategy": "WGS", + "max": "32129", + "mean": "16750", + "metadataAccession": "SRR29396908", + "min": "386", + "mmTag": true, + "n25": "15793", + "n50": "16767", + "n75": "17911", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01248/raw_data/PacBio_HiFi/m84081_230628_183924_s1.hifi_reads.bc2016.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": null, + "quartile25": "15675", + "quartile50": "16622", + "quartile75": "17744", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "HG01248", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "47679124939", - "totalGbp": "47.679124939", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "3946167499", + "totalGbp": "3.95", + "totalReads": "235592", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": null, + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "13.18", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41708789", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-2_S9i_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230628_190945_s2.hifi_reads.bc2016.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-2_S9i_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG01248_lib1_m84081_230628_190945_s2_m84081_230628_190945_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242486", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.468138", + "libraryStrategy": "WGS", + "max": "32308", + "mean": "16767", + "metadataAccession": "SRR29396907", + "min": "166", + "mmTag": true, + "n25": "15805", + "n50": "16781", + "n75": "17940", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01248/raw_data/PacBio_HiFi/m84081_230628_190945_s2.hifi_reads.bc2016.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": null, + "quartile25": "15689", + "quartile50": "16634", + "quartile75": "17769", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "HG01248", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "40859482919", - "totalGbp": "40.859482919", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "4098992812", + "totalGbp": "4.1", + "totalReads": "244457", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": "SAMN41021649", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "13.18", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021649", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-2_S9i_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230629_184915_s1.hifi_reads.bc2018.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-2_S9i_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA21144_lib1_m84081_230629_184915_s1_m84081_230629_184915_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242486", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.469565", + "libraryStrategy": "WGS", + "max": "61642", + "mean": "18834", + "metadataAccession": "SRR29396830", + "min": "145", + "mmTag": true, + "n25": "17113", + "n50": "18560", + "n75": "20532", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21144/raw_data/PacBio_HiFi/m84081_230629_184915_s1.hifi_reads.bc2018.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16863", + "quartile50": "18213", + "quartile75": "19981", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "NA21144", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "40857911928", - "totalGbp": "40.857911928", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "111840959974", + "totalGbp": "111.84", + "totalReads": "5937951", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": "SAMN41021649", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "11.38", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021649", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-2_S9i_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230629_192021_s2.hifi_reads.bc2018.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-2_S9i_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA21144_lib1_m84081_230629_192021_s2_m84081_230629_192021_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242485", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.492513", + "libraryStrategy": "WGS", + "max": "71081", + "mean": "18977", + "metadataAccession": "SRR29396878", + "min": "83", + "mmTag": true, + "n25": "17173", + "n50": "18658", + "n75": "20720", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21144/raw_data/PacBio_HiFi/m84081_230629_192021_s2.hifi_reads.bc2018.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16915", + "quartile50": "18291", + "quartile75": "20114", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "NA21144", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "35265588464", - "totalGbp": "35.265588464", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "128161101481", + "totalGbp": "128.16", + "totalReads": "6753492", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758800", - "assembly": null, + "accession": "SAMN41021636", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758800", - "ccsAlgorithm": "N/A", - "coverage": "11.38", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021636", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20752-2_S9i_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230630_190803_s1.hifi_reads.bc2015.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20752-2_S9i_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG00321_lib1_m84081_230630_190803_s1_m84081_230630_190803_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242485", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.461973", + "libraryStrategy": "WGS", + "max": "49486", + "mean": "20762", + "metadataAccession": "SRR29396917", + "min": "182", + "mmTag": true, + "n25": "19023", + "n50": "20701", + "n75": "22882", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00321/raw_data/PacBio_HiFi/m84081_230630_190803_s1.hifi_reads.bc2015.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18719", + "quartile50": "20324", + "quartile75": "22343", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20752", + "sampleId": "HG00321", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", + "subpopulation": "FIN", "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20752", - "totalBp": "35264086975", - "totalGbp": "35.264086975", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "6703217313", + "totalGbp": "6.7", + "totalReads": "322856", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": "SAMN41021636", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "5.19", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021636", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20799-1_S4_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230630_193909_s2.hifi_reads.bc2015.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-1_S4_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG00321_lib1_m84081_230630_193909_s2_m84081_230630_193909_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242484", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.53525", + "libraryStrategy": "WGS", + "max": "49979", + "mean": "20812", + "metadataAccession": "SRR29396916", + "min": "389", + "mmTag": true, + "n25": "19059", + "n50": "20746", + "n75": "22950", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00321/raw_data/PacBio_HiFi/m84081_230630_193909_s2.hifi_reads.bc2015.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18755", + "quartile50": "20362", + "quartile75": "22397", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "HG00321", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", + "subpopulation": "FIN", "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "16084505020", - "totalGbp": "16.08450502", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "7946873289", + "totalGbp": "7.95", + "totalReads": "381838", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": "SAMN41021635", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "5.19", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021635", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20799-1_S4_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230714_201817_s1.hifi_reads.bc2014.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-1_S4_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG00232_lib1_m84081_230714_201817_s1_m84081_230714_201817_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242484", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.51074", + "libraryStrategy": "WGS", + "max": "70267", + "mean": "19860", + "metadataAccession": "SRR29396836", + "min": "431", + "mmTag": true, + "n25": "18323", + "n50": "19799", + "n75": "21713", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230714_201817_s1.hifi_reads.bc2014.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18065", + "quartile50": "19484", + "quartile75": "21267", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "HG00232", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", + "subpopulation": "GBR", "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "16083581140", - "totalGbp": "16.08358114", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "6302465374", + "totalGbp": "6.3", + "totalReads": "317329", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": "SAMN41021669", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "5.26", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021669", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20799-1_S4_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230714_201817_s1.hifi_reads.bc2020.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-1_S4_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA18565_lib1_m84081_230714_201817_s1_m84081_230714_201817_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242483", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.530327", + "libraryStrategy": "WGS", + "max": "61109", + "mean": "18377", + "metadataAccession": "SRR29396875", + "min": "69", + "mmTag": true, + "n25": "16374", + "n50": "17931", + "n75": "20599", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18565/raw_data/PacBio_HiFi/m84081_230714_201817_s1.hifi_reads.bc2020.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16103", + "quartile50": "17487", + "quartile75": "19619", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "NA18565", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "16306582361", - "totalGbp": "16.306582361", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "80173317654", + "totalGbp": "80.17", + "totalReads": "4362524", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": "SAMN41021635", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "5.26", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021635", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20799-1_S4_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230714_205519_s2.hifi_reads.bc2014.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-1_S4_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG00232_lib1_m84081_230714_205519_s2_m84081_230714_205519_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242483", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.514144", + "libraryStrategy": "WGS", + "max": "52961", + "mean": "19856", + "metadataAccession": "SRR29396924", + "min": "405", + "mmTag": true, + "n25": "18313", + "n50": "19795", + "n75": "21716", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230714_205519_s2.hifi_reads.bc2014.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18063", + "quartile50": "19476", + "quartile75": "21260", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "HG00232", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", + "subpopulation": "GBR", "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "16305974272", - "totalGbp": "16.305974272", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "7010861592", + "totalGbp": "7.01", + "totalReads": "353075", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": "SAMN41021669", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "5.05", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021669", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20799-1_S4_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230714_205519_s2.hifi_reads.bc2020.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-1_S4_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA18565_lib1_m84081_230714_205519_s2_m84081_230714_205519_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242482", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.549532", + "libraryStrategy": "WGS", + "max": "62662", + "mean": "18381", + "metadataAccession": "SRR29396850", + "min": "127", + "mmTag": true, + "n25": "16369", + "n50": "17921", + "n75": "20603", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18565/raw_data/PacBio_HiFi/m84081_230714_205519_s2.hifi_reads.bc2020.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16099", + "quartile50": "17478", + "quartile75": "19611", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "NA18565", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "15641580822", - "totalGbp": "15.641580822", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "89433355582", + "totalGbp": "89.43", + "totalReads": "4865353", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": "SAMN41021635", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "5.05", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021635", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20799-1_S4_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230714_212624_s3.hifi_reads.bc2014.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-1_S4_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG00232_lib1_m84081_230714_212624_s3_m84081_230714_212624_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242482", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.527647", + "libraryStrategy": "WGS", + "max": "52520", + "mean": "19843", + "metadataAccession": "SRR29396923", + "min": "503", + "mmTag": true, + "n25": "18300", + "n50": "19779", + "n75": "21693", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230714_212624_s3.hifi_reads.bc2014.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18046", + "quartile50": "19460", + "quartile75": "21241", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "HG00232", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", + "subpopulation": "GBR", "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "15640822549", - "totalGbp": "15.640822549", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "7637421327", + "totalGbp": "7.64", + "totalReads": "384888", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": null, + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "5.02", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41708788", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20799-1_S4_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230714_212624_s3.hifi_reads.bc2021.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-1_S4_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG00384_lib1_m84081_230714_212624_s3_m84081_230714_212624_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242481", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.541735", + "libraryStrategy": "WGS", + "max": "65604", + "mean": "20514", + "metadataAccession": "SRR29396915", + "min": "125", + "mmTag": true, + "n25": "18631", + "n50": "20539", + "n75": "23013", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00384/raw_data/PacBio_HiFi/m84081_230714_212624_s3.hifi_reads.bc2021.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": null, + "quartile25": "18246", + "quartile50": "20053", + "quartile75": "22342", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "HG00384", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "15555176575", - "totalGbp": "15.555176575", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "87240672013", + "totalGbp": "87.24", + "totalReads": "4252735", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": "SAMN41021635", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "5.02", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021635", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20799-1_S4_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230714_215730_s4.hifi_reads.bc2014.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-1_S4_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG00232_lib1_m84081_230714_215730_s4_m84081_230714_215730_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242481", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.505313", + "libraryStrategy": "WGS", + "max": "51376", + "mean": "19943", + "metadataAccession": "SRR29396922", + "min": "169", + "mmTag": true, + "n25": "18366", + "n50": "19870", + "n75": "21834", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230714_215730_s4.hifi_reads.bc2014.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18108", + "quartile50": "19543", + "quartile75": "21367", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "HG00232", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", + "subpopulation": "GBR", "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "15554368820", - "totalGbp": "15.55436882", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "7956857338", + "totalGbp": "7.96", + "totalReads": "398971", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": null, + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "5.53", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41708788", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20799-2_S12_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230714_215730_s4.hifi_reads.bc2021.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-2_S12_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG00384_lib1_m84081_230714_215730_s4_m84081_230714_215730_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242431", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.532172", + "libraryStrategy": "WGS", + "max": "68989", + "mean": "20643", + "metadataAccession": "SRR29396913", + "min": "168", + "mmTag": true, + "n25": "18726", + "n50": "20664", + "n75": "23182", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00384/raw_data/PacBio_HiFi/m84081_230714_215730_s4.hifi_reads.bc2021.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": null, + "quartile25": "18337", + "quartile50": "20167", + "quartile75": "22494", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "HG00384", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "17149676191", - "totalGbp": "17.149676191", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "91298102319", + "totalGbp": "91.3", + "totalReads": "4422543", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": "SAMN41021671", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "5.53", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021671", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20799-2_S12_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230715_203436_s1.hifi_reads.bc2022.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-2_S12_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA20809_lib1_m84081_230715_203436_s1_m84081_230715_203436_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242431", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.532822", + "libraryStrategy": "WGS", + "max": "52070", + "mean": "18703", + "metadataAccession": "SRR29396841", + "min": "95", + "mmTag": true, + "n25": "17402", + "n50": "18694", + "n75": "20298", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20809/raw_data/PacBio_HiFi/m84081_230715_203436_s1.hifi_reads.bc2022.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17209", + "quartile50": "18451", + "quartile75": "19993", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "NA20809", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", "subpopulation": "TSI", "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "17148483684", - "totalGbp": "17.148483684", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "87078143934", + "totalGbp": "87.08", + "totalReads": "4655640", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": "SAMN41021671", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "5.61", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021671", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20799-2_S12_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230715_210542_s2.hifi_reads.bc2022.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-2_S12_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA20809_lib1_m84081_230715_210542_s2_m84081_230715_210542_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242430", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.525542", + "libraryStrategy": "WGS", + "max": "60584", + "mean": "18628", + "metadataAccession": "SRR29396840", + "min": "103", + "mmTag": true, + "n25": "17345", + "n50": "18621", + "n75": "20208", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20809/raw_data/PacBio_HiFi/m84081_230715_210542_s2.hifi_reads.bc2022.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17154", + "quartile50": "18382", + "quartile75": "19906", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "NA20809", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", "subpopulation": "TSI", "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "17376969777", - "totalGbp": "17.376969777", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "85378958115", + "totalGbp": "85.38", + "totalReads": "4583245", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": "SAMN41021672", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "5.61", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021672", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20799-2_S12_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230715_213648_s3.hifi_reads.bc2023.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-2_S12_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA21102_lib1_m84081_230715_213648_s3_m84081_230715_213648_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242430", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.509521", + "libraryStrategy": "WGS", + "max": "56564", + "mean": "18240", + "metadataAccession": "SRR29396833", + "min": "101", + "mmTag": true, + "n25": "16045", + "n50": "18323", + "n75": "21128", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21102/raw_data/PacBio_HiFi/m84081_230715_213648_s3.hifi_reads.bc2023.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "15620", + "quartile50": "17597", + "quartile75": "20316", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "NA21102", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "17376099145", - "totalGbp": "17.376099145", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "88572942257", + "totalGbp": "88.57", + "totalReads": "4855740", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": "SAMN41021672", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "5.25", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021672", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20799-2_S12_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230715_220754_s4.hifi_reads.bc2023.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-2_S12_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA21102_lib1_m84081_230715_220754_s4_m84081_230715_220754_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242429", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.544479", + "libraryStrategy": "WGS", + "max": "59189", + "mean": "18335", + "metadataAccession": "SRR29396832", + "min": "64", + "mmTag": true, + "n25": "16117", + "n50": "18440", + "n75": "21256", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21102/raw_data/PacBio_HiFi/m84081_230715_220754_s4.hifi_reads.bc2023.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "15677", + "quartile50": "17696", + "quartile75": "20435", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "NA21102", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "16286610710", - "totalGbp": "16.28661071", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "90093303392", + "totalGbp": "90.09", + "totalReads": "4913513", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": null, + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "5.25", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41708788", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20799-2_S12_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230721_175633_s1.hifi_reads.bc2021.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-2_S12_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG00384_lib1_m84081_230721_175633_s1_m84081_230721_175633_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242429", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.527273", + "libraryStrategy": "WGS", + "max": "58703", + "mean": "20120", + "metadataAccession": "SRR29396912", + "min": "317", + "mmTag": true, + "n25": "18377", + "n50": "20134", + "n75": "22352", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00384/raw_data/PacBio_HiFi/m84081_230721_175633_s1.hifi_reads.bc2021.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": null, + "quartile25": "18030", + "quartile50": "19719", + "quartile75": "21788", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "HG00384", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "16285604458", - "totalGbp": "16.285604458", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "5580145860", + "totalGbp": "5.58", + "totalReads": "277337", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": null, + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "5.24", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41708788", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20799-2_S12_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230721_182654_s2.hifi_reads.bc2021.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-2_S12_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG00384_lib1_m84081_230721_182654_s2_m84081_230721_182654_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242428", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.536677", + "libraryStrategy": "WGS", + "max": "47639", + "mean": "20151", + "metadataAccession": "SRR29396911", + "min": "117", + "mmTag": true, + "n25": "18398", + "n50": "20167", + "n75": "22384", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00384/raw_data/PacBio_HiFi/m84081_230721_182654_s2.hifi_reads.bc2021.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": null, + "quartile25": "18055", + "quartile50": "19753", + "quartile75": "21815", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "HG00384", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "16252607758", - "totalGbp": "16.252607758", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "5787641754", + "totalGbp": "5.79", + "totalReads": "287210", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": "SAMN26237496", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "5.24", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237496", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20799-2_S12_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "CLM43", + "filename": "m84081_230727_190726_s1.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-2_S12_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG01433_lib1_m84081_230727_190726_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242428", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.514582", + "libraryStrategy": "WGS", + "max": "59720", + "mean": "19708", + "metadataAccession": "SRR30545954", + "min": "107", + "mmTag": true, + "n25": "17789", + "n50": "19266", + "n75": "21600", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01433/raw_data/PacBio_HiFi/m84081_230727_190726_s1.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "17552", + "quartile50": "18894", + "quartile75": "20844", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "HG01433", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "16251563719", - "totalGbp": "16.251563719", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "40767468283", + "totalGbp": "40.77", + "totalReads": "2068495", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": "SAMN26237496", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "13.16", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237496", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20799-2_S12i_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "CLM43", + "filename": "m84081_230727_193748_s2.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-2_S12i_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG01433_lib1_m84081_230727_193748_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242427", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.470925", + "libraryStrategy": "WGS", + "max": "68085", + "mean": "19711", + "metadataAccession": "SRR30545953", + "min": "307", + "mmTag": true, + "n25": "17781", + "n50": "19264", + "n75": "21611", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01433/raw_data/PacBio_HiFi/m84081_230727_193748_s2.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "17544", + "quartile50": "18890", + "quartile75": "20844", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "HG01433", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "40786811298", - "totalGbp": "40.786811298", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "42600749441", + "totalGbp": "42.6", + "totalReads": "2161263", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": "SAMN41021670", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "13.16", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021670", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20799-2_S12i_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230727_200855_s3.hifi_reads.bc2028.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-2_S12i_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA20818_lib1_m84081_230727_200855_s3_m84081_230727_200855_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242427", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.450139", + "libraryStrategy": "WGS", + "max": "64756", + "mean": "18870", + "metadataAccession": "SRR29396838", + "min": "102", + "mmTag": true, + "n25": "17040", + "n50": "18491", + "n75": "20674", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20818/raw_data/PacBio_HiFi/m84081_230727_200855_s3.hifi_reads.bc2028.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16809", + "quartile50": "18127", + "quartile75": "20004", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "NA20818", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", "subpopulation": "TSI", "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "40783737096", - "totalGbp": "40.783737096", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "114656228354", + "totalGbp": "114.66", + "totalReads": "6076049", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": "SAMN41021670", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "14.54", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021670", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20799-2_S12i_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230727_204001_s4.hifi_reads.bc2028.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-2_S12i_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA20818_lib1_m84081_230727_204001_s4_m84081_230727_204001_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242408", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.47961", + "libraryStrategy": "WGS", + "max": "61009", + "mean": "18756", + "metadataAccession": "SRR29396837", + "min": "142", + "mmTag": true, + "n25": "16986", + "n50": "18401", + "n75": "20499", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20818/raw_data/PacBio_HiFi/m84081_230727_204001_s4.hifi_reads.bc2028.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16763", + "quartile50": "18053", + "quartile75": "19875", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "NA20818", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", "subpopulation": "TSI", "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "45068829797", - "totalGbp": "45.068829797", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "109290854662", + "totalGbp": "109.29", + "totalReads": "5826771", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": "SAMN41021669", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "14.54", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021669", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20799-2_S12i_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230728_191731_s1.hifi_reads.bc2020.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-2_S12i_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA18565_lib1_m84081_230728_191731_s1_m84081_230728_191731_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242408", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.443745", + "libraryStrategy": "WGS", + "max": "40638", + "mean": "16954", + "metadataAccession": "SRR29396851", + "min": "115", + "mmTag": true, + "n25": "15896", + "n50": "16985", + "n75": "18239", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA18565/raw_data/PacBio_HiFi/m84081_230728_191731_s1.hifi_reads.bc2020.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "15749", + "quartile50": "16808", + "quartile75": "18036", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "NA18565", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "45067101993", - "totalGbp": "45.067101993", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "25516860218", + "totalGbp": "25.52", + "totalReads": "1505035", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": "SAMN41021671", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "12.67", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021671", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20799-2_S12i_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230728_191731_s1.hifi_reads.bc2022.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-2_S12i_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA20809_lib1_m84081_230728_191731_s1_m84081_230728_191731_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242287", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.468291", + "libraryStrategy": "WGS", + "max": "46117", + "mean": "18628", + "metadataAccession": "SRR29396839", + "min": "260", + "mmTag": true, + "n25": "17351", + "n50": "18625", + "n75": "20198", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA20809/raw_data/PacBio_HiFi/m84081_230728_191731_s1.hifi_reads.bc2022.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17161", + "quartile50": "18388", + "quartile75": "19904", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "NA20809", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", "subpopulation": "TSI", "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "39289404409", - "totalGbp": "39.289404409", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "10969903547", + "totalGbp": "10.97", + "totalReads": "588891", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": "SAMN41021672", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "12.67", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021672", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20799-2_S12i_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230728_191731_s1.hifi_reads.bc2023.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-2_S12i_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA21102_lib1_m84081_230728_191731_s1_m84081_230728_191731_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242287", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.447935", + "libraryStrategy": "WGS", + "max": "55992", + "mean": "20178", + "metadataAccession": "SRR29396831", + "min": "134", + "mmTag": true, + "n25": "18436", + "n50": "20256", + "n75": "22462", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA21102/raw_data/PacBio_HiFi/m84081_230728_191731_s1.hifi_reads.bc2023.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18071", + "quartile50": "19828", + "quartile75": "21900", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "NA21102", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "39287924676", - "totalGbp": "39.287924676", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "14411372514", + "totalGbp": "14.41", + "totalReads": "714199", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": "SAMN41021607", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "10.98", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021607", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20799-2_S12i_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230728_194836_s2.hifi_reads.bc2029.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-2_S12i_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA19909_lib1_m84081_230728_194836_s2_m84081_230728_194836_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242286", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.482272", + "libraryStrategy": "WGS", + "max": "59827", + "mean": "20203", + "metadataAccession": "SRR29396849", + "min": "81", + "mmTag": true, + "n25": "18349", + "n50": "20277", + "n75": "22620", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_230728_194836_s2.hifi_reads.bc2029.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17957", + "quartile50": "19803", + "quartile75": "22006", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "NA19909", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "ASW", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "34040491107", - "totalGbp": "34.040491107", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "97319859213", + "totalGbp": "97.32", + "totalReads": "4817014", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", - "assembly": null, + "accession": "SAMN41021607", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "N/A", - "coverage": "10.98", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021607", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20799-2_S12i_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_230728_201942_s3.hifi_reads.bc2029.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20799-2_S12i_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA19909_lib1_m84081_230728_201942_s3_m84081_230728_201942_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242286", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.473899", + "libraryStrategy": "WGS", + "max": "69516", + "mean": "20097", + "metadataAccession": "SRR29396848", + "min": "186", + "mmTag": true, + "n25": "18269", + "n50": "20173", + "n75": "22480", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_230728_201942_s3.hifi_reads.bc2029.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17882", + "quartile50": "19709", + "quartile75": "21881", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "NA19909", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "ASW", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20799", - "totalBp": "34039056390", - "totalGbp": "34.03905639", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "99459938408", + "totalGbp": "99.46", + "totalReads": "4948799", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621962", - "assembly": null, + "accession": "SAMN41021682", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621962", - "ccsAlgorithm": "N/A", - "coverage": "3.58", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021682", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20805-1_S18_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_231027_192451_s1.hifi_reads.bc2066.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20805-1_S18_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA19099_lib1_m84081_231027_192451_s1_m84081_231027_192451_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242285", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.610008", - "oneHundredkbPlus": "N/A", - "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "libraryStrategy": "WGS", + "max": "68354", + "mean": "19999", + "metadataAccession": "SRR29396863", + "min": "134", + "mmTag": true, + "n25": "17716", + "n50": "19923", + "n75": "23009", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", + "oneHundredkbPlus": "N/A", + "oneMbPlus": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19099/raw_data/PacBio_HiFi/m84081_231027_192451_s1.hifi_reads.bc2066.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17304", + "quartile50": "19241", + "quartile75": "22055", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20805", + "sampleId": "NA19099", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "YRI", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20805", - "totalBp": "11099179477", - "totalGbp": "11.099179477", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "71420056983", + "totalGbp": "71.42", + "totalReads": "3571017", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621962", - "assembly": null, + "accession": "SAMN26237504", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621962", - "ccsAlgorithm": "N/A", - "coverage": "3.58", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237504", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20805-1_S18_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "VN069", + "filename": "m84081_231027_192451_s1.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20805-1_S18_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG02083_lib1_m84081_231027_192451_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242285", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.601875", + "libraryStrategy": "WGS", + "max": "54344", + "mean": "21142", + "metadataAccession": "SRR30545918", + "min": "293", + "mmTag": true, + "n25": "18401", + "n50": "21543", + "n75": "24525", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02083/raw_data/PacBio_HiFi/m84081_231027_192451_s1.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "17856", + "quartile50": "20607", + "quartile75": "23626", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20805", + "sampleId": "HG02083", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20805", - "totalBp": "11098297137", - "totalGbp": "11.098297137", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "27531042836", + "totalGbp": "27.53", + "totalReads": "1302160", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621962", - "assembly": null, + "accession": "SAMN41021683", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621962", - "ccsAlgorithm": "N/A", - "coverage": "3.88", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021683", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20805-1_S18_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_231027_195514_s2.hifi_reads.bc2067.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20805-1_S18_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG03343_lib1_m84081_231027_195514_s2_m84081_231027_195514_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242284", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.588123", + "libraryStrategy": "WGS", + "max": "65357", + "mean": "21823", + "metadataAccession": "SRR29396895", + "min": "93", + "mmTag": true, + "n25": "19131", + "n50": "21984", + "n75": "25894", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231027_195514_s2.hifi_reads.bc2067.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18478", + "quartile50": "20971", + "quartile75": "24504", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20805", + "sampleId": "HG03343", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "ESN", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20805", - "totalBp": "12027302447", - "totalGbp": "12.027302447", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "80389909890", + "totalGbp": "80.39", + "totalReads": "3683635", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621962", - "assembly": null, + "accession": "SAMN26237506", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621962", - "ccsAlgorithm": "N/A", - "coverage": "3.88", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237506", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20805-1_S18_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "VN090", + "filename": "m84081_231027_195514_s2.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20805-1_S18_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG02523_lib1_m84081_231027_195514_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242284", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.595815", + "libraryStrategy": "WGS", + "max": "61805", + "mean": "24987", + "metadataAccession": "SRR30545916", + "min": "173", + "mmTag": true, + "n25": "22316", + "n50": "24826", + "n75": "28520", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02523/raw_data/PacBio_HiFi/m84081_231027_195514_s2.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "21815", + "quartile50": "24089", + "quartile75": "27367", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20805", + "sampleId": "HG02523", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20805", - "totalBp": "12026700245", - "totalGbp": "12.026700245", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "25368887506", + "totalGbp": "25.37", + "totalReads": "1015279", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621962", - "assembly": null, + "accession": "SAMN41021696", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621962", - "ccsAlgorithm": "N/A", - "coverage": "3.88", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021696", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20805-1_S18_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_231027_202621_s3.hifi_reads.bc2070.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20805-1_S18_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG00106_lib1_m84081_231027_202621_s3_m84081_231027_202621_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242421", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.579802", + "libraryStrategy": "WGS", + "max": "77433", + "mean": "21103", + "metadataAccession": "SRR29396926", + "min": "96", + "mmTag": true, + "n25": "18509", + "n50": "21228", + "n75": "24912", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00106/raw_data/PacBio_HiFi/m84081_231027_202621_s3.hifi_reads.bc2070.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17907", + "quartile50": "20285", + "quartile75": "23650", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20805", + "sampleId": "HG00106", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", + "subpopulation": "GBR", "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20805", - "totalBp": "12020931686", - "totalGbp": "12.020931686", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "86515704685", + "totalGbp": "86.52", + "totalReads": "4099673", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621962", - "assembly": null, + "accession": "SAMN26237506", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621962", - "ccsAlgorithm": "N/A", - "coverage": "3.88", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237506", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20805-1_S18_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "VN090", + "filename": "m84081_231027_202621_s3.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20805-1_S18_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG02523_lib1_m84081_231027_202621_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242421", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.598198", + "libraryStrategy": "WGS", + "max": "59720", + "mean": "24621", + "metadataAccession": "SRR30545915", + "min": "162", + "mmTag": true, + "n25": "22130", + "n50": "24465", + "n75": "27807", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02523/raw_data/PacBio_HiFi/m84081_231027_202621_s3.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "21672", + "quartile50": "23824", + "quartile75": "26796", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20805", + "sampleId": "HG02523", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20805", - "totalBp": "12020309550", - "totalGbp": "12.02030955", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "22264325773", + "totalGbp": "22.26", + "totalReads": "904264", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621962", - "assembly": null, + "accession": null, + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621962", - "ccsAlgorithm": "N/A", - "coverage": "3.85", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41708787", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20805-1_S18_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_231027_205726_s4.hifi_reads.bc2068.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20805-1_S18_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG01785_lib1_m84081_231027_205726_s4_m84081_231027_205726_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242420", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.614887", + "libraryStrategy": "WGS", + "max": "55706", + "mean": "18463", + "metadataAccession": "SRR29396906", + "min": "154", + "mmTag": true, + "n25": "16603", + "n50": "18371", + "n75": "20789", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01785/raw_data/PacBio_HiFi/m84081_231027_205726_s4.hifi_reads.bc2068.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": null, + "quartile25": "16282", + "quartile50": "17891", + "quartile75": "20106", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20805", + "sampleId": "HG01785", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20805", - "totalBp": "11933368898", - "totalGbp": "11.933368898", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "69132600711", + "totalGbp": "69.13", + "totalReads": "3744219", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621962", - "assembly": null, + "accession": "SAMN26237502", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621962", - "ccsAlgorithm": "N/A", - "coverage": "3.85", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237502", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20805-1_S18_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL33", + "filename": "m84081_231027_205726_s4.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20805-1_S18_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG02004_lib1_m84081_231027_205726_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242420", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.574895", + "libraryStrategy": "WGS", + "max": "60013", + "mean": "18808", + "metadataAccession": "SRR30545944", + "min": "207", + "mmTag": true, + "n25": "16470", + "n50": "18634", + "n75": "21710", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/PacBio_HiFi/m84081_231027_205726_s4.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "16148", + "quartile50": "17863", + "quartile75": "20869", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20805", + "sampleId": "HG02004", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20805", - "totalBp": "11932764485", - "totalGbp": "11.932764485", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "35562878236", + "totalGbp": "35.56", + "totalReads": "1890808", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621962", - "assembly": null, + "accession": "SAMN41021682", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621962", - "ccsAlgorithm": "N/A", - "coverage": "3.12", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021682", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20805-2_S26_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_231029_013437_s1.hifi_reads.bc2066.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20805-2_S26_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA19099_lib1_m84081_231029_013437_s1_m84081_231029_013437_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242419", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.597025", + "libraryStrategy": "WGS", + "max": "64507", + "mean": "20214", + "metadataAccession": "SRR29396864", + "min": "88", + "mmTag": true, + "n25": "17859", + "n50": "20167", + "n75": "23322", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19099/raw_data/PacBio_HiFi/m84081_231029_013437_s1.hifi_reads.bc2066.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17421", + "quartile50": "19447", + "quartile75": "22342", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20805", + "sampleId": "NA19099", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "YRI", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20805", - "totalBp": "9670985294", - "totalGbp": "9.670985294", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "67429698005", + "totalGbp": "67.43", + "totalReads": "3335768", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621962", - "assembly": null, + "accession": "SAMN26237504", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621962", - "ccsAlgorithm": "N/A", - "coverage": "3.12", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237504", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20805-2_S26_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "VN069", + "filename": "m84081_231029_013437_s1.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20805-2_S26_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG02083_lib1_m84081_231029_013437_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242419", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.593732", + "libraryStrategy": "WGS", + "max": "68194", + "mean": "21380", + "metadataAccession": "SRR30545917", + "min": "233", + "mmTag": true, + "n25": "18608", + "n50": "21819", + "n75": "24812", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02083/raw_data/PacBio_HiFi/m84081_231029_013437_s1.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "18006", + "quartile50": "20926", + "quartile75": "23896", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20805", + "sampleId": "HG02083", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20805", - "totalBp": "9670160093", - "totalGbp": "9.670160093", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "26485559925", + "totalGbp": "26.49", + "totalReads": "1238797", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621962", - "assembly": null, + "accession": "SAMN41021683", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621962", - "ccsAlgorithm": "N/A", - "coverage": "3.39", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021683", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20805-2_S26_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_231029_020543_s2.hifi_reads.bc2067.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20805-2_S26_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG03343_lib1_m84081_231029_020543_s2_m84081_231029_020543_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242418", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.626269", + "libraryStrategy": "WGS", + "max": "67011", + "mean": "21937", + "metadataAccession": "SRR29396894", + "min": "131", + "mmTag": true, + "n25": "19209", + "n50": "22113", + "n75": "26029", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231029_020543_s2.hifi_reads.bc2067.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18542", + "quartile50": "21085", + "quartile75": "24644", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20805", + "sampleId": "HG03343", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "ESN", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20805", - "totalBp": "10512394048", - "totalGbp": "10.512394048", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "76377325201", + "totalGbp": "76.38", + "totalReads": "3481519", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621962", - "assembly": null, + "accession": "SAMN26237506", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621962", - "ccsAlgorithm": "N/A", - "coverage": "3.39", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237506", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20805-2_S26_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "VN090", + "filename": "m84081_231029_020543_s2.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20805-2_S26_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG02523_lib1_m84081_231029_020543_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242418", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.588998", + "libraryStrategy": "WGS", + "max": "70651", + "mean": "25073", + "metadataAccession": "SRR30545914", + "min": "201", + "mmTag": true, + "n25": "22385", + "n50": "24919", + "n75": "28637", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02523/raw_data/PacBio_HiFi/m84081_231029_020543_s2.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "21884", + "quartile50": "24171", + "quartile75": "27465", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20805", + "sampleId": "HG02523", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20805", - "totalBp": "10511815847", - "totalGbp": "10.511815847", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "24260432953", + "totalGbp": "24.26", + "totalReads": "967562", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621962", - "assembly": null, + "accession": "SAMN41021696", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621962", - "ccsAlgorithm": "N/A", - "coverage": "3.39", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021696", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20805-2_S26_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_231029_023649_s3.hifi_reads.bc2070.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20805-2_S26_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG00106_lib1_m84081_231029_023649_s3_m84081_231029_023649_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242417", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.577644", + "libraryStrategy": "WGS", + "max": "67088", + "mean": "21638", + "metadataAccession": "SRR29396925", + "min": "120", + "mmTag": true, + "n25": "18829", + "n50": "21822", + "n75": "25832", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00106/raw_data/PacBio_HiFi/m84081_231029_023649_s3.hifi_reads.bc2070.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18150", + "quartile50": "20737", + "quartile75": "24408", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20805", + "sampleId": "HG00106", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", + "subpopulation": "GBR", "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20805", - "totalBp": "10519144528", - "totalGbp": "10.519144528", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "86599346640", + "totalGbp": "86.6", + "totalReads": "4002067", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621962", - "assembly": null, + "accession": "SAMN26237506", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621962", - "ccsAlgorithm": "N/A", - "coverage": "3.39", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237506", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20805-2_S26_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "VN090", + "filename": "m84081_231029_023649_s3.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20805-2_S26_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG02523_lib1_m84081_231029_023649_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242417", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.580557", + "libraryStrategy": "WGS", + "max": "64892", + "mean": "25223", + "metadataAccession": "SRR30545913", + "min": "791", + "mmTag": true, + "n25": "22476", + "n50": "25072", + "n75": "28881", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02523/raw_data/PacBio_HiFi/m84081_231029_023649_s3.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "21964", + "quartile50": "24295", + "quartile75": "27686", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20805", + "sampleId": "HG02523", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20805", - "totalBp": "10518532134", - "totalGbp": "10.518532134", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "24084906461", + "totalGbp": "24.08", + "totalReads": "954842", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621962", - "assembly": null, + "accession": null, + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621962", - "ccsAlgorithm": "N/A", - "coverage": "3.35", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41708787", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20805-2_S26_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_231029_030755_s4.hifi_reads.bc2068.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20805-2_S26_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG01785_lib1_m84081_231029_030755_s4_m84081_231029_030755_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242416", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.635641", + "libraryStrategy": "WGS", + "max": "55915", + "mean": "18627", + "metadataAccession": "SRR29396905", + "min": "101", + "mmTag": true, + "n25": "16703", + "n50": "18530", + "n75": "21036", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01785/raw_data/PacBio_HiFi/m84081_231029_030755_s4.hifi_reads.bc2068.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": null, + "quartile25": "16370", + "quartile50": "18025", + "quartile75": "20317", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20805", + "sampleId": "HG01785", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20805", - "totalBp": "10393439184", - "totalGbp": "10.393439184", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "62547368039", + "totalGbp": "62.55", + "totalReads": "3357874", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33621962", - "assembly": null, + "accession": "SAMN26237502", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33621962", - "ccsAlgorithm": "N/A", - "coverage": "3.35", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237502", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20805-2_S26_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL33", + "filename": "m84081_231029_030755_s4.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20805-2_S26_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG02004_lib1_m84081_231029_030755_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242416", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.590195", + "libraryStrategy": "WGS", + "max": "56461", + "mean": "19000", + "metadataAccession": "SRR30545943", + "min": "462", + "mmTag": true, + "n25": "16581", + "n50": "18939", + "n75": "22009", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02004/raw_data/PacBio_HiFi/m84081_231029_030755_s4.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "16231", + "quartile50": "18069", + "quartile75": "21145", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20805", + "sampleId": "HG02004", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20805", - "totalBp": "10392835274", - "totalGbp": "10.392835274", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "32287995273", + "totalGbp": "32.29", + "totalReads": "1699283", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN41021684", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "5.13", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021684", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20858-1_S8_L001_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_231103_210721_s4.hifi_reads.bc2069.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-1_S8_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG01894_lib1_m84081_231103_210721_s4_m84081_231103_210721_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242415", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.546634", + "libraryStrategy": "WGS", + "max": "68862", + "mean": "19872", + "metadataAccession": "SRR29396897", + "min": "78", + "mmTag": true, + "n25": "18044", + "n50": "20025", + "n75": "22730", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01894/raw_data/PacBio_HiFi/m84081_231103_210721_s4.hifi_reads.bc2069.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17619", + "quartile50": "19444", + "quartile75": "21948", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG01894", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "ACB", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "15902941530", - "totalGbp": "15.90294153", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "99237532921", + "totalGbp": "99.24", + "totalReads": "4993697", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN41021684", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "5.13", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021684", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20858-1_S8_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_231105_014442_s1.hifi_reads.bc2069.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-1_S8_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG01894_lib1_m84081_231105_014442_s1_m84081_231105_014442_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242415", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.49203", + "libraryStrategy": "WGS", + "max": "66222", + "mean": "19978", + "metadataAccession": "SRR29396896", + "min": "112", + "mmTag": true, + "n25": "18104", + "n50": "20117", + "n75": "22844", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01894/raw_data/PacBio_HiFi/m84081_231105_014442_s1.hifi_reads.bc2069.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17679", + "quartile50": "19531", + "quartile75": "22063", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG01894", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "ACB", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "15901873018", - "totalGbp": "15.901873018", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "102950156305", + "totalGbp": "102.95", + "totalReads": "5152973", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN26237509", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "5.25", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237509", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20858-1_S8_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PK21", + "filename": "m84081_231105_021548_s2.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-1_S8_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG02698_lib1_m84081_231105_021548_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242414", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.551288", + "libraryStrategy": "WGS", + "max": "61919", + "mean": "19750", + "metadataAccession": "SRR30545912", + "min": "167", + "mmTag": true, + "n25": "17348", + "n50": "19419", + "n75": "22930", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02698/raw_data/PacBio_HiFi/m84081_231105_021548_s2.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "17026", + "quartile50": "18734", + "quartile75": "21962", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG02698", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", + "subpopulation": "PJL", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "16288029940", - "totalGbp": "16.28802994", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "115625120833", + "totalGbp": "115.63", + "totalReads": "5854171", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN26237495", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "5.25", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237495", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20858-1_S8_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "CLM15", + "filename": "m84081_231105_024654_s3.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-1_S8_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG01255_lib1_m84081_231105_024654_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242414", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.520439", + "libraryStrategy": "WGS", + "max": "66767", + "mean": "22152", + "metadataAccession": "SRR30545925", + "min": "135", + "mmTag": true, + "n25": "20118", + "n50": "22063", + "n75": "24838", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01255/raw_data/PacBio_HiFi/m84081_231105_024654_s3.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "19725", + "quartile50": "21541", + "quartile75": "24025", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG01255", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "16287207571", - "totalGbp": "16.287207571", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "106795993727", + "totalGbp": "106.8", + "totalReads": "4820912", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN26237508", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "4.75", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237508", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20858-1_S8_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB29", + "filename": "m84081_231105_031800_s4.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-1_S8_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG02615_lib1_m84081_231105_031800_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242413", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.5569", + "libraryStrategy": "WGS", + "max": "59452", + "mean": "17948", + "metadataAccession": "SRR30545929", + "min": "187", + "mmTag": true, + "n25": "16344", + "n50": "17595", + "n75": "19434", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02615/raw_data/PacBio_HiFi/m84081_231105_031800_s4.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "16173", + "quartile50": "17320", + "quartile75": "18923", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG02615", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "14729014208", - "totalGbp": "14.729014208", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "112515573214", + "totalGbp": "112.52", + "totalReads": "6268696", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN41021697", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "4.75", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021697", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20858-1_S8_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_231110_195735_s1.hifi_reads.bc2071.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-1_S8_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG00117_lib1_m84081_231110_195735_s1_m84081_231110_195735_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242413", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.529462", + "libraryStrategy": "WGS", + "max": "58989", + "mean": "19490", + "metadataAccession": "SRR29396903", + "min": "141", + "mmTag": true, + "n25": "17714", + "n50": "19547", + "n75": "22192", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00117/raw_data/PacBio_HiFi/m84081_231110_195735_s1.hifi_reads.bc2071.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17367", + "quartile50": "19007", + "quartile75": "21433", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG00117", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "14728119611", - "totalGbp": "14.728119611", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "92655924917", + "totalGbp": "92.66", + "totalReads": "4753908", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN41021697", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "4.85", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021697", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20858-1_S8_L004_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_231112_020730_s1.hifi_reads.bc2071.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-1_S8_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG00117_lib1_m84081_231112_020730_s1_m84081_231112_020730_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242412", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.561915", + "libraryStrategy": "WGS", + "max": "60579", + "mean": "19696", + "metadataAccession": "SRR29396892", + "min": "95", + "mmTag": true, + "n25": "17795", + "n50": "19687", + "n75": "22372", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00117/raw_data/PacBio_HiFi/m84081_231112_020730_s1.hifi_reads.bc2071.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17457", + "quartile50": "19143", + "quartile75": "21621", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG00117", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "15041475923", - "totalGbp": "15.041475923", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "104125394431", + "totalGbp": "104.13", + "totalReads": "5286393", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN41021683", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "4.85", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021683", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20858-1_S8_L004_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_231112_023836_s2.hifi_reads.bc2067.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-1_S8_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG03343_lib1_m84081_231112_023836_s2_m84081_231112_023836_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242412", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.504581", + "libraryStrategy": "WGS", + "max": "64938", + "mean": "21611", + "metadataAccession": "SRR29396893", + "min": "96", + "mmTag": true, + "n25": "19006", + "n50": "21714", + "n75": "25367", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231112_023836_s2.hifi_reads.bc2067.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18408", + "quartile50": "20799", + "quartile75": "24117", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG03343", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "ESN", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "15040514196", - "totalGbp": "15.040514196", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "23811565860", + "totalGbp": "23.81", + "totalReads": "1101791", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN26237511", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "5", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237511", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20858-2_S16_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PK53", + "filename": "m84081_231112_023836_s2.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-2_S16_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG03654_lib1_m84081_231112_023836_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242410", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.52546", + "libraryStrategy": "WGS", + "max": "57246", + "mean": "16806", + "metadataAccession": "SRR30545911", + "min": "123", + "mmTag": true, + "n25": "15639", + "n50": "16544", + "n75": "17685", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03654/raw_data/PacBio_HiFi/m84081_231112_023836_s2.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "15532", + "quartile50": "16390", + "quartile75": "17457", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG03654", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", + "subpopulation": "PJL", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "15500163249", - "totalGbp": "15.500163249", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "76840555351", + "totalGbp": "76.84", + "totalReads": "4572174", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN26237490", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "5", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237490", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20858-2_S16_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH007", + "filename": "m84081_231112_030942_s3.hifi_reads.bc2078.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-2_S16_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG00423_lib1_m84081_231112_030942_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242410", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.496052", + "libraryStrategy": "WGS", + "max": "60898", + "mean": "20218", + "metadataAccession": "SRR30545922", + "min": "165", + "mmTag": true, + "n25": "17910", + "n50": "20379", + "n75": "23789", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00423/raw_data/PacBio_HiFi/m84081_231112_030942_s3.hifi_reads.bc2078.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "17354", + "quartile50": "19521", + "quartile75": "22631", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG00423", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "15499013952", - "totalGbp": "15.499013952", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "23095926280", + "totalGbp": "23.1", + "totalReads": "1142340", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN26237497", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "5.1", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237497", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20858-2_S16_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "CLM64", + "filename": "m84081_231112_030942_s3.hifi_reads.bc2080.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-2_S16_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG01496_lib1_m84081_231112_030942_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242409", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.543107", + "libraryStrategy": "WGS", + "max": "62502", + "mean": "20650", + "metadataAccession": "SRR30545951", + "min": "139", + "mmTag": true, + "n25": "18133", + "n50": "20773", + "n75": "24386", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01496/raw_data/PacBio_HiFi/m84081_231112_030942_s3.hifi_reads.bc2080.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "17539", + "quartile50": "19848", + "quartile75": "23120", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG01496", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "15803601523", - "totalGbp": "15.803601523", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "75524194879", + "totalGbp": "75.52", + "totalReads": "3657255", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN41021696", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "5.1", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021696", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20858-2_S16_L002_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_231112_034048_s4.hifi_reads.bc2070.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-2_S16_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG00106_lib1_m84081_231112_034048_s4_m84081_231112_034048_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242409", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.507463", + "libraryStrategy": "WGS", + "max": "59221", + "mean": "21198", + "metadataAccession": "SRR29396914", + "min": "134", + "mmTag": true, + "n25": "18546", + "n50": "21296", + "n75": "25075", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00106/raw_data/PacBio_HiFi/m84081_231112_034048_s4.hifi_reads.bc2070.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "17936", + "quartile50": "20335", + "quartile75": "23756", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG00106", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "15802649569", - "totalGbp": "15.802649569", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "17464604937", + "totalGbp": "17.46", + "totalReads": "823862", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN26237493", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "4.59", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237493", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20858-2_S16_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PR07", + "filename": "m84081_231112_034048_s4.hifi_reads.bc2079.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-2_S16_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG00738_lib1_m84081_231112_034048_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242269", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.579286", + "libraryStrategy": "WGS", + "max": "73440", + "mean": "20045", + "metadataAccession": "SRR30545901", + "min": "133", + "mmTag": true, + "n25": "17591", + "n50": "20018", + "n75": "23415", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00738/raw_data/PacBio_HiFi/m84081_231112_034048_s4.hifi_reads.bc2079.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "17098", + "quartile50": "19207", + "quartile75": "22270", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG00738", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "14226695314", - "totalGbp": "14.226695314", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "94558121818", + "totalGbp": "94.56", + "totalReads": "4717277", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN26237513", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "4.59", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237513", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20858-2_S16_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PK62", + "filename": "m84081_231117_193129_s1.hifi_reads.bc2082.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-2_S16_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG03710_lib1_m84081_231117_193129_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242269", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.539783", + "libraryStrategy": "WGS", + "max": "69535", + "mean": "21525", + "metadataAccession": "SRR30545906", + "min": "144", + "mmTag": true, + "n25": "19767", + "n50": "21621", + "n75": "23833", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/PacBio_HiFi/m84081_231117_193129_s1.hifi_reads.bc2082.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "19419", + "quartile50": "21200", + "quartile75": "23322", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG03710", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", + "subpopulation": "PJL", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "14225747009", - "totalGbp": "14.225747009", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "41300858534", + "totalGbp": "41.3", + "totalReads": "1918695", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN26237498", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "4.67", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237498", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20858-2_S16_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL013", + "filename": "m84081_231117_193129_s1.hifi_reads.bc2088.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-2_S16_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG01934_lib1_m84081_231117_193129_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242267", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.560394", + "libraryStrategy": "WGS", + "max": "63433", + "mean": "22817", + "metadataAccession": "SRR30545933", + "min": "107", + "mmTag": true, + "n25": "20985", + "n50": "23675", + "n75": "26666", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01934/raw_data/PacBio_HiFi/m84081_231117_193129_s1.hifi_reads.bc2088.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "20197", + "quartile50": "22847", + "quartile75": "25829", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG01934", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "14475540882", - "totalGbp": "14.475540882", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "41207695556", + "totalGbp": "41.21", + "totalReads": "1805975", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN26237510", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "4.67", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237510", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20858-2_S16_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB63", + "filename": "m84081_231117_193129_s1.hifi_reads.bc2089.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-2_S16_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG02809_lib1_m84081_231117_193129_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242267", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.564607", + "libraryStrategy": "WGS", + "max": "67253", + "mean": "23725", + "metadataAccession": "SRR30545938", + "min": "158", + "mmTag": true, + "n25": "21459", + "n50": "24506", + "n75": "28365", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/PacBio_HiFi/m84081_231117_193129_s1.hifi_reads.bc2089.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "20543", + "quartile50": "23412", + "quartile75": "27051", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG02809", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "14474485161", - "totalGbp": "14.474485161", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "30957915695", + "totalGbp": "30.96", + "totalReads": "1304855", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN26237513", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "11.95", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237513", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20858-2_S16i_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PK62", + "filename": "m84081_231117_201125_s2.hifi_reads.bc2082.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-2_S16i_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG03710_lib1_m84081_231117_201125_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242266", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.467558", + "libraryStrategy": "WGS", + "max": "70092", + "mean": "21532", + "metadataAccession": "SRR30545905", + "min": "79", + "mmTag": true, + "n25": "19769", + "n50": "21629", + "n75": "23842", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/PacBio_HiFi/m84081_231117_201125_s2.hifi_reads.bc2082.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "19418", + "quartile50": "21206", + "quartile75": "23329", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG03710", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", + "subpopulation": "PJL", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "37051047895", - "totalGbp": "37.051047895", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "41375220820", + "totalGbp": "41.38", + "totalReads": "1921559", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN26237498", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "11.95", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237498", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20858-2_S16i_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL013", + "filename": "m84081_231117_201125_s2.hifi_reads.bc2088.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-2_S16i_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG01934_lib1_m84081_231117_201125_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242266", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.425627", + "libraryStrategy": "WGS", + "max": "67040", + "mean": "22854", + "metadataAccession": "SRR30545932", + "min": "142", + "mmTag": true, + "n25": "21010", + "n50": "23692", + "n75": "26683", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01934/raw_data/PacBio_HiFi/m84081_231117_201125_s2.hifi_reads.bc2088.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "20225", + "quartile50": "22871", + "quartile75": "25852", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG01934", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "37048158449", - "totalGbp": "37.048158449", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "41361391990", + "totalGbp": "41.36", + "totalReads": "1809808", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN26237510", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "14.24", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237510", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20858-2_S16i_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB63", + "filename": "m84081_231117_201125_s2.hifi_reads.bc2089.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-2_S16i_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG02809_lib1_m84081_231117_201125_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242263", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.48385", + "libraryStrategy": "WGS", + "max": "72778", + "mean": "23769", + "metadataAccession": "SRR30545937", + "min": "141", + "mmTag": true, + "n25": "21483", + "n50": "24540", + "n75": "28403", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/PacBio_HiFi/m84081_231117_201125_s2.hifi_reads.bc2089.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "20569", + "quartile50": "23444", + "quartile75": "27091", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG02809", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "44137166906", - "totalGbp": "44.137166906", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "31123373445", + "totalGbp": "31.12", + "totalReads": "1309400", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN26237513", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "14.24", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237513", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20858-2_S16i_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PK62", + "filename": "m84081_231117_204232_s3.hifi_reads.bc2082.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-2_S16i_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG03710_lib1_m84081_231117_204232_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242263", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.435221", + "libraryStrategy": "WGS", + "max": "63910", + "mean": "21602", + "metadataAccession": "SRR30545904", + "min": "112", + "mmTag": true, + "n25": "19809", + "n50": "21684", + "n75": "23919", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03710/raw_data/PacBio_HiFi/m84081_231117_204232_s3.hifi_reads.bc2082.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "19460", + "quartile50": "21258", + "quartile75": "23396", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG03710", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", + "subpopulation": "PJL", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "44135016189", - "totalGbp": "44.135016189", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "44028183566", + "totalGbp": "44.03", + "totalReads": "2038064", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN26237498", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "11.26", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237498", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20858-2_S16i_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL013", + "filename": "m84081_231117_204232_s3.hifi_reads.bc2088.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-2_S16i_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG01934_lib1_m84081_231117_204232_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242261", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.494007", + "libraryStrategy": "WGS", + "max": "68010", + "mean": "23015", + "metadataAccession": "SRR30545930", + "min": "193", + "mmTag": true, + "n25": "21092", + "n50": "23797", + "n75": "26797", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01934/raw_data/PacBio_HiFi/m84081_231117_204232_s3.hifi_reads.bc2088.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "20331", + "quartile50": "22985", + "quartile75": "25974", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG01934", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "34914480186", - "totalGbp": "34.914480186", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "44464313716", + "totalGbp": "44.46", + "totalReads": "1931912", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN26237510", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "11.26", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237510", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20858-2_S16i_L003_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "GB63", + "filename": "m84081_231117_204232_s3.hifi_reads.bc2089.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-2_S16i_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG02809_lib1_m84081_231117_204232_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242261", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.448822", + "libraryStrategy": "WGS", + "max": "74661", + "mean": "23990", + "metadataAccession": "SRR30545936", + "min": "180", + "mmTag": true, + "n25": "21588", + "n50": "24689", + "n75": "28609", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02809/raw_data/PacBio_HiFi/m84081_231117_204232_s3.hifi_reads.bc2089.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "20695", + "quartile50": "23594", + "quartile75": "27285", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG02809", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "34912919193", - "totalGbp": "34.912919193", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "33718334951", + "totalGbp": "33.72", + "totalReads": "1405473", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN26237503", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "9.42", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237503", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20858-2_S16i_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "VN050", + "filename": "m84081_231117_211338_s4.hifi_reads.bc2081.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-2_S16i_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG02027_lib1_m84081_231117_211338_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242260", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.530554", + "libraryStrategy": "WGS", + "max": "62955", + "mean": "20089", + "metadataAccession": "SRR30545921", + "min": "146", + "mmTag": true, + "n25": "17721", + "n50": "20122", + "n75": "23397", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02027/raw_data/PacBio_HiFi/m84081_231117_211338_s4.hifi_reads.bc2081.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "17198", + "quartile50": "19345", + "quartile75": "22299", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG02027", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "29214946160", - "totalGbp": "29.21494616", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "28486046392", + "totalGbp": "28.49", + "totalReads": "1417952", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797095", - "assembly": null, + "accession": "SAMN26237491", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN37797095", - "ccsAlgorithm": "N/A", - "coverage": "9.42", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237491", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20858-2_S16i_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH042", + "filename": "m84081_231117_211338_s4.hifi_reads.bc2086.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20858-2_S16i_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG00544_lib1_m84081_231117_211338_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242260", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.443759", + "libraryStrategy": "WGS", + "max": "71001", + "mean": "23477", + "metadataAccession": "SRR30545924", + "min": "212", + "mmTag": true, + "n25": "20677", + "n50": "23972", + "n75": "28227", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m84081_231117_211338_s4.hifi_reads.bc2086.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "19731", + "quartile50": "22752", + "quartile75": "26649", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20858", + "sampleId": "HG00544", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20858", - "totalBp": "29213614599", - "totalGbp": "29.213614599", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "33637827992", + "totalGbp": "33.64", + "totalReads": "1432745", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021623", - "assembly": null, + "accession": "SAMN26237505", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021623", - "ccsAlgorithm": "N/A", - "coverage": "6.21", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237505", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20870-1_FC1_S3_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BB23", + "filename": "m84081_231117_211338_s4.hifi_reads.bc2087.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20870-1_FC1_S3_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG02280_lib1_m84081_231117_211338_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310873", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.494366", + "libraryStrategy": "WGS", + "max": "71362", + "mean": "23925", + "metadataAccession": "SRR30545900", + "min": "175", + "mmTag": true, + "n25": "21243", + "n50": "24260", + "n75": "28183", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/PacBio_HiFi/m84081_231117_211338_s4.hifi_reads.bc2087.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "20460", + "quartile50": "23249", + "quartile75": "26864", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20870", + "sampleId": "HG02280", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "ACB", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20870", - "totalBp": "19250551345", - "totalGbp": "19.250551345", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "54916346879", + "totalGbp": "54.92", + "totalReads": "2295296", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021623", - "assembly": null, + "accession": "SAMN41021683", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021623", - "ccsAlgorithm": "N/A", - "coverage": "6.34", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021683", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20870-1_FC2_S3_L002_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_231119_015049_s1.hifi_reads.bc2067.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20870-1_FC2_S3_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG03343_lib1_m84081_231119_015049_s1_m84081_231119_015049_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310872", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.533929", + "libraryStrategy": "WGS", + "max": "58315", + "mean": "21759", + "metadataAccession": "SRR29396891", + "min": "236", + "mmTag": true, + "n25": "19100", + "n50": "21896", + "n75": "25690", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231119_015049_s1.hifi_reads.bc2067.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "quartile25": "18472", + "quartile50": "20925", + "quartile75": "24369", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20870", + "sampleId": "HG03343", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "ESN", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20870", - "totalBp": "19643337377", - "totalGbp": "19.643337377", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "3829545883", + "totalGbp": "3.83", + "totalReads": "175994", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021623", - "assembly": null, + "accession": "SAMN26237507", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021623", - "ccsAlgorithm": "N/A", - "coverage": "11.39", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237507", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20870-2_FC1_S4_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PK09", + "filename": "m84081_231119_015049_s1.hifi_reads.bc2083.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20870-2_FC1_S4_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG02602_lib1_m84081_231119_015049_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310871", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.434158", + "libraryStrategy": "WGS", + "max": "67377", + "mean": "22346", + "metadataAccession": "SRR30545910", + "min": "193", + "mmTag": true, + "n25": "19644", + "n50": "22516", + "n75": "26372", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/PacBio_HiFi/m84081_231119_015049_s1.hifi_reads.bc2083.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "18942", + "quartile50": "21531", + "quartile75": "25016", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20870", + "sampleId": "HG02602", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", + "subpopulation": "PJL", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20870", - "totalBp": "35312248601", - "totalGbp": "35.312248601", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "27235147908", + "totalGbp": "27.24", + "totalReads": "1218758", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021623", - "assembly": null, + "accession": "SAMN26237514", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021623", - "ccsAlgorithm": "N/A", - "coverage": "11.5", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237514", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20870-2_FC2_S4_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD27", + "filename": "m84081_231119_015049_s1.hifi_reads.bc2084.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20870-2_FC2_S4_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG03831_lib1_m84081_231119_015049_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310870", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.469992", + "libraryStrategy": "WGS", + "max": "63666", + "mean": "20472", + "metadataAccession": "SRR30545909", + "min": "136", + "mmTag": true, + "n25": "18250", + "n50": "20729", + "n75": "23845", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/PacBio_HiFi/m84081_231119_015049_s1.hifi_reads.bc2084.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "17662", + "quartile50": "19953", + "quartile75": "22877", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20870", + "sampleId": "HG03831", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", + "subpopulation": "BEB", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20870", - "totalBp": "35658974952", - "totalGbp": "35.658974952", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "39835980192", + "totalGbp": "39.84", + "totalReads": "1945842", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": null, + "accession": "SAMN26237501", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "N/A", - "coverage": "1.12", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237501", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20905-1_S22_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL29", + "filename": "m84081_231119_015049_s1.hifi_reads.bc2085.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20905-1_S22_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG01993_lib1_m84081_231119_015049_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242282", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.748392", + "libraryStrategy": "WGS", + "max": "63598", + "mean": "21335", + "metadataAccession": "SRR30545942", + "min": "162", + "mmTag": true, + "n25": "18901", + "n50": "21553", + "n75": "25035", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/PacBio_HiFi/m84081_231119_015049_s1.hifi_reads.bc2085.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "18236", + "quartile50": "20676", + "quartile75": "23866", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "HG01993", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20905", - "totalBp": "3470106754", - "totalGbp": "3.470106754", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "33206085944", + "totalGbp": "33.21", + "totalReads": "1556380", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": null, + "accession": "SAMN41021683", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "N/A", - "coverage": "1.12", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021683", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20905-1_S22_L001_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_231119_022155_s2.hifi_reads.bc2067.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20905-1_S22_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG03343_lib1_m84081_231119_022155_s2_m84081_231119_022155_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242282", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.757607", + "libraryStrategy": "WGS", + "max": "59141", + "mean": "21766", + "metadataAccession": "SRR29396890", + "min": "105", + "mmTag": true, + "n25": "19070", + "n50": "21916", + "n75": "25762", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231119_022155_s2.hifi_reads.bc2067.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18430", + "quartile50": "20912", + "quartile75": "24406", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "HG03343", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "ESN", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20905", - "totalBp": "3469860160", - "totalGbp": "3.46986016", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "4116704775", + "totalGbp": "4.12", + "totalReads": "189126", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": null, + "accession": "SAMN26237507", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "N/A", - "coverage": "1.2", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237507", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20905-1_S22_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PK09", + "filename": "m84081_231119_022155_s2.hifi_reads.bc2083.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20905-1_S22_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG02602_lib1_m84081_231119_022155_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242281", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.753747", + "libraryStrategy": "WGS", + "max": "66930", + "mean": "22367", + "metadataAccession": "SRR30545908", + "min": "129", + "mmTag": true, + "n25": "19647", + "n50": "22536", + "n75": "26419", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/PacBio_HiFi/m84081_231119_022155_s2.hifi_reads.bc2083.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "18937", + "quartile50": "21544", + "quartile75": "25049", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "HG02602", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", + "subpopulation": "PJL", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20905", - "totalBp": "3720093206", - "totalGbp": "3.720093206", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "29397582754", + "totalGbp": "29.4", + "totalReads": "1314322", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": null, + "accession": "SAMN26237514", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "N/A", - "coverage": "1.2", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237514", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20905-1_S22_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD27", + "filename": "m84081_231119_022155_s2.hifi_reads.bc2084.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20905-1_S22_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG03831_lib1_m84081_231119_022155_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242281", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.747719", + "libraryStrategy": "WGS", + "max": "64065", + "mean": "20471", + "metadataAccession": "SRR30545903", + "min": "107", + "mmTag": true, + "n25": "18240", + "n50": "20726", + "n75": "23866", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/PacBio_HiFi/m84081_231119_022155_s2.hifi_reads.bc2084.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "17647", + "quartile50": "19942", + "quartile75": "22894", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "HG03831", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", + "subpopulation": "BEB", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20905", - "totalBp": "3719930534", - "totalGbp": "3.719930534", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "42938362831", + "totalGbp": "42.94", + "totalReads": "2097435", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": null, + "accession": "SAMN26237501", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "N/A", - "coverage": "1.2", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237501", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20905-1_S22_L003_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL29", + "filename": "m84081_231119_022155_s2.hifi_reads.bc2085.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20905-1_S22_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG01993_lib1_m84081_231119_022155_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242279", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.759788", + "libraryStrategy": "WGS", + "max": "71080", + "mean": "21333", + "metadataAccession": "SRR30545931", + "min": "95", + "mmTag": true, + "n25": "18887", + "n50": "21556", + "n75": "25055", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/PacBio_HiFi/m84081_231119_022155_s2.hifi_reads.bc2085.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "18218", + "quartile50": "20674", + "quartile75": "23879", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "HG01993", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20905", - "totalBp": "3720540280", - "totalGbp": "3.72054028", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "35862689658", + "totalGbp": "35.86", + "totalReads": "1681080", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": null, + "accession": "SAMN41021683", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "N/A", - "coverage": "1.2", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021683", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20905-1_S22_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_231119_025301_s3.hifi_reads.bc2067.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20905-1_S22_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG03343_lib1_m84081_231119_025301_s3_m84081_231119_025301_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242279", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.718086", + "libraryStrategy": "WGS", + "max": "51526", + "mean": "21808", + "metadataAccession": "SRR29396889", + "min": "528", + "mmTag": true, + "n25": "19107", + "n50": "21952", + "n75": "25819", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231119_025301_s3.hifi_reads.bc2067.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18462", + "quartile50": "20945", + "quartile75": "24475", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "HG03343", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "ESN", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20905", - "totalBp": "3720373007", - "totalGbp": "3.720373007", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "3912424496", + "totalGbp": "3.91", + "totalReads": "179401", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": null, + "accession": "SAMN26237507", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "N/A", - "coverage": "1.19", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237507", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20905-1_S22_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PK09", + "filename": "m84081_231119_025301_s3.hifi_reads.bc2083.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20905-1_S22_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG02602_lib1_m84081_231119_025301_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242278", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.730382", + "libraryStrategy": "WGS", + "max": "69941", + "mean": "22380", + "metadataAccession": "SRR30545907", + "min": "126", + "mmTag": true, + "n25": "19658", + "n50": "22557", + "n75": "26449", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02602/raw_data/PacBio_HiFi/m84081_231119_025301_s3.hifi_reads.bc2083.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "18946", + "quartile50": "21554", + "quartile75": "25078", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "HG02602", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", + "subpopulation": "PJL", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20905", - "totalBp": "3675727312", - "totalGbp": "3.675727312", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "27920059129", + "totalGbp": "27.92", + "totalReads": "1247529", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": null, + "accession": "SAMN26237514", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "N/A", - "coverage": "1.19", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237514", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20905-1_S22_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BD27", + "filename": "m84081_231119_025301_s3.hifi_reads.bc2084.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20905-1_S22_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG03831_lib1_m84081_231119_025301_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242278", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.765865", + "libraryStrategy": "WGS", + "max": "58345", + "mean": "20491", + "metadataAccession": "SRR30545902", + "min": "100", + "mmTag": true, + "n25": "18256", + "n50": "20748", + "n75": "23881", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03831/raw_data/PacBio_HiFi/m84081_231119_025301_s3.hifi_reads.bc2084.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "17666", + "quartile50": "19965", + "quartile75": "22916", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "HG03831", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", + "subpopulation": "BEB", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20905", - "totalBp": "3675576738", - "totalGbp": "3.675576738", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "40742385738", + "totalGbp": "40.74", + "totalReads": "1988225", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": null, + "accession": "SAMN26237501", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "N/A", - "coverage": "3.05", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237501", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20905-2_S30_L001_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL29", + "filename": "m84081_231119_025301_s3.hifi_reads.bc2085.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20905-2_S30_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG01993_lib1_m84081_231119_025301_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242277", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.643335", + "libraryStrategy": "WGS", + "max": "65649", + "mean": "21364", + "metadataAccession": "SRR30545920", + "min": "64", + "mmTag": true, + "n25": "18909", + "n50": "21586", + "n75": "25095", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01993/raw_data/PacBio_HiFi/m84081_231119_025301_s3.hifi_reads.bc2085.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "18240", + "quartile50": "20694", + "quartile75": "23916", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "HG01993", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20905", - "totalBp": "9453142449", - "totalGbp": "9.453142449", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "34049612903", + "totalGbp": "34.05", + "totalReads": "1593745", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": null, + "accession": "SAMN26237503", + "assembly": "N/A", "basecaller": "N/A", - "basecallerModel": "N/A", - "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "N/A", - "coverage": "3.05", + "basecallerModel": "N/A", + "basecallerVersion": "N/A", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237503", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20905-2_S30_L001_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "VN050", + "filename": "m84081_231119_032407_s4.hifi_reads.bc2081.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20905-2_S30_L001", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG02027_lib1_m84081_231119_032407_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242277", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.581919", + "libraryStrategy": "WGS", + "max": "60932", + "mean": "20001", + "metadataAccession": "SRR30545919", + "min": "116", + "mmTag": true, + "n25": "17652", + "n50": "20028", + "n75": "23278", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02027/raw_data/PacBio_HiFi/m84081_231119_032407_s4.hifi_reads.bc2081.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "17137", + "quartile50": "19254", + "quartile75": "22198", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "HG02027", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20905", - "totalBp": "9452410580", - "totalGbp": "9.45241058", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "27723436595", + "totalGbp": "27.72", + "totalReads": "1386086", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": null, + "accession": "SAMN26237491", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "N/A", - "coverage": "3.34", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237491", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20905-2_S30_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH042", + "filename": "m84081_231119_032407_s4.hifi_reads.bc2086.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20905-2_S30_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG00544_lib1_m84081_231119_032407_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242276", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.631089", + "libraryStrategy": "WGS", + "max": "68993", + "mean": "23348", + "metadataAccession": "SRR30545923", + "min": "82", + "mmTag": true, + "n25": "20584", + "n50": "23838", + "n75": "28051", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m84081_231119_032407_s4.hifi_reads.bc2086.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "19633", + "quartile50": "22640", + "quartile75": "26491", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "HG00544", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20905", - "totalBp": "10369296228", - "totalGbp": "10.369296228", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "31954910533", + "totalGbp": "31.95", + "totalReads": "1368621", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": null, + "accession": "SAMN26237505", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "N/A", - "coverage": "3.34", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237505", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20905-2_S30_L002_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "BB23", + "filename": "m84081_231119_032407_s4.hifi_reads.bc2087.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20905-2_S30_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG02280_lib1_m84081_231119_032407_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242276", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.622021", + "libraryStrategy": "WGS", + "max": "69282", + "mean": "23809", + "metadataAccession": "SRR30545952", + "min": "149", + "mmTag": true, + "n25": "21160", + "n50": "24145", + "n75": "28018", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG02280/raw_data/PacBio_HiFi/m84081_231119_032407_s4.hifi_reads.bc2087.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "20385", + "quartile50": "23146", + "quartile75": "26712", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "HG02280", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "ACB", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20905", - "totalBp": "10368742664", - "totalGbp": "10.368742664", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "52021053224", + "totalGbp": "52.02", + "totalReads": "2184925", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": null, + "accession": "SAMN41021682", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "N/A", - "coverage": "3.35", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41021682", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20905-2_S30_L003_R1_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_231122_210358_s4.hifi_reads.bc2066.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20905-2_S30_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA19099_lib1_m84081_231122_210358_s4_m84081_231122_210358_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242275", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.625653", + "libraryStrategy": "WGS", + "max": "67431", + "mean": "20194", + "metadataAccession": "SRR29396865", + "min": "109", + "mmTag": true, + "n25": "17827", + "n50": "20119", + "n75": "23306", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/NA19099/raw_data/PacBio_HiFi/m84081_231122_210358_s4.hifi_reads.bc2066.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17394", + "quartile50": "19399", + "quartile75": "22303", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "NA19099", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "YRI", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20905", - "totalBp": "10376173970", - "totalGbp": "10.37617397", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "29875159090", + "totalGbp": "29.88", + "totalReads": "1479407", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": null, + "accession": null, + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "N/A", - "coverage": "3.35", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN41708787", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", + "deepConsensusVersion": "", + "designDescription": "sequencing of 20 kb fractionated", "familyId": null, - "filename": "NA20905-2_S30_L003_R2_001.fastq.gz", - "filetype": "fastq", + "filename": "m84081_231122_210358_s4.hifi_reads.bc2068.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20905-2_S30_L003", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG01785_lib1_m84081_231122_210358_s4_m84081_231122_210358_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242275", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.588899", + "libraryStrategy": "WGS", + "max": "60041", + "mean": "18654", + "metadataAccession": "SRR29396904", + "min": "129", + "mmTag": true, + "n25": "16721", + "n50": "18558", + "n75": "21059", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01785/raw_data/PacBio_HiFi/m84081_231122_210358_s4.hifi_reads.bc2068.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": null, + "quartile25": "16385", + "quartile50": "18051", + "quartile75": "20338", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "HG01785", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20905", - "totalBp": "10375607032", - "totalGbp": "10.375607032", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "37653152376", + "totalGbp": "37.65", + "totalReads": "2018483", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": null, + "accession": "SAMN26237499", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "N/A", - "coverage": "3.29", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237499", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20905-2_S30_L004_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL016", + "filename": "m84081_231122_210358_s4.hifi_reads.bc2093.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20905-2_S30_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG01943_lib1_m84081_231122_210358_s4", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242274", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.633477", + "libraryStrategy": "WGS", + "max": "70540", + "mean": "19512", + "metadataAccession": "SRR30545935", + "min": "67", + "mmTag": true, + "n25": "17362", + "n50": "19570", + "n75": "22570", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/PacBio_HiFi/m84081_231122_210358_s4.hifi_reads.bc2093.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "16886", + "quartile50": "18887", + "quartile75": "21632", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "HG01943", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20905", - "totalBp": "10205773998", - "totalGbp": "10.205773998", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "47157222479", + "totalGbp": "47.16", + "totalReads": "2416778", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN33758801", - "assembly": null, + "accession": "SAMN26237492", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN33758801", - "ccsAlgorithm": "N/A", - "coverage": "3.29", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237492", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA20905-2_S30_L004_R2_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH062", + "filename": "m84081_231124_014115_s1.hifi_reads.bc2090.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA20905-2_S30_L004", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG00609_lib1_m84081_231124_014115_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30242274", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.582213", + "libraryStrategy": "WGS", + "max": "59948", + "mean": "18733", + "metadataAccession": "SRR30545950", + "min": "72", + "mmTag": true, + "n25": "16709", + "n50": "18828", + "n75": "21539", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR3", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/PacBio_HiFi/m84081_231124_014115_s1.hifi_reads.bc2090.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "16280", + "quartile50": "18205", + "quartile75": "20764", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20905", + "sampleId": "HG00609", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA20905", - "totalBp": "10205214056", - "totalGbp": "10.205214056", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "34098339820", + "totalGbp": "34.1", + "totalReads": "1820209", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021627", - "assembly": null, + "accession": "SAMN26237500", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021627", - "ccsAlgorithm": "N/A", - "coverage": "5.68", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237500", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA21093-1_FC1_S9_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL27", + "filename": "m84081_231124_014115_s1.hifi_reads.bc2091.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA21093-1_FC1_S9_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG01981_lib1_m84081_231124_014115_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310869", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.532711", + "libraryStrategy": "WGS", + "max": "66246", + "mean": "20488", + "metadataAccession": "SRR30545947", + "min": "180", + "mmTag": true, + "n25": "18003", + "n50": "20501", + "n75": "24009", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/PacBio_HiFi/m84081_231124_014115_s1.hifi_reads.bc2091.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "17481", + "quartile50": "19672", + "quartile75": "22844", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21093", + "sampleId": "HG01981", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA21093", - "totalBp": "17618029190", - "totalGbp": "17.61802919", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "26663110951", + "totalGbp": "26.66", + "totalReads": "1301338", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021627", - "assembly": null, + "accession": "SAMN26237494", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021627", - "ccsAlgorithm": "N/A", - "coverage": "5.73", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237494", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA21093-1_FC2_S9_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PR31", + "filename": "m84081_231124_014115_s1.hifi_reads.bc2092.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA21093-1_FC2_S9_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG01099_lib1_m84081_231124_014115_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310868", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.494601", + "libraryStrategy": "WGS", + "max": "65560", + "mean": "20414", + "metadataAccession": "SRR30545941", + "min": "136", + "mmTag": true, + "n25": "18086", + "n50": "20462", + "n75": "23738", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/PacBio_HiFi/m84081_231124_014115_s1.hifi_reads.bc2092.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "17595", + "quartile50": "19705", + "quartile75": "22703", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21093", + "sampleId": "HG01099", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA21093", - "totalBp": "17763157706", - "totalGbp": "17.763157706", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "28489780521", + "totalGbp": "28.49", + "totalReads": "1395535", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021627", - "assembly": null, + "accession": "SAMN26237512", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021627", - "ccsAlgorithm": "N/A", - "coverage": "6.3", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237512", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA21093-2_FC1_S10_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PK58", + "filename": "m84081_231124_014115_s1.hifi_reads.default.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA21093-2_FC1_S10_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG03669_lib1_m84081_231124_014115_s1", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310867", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.453901", + "libraryStrategy": "WGS", + "max": "54743", + "mean": "17394", + "metadataAccession": "SRR30545928", + "min": "201", + "mmTag": true, + "n25": "15909", + "n50": "17478", + "n75": "19374", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/PacBio_HiFi/m84081_231124_014115_s1.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "15622", + "quartile50": "17109", + "quartile75": "18938", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21093", + "sampleId": "HG03669", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", + "subpopulation": "PJL", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA21093", - "totalBp": "19541671946", - "totalGbp": "19.541671946", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "34056799813", + "totalGbp": "34.06", + "totalReads": "1957934", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021627", - "assembly": null, + "accession": "SAMN26237492", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021627", - "ccsAlgorithm": "N/A", - "coverage": "6.24", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237492", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA21093-2_FC2_S10_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH062", + "filename": "m84081_231124_021221_s2.hifi_reads.bc2090.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA21093-2_FC2_S10_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG00609_lib1_m84081_231124_021221_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310866", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.475376", + "libraryStrategy": "WGS", + "max": "67625", + "mean": "18858", + "metadataAccession": "SRR30545949", + "min": "372", + "mmTag": true, + "n25": "16798", + "n50": "18968", + "n75": "21718", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/PacBio_HiFi/m84081_231124_021221_s2.hifi_reads.bc2090.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "16359", + "quartile50": "18327", + "quartile75": "20935", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21093", + "sampleId": "HG00609", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA21093", - "totalBp": "19354976452", - "totalGbp": "19.354976452", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "29066645095", + "totalGbp": "29.07", + "totalReads": "1541278", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021629", - "assembly": null, + "accession": "SAMN26237500", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021629", - "ccsAlgorithm": "N/A", - "coverage": "7.29", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237500", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA21106-1_FC1_S11_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL27", + "filename": "m84081_231124_021221_s2.hifi_reads.bc2091.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA21106-1_FC1_S11_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG01981_lib1_m84081_231124_021221_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310864", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.457198", + "libraryStrategy": "WGS", + "max": "67373", + "mean": "20652", + "metadataAccession": "SRR30545946", + "min": "271", + "mmTag": true, + "n25": "18122", + "n50": "20703", + "n75": "24261", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/PacBio_HiFi/m84081_231124_021221_s2.hifi_reads.bc2091.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "17577", + "quartile50": "19837", + "quartile75": "23082", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21106", + "sampleId": "HG01981", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA21106", - "totalBp": "22600425794", - "totalGbp": "22.600425794", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "23199356437", + "totalGbp": "23.2", + "totalReads": "1123309", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021629", - "assembly": null, + "accession": "SAMN26237494", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021629", - "ccsAlgorithm": "N/A", - "coverage": "7.48", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237494", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA21106-1_FC2_S11_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PR31", + "filename": "m84081_231124_021221_s2.hifi_reads.bc2092.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA21106-1_FC2_S11_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG01099_lib1_m84081_231124_021221_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310863", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.452267", + "libraryStrategy": "WGS", + "max": "62796", + "mean": "20566", + "metadataAccession": "SRR30545940", + "min": "116", + "mmTag": true, + "n25": "18200", + "n50": "20646", + "n75": "23950", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/PacBio_HiFi/m84081_231124_021221_s2.hifi_reads.bc2092.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "17693", + "quartile50": "19863", + "quartile75": "22908", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21106", + "sampleId": "HG01099", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA21106", - "totalBp": "23180756242", - "totalGbp": "23.180756242", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "24840004278", + "totalGbp": "24.84", + "totalReads": "1207816", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021629", - "assembly": null, + "accession": "SAMN26237512", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021629", - "ccsAlgorithm": "N/A", - "coverage": "7.2", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237512", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA21106-2_FC1_S12_L002_R1_001.fastq.gz", - "filetype": "fastq", - "fiveHundredkbPlus": "N/A", - "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA21106-2_FC1_S12_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PK58", + "filename": "m84081_231124_021221_s2.hifi_reads.default.bam", + "filetype": "N/A", + "fiveHundredkbPlus": "N/A", + "fourHundredkbPlus": "N/A", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG03669_lib1_m84081_231124_021221_s2", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310862", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.456851", + "libraryStrategy": "WGS", + "max": "59943", + "mean": "17469", + "metadataAccession": "SRR30545927", + "min": "283", + "mmTag": true, + "n25": "15962", + "n50": "17548", + "n75": "19465", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/PacBio_HiFi/m84081_231124_021221_s2.hifi_reads.default.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "15673", + "quartile50": "17173", + "quartile75": "19020", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21106", + "sampleId": "HG03669", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", + "subpopulation": "PJL", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA21106", - "totalBp": "22320651031", - "totalGbp": "22.320651031", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "28467031205", + "totalGbp": "28.47", + "totalReads": "1629525", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021629", - "assembly": null, + "accession": "SAMN26237492", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021629", - "ccsAlgorithm": "N/A", - "coverage": "7.29", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237492", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA21106-2_FC2_S12_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "SH062", + "filename": "m84081_231124_024327_s3.hifi_reads.bc2090.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA21106-2_FC2_S12_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG00609_lib1_m84081_231124_024327_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310861", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.524822", + "libraryStrategy": "WGS", + "max": "61605", + "mean": "18829", + "metadataAccession": "SRR30545948", + "min": "161", + "mmTag": true, + "n25": "16780", + "n50": "18941", + "n75": "21681", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG00609/raw_data/PacBio_HiFi/m84081_231124_024327_s3.hifi_reads.bc2090.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "16343", + "quartile50": "18304", + "quartile75": "20897", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21106", + "sampleId": "HG00609", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA21106", - "totalBp": "22591797805", - "totalGbp": "22.591797805", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "32225609248", + "totalGbp": "32.23", + "totalReads": "1711422", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021624", - "assembly": null, + "accession": "SAMN26237500", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021624", - "ccsAlgorithm": "N/A", - "coverage": "5.12", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237500", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA21110-1_FC1_S1_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PEL27", + "filename": "m84081_231124_024327_s3.hifi_reads.bc2091.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA21110-1_FC1_S1_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG01981_lib1_m84081_231124_024327_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310860", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.476082", + "libraryStrategy": "WGS", + "max": "70539", + "mean": "20607", + "metadataAccession": "SRR30545945", + "min": "189", + "mmTag": true, + "n25": "18094", + "n50": "20656", + "n75": "24193", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01981/raw_data/PacBio_HiFi/m84081_231124_024327_s3.hifi_reads.bc2091.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "17557", + "quartile50": "19804", + "quartile75": "23026", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21110", + "sampleId": "HG01981", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA21110", - "totalBp": "15872921435", - "totalGbp": "15.872921435", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "25563787489", + "totalGbp": "25.56", + "totalReads": "1240482", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN41021624", - "assembly": null, + "accession": "SAMN26237494", + "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", - "bioprojectAccession": "PRJNA701308", - "biosampleAccession": "SAMN41021624", - "ccsAlgorithm": "N/A", - "coverage": "5.12", + "bioprojectAccession": "N/A", + "biosampleAccession": "SAMN26237494", + "ccsAlgorithm": "7.0.0", + "coverage": "N/A", "dataType": "unaligned reads", - "deepConsensusVersion": "N/A", - "designDescription": "Illumina Sequencing of Omni-C Libraries", - "familyId": null, - "filename": "NA21110-1_FC2_S1_L002_R1_001.fastq.gz", - "filetype": "fastq", + "deepConsensusVersion": "", + "designDescription": "HiFi sequencing of 20kb fractionated gDNA", + "familyId": "PR31", + "filename": "m84081_231124_024327_s3.hifi_reads.bc2092.bam", + "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "wseligma@ucsc.edu", - "generatorFacility": "University of California Santa Cruz", - "instrumentModel": "Illumina NovaSeq 6000", - "libraryId": "NA21110-1_FC2_S1_L002", - "libraryLayout": "paired", - "librarySelection": "RANDOM", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG01099_lib1_m84081_231124_024327_s3", + "libraryLayout": "single", + "librarySelection": "size fractionation", "librarySource": "GENOMIC", - "libraryStrategy": "Hi-C", - "max": "N/A", - "mean": "N/A", - "metadataAccession": "SRR30310859", - "min": "N/A", - "mmTag": "N/A", - "n25": "N/A", - "n50": "N/A", - "n75": "N/A", - "notes": "N/A", - "ntsmResult": "Similar", - "ntsmScore": "0.512692", + "libraryStrategy": "WGS", + "max": "60779", + "mean": "20528", + "metadataAccession": "SRR30545939", + "min": "102", + "mmTag": true, + "n25": "18176", + "n50": "20600", + "n75": "23890", + "notes": "", + "ntsmResult": "N/A", + "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "N/A", - "platform": "ILLUMINA", - "polymeraseVersion": "N/A", - "productionYear": "YR4", - "quartile25": "N/A", - "quartile50": "N/A", - "quartile75": "N/A", + "path": "s3://human-pangenomics/working/HPRC/HG01099/raw_data/PacBio_HiFi/m84081_231124_024327_s3.hifi_reads.bc2092.bam", + "platform": "PACBIO_SMRT", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "17673", + "quartile50": "19827", + "quartile75": "22859", "readN50": "N/A", "result": "N/A", - "sampleId": "NA21110", + "sampleId": "HG01099", "seqKit": "N/A", - "seqPlateChemistryVersion": "N/A", - "shearMethod": "no shear", - "sizeSelection": "N/A", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GIH", - "superpopulation": "SAS", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", - "title": "Illumina Sequencing of Omni-C Libraries of NA21110", - "totalBp": "15872702636", - "totalGbp": "15.872702636", - "totalReads": "N/A", + "title": "N/A", + "totalBp": "27322084177", + "totalGbp": "27.32", + "totalReads": "1330914", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706910", + "accession": "SAMN26237512", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706910", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237512", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD53", - "filename": "m54306Ue_210713_140744.5mc.hifi_reads.bam", + "familyId": "PK58", + "filename": "m84081_231124_024327_s3.hifi_reads.default.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG04160_PB1_m54306Ue_210713_140744", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG03669_lib1_m84081_231124_024327_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "53687", - "mean": "16108", - "metadataAccession": "SRR30151640", - "min": "86", + "max": "54709", + "mean": "17452", + "metadataAccession": "SRR30545926", + "min": "185", "mmTag": true, - "n25": "14021", - "n50": "16378", - "n75": "19452", + "n25": "15956", + "n50": "17537", + "n75": "19443", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m54306Ue_210713_140744.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03669/raw_data/PacBio_HiFi/m84081_231124_024327_s3.hifi_reads.default.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", + "polymeraseVersion": "Revio P1", "productionYear": "YR2", - "quartile25": "13392", - "quartile50": "15498", - "quartile75": "18313", + "quartile25": "15666", + "quartile50": "17164", + "quartile75": "19002", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04160", + "sampleId": "HG03669", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", + "subpopulation": "PJL", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26720127719", - "totalGbp": "26.72", - "totalReads": "1658709", + "totalBp": "31900342554", + "totalGbp": "31.9", + "totalReads": "1827869", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706910", + "accession": "SAMN41021682", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706910", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021682", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD53", - "filename": "m54306Ue_210715_000620.5mc.hifi_reads.bam", + "designDescription": "sequencing of 20 kb fractionated", + "familyId": null, + "filename": "m84081_231124_031433_s4.hifi_reads.bc2066.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG04160_PB1_m54306Ue_210715_000620", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA19099_lib1_m84081_231124_031433_s4_m84081_231124_031433_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "48768", - "mean": "15596", - "metadataAccession": "SRR30151639", - "min": "86", + "max": "58771", + "mean": "20121", + "metadataAccession": "SRR29396867", + "min": "159", "mmTag": true, - "n25": "13549", - "n50": "15822", - "n75": "18840", + "n25": "17785", + "n50": "20050", + "n75": "23188", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m54306Ue_210715_000620.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19099/raw_data/PacBio_HiFi/m84081_231124_031433_s4.hifi_reads.bc2066.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "12940", - "quartile50": "14970", - "quartile75": "17686", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17362", + "quartile50": "19344", + "quartile75": "22214", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04160", + "sampleId": "NA19099", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "YRI", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "22925478214", - "totalGbp": "22.93", - "totalReads": "1469884", + "totalBp": "32997796125", + "totalGbp": "33", + "totalReads": "1639967", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706907", + "accession": null, "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706907", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41708787", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD18", - "filename": "m54306Ue_210716_134443.5mc.hifi_reads.bam", + "designDescription": "sequencing of 20 kb fractionated", + "familyId": null, + "filename": "m84081_231124_031433_s4.hifi_reads.bc2068.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03804_PB1_m54306Ue_210716_134443", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG01785_lib1_m84081_231124_031433_s4_m84081_231124_031433_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "52699", - "mean": "17277", - "metadataAccession": "SRR30151631", - "min": "86", + "max": "60926", + "mean": "18608", + "metadataAccession": "SRR29396902", + "min": "96", "mmTag": true, - "n25": "14779", - "n50": "17694", - "n75": "21423", + "n25": "16693", + "n50": "18507", + "n75": "21003", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m54306Ue_210716_134443.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01785/raw_data/PacBio_HiFi/m84081_231124_031433_s4.hifi_reads.bc2068.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13889", - "quartile50": "16482", - "quartile75": "19841", + "polymeraseVersion": "Revio P1", + "productionYear": null, + "quartile25": "16363", + "quartile50": "18008", + "quartile75": "20291", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03804", + "sampleId": "HG01785", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "21523857623", - "totalGbp": "21.52", - "totalReads": "1245794", + "totalBp": "41997271684", + "totalGbp": "42", + "totalReads": "2256941", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706908", + "accession": "SAMN26237499", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706908", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN26237499", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD22", - "filename": "m54306Ue_210723_183738.5mc.hifi_reads.bam", + "familyId": "PEL016", + "filename": "m84081_231124_031433_s4.hifi_reads.bc2093.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03816_PB3_m54306Ue_210723_183738", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University", + "instrumentModel": "Revio", + "libraryId": "HG01943_lib1_m84081_231124_031433_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "54660", - "mean": "16321", - "metadataAccession": "SRR30151649", - "min": "85", + "max": "72635", + "mean": "19448", + "metadataAccession": "SRR30545934", + "min": "91", "mmTag": true, - "n25": "13886", - "n50": "16911", - "n75": "20654", + "n25": "17318", + "n50": "19508", + "n75": "22480", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m54306Ue_210723_183738.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01943/raw_data/PacBio_HiFi/m84081_231124_031433_s4.hifi_reads.bc2093.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", + "polymeraseVersion": "Revio P1", "productionYear": "YR2", - "quartile25": "12872", - "quartile50": "15561", - "quartile75": "18986", + "quartile25": "16851", + "quartile50": "18834", + "quartile75": "21555", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03816", + "sampleId": "HG01943", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "24450898193", - "totalGbp": "24.45", - "totalReads": "1498091", + "totalBp": "52079665150", + "totalGbp": "52.08", + "totalReads": "2677782", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706909", + "accession": "SAMN41021607", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706909", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021607", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD52", - "filename": "m54306Ue_210725_040349.5mc.hifi_reads.bam", + "designDescription": "sequencing of 20 kb fractionated", + "familyId": null, + "filename": "m84081_231207_200206_s1.hifi_reads.bc2008.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG04157_PB3_m54306Ue_210725_040349", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA19909_lib1_m84081_231207_200206_s1_m84081_231207_200206_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "54115", - "mean": "16688", - "metadataAccession": "SRR30151645", - "min": "75", + "max": "64325", + "mean": "18557", + "metadataAccession": "SRR29396846", + "min": "194", "mmTag": true, - "n25": "14238", - "n50": "17292", - "n75": "21051", + "n25": "16382", + "n50": "18616", + "n75": "21670", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210725_040349.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_231207_200206_s1.hifi_reads.bc2008.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13219", - "quartile50": "15942", - "quartile75": "19398", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "15890", + "quartile50": "17884", + "quartile75": "20653", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04157", + "sampleId": "NA19909", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "ASW", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "27148740947", - "totalGbp": "27.15", - "totalReads": "1626778", + "totalBp": "117981479384", + "totalGbp": "117.98", + "totalReads": "6357730", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706909", + "accession": "SAMN41021699", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706909", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021699", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD52", - "filename": "m54306Ue_210727_144948.5mc.hifi_reads.bam", + "designDescription": "sequencing of 20 kb fractionated", + "familyId": null, + "filename": "m84081_231207_203234_s2.hifi_reads.bc2004.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG04157_PB3_m54306Ue_210727_144948", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG03919_lib1_m84081_231207_203234_s2_m84081_231207_203234_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "62026", - "mean": "16741", - "metadataAccession": "SRR30151644", - "min": "55", + "max": "72543", + "mean": "21199", + "metadataAccession": "SRR29396882", + "min": "76", "mmTag": true, - "n25": "14290", - "n50": "17339", - "n75": "21092", + "n25": "18620", + "n50": "21241", + "n75": "24890", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210727_144948.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03919/raw_data/PacBio_HiFi/m84081_231207_203234_s2.hifi_reads.bc2004.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13280", - "quartile50": "15994", - "quartile75": "19456", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18059", + "quartile50": "20357", + "quartile75": "23658", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04157", + "sampleId": "HG03919", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", "subpopulation": "BEB", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "27655706749", - "totalGbp": "27.66", - "totalReads": "1651932", + "totalBp": "140544542753", + "totalGbp": "140.54", + "totalReads": "6629555", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706909", + "accession": "SAMN41021700", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706909", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021700", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD52", - "filename": "m54306Ue_210729_003128.5mc.hifi_reads.bam", + "designDescription": "sequencing of 20 kb fractionated", + "familyId": null, + "filename": "m84081_231207_210341_s3.hifi_reads.bc2003.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG04157_PB3_m54306Ue_210729_003128", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG03388_lib1_m84081_231207_210341_s3_m84081_231207_210341_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "53734", - "mean": "16595", - "metadataAccession": "SRR30151643", - "min": "47", + "max": "72686", + "mean": "20836", + "metadataAccession": "SRR29396888", + "min": "162", "mmTag": true, - "n25": "14137", - "n50": "17191", - "n75": "20961", + "n25": "18380", + "n50": "20864", + "n75": "24295", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210729_003128.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03388/raw_data/PacBio_HiFi/m84081_231207_210341_s3.hifi_reads.bc2003.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13121", - "quartile50": "15831", - "quartile75": "19295", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17871", + "quartile50": "20053", + "quartile75": "23185", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04157", + "sampleId": "HG03388", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "MSL", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "25986857190", - "totalGbp": "25.99", - "totalReads": "1565878", + "totalBp": "129702255571", + "totalGbp": "129.7", + "totalReads": "6224816", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706909", + "accession": "SAMN41021700", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706909", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021700", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD52", - "filename": "m54306Ue_210730_180007.5mc.hifi_reads.bam", + "designDescription": "sequencing of 20 kb fractionated", + "familyId": null, + "filename": "m84081_231207_213447_s4.hifi_reads.bc2003.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG04157_PB3_m54306Ue_210730_180007", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG03388_lib1_m84081_231207_213447_s4_m84081_231207_213447_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "55237", - "mean": "16134", - "metadataAccession": "SRR30151642", - "min": "50", + "max": "73270", + "mean": "20845", + "metadataAccession": "SRR29396887", + "min": "69", "mmTag": true, - "n25": "13675", - "n50": "16708", - "n75": "20522", + "n25": "18383", + "n50": "20870", + "n75": "24306", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210730_180007.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03388/raw_data/PacBio_HiFi/m84081_231207_213447_s4.hifi_reads.bc2003.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "12673", - "quartile50": "15325", - "quartile75": "18788", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17874", + "quartile50": "20060", + "quartile75": "23196", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04157", + "sampleId": "HG03388", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "MSL", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26908338226", - "totalGbp": "26.91", - "totalReads": "1667725", + "totalBp": "120724810545", + "totalGbp": "120.72", + "totalReads": "5791516", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706906", + "accession": "SAMN41021685", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706906", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021685", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB40", - "filename": "m54306Ue_210801_045414.5mc.hifi_reads.bam", + "designDescription": "sequencing of 20 kb fractionated", + "familyId": null, + "filename": "m84081_231209_021158_s1.hifi_reads.bc2001.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02668_PB1_m54306Ue_210801_045414", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA19834_lib1_m84081_231209_021158_s1_m84081_231209_021158_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57148", - "mean": "17510", - "metadataAccession": "SRR30151635", - "min": "84", + "max": "74893", + "mean": "20177", + "metadataAccession": "SRR29396870", + "min": "121", "mmTag": true, - "n25": "15138", - "n50": "18066", - "n75": "21647", + "n25": "17383", + "n50": "20239", + "n75": "24086", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m54306Ue_210801_045414.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19834/raw_data/PacBio_HiFi/m84081_231209_021158_s1.hifi_reads.bc2001.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "14207", - "quartile50": "16874", - "quartile75": "20215", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16746", + "quartile50": "19185", + "quartile75": "22651", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02668", + "sampleId": "NA19834", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", + "subpopulation": "ASW", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26571933038", - "totalGbp": "26.57", - "totalReads": "1517517", + "totalBp": "126557623344", + "totalGbp": "126.56", + "totalReads": "6272240", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706906", + "accession": "SAMN41021685", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706906", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021685", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB40", - "filename": "m54306Ue_210802_164702.5mc.hifi_reads.bam", + "designDescription": "sequencing of 20 kb fractionated", + "familyId": null, + "filename": "m84081_231209_024304_s2.hifi_reads.bc2001.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02668_PB1_m54306Ue_210802_164702", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "NA19834_lib1_m84081_231209_024304_s2_m84081_231209_024304_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "61042", - "mean": "16391", - "metadataAccession": "SRR30151634", - "min": "64", + "max": "75079", + "mean": "20104", + "metadataAccession": "SRR29396871", + "min": "71", "mmTag": true, - "n25": "14047", - "n50": "16832", - "n75": "20429", + "n25": "17317", + "n50": "20155", + "n75": "24001", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m54306Ue_210802_164702.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19834/raw_data/PacBio_HiFi/m84081_231209_024304_s2.hifi_reads.bc2001.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13178", - "quartile50": "15654", - "quartile75": "18901", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16688", + "quartile50": "19103", + "quartile75": "22563", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02668", + "sampleId": "NA19834", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", + "subpopulation": "ASW", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "27022607363", - "totalGbp": "27.02", - "totalReads": "1648600", + "totalBp": "132283331917", + "totalGbp": "132.28", + "totalReads": "6579738", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706906", + "accession": "SAMN41021698", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706906", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021698", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB40", - "filename": "m54306Ue_210804_021745.5mc.hifi_reads.bam", + "designDescription": "sequencing of 20 kb fractionated", + "familyId": null, + "filename": "m84081_231209_031410_s3.hifi_reads.bc2002.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02668_PB1_m54306Ue_210804_021745", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG01798_lib1_m84081_231209_031410_s3_m84081_231209_031410_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "61259", - "mean": "16535", - "metadataAccession": "SRR30151633", - "min": "86", + "max": "72053", + "mean": "20511", + "metadataAccession": "SRR29396899", + "min": "88", "mmTag": true, - "n25": "14180", - "n50": "16991", - "n75": "20616", + "n25": "17915", + "n50": "20556", + "n75": "24118", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m54306Ue_210804_021745.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01798/raw_data/PacBio_HiFi/m84081_231209_031410_s3.hifi_reads.bc2002.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13297", - "quartile50": "15799", - "quartile75": "19074", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17361", + "quartile50": "19647", + "quartile75": "22911", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02668", + "sampleId": "HG01798", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "19183912203", - "totalGbp": "19.18", - "totalReads": "1160173", + "totalBp": "131487040767", + "totalGbp": "131.49", + "totalReads": "6410544", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797107", + "accession": "SAMN41021698", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797107", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021698", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB97", - "filename": "m54306Ue_220223_194148.5mc.hifi_reads.bam", + "designDescription": "sequencing of 20 kb fractionated", + "familyId": null, + "filename": "m84081_231209_034516_s4.hifi_reads.bc2002.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02984_PB1_m54306Ue_220223_194148_m54306Ue_220223_194148", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG01798_lib1_m84081_231209_034516_s4_m84081_231209_034516_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "65089", - "mean": "21219", - "metadataAccession": "SRR30151979", - "min": "111", + "max": "71376", + "mean": "20431", + "metadataAccession": "SRR29396898", + "min": "152", "mmTag": true, - "n25": "18256", - "n50": "21241", - "n75": "25288", + "n25": "17859", + "n50": "20457", + "n75": "23995", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m54306Ue_220223_194148.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01798/raw_data/PacBio_HiFi/m84081_231209_034516_s4.hifi_reads.bc2002.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17591", - "quartile50": "20150", - "quartile75": "23760", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17318", + "quartile50": "19570", + "quartile75": "22802", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02984", + "sampleId": "HG01798", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "21557851977", - "totalGbp": "21.56", - "totalReads": "1015947", + "totalBp": "118994102370", + "totalGbp": "118.99", + "totalReads": "5823951", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797105", + "accession": "SAMN41021699", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797105", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021699", + "ccsAlgorithm": "8.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN087", - "filename": "m54306Ue_220225_190349.5mc.hifi_reads.bam", + "designDescription": "sequencing of 20 kb fractionated", + "familyId": null, + "filename": "m84081_231222_081401_s1.hifi_reads.bc2004.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02514_PB1_m54306Ue_220225_190349_m54306Ue_220225_190349", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG03919_lib1_m84081_231222_081401_s1_m84081_231222_081401_s1", "libraryLayout": "single", "librarySelection": "size fractionation", - "librarySource": "GENOMIC", - "libraryStrategy": "WGS", - "max": "64880", - "mean": "22999", - "metadataAccession": "SRR30151935", - "min": "192", + "librarySource": "GENOMIC", + "libraryStrategy": "WGS", + "max": "63119", + "mean": "21167", + "metadataAccession": "SRR29396880", + "min": "110", "mmTag": true, - "n25": "19556", - "n50": "23027", - "n75": "27873", + "n25": "18575", + "n50": "21188", + "n75": "24867", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/primrose/m54306Ue_220225_190349.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03919/raw_data/PacBio_HiFi/m84081_231222_081401_s1.hifi_reads.bc2004.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "18761", - "quartile50": "21654", - "quartile75": "25900", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18019", + "quartile50": "20300", + "quartile75": "23614", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02514", + "sampleId": "HG03919", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "15671912691", - "totalGbp": "15.67", - "totalReads": "681405", + "totalBp": "13190463788", + "totalGbp": "13.19", + "totalReads": "623139", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797103", + "accession": "SAMN41021699", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797103", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021699", + "ccsAlgorithm": "8.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL023", - "filename": "m54306Ue_220227_055825.5mc.hifi_reads.bam", + "designDescription": "sequencing of 20 kb fractionated", + "familyId": null, + "filename": "m84081_231222_101332_s2.hifi_reads.bc2004.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01969_PB1_m54306Ue_220227_055825_m54306Ue_220227_055825", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG03919_lib1_m84081_231222_101332_s2_m84081_231222_101332_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "66510", - "mean": "23473", - "metadataAccession": "SRR30151995", - "min": "65", + "max": "63775", + "mean": "21391", + "metadataAccession": "SRR29396879", + "min": "186", "mmTag": true, - "n25": "20005", - "n50": "23515", - "n75": "28513", + "n25": "18730", + "n50": "21474", + "n75": "25246", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m54306Ue_220227_055825.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03919/raw_data/PacBio_HiFi/m84081_231222_101332_s2.hifi_reads.bc2004.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "19182", - "quartile50": "22126", - "quartile75": "26462", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18140", + "quartile50": "20529", + "quartile75": "23965", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01969", + "sampleId": "HG03919", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "18938830210", - "totalGbp": "18.94", - "totalReads": "806826", + "totalBp": "17107725274", + "totalGbp": "17.11", + "totalReads": "799745", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797098", + "accession": "SAMN41021699", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797098", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021699", + "ccsAlgorithm": "8.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM14", - "filename": "m54306Ue_220228_165421.5mc.hifi_reads.bam", + "designDescription": "sequencing of 20 kb fractionated", + "familyId": null, + "filename": "m84081_231222_121301_s3.hifi_reads.bc2004.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01252_PB1_m54306Ue_220228_165421_m54306Ue_220228_165421", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG03919_lib1_m84081_231222_121301_s3_m84081_231222_121301_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "59699", - "mean": "21896", - "metadataAccession": "SRR30151990", - "min": "82", + "max": "68308", + "mean": "21488", + "metadataAccession": "SRR29396877", + "min": "153", "mmTag": true, - "n25": "18810", - "n50": "21897", - "n75": "26236", + "n25": "18799", + "n50": "21588", + "n75": "25372", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/primrose/m54306Ue_220228_165421.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03919/raw_data/PacBio_HiFi/m84081_231222_121301_s3.hifi_reads.bc2004.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "18118", - "quartile50": "20727", - "quartile75": "24554", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18200", + "quartile50": "20624", + "quartile75": "24100", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01252", + "sampleId": "HG03919", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "22283872315", - "totalGbp": "22.28", - "totalReads": "1017689", + "totalBp": "17390549679", + "totalGbp": "17.39", + "totalReads": "809277", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797106", + "accession": "SAMN41021699", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797106", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021699", + "ccsAlgorithm": "8.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", - "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB74", - "filename": "m54306Ue_220326_050928.5mc.hifi_reads.bam", + "designDescription": "sequencing of 20 kb fractionated", + "familyId": null, + "filename": "m84081_231222_141231_s4.hifi_reads.bc2004.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", - "generatorContact": "vgl-lab@rockefeller.edu", - "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02841_PB1_m54306Ue_220326_050928_m54306Ue_220326_050928", + "generatorContact": "tgraves@wustl.edu", + "generatorFacility": "Washington University ", + "instrumentModel": "Revio", + "libraryId": "HG03919_lib1_m84081_231222_141231_s4_m84081_231222_141231_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "52400", - "mean": "16223", - "metadataAccession": "SRR30151973", - "min": "189", + "max": "73649", + "mean": "21367", + "metadataAccession": "SRR29396876", + "min": "170", "mmTag": true, - "n25": "14059", - "n50": "16375", - "n75": "19439", + "n25": "18709", + "n50": "21455", + "n75": "25198", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/primrose/m54306Ue_220326_050928.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03919/raw_data/PacBio_HiFi/m84081_231222_141231_s4.hifi_reads.bc2004.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "13479", - "quartile50": "15524", - "quartile75": "18296", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18120", + "quartile50": "20509", + "quartile75": "23937", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02841", + "sampleId": "HG03919", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", - "shearMethod": "Megaruptor 3", - "sizeSelection": "Pippin HT", + "seqPlateChemistryVersion": "Revio C1", + "shearMethod": "Megaruptor 1", + "sizeSelection": "SageELF", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31236330105", - "totalGbp": "31.24", - "totalReads": "1925403", + "totalBp": "17327703121", + "totalGbp": "17.33", + "totalReads": "810924", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797106", + "accession": "SAMN41021614", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797106", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021614", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB74", - "filename": "m54306Ue_220327_160600.5mc.hifi_reads.bam", + "familyId": "Y044", + "filename": "m84091_230629_173950_s1.hifi_reads.bc1001.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02841_PB1_m54306Ue_220327_160600_m54306Ue_220327_160600", + "instrumentModel": "Revio", + "libraryId": "NA19175_PB1_m84091_230629_173950_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "52304", - "mean": "16282", - "metadataAccession": "SRR30151972", - "min": "148", + "max": "56686", + "mean": "18886", + "metadataAccession": "SRR29405776", + "min": "98", "mmTag": true, - "n25": "14095", - "n50": "16523", - "n75": "19677", + "n25": "16141", + "n50": "18884", + "n75": "22668", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/primrose/m54306Ue_220327_160600.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19175/raw_data/PacBio_HiFi/m84091_230629_173950_s1.hifi_reads.bc1001.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "13449", - "quartile50": "15606", - "quartile75": "18475", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "15551", + "quartile50": "17839", + "quartile75": "21210", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02841", + "sampleId": "NA19175", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "GWD", + "subpopulation": "YRI", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31882411301", - "totalGbp": "31.88", - "totalReads": "1958075", + "totalBp": "105324853613", + "totalGbp": "105.32", + "totalReads": "5576589", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797108", + "accession": "SAMN41021615", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797108", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021615", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB113", - "filename": "m54306Ue_220402_052301.demultiplex.bc1012--bc1012.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230629_181009_s2.hifi_reads.bc1002.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03050_PB1_m54306Ue_220402_052301_m54306Ue_220402_052301", + "instrumentModel": "Revio", + "libraryId": "HG02392_PB1_m84091_230629_181009_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "55017", - "mean": "18725", - "metadataAccession": "SRR30151961", - "min": "79", + "max": "66424", + "mean": "21170", + "metadataAccession": "SRR29405830", + "min": "77", "mmTag": true, - "n25": "16673", - "n50": "18756", - "n75": "21449", + "n25": "17909", + "n50": "21501", + "n75": "26127", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/primrose/m54306Ue_220402_052301.demultiplex.bc1012--bc1012.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02392/raw_data/PacBio_HiFi/m84091_230629_181009_s2.hifi_reads.bc1002.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "16230", - "quartile50": "18143", - "quartile75": "20624", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16952", + "quartile50": "20015", + "quartile75": "24192", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03050", + "sampleId": "HG02392", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "9392895139", - "totalGbp": "9.39", - "totalReads": "501610", + "totalBp": "66196250958", + "totalGbp": "66.2", + "totalReads": "3126764", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797097", + "accession": "SAMN41021616", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797097", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021616", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM12", - "filename": "m54306Ue_220402_052301.demultiplex.bc1015--bc1015.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230629_184115_s3.hifi_reads.bc1003.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01150_PB1_m54306Ue_220402_052301_m54306Ue_220402_052301", + "instrumentModel": "Revio", + "libraryId": "HG00867_PB1_m84091_230629_184115_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "56471", - "mean": "18047", - "metadataAccession": "SRR30151915", - "min": "82", + "max": "79149", + "mean": "23587", + "metadataAccession": "SRR29405843", + "min": "112", "mmTag": true, - "n25": "15385", - "n50": "18565", - "n75": "22532", + "n25": "19918", + "n50": "24532", + "n75": "30189", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/primrose/m54306Ue_220402_052301.demultiplex.bc1015--bc1015.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00867/raw_data/PacBio_HiFi/m84091_230629_184115_s3.hifi_reads.bc1003.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "14369", - "quartile50": "17200", - "quartile75": "20806", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18315", + "quartile50": "22418", + "quartile75": "27615", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01150", + "sampleId": "HG00867", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "7580552350", - "totalGbp": "7.58", - "totalReads": "420036", + "totalBp": "84998026939", + "totalGbp": "85", + "totalReads": "3603557", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797102", + "accession": "SAMN41021617", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797102", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021617", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BB11", - "filename": "m54306Ue_220409_033640.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230629_191221_s4.hifi_reads.bc1008.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01960_PB1_m54306Ue_220409_033640_m54306Ue_220409_033640", + "instrumentModel": "Revio", + "libraryId": "HG02178_PB1_m84091_230629_191221_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "62890", - "mean": "18090", - "metadataAccession": "SRR30151967", - "min": "145", + "max": "72017", + "mean": "21716", + "metadataAccession": "SRR29405833", + "min": "123", "mmTag": true, - "n25": "15305", - "n50": "18636", - "n75": "22857", + "n25": "18266", + "n50": "22326", + "n75": "27511", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01960/raw_data/PacBio_HiFi/primrose/m54306Ue_220409_033640.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02178/raw_data/PacBio_HiFi/m84091_230629_191221_s4.hifi_reads.bc1008.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "14273", - "quartile50": "17156", - "quartile75": "20995", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17032", + "quartile50": "20508", + "quartile75": "25157", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01960", + "sampleId": "HG02178", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31237108828", - "totalGbp": "31.24", - "totalReads": "1726705", + "totalBp": "65018477593", + "totalGbp": "65.02", + "totalReads": "2993899", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797102", + "accession": "SAMN41021614", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797102", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021614", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BB11", - "filename": "m54306Ue_220410_130603.5mc.hifi_reads.bam", + "familyId": "Y044", + "filename": "m84091_230703_162202_s1.hifi_reads.bc1001.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01960_PB1_m54306Ue_220410_130603_m54306Ue_220410_130603", + "instrumentModel": "Revio", + "libraryId": "NA19175_PB1_m84091_230703_162202_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "63512", - "mean": "18177", - "metadataAccession": "SRR30151966", - "min": "145", + "max": "58473", + "mean": "18590", + "metadataAccession": "SRR29405775", + "min": "89", "mmTag": true, - "n25": "15378", - "n50": "18739", - "n75": "22984", + "n25": "15949", + "n50": "18550", + "n75": "22189", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01960/raw_data/PacBio_HiFi/primrose/m54306Ue_220410_130603.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19175/raw_data/PacBio_HiFi/m84091_230703_162202_s1.hifi_reads.bc1001.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "14334", - "quartile50": "17245", - "quartile75": "21110", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "15406", + "quartile50": "17576", + "quartile75": "20814", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01960", + "sampleId": "NA19175", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ACB", + "subpopulation": "YRI", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26111870066", - "totalGbp": "26.11", - "totalReads": "1436508", + "totalBp": "99934802464", + "totalGbp": "99.93", + "totalReads": "5375516", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797098", + "accession": "SAMN41021616", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797098", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021616", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM14", - "filename": "m54306Ue_220419_182803.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230703_165220_s2.hifi_reads.bc1003.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01252_PB1_m54306Ue_220419_182803_m54306Ue_220419_182803", + "instrumentModel": "Revio", + "libraryId": "HG00867_PB1_m84091_230703_165220_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "62179", - "mean": "19034", - "metadataAccession": "SRR30151991", - "min": "174", + "max": "68779", + "mean": "23285", + "metadataAccession": "SRR29405842", + "min": "68", "mmTag": true, - "n25": "16124", - "n50": "19792", - "n75": "24328", + "n25": "19684", + "n50": "24171", + "n75": "29657", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/primrose/m54306Ue_220419_182803.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00867/raw_data/PacBio_HiFi/m84091_230703_165220_s2.hifi_reads.bc1003.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "14832", - "quartile50": "18086", - "quartile75": "22223", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18147", + "quartile50": "22142", + "quartile75": "27181", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01252", + "sampleId": "HG00867", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "25064791757", - "totalGbp": "25.06", - "totalReads": "1316796", + "totalBp": "90560178081", + "totalGbp": "90.56", + "totalReads": "3889058", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797105", + "accession": "SAMN41021618", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797105", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021618", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN087", - "filename": "m54306Ue_220421_052313.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230703_172326_s3.hifi_reads.bc1009.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02514_PB1_m54306Ue_220421_052313_m54306Ue_220421_052313", + "instrumentModel": "Revio", + "libraryId": "NA18620_PB1_m84091_230703_172326_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "58533", - "mean": "16135", - "metadataAccession": "SRR30151933", - "min": "79", + "max": "58609", + "mean": "19652", + "metadataAccession": "SRR29405784", + "min": "104", "mmTag": true, - "n25": "13866", - "n50": "16492", - "n75": "19847", + "n25": "16997", + "n50": "19747", + "n75": "23461", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/primrose/m54306Ue_220421_052313.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA18620/raw_data/PacBio_HiFi/m84091_230703_172326_s3.hifi_reads.bc1009.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "13090", - "quartile50": "15426", - "quartile75": "18468", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16365", + "quartile50": "18763", + "quartile75": "22098", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02514", + "sampleId": "NA18620", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "KHV", + "subpopulation": "CHB", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31688645215", - "totalGbp": "31.69", - "totalReads": "1963936", + "totalBp": "105136485130", + "totalGbp": "105.14", + "totalReads": "5349692", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797103", + "accession": "SAMN41021623", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797103", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021623", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL023", - "filename": "m54306Ue_220422_144937.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230703_175432_s4.hifi_reads.bc1010.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01969_PB1_m54306Ue_220422_144937_m54306Ue_220422_144937", + "instrumentModel": "Revio", + "libraryId": "NA20870_PB1_m84091_230703_175432_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "67665", - "mean": "23494", - "metadataAccession": "SRR30151996", - "min": "81", + "max": "47805", + "mean": "16457", + "metadataAccession": "SRR29405761", + "min": "96", "mmTag": true, - "n25": "19961", - "n50": "23516", - "n75": "28660", + "n25": "14523", + "n50": "16416", + "n75": "18966", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m54306Ue_220422_144937.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA20870/raw_data/PacBio_HiFi/m84091_230703_175432_s4.hifi_reads.bc1010.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "19132", - "quartile50": "22078", - "quartile75": "26505", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "14186", + "quartile50": "15844", + "quartile75": "18207", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01969", + "sampleId": "NA20870", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34020179111", - "totalGbp": "34.02", - "totalReads": "1448031", + "totalBp": "110641518883", + "totalGbp": "110.64", + "totalReads": "6722715", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797091", + "accession": "SAMN41021615", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797091", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021615", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m54306Ue_220722_175158.5mc.hifi_reads.bam", + "filename": "m84091_230705_171239_s1.hifi_reads.bc1002.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA19338_PB1_m54306Ue_220722_175158_m54306Ue_220722_175158", + "instrumentModel": "Revio", + "libraryId": "HG02392_PB1_m84091_230705_171239_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51516", - "mean": "22936", - "metadataAccession": "SRR30152007", - "min": "171", + "max": "64312", + "mean": "20679", + "metadataAccession": "SRR29405829", + "min": "80", "mmTag": true, - "n25": "19061", - "n50": "24162", - "n75": "30456", + "n25": "17517", + "n50": "20915", + "n75": "25377", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/primrose/m54306Ue_220722_175158.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02392/raw_data/PacBio_HiFi/m84091_230705_171239_s1.hifi_reads.bc1002.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17156", - "quartile50": "21545", - "quartile75": "27252", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16660", + "quartile50": "19524", + "quartile75": "23524", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19338", + "sampleId": "HG02392", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "40497124857", - "totalGbp": "40.5", - "totalReads": "1765604", + "totalBp": "70428529309", + "totalGbp": "70.43", + "totalReads": "3405708", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797092", + "accession": "SAMN37797091", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797092", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37797091", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m54306Ue_220815_144205.5mc.hifi_reads.bam", + "filename": "m84091_230705_174256_s2.hifi_reads.bc1002.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA19391_PB1_m54306Ue_220815_144205_m54306Ue_220815_144205", + "instrumentModel": "Revio", + "libraryId": "NA19338_PB2_m84091_230705_174256_s2.hifi_reads.bc1002.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51001", - "mean": "21768", - "metadataAccession": "SRR30151923", - "min": "201", + "max": "70947", + "mean": "22498", + "metadataAccession": "SRR30336761", + "min": "53", "mmTag": true, - "n25": "18156", - "n50": "22267", - "n75": "27731", + "n25": "18804", + "n50": "23742", + "n75": "29607", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/PacBio_HiFi/primrose/m54306Ue_220815_144205.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/m84091_230705_174256_s2.hifi_reads.bc1002.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "16933", - "quartile50": "20359", - "quartile75": "25126", + "quartile25": "16955", + "quartile50": "21281", + "quartile75": "26737", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19391", + "sampleId": "NA19338", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", @@ -156253,9 +215273,9 @@ "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "39421303285", - "totalGbp": "39.42", - "totalReads": "1810918", + "totalBp": "20149672331", + "totalGbp": "20.15", + "totalReads": "895592", "twoHundredkbPlus": "N/A", "whales": "N/A" }, @@ -156268,49 +215288,49 @@ "basecallerVersion": "N/A", "bioprojectAccession": "N/A", "biosampleAccession": "SAMN37797110", - "ccsAlgorithm": "6.0.0", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": "SL56", - "filename": "m54306Ue_220817_100412.5mc.hifi_reads.bam", + "filename": "m84091_230705_174256_s2.hifi_reads.bc1009.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03470_PB1_m54306Ue_220817_100412_m54306Ue_220817_100412", + "instrumentModel": "Revio", + "libraryId": "HG03470_PB1_m84091_230705_174256_s2.hifi_reads.bc1009.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51522", - "mean": "25686", - "metadataAccession": "SRR30152005", - "min": "96", + "max": "70709", + "mean": "24497", + "metadataAccession": "SRR30336727", + "min": "110", "mmTag": true, - "n25": "21674", - "n50": "26831", - "n75": "33148", + "n25": "20781", + "n50": "25534", + "n75": "31304", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/PacBio_HiFi/primrose/m54306Ue_220817_100412.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/PacBio_HiFi/m84091_230705_174256_s2.hifi_reads.bc1009.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "19883", - "quartile50": "24417", - "quartile75": "30230", + "quartile25": "19169", + "quartile50": "23378", + "quartile75": "28738", "readN50": "N/A", "result": "N/A", "sampleId": "HG03470", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", @@ -156318,2209 +215338,2209 @@ "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "38139494892", - "totalGbp": "38.14", - "totalReads": "1484828", + "totalBp": "34295733741", + "totalGbp": "34.3", + "totalReads": "1399961", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797110", + "accession": "SAMN41021617", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797110", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021617", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SL56", - "filename": "m54306Ue_220819_070258.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230705_181402_s3.hifi_reads.bc1008.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03470_PB1_m54306Ue_220819_070258_m54306Ue_220819_070258", + "instrumentModel": "Revio", + "libraryId": "HG02178_PB1_m84091_230705_181402_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51534", - "mean": "25644", - "metadataAccession": "SRR30151960", - "min": "104", + "max": "68719", + "mean": "21517", + "metadataAccession": "SRR29405832", + "min": "115", "mmTag": true, - "n25": "21598", - "n50": "26821", - "n75": "33247", + "n25": "18143", + "n50": "22138", + "n75": "27182", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/PacBio_HiFi/primrose/m54306Ue_220819_070258.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02178/raw_data/PacBio_HiFi/m84091_230705_181402_s3.hifi_reads.bc1008.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "19763", - "quartile50": "24349", - "quartile75": "30243", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16933", + "quartile50": "20355", + "quartile75": "24921", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03470", + "sampleId": "HG02178", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "45154689797", - "totalGbp": "45.15", - "totalReads": "1760828", + "totalBp": "90298507655", + "totalGbp": "90.3", + "totalReads": "4196539", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797104", + "accession": "SAMN37797091", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797104", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37797091", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m54306Ue_220821_023435.5mc.hifi_reads.bam", + "filename": "m84091_230705_184508_s4.hifi_reads.bc1002.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02391_PB1_m54306Ue_220821_023435_m54306Ue_220821_023435", + "instrumentModel": "Revio", + "libraryId": "NA19338_PB2_m84091_230705_184508_s4.hifi_reads.bc1002.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51847", - "mean": "24015", - "metadataAccession": "SRR30151937", - "min": "88", + "max": "70626", + "mean": "23018", + "metadataAccession": "SRR30336760", + "min": "183", "mmTag": true, - "n25": "20143", - "n50": "24968", - "n75": "30987", + "n25": "19215", + "n50": "24378", + "n75": "30496", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/PacBio_HiFi/primrose/m54306Ue_220821_023435.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/m84091_230705_184508_s4.hifi_reads.bc1002.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "18550", - "quartile50": "22683", - "quartile75": "28174", + "quartile25": "17229", + "quartile50": "21762", + "quartile75": "27432", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02391", + "sampleId": "NA19338", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": "LWK", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "45855625550", - "totalGbp": "45.86", - "totalReads": "1909393", + "totalBp": "19698176409", + "totalGbp": "19.7", + "totalReads": "855746", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797087", + "accession": "SAMN37797110", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797087", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37797110", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m54306Ue_220902_172744.5mc.hifi_reads.bam", + "familyId": "SL56", + "filename": "m84091_230705_184508_s4.hifi_reads.bc1009.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA19087_PB1_m54306Ue_220902_172744_m54306Ue_220902_172744", + "instrumentModel": "Revio", + "libraryId": "HG03470_PB1_m84091_230705_184508_s4.hifi_reads.bc1009.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51672", - "mean": "20569", - "metadataAccession": "SRR30151942", - "min": "194", + "max": "68532", + "mean": "25009", + "metadataAccession": "SRR30336726", + "min": "217", "mmTag": true, - "n25": "17571", - "n50": "20578", - "n75": "25009", + "n25": "21189", + "n50": "26154", + "n75": "32139", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/PacBio_HiFi/primrose/m54306Ue_220902_172744.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/PacBio_HiFi/m84091_230705_184508_s4.hifi_reads.bc1009.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "16836", - "quartile50": "19341", - "quartile75": "23111", + "quartile25": "19455", + "quartile50": "23857", + "quartile75": "29458", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19087", + "sampleId": "HG03470", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "MSL", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "46222507016", - "totalGbp": "46.22", - "totalReads": "2247170", + "totalBp": "34109597312", + "totalGbp": "34.11", + "totalReads": "1363854", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797089", + "accession": "SAMN41021618", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797089", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021618", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "Y056", - "filename": "m54306Ue_220907_175549.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230707_165735_s1.hifi_reads.bc1009.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA19159_PB1_m54306Ue_220907_175549_m54306Ue_220907_175549", + "instrumentModel": "Revio", + "libraryId": "NA18620_PB1_m84091_230707_165735_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51147", - "mean": "23508", - "metadataAccession": "SRR30151955", - "min": "149", + "max": "58414", + "mean": "19457", + "metadataAccession": "SRR29405783", + "min": "156", "mmTag": true, - "n25": "19953", - "n50": "23857", - "n75": "29002", + "n25": "16863", + "n50": "19517", + "n75": "23110", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/PacBio_HiFi/primrose/m54306Ue_220907_175549.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA18620/raw_data/PacBio_HiFi/m84091_230707_165735_s1.hifi_reads.bc1009.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "18929", - "quartile50": "22239", - "quartile75": "26862", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16264", + "quartile50": "18586", + "quartile75": "21805", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19159", + "sampleId": "NA18620", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "46232897055", - "totalGbp": "46.23", - "totalReads": "1966632", + "totalBp": "106349153661", + "totalGbp": "106.35", + "totalReads": "5465594", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", + "accession": "SAMN41021623", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021623", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m54306Ue_220920_181216.5mc.hifi_reads.bam", + "filename": "m84091_230707_172800_s2.hifi_reads.bc1010.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA20799_PB1_m54306Ue_220920_181216_m54306Ue_220920_181216", + "instrumentModel": "Revio", + "libraryId": "NA20870_PB1_m84091_230707_172800_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50956", - "mean": "22964", - "metadataAccession": "SRR30151949", - "min": "158", + "max": "50922", + "mean": "16401", + "metadataAccession": "SRR29405756", + "min": "64", "mmTag": true, - "n25": "19374", - "n50": "23540", - "n75": "28841", + "n25": "14491", + "n50": "16353", + "n75": "18869", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/primrose/m54306Ue_220920_181216.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA20870/raw_data/PacBio_HiFi/m84091_230707_172800_s2.hifi_reads.bc1010.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "18152", - "quartile50": "21713", - "quartile75": "26511", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "14159", + "quartile50": "15795", + "quartile75": "18128", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "NA20870", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "35581760637", - "totalGbp": "35.58", - "totalReads": "1549427", + "totalBp": "107230122262", + "totalGbp": "107.23", + "totalReads": "6537864", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", + "accession": "SAMN41021631", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021631", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m54306Ue_220922_132103.5mc.hifi_reads.bam", + "filename": "m84091_230707_175906_s3.hifi_reads.bc1015.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA20799_PB1_m54306Ue_220922_132103_m54306Ue_220922_132103", + "instrumentModel": "Revio", + "libraryId": "HG03270_PB1_m84091_230707_175906_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50995", - "mean": "22921", - "metadataAccession": "SRR30151948", - "min": "360", + "max": "62381", + "mean": "19740", + "metadataAccession": "SRR29405811", + "min": "75", "mmTag": true, - "n25": "19341", - "n50": "23513", - "n75": "28801", + "n25": "17041", + "n50": "19750", + "n75": "23558", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/primrose/m54306Ue_220922_132103.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03270/raw_data/PacBio_HiFi/m84091_230707_175906_s3.hifi_reads.bc1015.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "18114", - "quartile50": "21678", - "quartile75": "26484", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16442", + "quartile50": "18758", + "quartile75": "22106", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "HG03270", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "ESN", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "33578377768", - "totalGbp": "33.58", - "totalReads": "1464951", + "totalBp": "112105606405", + "totalGbp": "112.11", + "totalReads": "5678941", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797093", + "accession": "SAMN41021657", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797093", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021657", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m54306Ue_220927_182256.demultiplex.bc1008--bc1008.5mc.hifi_reads.bam", + "familyId": "GB23", + "filename": "m84091_230707_183012_s4.hifi_reads.bc1016.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA19468_PB1_m54306Ue_220927_182256_m54306Ue_220927_182256", + "instrumentModel": "Revio", + "libraryId": "HG02583_PB1_m84091_230707_183012_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51751", - "mean": "24769", - "metadataAccession": "SRR30151934", - "min": "127", + "max": "63871", + "mean": "22668", + "metadataAccession": "SRR29405824", + "min": "62", "mmTag": true, - "n25": "20784", - "n50": "25526", - "n75": "31682", + "n25": "19124", + "n50": "23125", + "n75": "28327", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/primrose/m54306Ue_220927_182256.demultiplex.bc1008--bc1008.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02583/raw_data/PacBio_HiFi/m84091_230707_183012_s4.hifi_reads.bc1016.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "19326", - "quartile50": "23325", - "quartile75": "28833", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17966", + "quartile50": "21407", + "quartile75": "26047", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19468", + "sampleId": "HG02583", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "GWD", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "16691743838", - "totalGbp": "16.69", - "totalReads": "673872", + "totalBp": "97558541990", + "totalGbp": "97.56", + "totalReads": "4303764", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", + "accession": "SAMN41021624", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021624", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m54306Ue_220927_182256.demultiplex.bc1018--bc1018.5mc.hifi_reads.bam", + "filename": "m84091_230710_165908_s1.hifi_reads.bc1011.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA20799_PB1_m54306Ue_220927_182256_m54306Ue_220927_182256", + "instrumentModel": "Revio", + "libraryId": "NA21110_PB1_m84091_230710_165908_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51136", - "mean": "22156", - "metadataAccession": "SRR30151947", - "min": "774", + "max": "69776", + "mean": "22741", + "metadataAccession": "SRR29405755", + "min": "80", "mmTag": true, - "n25": "18704", - "n50": "22598", - "n75": "27683", + "n25": "19235", + "n50": "23562", + "n75": "28989", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/primrose/m54306Ue_220927_182256.demultiplex.bc1018--bc1018.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA21110/raw_data/PacBio_HiFi/m84091_230710_165908_s1.hifi_reads.bc1011.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17614", - "quartile50": "20895", - "quartile75": "25431", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17833", + "quartile50": "21576", + "quartile75": "26520", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "NA21110", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "17947625220", - "totalGbp": "17.95", - "totalReads": "810053", + "totalBp": "89314005933", + "totalGbp": "89.31", + "totalReads": "3927286", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706907", + "accession": "SAMN41021658", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706907", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021658", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD18", - "filename": "m64055e_210709_184151.5mc.hifi_reads.bam", + "familyId": "2470", + "filename": "m84091_230710_172927_s2.hifi_reads.bc1017.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03804_PB1_m64055e_210709_184151", + "instrumentModel": "Revio", + "libraryId": "NA20287_PB1_m84091_230710_172927_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "56669", - "mean": "17416", - "metadataAccession": "SRR30151630", - "min": "85", + "max": "74258", + "mean": "23076", + "metadataAccession": "SRR29405764", + "min": "57", "mmTag": true, - "n25": "14871", - "n50": "17950", - "n75": "21842", + "n25": "19469", + "n50": "23728", + "n75": "29119", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m64055e_210709_184151.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA20287/raw_data/PacBio_HiFi/m84091_230710_172927_s2.hifi_reads.bc1017.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13867", - "quartile50": "16626", - "quartile75": "20146", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18152", + "quartile50": "21843", + "quartile75": "26717", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03804", + "sampleId": "NA20287", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "ASW", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "33213912092", - "totalGbp": "33.21", - "totalReads": "1906994", + "totalBp": "88125973925", + "totalGbp": "88.13", + "totalReads": "3818829", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706910", + "accession": "SAMN41021615", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706910", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021615", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD53", - "filename": "m64055e_210711_053617.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230710_180033_s3.hifi_reads.bc1002.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG04160_PB1_m64055e_210711_053617", + "instrumentModel": "Revio", + "libraryId": "HG02392_PB1_m84091_230710_180033_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51475", - "mean": "15770", - "metadataAccession": "SRR30151638", - "min": "84", + "max": "69083", + "mean": "20509", + "metadataAccession": "SRR29405828", + "min": "110", "mmTag": true, - "n25": "13674", - "n50": "16006", - "n75": "19133", + "n25": "17383", + "n50": "20654", + "n75": "24998", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m64055e_210711_053617.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02392/raw_data/PacBio_HiFi/m84091_230710_180033_s3.hifi_reads.bc1002.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13047", - "quartile50": "15116", - "quartile75": "17931", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16594", + "quartile50": "19347", + "quartile75": "23221", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04160", + "sampleId": "HG02392", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26423796459", - "totalGbp": "26.42", - "totalReads": "1675553", + "totalBp": "37690426700", + "totalGbp": "37.69", + "totalReads": "1837746", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706907", + "accession": "SAMN41021617", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706907", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021617", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD18", - "filename": "m64055e_210712_200125.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230710_180033_s3.hifi_reads.bc1008.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03804_PB1_m64055e_210712_200125", + "instrumentModel": "Revio", + "libraryId": "HG02178_PB1_m84091_230710_180033_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "63476", - "mean": "17229", - "metadataAccession": "SRR30151651", - "min": "51", + "max": "69950", + "mean": "20825", + "metadataAccession": "SRR29405831", + "min": "173", "mmTag": true, - "n25": "14721", - "n50": "17741", - "n75": "21559", + "n25": "17477", + "n50": "21327", + "n75": "26181", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m64055e_210712_200125.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02178/raw_data/PacBio_HiFi/m84091_230710_180033_s3.hifi_reads.bc1008.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13744", - "quartile50": "16447", - "quartile75": "19903", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16351", + "quartile50": "19640", + "quartile75": "24021", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03804", + "sampleId": "HG02178", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "28792837074", - "totalGbp": "28.79", - "totalReads": "1671138", + "totalBp": "40928479039", + "totalGbp": "40.93", + "totalReads": "1965273", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706907", + "accession": "SAMN41021616", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706907", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021616", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD18", - "filename": "m64055e_210714_052746.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230710_183139_s4.hifi_reads.bc1003.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03804_PB1_m64055e_210714_052746", + "instrumentModel": "Revio", + "libraryId": "HG00867_PB1_m84091_230710_183139_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "56031", - "mean": "17305", - "metadataAccession": "SRR30151650", - "min": "49", + "max": "70002", + "mean": "22983", + "metadataAccession": "SRR29405841", + "min": "522", "mmTag": true, - "n25": "14820", - "n50": "17802", - "n75": "21563", + "n25": "19482", + "n50": "23688", + "n75": "28873", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m64055e_210714_052746.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00867/raw_data/PacBio_HiFi/m84091_230710_183139_s4.hifi_reads.bc1003.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13857", - "quartile50": "16546", - "quartile75": "19948", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18139", + "quartile50": "21864", + "quartile75": "26615", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03804", + "sampleId": "HG00867", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "28207159246", - "totalGbp": "28.21", - "totalReads": "1629954", + "totalBp": "18059259620", + "totalGbp": "18.06", + "totalReads": "785737", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706910", + "accession": "SAMN41021631", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706910", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021631", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD53", - "filename": "m64055e_210715_181933.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230710_183139_s4.hifi_reads.bc1015.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG04160_PB1_m64055e_210715_181933", + "instrumentModel": "Revio", + "libraryId": "HG03270_PB1_m84091_230710_183139_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57540", - "mean": "13806", - "metadataAccession": "SRR30151637", - "min": "84", + "max": "63760", + "mean": "19750", + "metadataAccession": "SRR29405810", + "min": "102", "mmTag": true, - "n25": "11697", - "n50": "14386", - "n75": "17653", + "n25": "17028", + "n50": "19751", + "n75": "23619", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m64055e_210715_181933.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03270/raw_data/PacBio_HiFi/m84091_230710_183139_s4.hifi_reads.bc1015.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "10733", - "quartile50": "13163", - "quartile75": "16156", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16426", + "quartile50": "18741", + "quartile75": "22134", "readN50": "N/A", "result": "N/A", - "sampleId": "HG04160", + "sampleId": "HG03270", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "ESN", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "21543489843", - "totalGbp": "21.54", - "totalReads": "1560360", + "totalBp": "87910720528", + "totalGbp": "87.91", + "totalReads": "4451148", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706908", + "accession": "SAMN41021625", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706908", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021625", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD22", - "filename": "m64055e_210726_155147.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230712_163213_s1.hifi_reads.bc1012.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03816_PB3_m64055e_210726_155147", + "instrumentModel": "Revio", + "libraryId": "HG03874_PB1_m84091_230712_163213_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "55188", - "mean": "16543", - "metadataAccession": "SRR30151648", - "min": "49", + "max": "70251", + "mean": "22538", + "metadataAccession": "SRR29405794", + "min": "52", "mmTag": true, - "n25": "14079", - "n50": "17160", - "n75": "20956", + "n25": "19059", + "n50": "23308", + "n75": "28475", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m64055e_210726_155147.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03874/raw_data/PacBio_HiFi/m84091_230712_163213_s1.hifi_reads.bc1012.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13043", - "quartile50": "15783", - "quartile75": "19263", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17686", + "quartile50": "21435", + "quartile75": "26186", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03816", + "sampleId": "HG03874", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "BEB", + "subpopulation": "ITU", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26328421546", - "totalGbp": "26.33", - "totalReads": "1591506", + "totalBp": "77942454192", + "totalGbp": "77.94", + "totalReads": "3458255", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706908", + "accession": "SAMN41021645", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706908", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021645", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD22", - "filename": "m64055e_210728_024601.5mc.hifi_reads.bam", + "familyId": "SL73", + "filename": "m84091_230712_170232_s2.hifi_reads.bc1020.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03816_PB3_m64055e_210728_024601", + "instrumentModel": "Revio", + "libraryId": "HG03583_PB1_m84091_230712_170232_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "52349", - "mean": "17178", - "metadataAccession": "SRR30151647", - "min": "85", + "max": "66232", + "mean": "22547", + "metadataAccession": "SRR29405786", + "min": "53", "mmTag": true, - "n25": "14718", - "n50": "17827", - "n75": "21629", + "n25": "19013", + "n50": "23261", + "n75": "28516", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m64055e_210728_024601.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03583/raw_data/PacBio_HiFi/m84091_230712_170232_s2.hifi_reads.bc1020.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13645", - "quartile50": "16473", - "quartile75": "19986", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17663", + "quartile50": "21381", + "quartile75": "26167", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03816", + "sampleId": "HG03583", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "MSL", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "28037716098", - "totalGbp": "28.04", - "totalReads": "1632098", + "totalBp": "89601336260", + "totalGbp": "89.6", + "totalReads": "3973911", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706908", + "accession": "SAMN41021646", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706908", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021646", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BD22", - "filename": "m64055e_210729_122949.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230712_173338_s3.hifi_reads.bc1019.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03816_PB3_m64055e_210729_122949", + "instrumentModel": "Revio", + "libraryId": "HG00329_PB1_m84091_230712_173338_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57010", - "mean": "16787", - "metadataAccession": "SRR30151646", - "min": "52", + "max": "69777", + "mean": "22730", + "metadataAccession": "SRR29405793", + "min": "73", "mmTag": true, - "n25": "14322", - "n50": "17420", - "n75": "21236", + "n25": "19281", + "n50": "23397", + "n75": "28564", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m64055e_210729_122949.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00329/raw_data/PacBio_HiFi/m84091_230712_173338_s3.hifi_reads.bc1019.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13264", - "quartile50": "16051", - "quartile75": "19547", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17994", + "quartile50": "21606", + "quartile75": "26308", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03816", + "sampleId": "HG00329", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "BEB", - "superpopulation": "SAS", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26609986781", - "totalGbp": "26.61", - "totalReads": "1585079", + "totalBp": "106146859292", + "totalGbp": "106.15", + "totalReads": "4669840", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706905", + "accession": "SAMN41021644", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706905", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021644", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH090", - "filename": "m64055e_210731_145204.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230712_180444_s4.hifi_reads.bc1018.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG00706_PB1_m64055e_210731_145204", + "instrumentModel": "Revio", + "libraryId": "HG00243_PB1_m84091_230712_180444_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "63996", - "mean": "15917", - "metadataAccession": "SRR30151653", - "min": "47", + "max": "73045", + "mean": "21774", + "metadataAccession": "SRR29405837", + "min": "93", "mmTag": true, - "n25": "13634", - "n50": "16478", - "n75": "19969", + "n25": "18433", + "n50": "22452", + "n75": "27372", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210731_145204.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00243/raw_data/PacBio_HiFi/m84091_230712_180444_s4.hifi_reads.bc1018.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "12677", - "quartile50": "15246", - "quartile75": "18454", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17180", + "quartile50": "20708", + "quartile75": "25231", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00706", + "sampleId": "HG00243", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "27575841441", - "totalGbp": "27.58", - "totalReads": "1732468", + "totalBp": "94319711832", + "totalGbp": "94.32", + "totalReads": "4331650", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706906", + "accession": "SAMN41021658", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706906", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021658", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB40", - "filename": "m64055e_210810_194150.5mc.hifi_reads.bam", + "familyId": "2470", + "filename": "m84091_230714_130822_s1.hifi_reads.bc1017.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02668_PB1_m64055e_210810_194150", + "instrumentModel": "Revio", + "libraryId": "NA20287_PB1_m84091_230714_130822_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "60518", - "mean": "16307", - "metadataAccession": "SRR30151632", - "min": "85", + "max": "67766", + "mean": "22598", + "metadataAccession": "SRR29405762", + "min": "56", "mmTag": true, - "n25": "14002", - "n50": "16689", - "n75": "20198", + "n25": "19009", + "n50": "23557", + "n75": "29066", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m64055e_210810_194150.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA20287/raw_data/PacBio_HiFi/m84091_230714_130822_s1.hifi_reads.bc1017.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13193", - "quartile50": "15570", - "quartile75": "18723", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17419", + "quartile50": "21447", + "quartile75": "26500", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02668", + "sampleId": "NA20287", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "GWD", + "subpopulation": "ASW", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31511359527", - "totalGbp": "31.51", - "totalReads": "1932274", + "totalBp": "98106485796", + "totalGbp": "98.11", + "totalReads": "4341325", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706905", + "accession": "SAMN41021624", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706905", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021624", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH090", - "filename": "m64055e_210812_050522.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230714_133843_s2.hifi_reads.bc1011.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG00706_PB1_m64055e_210812_050522", + "instrumentModel": "Revio", + "libraryId": "NA21110_PB1_m84091_230714_133843_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "56270", - "mean": "16525", - "metadataAccession": "SRR30151652", - "min": "49", + "max": "70255", + "mean": "22684", + "metadataAccession": "SRR29405754", + "min": "105", "mmTag": true, - "n25": "14329", - "n50": "16983", - "n75": "20349", + "n25": "19169", + "n50": "23455", + "n75": "28779", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210812_050522.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA21110/raw_data/PacBio_HiFi/m84091_230714_133843_s2.hifi_reads.bc1011.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13486", - "quartile50": "15904", - "quartile75": "18972", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17806", + "quartile50": "21529", + "quartile75": "26390", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00706", + "sampleId": "NA21110", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "24186668138", - "totalGbp": "24.19", - "totalReads": "1463583", + "totalBp": "88288802421", + "totalGbp": "88.29", + "totalReads": "3892054", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706905", + "accession": "SAMN41021657", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706905", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021657", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH090", - "filename": "m64055e_210813_141904.5mc.hifi_reads.bam", + "familyId": "GB23", + "filename": "m84091_230714_140949_s3.hifi_reads.bc1016.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG00706_PB1_m64055e_210813_141904", + "instrumentModel": "Revio", + "libraryId": "HG02583_PB1_m84091_230714_140949_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "69934", - "mean": "16601", - "metadataAccession": "SRR30151641", - "min": "54", + "max": "74239", + "mean": "22446", + "metadataAccession": "SRR29405823", + "min": "70", "mmTag": true, - "n25": "14373", - "n50": "17069", - "n75": "20494", + "n25": "18888", + "n50": "23089", + "n75": "28314", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210813_141904.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02583/raw_data/PacBio_HiFi/m84091_230714_140949_s3.hifi_reads.bc1016.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13513", - "quartile50": "15967", - "quartile75": "19082", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17588", + "quartile50": "21245", + "quartile75": "25972", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00706", + "sampleId": "HG02583", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "29455811991", - "totalGbp": "29.46", - "totalReads": "1774263", + "totalBp": "103636997807", + "totalGbp": "103.64", + "totalReads": "4617113", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37706905", + "accession": "SAMN41021643", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37706905", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021643", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH090", - "filename": "m64055e_210814_234047.5mc.hifi_reads.bam", + "familyId": "Y005", + "filename": "m84091_230718_154039_s1.hifi_reads.bc1021.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG00706_PB1_m64055e_210814_234047", + "instrumentModel": "Revio", + "libraryId": "NA18505_PB1_m84091_230718_154039_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "59621", - "mean": "16824", - "metadataAccession": "SRR30151636", - "min": "48", + "max": "64859", + "mean": "19688", + "metadataAccession": "SRR29405799", + "min": "82", "mmTag": true, - "n25": "14563", - "n50": "17300", - "n75": "20758", + "n25": "16866", + "n50": "19935", + "n75": "23961", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210814_234047.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA18505/raw_data/PacBio_HiFi/m84091_230718_154039_s1.hifi_reads.bc1021.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "c2", - "productionYear": "YR2", - "quartile25": "13694", - "quartile50": "16182", - "quartile75": "19336", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16070", + "quartile50": "18745", + "quartile75": "22367", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00706", + "sampleId": "NA18505", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "YRI", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "29562459419", - "totalGbp": "29.56", - "totalReads": "1757155", + "totalBp": "92320421358", + "totalGbp": "92.32", + "totalReads": "4689114", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797096", + "accession": "SAMN41021642", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797096", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021642", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH074", - "filename": "m64055e_220304_184221.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230718_161058_s2.hifi_reads.bc1022.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG00658_PB1_m64055e_220304_184221_m64055e_220304_184221", + "instrumentModel": "Revio", + "libraryId": "NA19036_PB1_m84091_230718_161058_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "59283", - "mean": "17506", - "metadataAccession": "SRR30151929", - "min": "176", + "max": "56042", + "mean": "17697", + "metadataAccession": "SRR29405781", + "min": "74", "mmTag": true, - "n25": "14806", - "n50": "18269", - "n75": "22720", + "n25": "15476", + "n50": "17676", + "n75": "20775", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64055e_220304_184221.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19036/raw_data/PacBio_HiFi/m84091_230718_161058_s2.hifi_reads.bc1022.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "13570", - "quartile50": "16565", - "quartile75": "20560", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "15044", + "quartile50": "16944", + "quartile75": "19750", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00658", + "sampleId": "NA19036", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "LWK", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "18919774271", - "totalGbp": "18.92", - "totalReads": "1080733", + "totalBp": "99306434215", + "totalGbp": "99.31", + "totalReads": "5611450", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797096", + "accession": "SAMN41021665", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797096", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021665", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH074", - "filename": "m64055e_220403_045718.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230718_164204_s3.hifi_reads.bc1001.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG00658_PB1_m64055e_220403_045718_m64055e_220403_045718", + "instrumentModel": "Revio", + "libraryId": "NA19835_PB1_m84091_230718_164204_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51430", - "mean": "15292", - "metadataAccession": "SRR30151928", - "min": "159", + "max": "63615", + "mean": "19675", + "metadataAccession": "SRR29405767", + "min": "137", "mmTag": true, - "n25": "13569", - "n50": "15866", - "n75": "18763", + "n25": "17029", + "n50": "19741", + "n75": "23447", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64055e_220403_045718.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19835/raw_data/PacBio_HiFi/m84091_230718_164204_s3.hifi_reads.bc1001.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "12772", - "quartile50": "14937", - "quartile75": "17615", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16408", + "quartile50": "18760", + "quartile75": "22062", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00658", + "sampleId": "NA19835", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "ASW", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "15083805889", - "totalGbp": "15.08", - "totalReads": "986362", + "totalBp": "90080817427", + "totalGbp": "90.08", + "totalReads": "4578439", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797096", + "accession": null, "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797096", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41708786", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH074", - "filename": "m64055e_220504_181614.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230718_171310_s4.hifi_reads.bc1002.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG00658_PB1_m64055e_220504_181614_m64055e_220504_181614", + "instrumentModel": "Revio", + "libraryId": "NA19377_PB1_m84091_230718_171310_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57037", - "mean": "17086", - "metadataAccession": "SRR30151927", - "min": "87", + "max": "58261", + "mean": "19679", + "metadataAccession": "SRR29405773", + "min": "66", "mmTag": true, - "n25": "14163", - "n50": "17908", - "n75": "22590", + "n25": "16989", + "n50": "19863", + "n75": "23633", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64055e_220504_181614.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19377/raw_data/PacBio_HiFi/m84091_230718_171310_s4.hifi_reads.bc1002.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "12858", - "quartile50": "15976", - "quartile75": "20204", + "polymeraseVersion": "Revio P1", + "productionYear": null, + "quartile25": "16274", + "quartile50": "18797", + "quartile75": "22194", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00658", + "sampleId": "NA19377", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "18061539277", - "totalGbp": "18.06", - "totalReads": "1057088", + "totalBp": "85178574461", + "totalGbp": "85.18", + "totalReads": "4328336", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797103", + "accession": "SAMN41021625", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797103", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021625", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL023", - "filename": "m64055e_220506_051029.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230719_155016_s1.hifi_reads.bc1012.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01969_PB1_m64055e_220506_051029_m64055e_220506_051029", + "instrumentModel": "Revio", + "libraryId": "HG03874_PB1_m84091_230719_155016_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "59034", - "mean": "17632", - "metadataAccession": "SRR30151998", - "min": "50", + "max": "64161", + "mean": "18984", + "metadataAccession": "SRR29405795", + "min": "89", "mmTag": true, - "n25": "14458", - "n50": "18834", - "n75": "24059", + "n25": "16431", + "n50": "19069", + "n75": "22707", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m64055e_220506_051029.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03874/raw_data/PacBio_HiFi/m84091_230719_155016_s1.hifi_reads.bc1012.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "12784", - "quartile50": "16415", - "quartile75": "21199", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "15819", + "quartile50": "18096", + "quartile75": "21335", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01969", + "sampleId": "HG03874", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": "ITU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "22292378612", - "totalGbp": "22.29", - "totalReads": "1264297", + "totalBp": "101158627114", + "totalGbp": "101.16", + "totalReads": "5328539", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797103", + "accession": "SAMN41021644", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797103", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021644", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL023", - "filename": "m64055e_220517_182131.demultiplex.bc1002--bc1002.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230719_162122_s2.hifi_reads.bc1018.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01969_PB1_m64055e_220517_182131_m64055e_220517_182131", + "instrumentModel": "Revio", + "libraryId": "HG00243_PB1_m84091_230719_162122_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "54635", - "mean": "17628", - "metadataAccession": "SRR30152001", - "min": "58", + "max": "65354", + "mean": "21615", + "metadataAccession": "SRR29405826", + "min": "97", "mmTag": true, - "n25": "14473", - "n50": "18855", - "n75": "24088", + "n25": "18295", + "n50": "22278", + "n75": "27119", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m64055e_220517_182131.demultiplex.bc1002--bc1002.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00243/raw_data/PacBio_HiFi/m84091_230719_162122_s2.hifi_reads.bc1018.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "12768", - "quartile50": "16429", - "quartile75": "21229", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17075", + "quartile50": "20547", + "quartile75": "25031", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01969", + "sampleId": "HG00243", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "9719026793", - "totalGbp": "9.72", - "totalReads": "551333", + "totalBp": "91462784918", + "totalGbp": "91.46", + "totalReads": "4231327", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797107", + "accession": "SAMN41021624", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797107", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021624", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB97", - "filename": "m64055e_220517_182131.demultiplex.bc1009--bc1009.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230719_165228_s3.hifi_reads.bc1011.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02984_PB1_m64055e_220517_182131_m64055e_220517_182131", + "instrumentModel": "Revio", + "libraryId": "NA21110_PB1_m84091_230719_165228_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50187", - "mean": "16715", - "metadataAccession": "SRR30151975", - "min": "122", + "max": "72474", + "mean": "22503", + "metadataAccession": "SRR29405757", + "min": "396", "mmTag": true, - "n25": "14292", - "n50": "17263", - "n75": "20935", + "n25": "19023", + "n50": "23287", + "n75": "28673", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m64055e_220517_182131.demultiplex.bc1009--bc1009.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA21110/raw_data/PacBio_HiFi/m84091_230719_165228_s3.hifi_reads.bc1011.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "13317", - "quartile50": "15970", - "quartile75": "19343", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17661", + "quartile50": "21320", + "quartile75": "26182", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02984", + "sampleId": "NA21110", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "GIH", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "2004239111", - "totalGbp": "2", - "totalReads": "119906", + "totalBp": "14404999640", + "totalGbp": "14.4", + "totalReads": "640120", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797091", + "accession": "SAMN41021646", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797091", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021646", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m64055e_220729_170145.5mc.hifi_reads.bam", + "filename": "m84091_230719_165228_s3.hifi_reads.bc1019.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA19338_PB1_m64055e_220729_170145_m64055e_220729_170145", + "instrumentModel": "Revio", + "libraryId": "HG00329_PB1_m84091_230719_165228_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51207", - "mean": "23947", - "metadataAccession": "SRR30152006", - "min": "95", + "max": "67743", + "mean": "22844", + "metadataAccession": "SRR29405782", + "min": "112", "mmTag": true, - "n25": "20016", - "n50": "25364", - "n75": "31771", + "n25": "19371", + "n50": "23557", + "n75": "28733", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/primrose/m64055e_220729_170145.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00329/raw_data/PacBio_HiFi/m84091_230719_165228_s3.hifi_reads.bc1019.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17944", - "quartile50": "22646", - "quartile75": "28584", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "18054", + "quartile50": "21732", + "quartile75": "26465", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19338", + "sampleId": "HG00329", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "FIN", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "35086441089", - "totalGbp": "35.09", - "totalReads": "1465150", + "totalBp": "86567137663", + "totalGbp": "86.57", + "totalReads": "3789333", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797091", + "accession": "SAMN41021645", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797091", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021645", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m64055e_220731_124800.5mc.hifi_reads.bam", + "familyId": "SL73", + "filename": "m84091_230719_172335_s4.hifi_reads.bc1020.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA19338_PB1_m64055e_220731_124800_m64055e_220731_124800", + "instrumentModel": "Revio", + "libraryId": "HG03583_PB1_m84091_230719_172335_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51719", - "mean": "23871", - "metadataAccession": "SRR30151951", - "min": "103", + "max": "4840", + "mean": "2542", + "metadataAccession": "SRR29405787", + "min": "129", "mmTag": true, - "n25": "19950", - "n50": "25286", - "n75": "31645", + "n25": "2251", + "n50": "2798", + "n75": "3414", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/primrose/m64055e_220731_124800.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03583/raw_data/PacBio_HiFi/m84091_230719_172335_s4.hifi_reads.bc1020.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17881", - "quartile50": "22577", - "quartile75": "28487", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "1974", + "quartile50": "2512", + "quartile75": "3146", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19338", + "sampleId": "HG03583", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "39136064597", - "totalGbp": "39.14", - "totalReads": "1639435", + "totalBp": "617846", + "totalGbp": "0", + "totalReads": "243", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797109", + "accession": "SAMN41021666", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797109", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021666", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m64055e_220815_142254.5mc.hifi_reads.bam", + "filename": "m84091_230721_134835_s1.hifi_reads.bc1003.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03458_PB1_m64055e_220815_142254_m64055e_220815_142254", + "instrumentModel": "Revio", + "libraryId": "HG00253_PB1_m84091_230721_134835_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50474", - "mean": "21425", - "metadataAccession": "SRR30151987", - "min": "137", + "max": "62447", + "mean": "20277", + "metadataAccession": "SRR29405815", + "min": "55", "mmTag": true, - "n25": "18095", - "n50": "21772", - "n75": "26657", + "n25": "17382", + "n50": "20786", + "n75": "25025", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03458/raw_data/PacBio_HiFi/primrose/m64055e_220815_142254.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00253/raw_data/PacBio_HiFi/m84091_230721_134835_s1.hifi_reads.bc1003.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17077", - "quartile50": "20196", - "quartile75": "24502", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16355", + "quartile50": "19411", + "quartile75": "23287", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03458", + "sampleId": "HG00253", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "46167929306", - "totalGbp": "46.17", - "totalReads": "2154798", + "totalBp": "111727151213", + "totalGbp": "111.73", + "totalReads": "5510036", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797093", + "accession": "SAMN41021667", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797093", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021667", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m64055e_220817_094430.5mc.hifi_reads.bam", + "filename": "m84091_230721_141900_s2.hifi_reads.bc1008.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA19468_PB1_m64055e_220817_094430_m64055e_220817_094430", + "instrumentModel": "Revio", + "libraryId": "HG00235_PB1_m84091_230721_141900_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51454", - "mean": "25173", - "metadataAccession": "SRR30151940", - "min": "133", + "max": "64006", + "mean": "19972", + "metadataAccession": "SRR29405849", + "min": "60", "mmTag": true, - "n25": "21080", - "n50": "25992", - "n75": "32361", + "n25": "17093", + "n50": "20339", + "n75": "24494", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/primrose/m64055e_220817_094430.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00235/raw_data/PacBio_HiFi/m84091_230721_141900_s2.hifi_reads.bc1008.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "19572", - "quartile50": "23685", - "quartile75": "29407", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16198", + "quartile50": "19048", + "quartile75": "22813", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19468", + "sampleId": "HG00235", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34921826370", - "totalGbp": "34.92", - "totalReads": "1387230", + "totalBp": "90629295210", + "totalGbp": "90.63", + "totalReads": "4537603", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797093", + "accession": "SAMN41021668", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797093", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021668", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m64055e_220819_064153.5mc.hifi_reads.bam", + "filename": "m84091_230721_145006_s3.hifi_reads.bc1009.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA19468_PB1_m64055e_220819_064153_m64055e_220819_064153", + "instrumentModel": "Revio", + "libraryId": "HG03369_PB1_m84091_230721_145006_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51141", - "mean": "25904", - "metadataAccession": "SRR30151986", - "min": "159", + "max": "62946", + "mean": "19379", + "metadataAccession": "SRR29405802", + "min": "109", "mmTag": true, - "n25": "21765", - "n50": "26889", - "n75": "33307", + "n25": "16681", + "n50": "19722", + "n75": "23552", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/primrose/m64055e_220819_064153.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03369/raw_data/PacBio_HiFi/m84091_230721_145006_s3.hifi_reads.bc1009.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "20122", - "quartile50": "24501", - "quartile75": "30376", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "15812", + "quartile50": "18566", + "quartile75": "22028", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19468", + "sampleId": "HG03369", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "36811399723", - "totalGbp": "36.81", - "totalReads": "1421052", + "totalBp": "91700590557", + "totalGbp": "91.7", + "totalReads": "4731803", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797104", + "accession": "SAMN41021643", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797104", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021643", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m64055e_220821_033925.5mc.hifi_reads.bam", + "familyId": "Y005", + "filename": "m84091_230721_152112_s4.hifi_reads.bc1021.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02391_PB1_m64055e_220821_033925_m64055e_220821_033925", + "instrumentModel": "Revio", + "libraryId": "NA18505_PB1_m84091_230721_152112_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51343", - "mean": "23767", - "metadataAccession": "SRR30151981", - "min": "136", + "max": "69044", + "mean": "19493", + "metadataAccession": "SRR29405800", + "min": "69", "mmTag": true, - "n25": "19902", - "n50": "24632", - "n75": "30676", + "n25": "16725", + "n50": "19706", + "n75": "23620", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/PacBio_HiFi/primrose/m64055e_220821_033925.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA18505/raw_data/PacBio_HiFi/m84091_230721_152112_s4.hifi_reads.bc1021.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "18349", - "quartile50": "22387", - "quartile75": "27807", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "15964", + "quartile50": "18567", + "quartile75": "22079", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02391", + "sampleId": "NA18505", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": "YRI", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "45992454620", - "totalGbp": "45.99", - "totalReads": "1935113", + "totalBp": "92337453249", + "totalGbp": "92.34", + "totalReads": "4736916", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797090", + "accession": "SAMN41021643", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797090", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021643", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "Y039", - "filename": "m64055e_220902_174345.5mc.hifi_reads.bam", + "familyId": "Y005", + "filename": "m84091_230724_152950_s1.hifi_reads.bc1021.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA19185_PB1_m64055e_220902_174345_m64055e_220902_174345", + "instrumentModel": "Revio", + "libraryId": "NA18505_PB1_m84091_230724_152950_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50610", - "mean": "20991", - "metadataAccession": "SRR30151983", - "min": "183", + "max": "49844", + "mean": "19765", + "metadataAccession": "SRR29405801", + "min": "751", "mmTag": true, - "n25": "17926", - "n50": "21181", - "n75": "25680", + "n25": "16949", + "n50": "20034", + "n75": "24033", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/PacBio_HiFi/primrose/m64055e_220902_174345.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA18505/raw_data/PacBio_HiFi/m84091_230724_152950_s1.hifi_reads.bc1021.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17086", - "quartile50": "19845", - "quartile75": "23785", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16137", + "quartile50": "18838", + "quartile75": "22460", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19185", + "sampleId": "NA18505", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", @@ -158528,1754 +217548,1754 @@ "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "46990376639", - "totalGbp": "46.99", - "totalReads": "2238569", + "totalBp": "5696115693", + "totalGbp": "5.7", + "totalReads": "288191", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797090", + "accession": "SAMN41021642", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797090", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021642", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "Y039", - "filename": "m64055e_220907_174608.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230724_152950_s1.hifi_reads.bc1022.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA19185_PB1_m64055e_220907_174608_m64055e_220907_174608", + "instrumentModel": "Revio", + "libraryId": "NA19036_PB1_m84091_230724_152950_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50723", - "mean": "21473", - "metadataAccession": "SRR30151984", - "min": "109", + "max": "53891", + "mean": "17706", + "metadataAccession": "SRR29405780", + "min": "71", "mmTag": true, - "n25": "18316", - "n50": "21760", - "n75": "26387", + "n25": "15488", + "n50": "17695", + "n75": "20781", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/PacBio_HiFi/primrose/m64055e_220907_174608.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19036/raw_data/PacBio_HiFi/m84091_230724_152950_s1.hifi_reads.bc1022.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17400", - "quartile50": "20338", - "quartile75": "24443", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "15053", + "quartile50": "16960", + "quartile75": "19764", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19185", + "sampleId": "NA19036", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "LWK", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "45757724576", - "totalGbp": "45.76", - "totalReads": "2130932", + "totalBp": "100139779782", + "totalGbp": "100.14", + "totalReads": "5655541", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797090", + "accession": "SAMN41021665", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797090", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021665", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "Y039", - "filename": "m64055e_220909_131447.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230724_160010_s2.hifi_reads.bc1001.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA19185_PB1_m64055e_220909_131447_m64055e_220909_131447", + "instrumentModel": "Revio", + "libraryId": "NA19835_PB1_m84091_230724_160010_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50759", - "mean": "21415", - "metadataAccession": "SRR30151985", - "min": "126", + "max": "66428", + "mean": "19704", + "metadataAccession": "SRR29405766", + "min": "66", "mmTag": true, - "n25": "18242", - "n50": "21711", - "n75": "26372", + "n25": "17053", + "n50": "19779", + "n75": "23499", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/PacBio_HiFi/primrose/m64055e_220909_131447.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19835/raw_data/PacBio_HiFi/m84091_230724_160010_s2.hifi_reads.bc1001.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17323", - "quartile50": "20261", - "quartile75": "24406", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16425", + "quartile50": "18793", + "quartile75": "22106", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19185", + "sampleId": "NA19835", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "ASW", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "50319900835", - "totalGbp": "50.32", - "totalReads": "2349733", + "totalBp": "95502198267", + "totalGbp": "95.5", + "totalReads": "4846730", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797087", + "accession": null, "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797087", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41708786", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m64055e_220911_090142.5mc.hifi_reads.bam", + "filename": "m84091_230724_163116_s3.hifi_reads.bc1002.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA19087_PB1_m64055e_220911_090142_m64055e_220911_090142", + "instrumentModel": "Revio", + "libraryId": "NA19377_PB1_m84091_230724_163116_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51572", - "mean": "21059", - "metadataAccession": "SRR30151941", - "min": "108", + "max": "58231", + "mean": "19846", + "metadataAccession": "SRR29405772", + "min": "257", "mmTag": true, - "n25": "17946", - "n50": "21148", - "n75": "25684", + "n25": "17125", + "n50": "20052", + "n75": "23882", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/PacBio_HiFi/primrose/m64055e_220911_090142.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19377/raw_data/PacBio_HiFi/m84091_230724_163116_s3.hifi_reads.bc1002.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17157", - "quartile50": "19831", - "quartile75": "23769", + "polymeraseVersion": "Revio P1", + "productionYear": null, + "quartile25": "16384", + "quartile50": "18965", + "quartile75": "22411", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19087", + "sampleId": "NA19377", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "38868364644", - "totalGbp": "38.87", - "totalReads": "1845688", + "totalBp": "88839158485", + "totalGbp": "88.84", + "totalReads": "4476331", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797087", + "accession": "SAMN41021667", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797087", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021667", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m64055e_220913_060032.5mc.hifi_reads.bam", + "filename": "m84091_230724_170222_s4.hifi_reads.bc1008.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA19087_PB1_m64055e_220913_060032_m64055e_220913_060032", + "instrumentModel": "Revio", + "libraryId": "HG00235_PB1_m84091_230724_170222_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50665", - "mean": "20959", - "metadataAccession": "SRR30151939", - "min": "103", + "max": "63978", + "mean": "20525", + "metadataAccession": "SRR29405848", + "min": "141", "mmTag": true, - "n25": "17863", - "n50": "21032", - "n75": "25559", + "n25": "17561", + "n50": "20992", + "n75": "25350", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/PacBio_HiFi/primrose/m64055e_220913_060032.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00235/raw_data/PacBio_HiFi/m84091_230724_170222_s4.hifi_reads.bc1008.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17081", - "quartile50": "19722", - "quartile75": "23638", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16568", + "quartile50": "19607", + "quartile75": "23582", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19087", + "sampleId": "HG00235", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "43576607076", - "totalGbp": "43.58", - "totalReads": "2079114", + "totalBp": "100350407151", + "totalGbp": "100.35", + "totalReads": "4889018", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", + "accession": null, "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797099", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41708785", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m64055e_220915_170505.5mc.hifi_reads.bam", + "filename": "m84091_230725_153931_s1.hifi_reads.bc1010.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01530_PB1_m64055e_220915_170505_m64055e_220915_170505", + "instrumentModel": "Revio", + "libraryId": "HG01626_PB1_m84091_230725_153931_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50604", - "mean": "18528", - "metadataAccession": "SRR30151945", - "min": "282", + "max": "57714", + "mean": "19058", + "metadataAccession": "SRR29405836", + "min": "82", "mmTag": true, - "n25": "16326", - "n50": "18388", - "n75": "21348", + "n25": "16616", + "n50": "18983", + "n75": "22408", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/primrose/m64055e_220915_170505.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01626/raw_data/PacBio_HiFi/m84091_230725_153931_s1.hifi_reads.bc1010.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "15897", - "quartile50": "17719", - "quartile75": "20321", + "polymeraseVersion": "Revio P1", + "productionYear": null, + "quartile25": "16153", + "quartile50": "18178", + "quartile75": "21220", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "HG01626", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "47227190614", - "totalGbp": "47.23", - "totalReads": "2548955", + "totalBp": "107287914023", + "totalGbp": "107.29", + "totalReads": "5629338", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797111", + "accession": "SAMN41021678", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797111", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021678", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m64055e_220917_121508.5mc.hifi_reads.bam", + "filename": "m84091_230725_161037_s2.hifi_reads.bc1011.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03742_PB1_m64055e_220917_121508_m64055e_220917_121508", + "instrumentModel": "Revio", + "libraryId": "HG00662_PB1_m84091_230725_161037_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50482", - "mean": "20213", - "metadataAccession": "SRR30151952", - "min": "115", + "max": "72343", + "mean": "20323", + "metadataAccession": "SRR29405774", + "min": "88", "mmTag": true, - "n25": "17699", - "n50": "20108", - "n75": "23537", + "n25": "17454", + "n50": "20596", + "n75": "24763", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/PacBio_HiFi/primrose/m64055e_220917_121508.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00662/raw_data/PacBio_HiFi/m84091_230725_161037_s2.hifi_reads.bc1011.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17216", - "quartile50": "19303", - "quartile75": "22351", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16608", + "quartile50": "19366", + "quartile75": "23090", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03742", + "sampleId": "HG00662", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ITU", - "superpopulation": "SAS", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "45064274340", - "totalGbp": "45.06", - "totalReads": "2229418", + "totalBp": "106478216787", + "totalGbp": "106.48", + "totalReads": "5239143", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797100", + "accession": "SAMN41021679", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797100", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021679", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m64055e_220920_175231.5mc.hifi_reads.bam", + "filename": "m84091_230725_164143_s3.hifi_reads.bc1012.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01784_PB1_m64055e_220920_175231_m64055e_220920_175231", + "instrumentModel": "Revio", + "libraryId": "HG01167_PB1_m84091_230725_164143_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51040", - "mean": "23614", - "metadataAccession": "SRR30151958", - "min": "103", + "max": "70236", + "mean": "20540", + "metadataAccession": "SRR29405840", + "min": "78", "mmTag": true, - "n25": "20032", - "n50": "24079", - "n75": "29330", + "n25": "17779", + "n50": "20606", + "n75": "24544", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01784/raw_data/PacBio_HiFi/primrose/m64055e_220920_175231.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01167/raw_data/PacBio_HiFi/m84091_230725_164143_s3.hifi_reads.bc1012.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "18899", - "quartile50": "22354", - "quartile75": "27082", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17135", + "quartile50": "19573", + "quartile75": "23082", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01784", + "sampleId": "HG01167", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "38314696847", - "totalGbp": "38.31", - "totalReads": "1622540", + "totalBp": "105402106362", + "totalGbp": "105.4", + "totalReads": "5131466", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797100", + "accession": "SAMN41021680", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797100", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021680", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m64055e_220922_130045.5mc.hifi_reads.bam", + "filename": "m84091_230725_171249_s4.hifi_reads.bc1015.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01784_PB1_m64055e_220922_130045_m64055e_220922_130045", + "instrumentModel": "Revio", + "libraryId": "NA19131_PB1_m84091_230725_171249_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50998", - "mean": "24281", - "metadataAccession": "SRR30151957", - "min": "133", + "max": "63090", + "mean": "20690", + "metadataAccession": "SRR29405779", + "min": "66", "mmTag": true, - "n25": "20642", - "n50": "24889", - "n75": "30216", + "n25": "17956", + "n50": "20781", + "n75": "24644", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01784/raw_data/PacBio_HiFi/primrose/m64055e_220922_130045.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19131/raw_data/PacBio_HiFi/m84091_230725_171249_s4.hifi_reads.bc1015.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "19395", - "quartile50": "23096", - "quartile75": "27956", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17305", + "quartile50": "19769", + "quartile75": "23236", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01784", + "sampleId": "NA19131", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": "YRI", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "41388556948", - "totalGbp": "41.39", - "totalReads": "1704532", + "totalBp": "107950313295", + "totalGbp": "107.95", + "totalReads": "5217376", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797111", + "accession": "SAMN41021681", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797111", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021681", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m64055e_220924_080740.5mc.hifi_reads.bam", + "filename": "m84091_230727_125753_s1.hifi_reads.bc1016.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03742_PB1_m64055e_220924_080740_m64055e_220924_080740", + "instrumentModel": "Revio", + "libraryId": "HG04153_PB1_m84091_230727_125753_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50753", - "mean": "20204", - "metadataAccession": "SRR30151950", - "min": "149", + "max": "53122", + "mean": "18296", + "metadataAccession": "SRR29405797", + "min": "118", "mmTag": true, - "n25": "17708", - "n50": "20105", - "n75": "23518", + "n25": "15865", + "n50": "18364", + "n75": "21770", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/PacBio_HiFi/primrose/m64055e_220924_080740.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG04153/raw_data/PacBio_HiFi/m84091_230727_125753_s1.hifi_reads.bc1016.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17228", - "quartile50": "19313", - "quartile75": "22345", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "15297", + "quartile50": "17477", + "quartile75": "20533", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03742", + "sampleId": "HG04153", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ITU", + "subpopulation": "BEB", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "41703134220", - "totalGbp": "41.7", - "totalReads": "2064034", + "totalBp": "99682975843", + "totalGbp": "99.68", + "totalReads": "5448151", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797108", + "accession": "SAMN41021645", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797108", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021645", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB113", - "filename": "m64330e_220218_192631.bc1012--bc1012.5mc.hifi_reads.bam", + "familyId": "SL73", + "filename": "m84091_230727_132817_s2.hifi_reads.bc1020.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03050_PB1_m64330e_220218_192631_m64330e_220218_192631", + "instrumentModel": "Revio", + "libraryId": "HG03583_PB1_m84091_230727_132817_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "58329", - "mean": "19318", - "metadataAccession": "SRR30151914", - "min": "106", + "max": "63881", + "mean": "22468", + "metadataAccession": "SRR29405788", + "min": "70", "mmTag": true, - "n25": "17264", - "n50": "19269", - "n75": "22047", + "n25": "18957", + "n50": "23160", + "n75": "28344", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/primrose/m64330e_220218_192631.bc1012--bc1012.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03583/raw_data/PacBio_HiFi/m84091_230727_132817_s2.hifi_reads.bc1020.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "16864", - "quartile50": "18682", - "quartile75": "21201", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17637", + "quartile50": "21312", + "quartile75": "26030", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03050", + "sampleId": "HG03583", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "GWD", + "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26710285393", - "totalGbp": "26.71", - "totalReads": "1382611", + "totalBp": "73592673188", + "totalGbp": "73.59", + "totalReads": "3275414", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797108", + "accession": "SAMN41021668", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797108", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021668", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB113", - "filename": "m64330e_220223_194839.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230727_135923_s3.hifi_reads.bc1009.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03050_PB1_m64330e_220223_194839_m64330e_220223_194839", + "instrumentModel": "Revio", + "libraryId": "HG03369_PB1_m84091_230727_135923_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "58639", - "mean": "19515", - "metadataAccession": "SRR30151963", - "min": "77", + "max": "62797", + "mean": "19550", + "metadataAccession": "SRR29405803", + "min": "84", "mmTag": true, - "n25": "17390", - "n50": "19466", - "n75": "22350", + "n25": "16806", + "n50": "19695", + "n75": "23620", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/primrose/m64330e_220223_194839.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03369/raw_data/PacBio_HiFi/m84091_230727_135923_s3.hifi_reads.bc1009.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "16973", - "quartile50": "18843", - "quartile75": "21459", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16081", + "quartile50": "18597", + "quartile75": "22062", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03050", + "sampleId": "HG03369", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "GWD", + "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "35577169414", - "totalGbp": "35.58", - "totalReads": "1823052", + "totalBp": "99031742869", + "totalGbp": "99.03", + "totalReads": "5065533", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797096", + "accession": "SAMN41021615", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797096", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021615", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH074", - "filename": "m64330e_220225_192221.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230727_143029_s4.hifi_reads.bc1002.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG00658_PB1_m64330e_220225_192221_m64330e_220225_192221", + "instrumentModel": "Revio", + "libraryId": "HG02392_PB1_m84091_230727_143029_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57048", - "mean": "22096", - "metadataAccession": "SRR30151926", - "min": "193", + "max": "52237", + "mean": "19939", + "metadataAccession": "SRR29405827", + "min": "448", "mmTag": true, - "n25": "19278", - "n50": "21837", - "n75": "25662", + "n25": "16974", + "n50": "19967", + "n75": "24015", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64330e_220225_192221.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02392/raw_data/PacBio_HiFi/m84091_230727_143029_s4.hifi_reads.bc1002.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "18818", - "quartile50": "20985", - "quartile75": "24337", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16316", + "quartile50": "18819", + "quartile75": "22398", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00658", + "sampleId": "HG02392", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHS", + "subpopulation": "CDX", "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "16114668851", - "totalGbp": "16.11", - "totalReads": "729270", + "totalBp": "5031138131", + "totalGbp": "5.03", + "totalReads": "252316", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797108", + "accession": "SAMN41021666", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797108", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021666", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB113", - "filename": "m64330e_220227_061615.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230727_143029_s4.hifi_reads.bc1003.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03050_PB1_m64330e_220227_061615_m64330e_220227_061615", + "instrumentModel": "Revio", + "libraryId": "HG00253_PB1_m84091_230727_143029_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "65131", - "mean": "19008", - "metadataAccession": "SRR30151962", - "min": "79", + "max": "61986", + "mean": "19838", + "metadataAccession": "SRR29405807", + "min": "129", "mmTag": true, - "n25": "16859", - "n50": "19058", - "n75": "21925", + "n25": "16985", + "n50": "20288", + "n75": "24409", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/primrose/m64330e_220227_061615.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00253/raw_data/PacBio_HiFi/m84091_230727_143029_s4.hifi_reads.bc1003.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "16379", - "quartile50": "18387", - "quartile75": "21021", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16026", + "quartile50": "18955", + "quartile75": "22733", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03050", + "sampleId": "HG00253", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "GBR", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31228629314", - "totalGbp": "31.23", - "totalReads": "1642835", + "totalBp": "89522377853", + "totalGbp": "89.52", + "totalReads": "4512540", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797105", + "accession": null, "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797105", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41708785", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN087", - "filename": "m64330e_220303_183543.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230731_130312_s1.hifi_reads.bc1010.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02514_PB1_m64330e_220303_183543_m64330e_220303_183543", + "instrumentModel": "Revio", + "libraryId": "HG01626_PB1_m84091_230731_130312_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "58548", - "mean": "19417", - "metadataAccession": "SRR30151932", - "min": "293", + "max": "55270", + "mean": "18925", + "metadataAccession": "SRR29405835", + "min": "80", "mmTag": true, - "n25": "16222", - "n50": "20266", - "n75": "25410", + "n25": "16541", + "n50": "18833", + "n75": "22147", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/primrose/m64330e_220303_183543.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01626/raw_data/PacBio_HiFi/m84091_230731_130312_s1.hifi_reads.bc1010.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "14789", - "quartile50": "18234", - "quartile75": "22842", + "polymeraseVersion": "Revio P1", + "productionYear": null, + "quartile25": "16094", + "quartile50": "18068", + "quartile75": "21004", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02514", + "sampleId": "HG01626", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "14011797437", - "totalGbp": "14.01", - "totalReads": "721617", + "totalBp": "77655239427", + "totalGbp": "77.66", + "totalReads": "4103204", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797103", + "accession": "SAMN41021625", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797103", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021625", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL023", - "filename": "m64330e_220305_053001.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230731_130312_s1.hifi_reads.bc1012.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01969_PB1_m64330e_220305_053001_m64330e_220305_053001", + "instrumentModel": "Revio", + "libraryId": "HG03874_PB1_m84091_230731_130312_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "61742", - "mean": "19007", - "metadataAccession": "SRR30151999", - "min": "67", + "max": "57091", + "mean": "22295", + "metadataAccession": "SRR29405796", + "min": "148", "mmTag": true, - "n25": "15786", - "n50": "20122", - "n75": "25672", + "n25": "18900", + "n50": "23025", + "n75": "28033", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m64330e_220305_053001.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03874/raw_data/PacBio_HiFi/m84091_230731_130312_s1.hifi_reads.bc1012.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "14113", - "quartile50": "17751", - "quartile75": "22635", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17588", + "quartile50": "21233", + "quartile75": "25872", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01969", + "sampleId": "HG03874", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": "ITU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "14847062963", - "totalGbp": "14.85", - "totalReads": "781108", + "totalBp": "12022114455", + "totalGbp": "12.02", + "totalReads": "539213", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797098", + "accession": "SAMN41021665", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797098", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021665", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM14", - "filename": "m64330e_220306_155049.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230731_133332_s2.hifi_reads.bc1001.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01252_PB1_m64330e_220306_155049_m64330e_220306_155049", + "instrumentModel": "Revio", + "libraryId": "NA19835_PB1_m84091_230731_133332_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "64212", - "mean": "18361", - "metadataAccession": "SRR30151992", - "min": "145", + "max": "60316", + "mean": "19748", + "metadataAccession": "SRR29405765", + "min": "699", "mmTag": true, - "n25": "15342", - "n50": "19265", - "n75": "24261", + "n25": "17085", + "n50": "19828", + "n75": "23581", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/primrose/m64330e_220306_155049.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19835/raw_data/PacBio_HiFi/m84091_230731_133332_s2.hifi_reads.bc1001.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "13922", - "quartile50": "17239", - "quartile75": "21719", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16451", + "quartile50": "18820", + "quartile75": "22170", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01252", + "sampleId": "NA19835", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": "ASW", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "23231673726", - "totalGbp": "23.23", - "totalReads": "1265271", + "totalBp": "7796745438", + "totalGbp": "7.8", + "totalReads": "394796", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797097", + "accession": "SAMN41021678", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797097", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021678", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM12", - "filename": "m64330e_220312_183407.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230731_133332_s2.hifi_reads.bc1011.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01150_PB1_m64330e_220312_183407_m64330e_220312_183407", + "instrumentModel": "Revio", + "libraryId": "HG00662_PB1_m84091_230731_133332_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "64946", - "mean": "18733", - "metadataAccession": "SRR30152002", - "min": "89", + "max": "67484", + "mean": "20466", + "metadataAccession": "SRR29405763", + "min": "111", "mmTag": true, - "n25": "15905", - "n50": "19420", - "n75": "23852", + "n25": "17587", + "n50": "20751", + "n75": "24962", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/primrose/m64330e_220312_183407.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00662/raw_data/PacBio_HiFi/m84091_230731_133332_s2.hifi_reads.bc1011.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "14701", - "quartile50": "17803", - "quartile75": "21821", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16722", + "quartile50": "19517", + "quartile75": "23254", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01150", + "sampleId": "HG00662", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "33479741334", - "totalGbp": "33.48", - "totalReads": "1787204", + "totalBp": "78161532546", + "totalGbp": "78.16", + "totalReads": "3819037", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797097", + "accession": "SAMN41021679", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797097", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021679", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM12", - "filename": "m64330e_220314_040416.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230731_140439_s3.hifi_reads.bc1012.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01150_PB1_m64330e_220314_040416_m64330e_220314_040416", + "instrumentModel": "Revio", + "libraryId": "HG01167_PB1_m84091_230731_140439_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "60687", - "mean": "18518", - "metadataAccession": "SRR30151917", - "min": "70", + "max": "61397", + "mean": "20577", + "metadataAccession": "SRR29405839", + "min": "63", "mmTag": true, - "n25": "15732", - "n50": "19188", - "n75": "23536", + "n25": "17829", + "n50": "20652", + "n75": "24569", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/primrose/m64330e_220314_040416.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01167/raw_data/PacBio_HiFi/m84091_230731_140439_s3.hifi_reads.bc1012.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "14558", - "quartile50": "17608", - "quartile75": "21543", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17176", + "quartile50": "19633", + "quartile75": "23104", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01150", + "sampleId": "HG01167", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CLM", + "subpopulation": "PUR", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "30983320047", - "totalGbp": "30.98", - "totalReads": "1673110", + "totalBp": "69660229902", + "totalGbp": "69.66", + "totalReads": "3385191", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797102", + "accession": null, "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797102", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41708786", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BB11", - "filename": "m64330e_220401_181429.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230731_143545_s4.hifi_reads.bc1002.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01960_PB1_m64330e_220401_181429_m64330e_220401_181429", + "instrumentModel": "Revio", + "libraryId": "NA19377_PB1_m84091_230731_143545_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "58485", - "mean": "17874", - "metadataAccession": "SRR30151965", - "min": "192", + "max": "63370", + "mean": "19726", + "metadataAccession": "SRR29405771", + "min": "548", "mmTag": true, - "n25": "15134", - "n50": "18373", - "n75": "22509", + "n25": "17022", + "n50": "19919", + "n75": "23714", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01960/raw_data/PacBio_HiFi/primrose/m64330e_220401_181429.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19377/raw_data/PacBio_HiFi/m84091_230731_143545_s4.hifi_reads.bc1002.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "14152", - "quartile50": "16939", - "quartile75": "20683", + "polymeraseVersion": "Revio P1", + "productionYear": null, + "quartile25": "16297", + "quartile50": "18847", + "quartile75": "22264", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01960", + "sampleId": "NA19377", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26059199917", - "totalGbp": "26.06", - "totalReads": "1457859", + "totalBp": "15291250872", + "totalGbp": "15.29", + "totalReads": "775152", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797107", + "accession": "SAMN41021680", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797107", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021680", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB97", - "filename": "m64330e_220403_050826.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230731_143545_s4.hifi_reads.bc1015.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02984_PB1_m64330e_220403_050826_m64330e_220403_050826", + "instrumentModel": "Revio", + "libraryId": "NA19131_PB1_m84091_230731_143545_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "48901", - "mean": "15979", - "metadataAccession": "SRR30151978", - "min": "61", + "max": "57669", + "mean": "20603", + "metadataAccession": "SRR29405778", + "min": "255", "mmTag": true, - "n25": "13946", - "n50": "16107", - "n75": "18985", + "n25": "17920", + "n50": "20683", + "n75": "24467", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m64330e_220403_050826.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19131/raw_data/PacBio_HiFi/m84091_230731_143545_s4.hifi_reads.bc1015.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "13408", - "quartile50": "15344", - "quartile75": "17937", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17281", + "quartile50": "19706", + "quartile75": "23082", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02984", + "sampleId": "NA19131", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "GWD", + "subpopulation": "YRI", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "25922780932", - "totalGbp": "25.92", - "totalReads": "1622283", + "totalBp": "73614424293", + "totalGbp": "73.61", + "totalReads": "3572878", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797108", + "accession": "SAMN41021681", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797108", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021681", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB113", - "filename": "m64330e_220407_180519.demultiplex.bc1012--bc1012.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230802_170158_s1.hifi_reads.bc1016.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03050_PB1_m64330e_220407_180519_m64330e_220407_180519", + "instrumentModel": "Revio", + "libraryId": "HG04153_PB1_m84091_230802_170158_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "62057", - "mean": "18910", - "metadataAccession": "SRR30151913", - "min": "123", + "max": "57640", + "mean": "18123", + "metadataAccession": "SRR29405798", + "min": "58", "mmTag": true, - "n25": "16778", - "n50": "18950", - "n75": "21783", + "n25": "15734", + "n50": "18167", + "n75": "21488", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/primrose/m64330e_220407_180519.demultiplex.bc1012--bc1012.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG04153/raw_data/PacBio_HiFi/m84091_230802_170158_s1.hifi_reads.bc1016.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "16305", - "quartile50": "18292", - "quartile75": "20892", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "15190", + "quartile50": "17310", + "quartile75": "20283", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03050", + "sampleId": "HG04153", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "10893343672", - "totalGbp": "10.89", - "totalReads": "576036", + "totalBp": "104895724944", + "totalGbp": "104.9", + "totalReads": "5787787", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797106", + "accession": "SAMN37706911", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797106", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37706911", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB74", - "filename": "m64330e_220407_180519.demultiplex.bc1021--bc1021.5mc.hifi_reads.bam", + "familyId": "BD62", + "filename": "m84091_230802_173218_s2.hifi_reads.bc1001.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02841_PB1_m64330e_220407_180519_m64330e_220407_180519", + "instrumentModel": "Revio", + "libraryId": "HG04187_PB3_m84091_230802_173218_s2.hifi_reads.bc1001.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "47984", - "mean": "16219", - "metadataAccession": "SRR30151970", - "min": "65", + "max": "58559", + "mean": "18709", + "metadataAccession": "SRR30338073", + "min": "51", "mmTag": true, - "n25": "14039", - "n50": "16463", - "n75": "19604", + "n25": "16293", + "n50": "19041", + "n75": "22667", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/primrose/m64330e_220407_180519.demultiplex.bc1021--bc1021.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG04187/raw_data/PacBio_HiFi/m84091_230802_173218_s2.hifi_reads.bc1001.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "13397", - "quartile50": "15543", - "quartile75": "18406", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "15524", + "quartile50": "17982", + "quartile75": "21231", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02841", + "sampleId": "HG04187", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "9018445903", - "totalGbp": "9.02", - "totalReads": "556026", + "totalBp": "87904631234", + "totalGbp": "87.9", + "totalReads": "4698462", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797102", + "accession": "SAMN37706910", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797102", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37706910", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BB11", - "filename": "m64330e_220412_185021.5mc.hifi_reads.bam", + "familyId": "BD53", + "filename": "m84091_230802_180324_s3.hifi_reads.bc1003.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01960_PB1_m64330e_220412_185021_m64330e_220412_185021", + "instrumentModel": "Revio", + "libraryId": "HG04160_PB3_m84091_230802_180324_s3.hifi_reads.bc1003.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "58095", - "mean": "17945", - "metadataAccession": "SRR30151964", - "min": "79", + "max": "54941", + "mean": "19368", + "metadataAccession": "SRR30338069", + "min": "69", "mmTag": true, - "n25": "15184", - "n50": "18465", - "n75": "22625", + "n25": "16777", + "n50": "19409", + "n75": "22975", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01960/raw_data/PacBio_HiFi/primrose/m64330e_220412_185021.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/m84091_230802_180324_s3.hifi_reads.bc1003.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "14185", - "quartile50": "17011", - "quartile75": "20793", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "16177", + "quartile50": "18481", + "quartile75": "21651", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01960", + "sampleId": "HG04160", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "30024295514", - "totalGbp": "30.02", - "totalReads": "1673071", + "totalBp": "84007295438", + "totalGbp": "84.01", + "totalReads": "4337385", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797098", + "accession": "SAMN37706908", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797098", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37706908", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM14", - "filename": "m64330e_220414_054422.5mc.hifi_reads.bam", + "familyId": "BD22", + "filename": "m84091_230802_183430_s4.hifi_reads.bc1009.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01252_PB1_m64330e_220414_054422_m64330e_220414_054422", + "instrumentModel": "Revio", + "libraryId": "HG03816_PB3_m84091_230802_183430_s4.hifi_reads.bc1009.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "58714", - "mean": "19073", - "metadataAccession": "SRR30151993", - "min": "191", + "max": "58067", + "mean": "18600", + "metadataAccession": "SRR30338070", + "min": "53", "mmTag": true, - "n25": "16164", - "n50": "19802", - "n75": "24344", + "n25": "16232", + "n50": "18532", + "n75": "21722", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/primrose/m64330e_220414_054422.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/m84091_230802_183430_s4.hifi_reads.bc1009.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "14898", - "quartile50": "18124", - "quartile75": "22227", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "15760", + "quartile50": "17762", + "quartile75": "20609", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01252", + "sampleId": "HG03816", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "23100441860", - "totalGbp": "23.1", - "totalReads": "1211135", + "totalBp": "80309889302", + "totalGbp": "80.31", + "totalReads": "4317671", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797101", + "accession": "SAMN37706906", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797101", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37706906", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL015", - "filename": "m64330e_220415_164034.5mc.hifi_reads.bam", + "familyId": "GB40", + "filename": "m84091_230804_170925_s2.hifi_reads.bc1010.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01940_PB1_m64330e_220415_164034_m64330e_220415_164034", + "instrumentModel": "Revio", + "libraryId": "HG02668_PB3_m84091_230804_170925_s2.hifi_reads.bc1010.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "65173", - "mean": "18142", - "metadataAccession": "SRR30151922", - "min": "111", + "max": "57756", + "mean": "18725", + "metadataAccession": "SRR30338071", + "min": "64", "mmTag": true, - "n25": "15279", - "n50": "19180", - "n75": "23888", + "n25": "16510", + "n50": "18719", + "n75": "21920", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/primrose/m64330e_220415_164034.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/m84091_230804_170925_s2.hifi_reads.bc1010.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "13734", - "quartile50": "17201", - "quartile75": "21523", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "16051", + "quartile50": "17971", + "quartile75": "20815", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01940", + "sampleId": "HG02668", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "29848671416", - "totalGbp": "29.85", - "totalReads": "1645196", + "totalBp": "97156169119", + "totalGbp": "97.16", + "totalReads": "5188311", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797105", + "accession": "SAMN37706907", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797105", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37706907", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN087", - "filename": "m64330e_220417_033652.5mc.hifi_reads.bam", + "familyId": "BD18", + "filename": "m84091_230804_181137_s4.hifi_reads.bc1002.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02514_PB1_m64330e_220417_033652_m64330e_220417_033652", + "instrumentModel": "Revio", + "libraryId": "HG03804_PB3_m84091_230804_181137_s4.hifi_reads.bc1002.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57274", - "mean": "16268", - "metadataAccession": "SRR30151931", - "min": "79", + "max": "67004", + "mean": "18381", + "metadataAccession": "SRR30338068", + "min": "58", "mmTag": true, - "n25": "14002", - "n50": "16628", - "n75": "19975", + "n25": "16091", + "n50": "18311", + "n75": "21411", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/primrose/m64330e_220417_033652.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/m84091_230804_181137_s4.hifi_reads.bc1002.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "13228", - "quartile50": "15572", - "quartile75": "18615", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "15669", + "quartile50": "17595", + "quartile75": "20400", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02514", + "sampleId": "HG03804", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "30936543655", - "totalGbp": "30.94", - "totalReads": "1901650", + "totalBp": "104078927880", + "totalGbp": "104.08", + "totalReads": "5662300", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797096", + "accession": "SAMN37706905", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797096", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37706905", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH074", - "filename": "m64330e_220512_181140.5mc.hifi_reads.bam", + "familyId": "SH090", + "filename": "m84091_230817_140121_s1.hifi_reads.bc1011.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG00658_PB1_m64330e_220512_181140_m64330e_220512_181140", + "instrumentModel": "Revio", + "libraryId": "HG00706_PB3_m84091_230817_140121_s1.hifi_reads.bc1011.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "60879", - "mean": "17679", - "metadataAccession": "SRR30151925", - "min": "144", + "max": "63607", + "mean": "19983", + "metadataAccession": "SRR30338074", + "min": "82", "mmTag": true, - "n25": "15053", - "n50": "18478", - "n75": "22690", + "n25": "17349", + "n50": "20221", + "n75": "24055", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64330e_220512_181140.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/m84091_230817_140121_s1.hifi_reads.bc1011.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "13762", - "quartile50": "16859", - "quartile75": "20701", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "16605", + "quartile50": "19134", + "quartile75": "22560", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00658", + "sampleId": "HG00706", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", @@ -160283,649 +219303,649 @@ "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "23514775757", - "totalGbp": "23.51", - "totalReads": "1330043", + "totalBp": "78589493715", + "totalGbp": "78.59", + "totalReads": "3932816", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797093", + "accession": "SAMN37706909", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797093", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37706909", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m64330e_220801_170711.5mc.hifi_reads.bam", + "familyId": "BD52", + "filename": "m84091_230817_143140_s2.hifi_reads.bc1008.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA19468_PB1_m64330e_220801_170711_m64330e_220801_170711", + "instrumentModel": "Revio", + "libraryId": "HG04157_PB3_m84091_230817_143140_s2.hifi_reads.bc1008.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51468", - "mean": "24696", - "metadataAccession": "SRR30151997", - "min": "227", + "max": "58048", + "mean": "18843", + "metadataAccession": "SRR30338072", + "min": "92", "mmTag": true, - "n25": "20631", - "n50": "25357", - "n75": "31718", + "n25": "16379", + "n50": "18837", + "n75": "22245", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/primrose/m64330e_220801_170711.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/m84091_230817_143140_s2.hifi_reads.bc1008.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "19225", - "quartile50": "23134", - "quartile75": "28711", + "polymeraseVersion": "Revio P1", + "productionYear": "YR2", + "quartile25": "15831", + "quartile50": "17986", + "quartile75": "21000", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19468", + "sampleId": "HG04157", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "BEB", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "36078102199", - "totalGbp": "36.08", - "totalReads": "1460854", + "totalBp": "79143303006", + "totalGbp": "79.14", + "totalReads": "4200056", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797110", + "accession": "SAMN37797102", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797110", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37797102", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SL56", - "filename": "m64330e_220803_140136.5mc.hifi_reads.bam", + "familyId": "BB11", + "filename": "m84091_230817_150246_s3.hifi_reads.bc1012.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03470_PB1_m64330e_220803_140136_m64330e_220803_140136", + "instrumentModel": "Revio", + "libraryId": "HG01960_PB3_m84091_230817_150246_s3.hifi_reads.bc1012.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51631", - "mean": "25375", - "metadataAccession": "SRR30151959", - "min": "101", + "max": "57666", + "mean": "19297", + "metadataAccession": "SRR30336730", + "min": "70", "mmTag": true, - "n25": "21306", - "n50": "26421", - "n75": "32901", + "n25": "16765", + "n50": "19261", + "n75": "22723", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/PacBio_HiFi/primrose/m64330e_220803_140136.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01960/raw_data/PacBio_HiFi/m84091_230817_150246_s3.hifi_reads.bc1012.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "19567", - "quartile50": "23991", - "quartile75": "29824", + "quartile25": "16237", + "quartile50": "18402", + "quartile75": "21481", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03470", + "sampleId": "HG01960", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", + "subpopulation": "ACB", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "43068072066", - "totalGbp": "43.07", - "totalReads": "1697249", + "totalBp": "51521920991", + "totalGbp": "51.52", + "totalReads": "2669847", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797104", + "accession": "SAMN37797089", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797104", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37797089", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m64330e_220805_094849.5mc.hifi_reads.bam", + "familyId": "Y056", + "filename": "m84091_230817_150246_s3.hifi_reads.bc1015.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02391_PB1_m64330e_220805_094849_m64330e_220805_094849", + "instrumentModel": "Revio", + "libraryId": "NA19159_PB1_m84091_230817_150246_s3.hifi_reads.bc1015.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51754", - "mean": "26048", - "metadataAccession": "SRR30151982", - "min": "133", + "max": "63442", + "mean": "22237", + "metadataAccession": "SRR30336724", + "min": "176", "mmTag": true, - "n25": "22058", - "n50": "27323", - "n75": "33685", + "n25": "18976", + "n50": "22358", + "n75": "27020", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/PacBio_HiFi/primrose/m64330e_220805_094849.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/PacBio_HiFi/m84091_230817_150246_s3.hifi_reads.bc1015.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "20160", - "quartile50": "24855", - "quartile75": "30793", + "quartile25": "18178", + "quartile50": "20997", + "quartile75": "25135", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02391", + "sampleId": "NA19159", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": "YRI", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "41882544788", - "totalGbp": "41.88", - "totalReads": "1607865", + "totalBp": "23688286583", + "totalGbp": "23.69", + "totalReads": "1065226", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797092", + "accession": "SAMN41021615", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797092", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021615", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m64330e_220819_173115.5mc.hifi_reads.bam", + "filename": "m84091_230817_153352_s4.hifi_reads.bc1002.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA19391_PB1_m64330e_220819_173115_m64330e_220819_173115", + "instrumentModel": "Revio", + "libraryId": "HG02392_PB1_m84091_230817_153352_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51241", - "mean": "21572", - "metadataAccession": "SRR30151980", - "min": "120", + "max": "53098", + "mean": "18520", + "metadataAccession": "SRR29405825", + "min": "235", "mmTag": true, - "n25": "18006", - "n50": "22062", - "n75": "27437", + "n25": "16304", + "n50": "18487", + "n75": "21703", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/PacBio_HiFi/primrose/m64330e_220819_173115.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02392/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1002.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "16812", - "quartile50": "20182", - "quartile75": "24910", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "15842", + "quartile50": "17738", + "quartile75": "20544", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19391", + "sampleId": "HG02392", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "39223153519", - "totalGbp": "39.22", - "totalReads": "1818202", + "totalBp": "13184911846", + "totalGbp": "13.18", + "totalReads": "711902", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797086", + "accession": null, "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797086", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41708785", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m64330e_220821_125227.5mc.hifi_reads.bam", + "filename": "m84091_230817_153352_s4.hifi_reads.bc1010.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA18570_PB1_m64330e_220821_125227_m64330e_220821_125227", + "instrumentModel": "Revio", + "libraryId": "HG01626_PB1_m84091_230817_153352_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51264", - "mean": "21640", - "metadataAccession": "SRR30151938", - "min": "172", + "max": "52545", + "mean": "18641", + "metadataAccession": "SRR29405834", + "min": "598", "mmTag": true, - "n25": "18221", - "n50": "22357", - "n75": "27569", + "n25": "16362", + "n50": "18484", + "n75": "21658", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/PacBio_HiFi/primrose/m64330e_220821_125227.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01626/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1010.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "16869", - "quartile50": "20469", - "quartile75": "25180", + "polymeraseVersion": "Revio P1", + "productionYear": null, + "quartile25": "15961", + "quartile50": "17790", + "quartile75": "20571", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18570", + "sampleId": "HG01626", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": null, + "superpopulation": null, "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "46050591401", - "totalGbp": "46.05", - "totalReads": "2127986", + "totalBp": "12082980291", + "totalGbp": "12.08", + "totalReads": "648185", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797109", + "accession": "SAMN41021678", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797109", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021678", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m64330e_220823_081200.5mc.hifi_reads.bam", + "filename": "m84091_230817_153352_s4.hifi_reads.bc1011.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03458_PB1_m64330e_220823_081200_m64330e_220823_081200", + "instrumentModel": "Revio", + "libraryId": "HG00662_PB1_m84091_230817_153352_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50617", - "mean": "21919", - "metadataAccession": "SRR30151988", - "min": "120", + "max": "57887", + "mean": "19833", + "metadataAccession": "SRR29405847", + "min": "695", "mmTag": true, - "n25": "18525", - "n50": "22413", - "n75": "27409", + "n25": "17080", + "n50": "20094", + "n75": "24019", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03458/raw_data/PacBio_HiFi/primrose/m64330e_220823_081200.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00662/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1011.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17398", - "quartile50": "20738", - "quartile75": "25237", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16262", + "quartile50": "18952", + "quartile75": "22472", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03458", + "sampleId": "HG00662", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "44445899486", - "totalGbp": "44.45", - "totalReads": "2027705", + "totalBp": "6343032112", + "totalGbp": "6.34", + "totalReads": "319809", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797089", + "accession": "SAMN41021679", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797089", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021679", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "Y056", - "filename": "m64330e_220902_175209.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_230817_153352_s4.hifi_reads.bc1012.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA19159_PB1_m64330e_220902_175209_m64330e_220902_175209", + "instrumentModel": "Revio", + "libraryId": "HG01167_PB1_m84091_230817_153352_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50954", - "mean": "22576", - "metadataAccession": "SRR30151954", - "min": "280", + "max": "53672", + "mean": "19896", + "metadataAccession": "SRR29405838", + "min": "325", "mmTag": true, - "n25": "19192", - "n50": "22692", - "n75": "27606", + "n25": "17361", + "n50": "19875", + "n75": "23415", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/PacBio_HiFi/primrose/m64330e_220902_175209.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01167/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1012.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "18342", - "quartile50": "21256", - "quartile75": "25536", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16814", + "quartile50": "19006", + "quartile75": "22140", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19159", + "sampleId": "HG01167", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "PUR", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "46101493223", - "totalGbp": "46.1", - "totalReads": "2042024", + "totalBp": "18661653900", + "totalGbp": "18.66", + "totalReads": "937915", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", + "accession": "SAMN41021680", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797094", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021680", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m64330e_220915_165522.5mc.hifi_reads.bam", + "filename": "m84091_230817_153352_s4.hifi_reads.bc1015.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA20799_PB1_ m64330e_220915_165522_ m64330e_220915_165522", + "instrumentModel": "Revio", + "libraryId": "NA19131_PB1_m84091_230817_153352_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "53388", - "mean": "22162", - "metadataAccession": "SRR30151946", - "min": "200", + "max": "52957", + "mean": "20090", + "metadataAccession": "SRR29405777", + "min": "375", "mmTag": true, - "n25": "18639", - "n50": "22531", - "n75": "27786", + "n25": "17570", + "n50": "20107", + "n75": "23620", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/primrose/m64330e_220915_165522.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19131/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1015.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17565", - "quartile50": "20807", - "quartile75": "25422", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17010", + "quartile50": "19238", + "quartile75": "22376", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "NA19131", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "YRI", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "35836345492", - "totalGbp": "35.84", - "totalReads": "1617007", + "totalBp": "18028708953", + "totalGbp": "18.03", + "totalReads": "897397", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797100", + "accession": "SAMN41021645", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797100", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021645", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m64330e_220917_122517.5mc.hifi_reads.bam", + "familyId": "SL73", + "filename": "m84091_230817_153352_s4.hifi_reads.bc1020.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01784_PB1_m64330e_220917_122517_m64330e_220917_122517", + "instrumentModel": "Revio", + "libraryId": "HG03583_PB1_m84091_230817_153352_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51590", - "mean": "23692", - "metadataAccession": "SRR30151956", - "min": "124", + "max": "58773", + "mean": "20982", + "metadataAccession": "SRR29405789", + "min": "374", "mmTag": true, - "n25": "20091", - "n50": "24148", - "n75": "29428", + "n25": "17589", + "n50": "21310", + "n75": "26145", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01784/raw_data/PacBio_HiFi/primrose/m64330e_220917_122517.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03583/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1020.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "18958", - "quartile50": "22422", - "quartile75": "27156", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16579", + "quartile50": "19701", + "quartile75": "24014", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01784", + "sampleId": "HG03583", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": "MSL", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "40678518461", - "totalGbp": "40.68", - "totalReads": "1716965", + "totalBp": "13823052723", + "totalGbp": "13.82", + "totalReads": "658801", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797107", + "accession": "SAMN37797106", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797107", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37797106", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB97", - "filename": "m64334e_220218_191452.bc1011--bc1011.5mc.hifi_reads.bam", + "familyId": "GB74", + "filename": "m84091_230905_192642_s1.hifi_reads.bc1015.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02984_PB1_m64334e_220218_191452_m64334e_220218_191452", + "instrumentModel": "Revio", + "libraryId": "HG02841_PB3_m84091_230905_192642_s1.hifi_reads.bc1015.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "55371", - "mean": "20914", - "metadataAccession": "SRR30151974", - "min": "61", + "max": "70436", + "mean": "16387", + "metadataAccession": "SRR30336733", + "min": "101", "mmTag": true, - "n25": "18050", - "n50": "20898", - "n75": "24783", + "n25": "14616", + "n50": "16267", + "n75": "18519", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m64334e_220218_191452.bc1011--bc1011.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/m84091_230905_192642_s1.hifi_reads.bc1015.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "17437", - "quartile50": "19878", - "quartile75": "23340", + "quartile25": "14330", + "quartile50": "15798", + "quartile75": "17874", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02984", + "sampleId": "HG02841", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", @@ -160933,74 +219953,74 @@ "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "17423268103", - "totalGbp": "17.42", - "totalReads": "833071", + "totalBp": "26410820072", + "totalGbp": "26.41", + "totalReads": "1611638", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797101", + "accession": "SAMN37797096", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797101", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37797096", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL015", - "filename": "m64334e_220304_185513.5mc.hifi_reads.bam", + "familyId": "SH074", + "filename": "m84091_230905_192642_s1.hifi_reads.bc1018.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01940_PB1_m64334e_220304_185513_m64334e_220304_185513", + "instrumentModel": "Revio", + "libraryId": "HG00658_PB3_m84091_230905_192642_s1.hifi_reads.bc1018.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "65765", - "mean": "17273", - "metadataAccession": "SRR30151921", - "min": "259", + "max": "54608", + "mean": "17726", + "metadataAccession": "SRR30336740", + "min": "214", "mmTag": true, - "n25": "14439", - "n50": "17758", - "n75": "22314", + "n25": "15762", + "n50": "17647", + "n75": "20252", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/primrose/m64334e_220304_185513.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/m84091_230905_192642_s1.hifi_reads.bc1018.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "13327", - "quartile50": "16162", - "quartile75": "19984", + "quartile25": "15404", + "quartile50": "17090", + "quartile75": "19458", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01940", + "sampleId": "HG00658", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "13930028444", - "totalGbp": "13.93", - "totalReads": "806419", + "totalBp": "28947533667", + "totalGbp": "28.95", + "totalReads": "1633001", "twoHundredkbPlus": "N/A", "whales": "N/A" }, @@ -161013,49 +220033,49 @@ "basecallerVersion": "N/A", "bioprojectAccession": "N/A", "biosampleAccession": "SAMN37797097", - "ccsAlgorithm": "6.0.0", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": "CLM12", - "filename": "m64334e_220306_054934.5mc.hifi_reads.bam", + "filename": "m84091_230905_192642_s1.hifi_reads.bc1019.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01150_PB1_m64334e_220306_054934_m64334e_220306_054934", + "instrumentModel": "Revio", + "libraryId": "HG01150_PB3_m84091_230905_192642_s1.hifi_reads.bc1019.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "64797", - "mean": "18306", - "metadataAccession": "SRR30151916", - "min": "79", + "max": "59777", + "mean": "20466", + "metadataAccession": "SRR30336745", + "min": "147", "mmTag": true, - "n25": "15574", - "n50": "18928", - "n75": "23149", + "n25": "17631", + "n50": "20623", + "n75": "24644", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/primrose/m64334e_220306_054934.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/m84091_230905_192642_s1.hifi_reads.bc1019.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "14448", - "quartile50": "17415", - "quartile75": "21235", + "quartile25": "16875", + "quartile50": "19502", + "quartile75": "23080", "readN50": "N/A", "result": "N/A", "sampleId": "HG01150", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", @@ -161063,9 +220083,9 @@ "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "32272473361", - "totalGbp": "32.27", - "totalReads": "1762889", + "totalBp": "16813536710", + "totalGbp": "16.81", + "totalReads": "821512", "twoHundredkbPlus": "N/A", "whales": "N/A" }, @@ -161078,49 +220098,49 @@ "basecallerVersion": "N/A", "bioprojectAccession": "N/A", "biosampleAccession": "SAMN37797106", - "ccsAlgorithm": "6.0.0", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": "GB74", - "filename": "m64334e_220321_180258.5mc.hifi_reads.bam", + "filename": "m84091_230905_195701_s2.hifi_reads.bc1015.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02841_PB1_m64334e_220321_180258_m64334e_220321_180258", + "instrumentModel": "Revio", + "libraryId": "HG02841_PB3_m84091_230905_195701_s2.hifi_reads.bc1015.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "53376", - "mean": "16200", - "metadataAccession": "SRR30151971", - "min": "111", + "max": "65476", + "mean": "16286", + "metadataAccession": "SRR30336732", + "min": "104", "mmTag": true, - "n25": "14048", - "n50": "16357", - "n75": "19398", + "n25": "14558", + "n50": "16167", + "n75": "18380", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/primrose/m64334e_220321_180258.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/m84091_230905_195701_s2.hifi_reads.bc1015.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "13472", - "quartile50": "15513", - "quartile75": "18265", + "quartile25": "14284", + "quartile50": "15715", + "quartile75": "17757", "readN50": "N/A", "result": "N/A", "sampleId": "HG02841", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", @@ -161128,649 +220148,649 @@ "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31549601858", - "totalGbp": "31.55", - "totalReads": "1947398", + "totalBp": "25976366531", + "totalGbp": "25.98", + "totalReads": "1595006", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797097", + "accession": "SAMN37797096", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797097", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37797096", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM12", - "filename": "m64334e_220412_183749.demultiplex.bc1015--bc1015.5mc.hifi_reads.bam", + "familyId": "SH074", + "filename": "m84091_230905_195701_s2.hifi_reads.bc1018.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01150_PB1_m64334e_220412_183749_m64334e_220412_183749", + "instrumentModel": "Revio", + "libraryId": "HG00658_PB3_m84091_230905_195701_s2.hifi_reads.bc1018.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "56437", - "mean": "18210", - "metadataAccession": "SRR30151936", - "min": "785", + "max": "50180", + "mean": "17611", + "metadataAccession": "SRR30336739", + "min": "71", "mmTag": true, - "n25": "15476", - "n50": "18801", - "n75": "22940", + "n25": "15689", + "n50": "17526", + "n75": "20080", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/primrose/m64334e_220412_183749.demultiplex.bc1015--bc1015.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/m84091_230905_195701_s2.hifi_reads.bc1018.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "14398", - "quartile50": "17328", - "quartile75": "21106", + "quartile25": "15344", + "quartile50": "16987", + "quartile75": "19304", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01150", + "sampleId": "HG00658", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "9693198556", - "totalGbp": "9.69", - "totalReads": "532298", + "totalBp": "28067920433", + "totalGbp": "28.07", + "totalReads": "1593745", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797106", + "accession": "SAMN37797097", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797106", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37797097", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB74", - "filename": "m64334e_220412_183749.demultiplex.bc1021--bc1021.5mc.hifi_reads.bam", + "familyId": "CLM12", + "filename": "m84091_230905_195701_s2.hifi_reads.bc1019.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02841_PB1_m64334e_220412_183749_m64334e_220412_183749", + "instrumentModel": "Revio", + "libraryId": "HG01150_PB3_m84091_230905_195701_s2.hifi_reads.bc1019.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "52702", - "mean": "16107", - "metadataAccession": "SRR30151968", - "min": "272", + "max": "56800", + "mean": "20190", + "metadataAccession": "SRR30336744", + "min": "204", "mmTag": true, - "n25": "13963", - "n50": "16317", - "n75": "19383", + "n25": "17434", + "n50": "20325", + "n75": "24157", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/primrose/m64334e_220412_183749.demultiplex.bc1021--bc1021.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/m84091_230905_195701_s2.hifi_reads.bc1019.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "13350", - "quartile50": "15440", - "quartile75": "18231", + "quartile25": "16730", + "quartile50": "19264", + "quartile75": "22692", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02841", + "sampleId": "HG01150", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "11067164812", - "totalGbp": "11.07", - "totalReads": "687065", + "totalBp": "15710208724", + "totalGbp": "15.71", + "totalReads": "778094", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797103", + "accession": "SAMN37797106", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797103", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37797106", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL023", - "filename": "m64334e_220415_144515.5mc.hifi_reads.bam", + "familyId": "GB74", + "filename": "m84091_230905_202807_s3.hifi_reads.bc1015.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01969_PB1_m64334e_220415_144515_m64334e_220415_144515", + "instrumentModel": "Revio", + "libraryId": "HG02841_PB3_m84091_230905_202807_s3.hifi_reads.bc1015.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "39606", - "mean": "14532", - "metadataAccession": "SRR30152000", - "min": "111", + "max": "74486", + "mean": "16355", + "metadataAccession": "SRR30336731", + "min": "101", "mmTag": true, - "n25": "13123", - "n50": "14675", - "n75": "16767", + "n25": "14588", + "n50": "16230", + "n75": "18476", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m64334e_220415_144515.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/m84091_230905_202807_s3.hifi_reads.bc1015.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "12750", - "quartile50": "14187", - "quartile75": "16103", + "quartile25": "14306", + "quartile50": "15762", + "quartile75": "17832", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01969", + "sampleId": "HG02841", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "9504330901", - "totalGbp": "9.5", - "totalReads": "654022", + "totalBp": "25930880331", + "totalGbp": "25.93", + "totalReads": "1585432", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797098", + "accession": "SAMN37797096", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797098", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37797096", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM14", - "filename": "m64334e_220419_183840.5mc.hifi_reads.bam", + "familyId": "SH074", + "filename": "m84091_230905_202807_s3.hifi_reads.bc1018.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01252_PB1_m64334e_220419_183840_m64334e_220419_183840", + "instrumentModel": "Revio", + "libraryId": "HG00658_PB3_m84091_230905_202807_s3.hifi_reads.bc1018.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "58849", - "mean": "19056", - "metadataAccession": "SRR30151994", - "min": "65", + "max": "56570", + "mean": "17700", + "metadataAccession": "SRR30336737", + "min": "221", "mmTag": true, - "n25": "16137", - "n50": "19822", - "n75": "24377", + "n25": "15740", + "n50": "17617", + "n75": "20227", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/primrose/m64334e_220419_183840.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/m84091_230905_202807_s3.hifi_reads.bc1018.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "14842", - "quartile50": "18100", - "quartile75": "22252", + "quartile25": "15383", + "quartile50": "17057", + "quartile75": "19422", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01252", + "sampleId": "HG00658", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "22373384029", - "totalGbp": "22.37", - "totalReads": "1174065", + "totalBp": "28356016363", + "totalGbp": "28.36", + "totalReads": "1601972", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797107", + "accession": "SAMN37797097", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797107", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37797097", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB97", - "filename": "m64334e_220421_053305.5mc.hifi_reads.bam", + "familyId": "CLM12", + "filename": "m84091_230905_202807_s3.hifi_reads.bc1019.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02984_PB1_m64334e_220421_053305_m64334e_220421_053305", + "instrumentModel": "Revio", + "libraryId": "HG01150_PB3_m84091_230905_202807_s3.hifi_reads.bc1019.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "58810", - "mean": "16660", - "metadataAccession": "SRR30151977", - "min": "104", + "max": "56054", + "mean": "20455", + "metadataAccession": "SRR30336743", + "min": "175", "mmTag": true, - "n25": "14336", - "n50": "17345", - "n75": "21044", + "n25": "17602", + "n50": "20609", + "n75": "24647", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m64334e_220421_053305.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/m84091_230905_202807_s3.hifi_reads.bc1019.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "13216", - "quartile50": "15998", - "quartile75": "19386", + "quartile25": "16854", + "quartile50": "19481", + "quartile75": "23065", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02984", + "sampleId": "HG01150", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "CLM", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "22717109029", - "totalGbp": "22.72", - "totalReads": "1363555", + "totalBp": "16465388808", + "totalGbp": "16.47", + "totalReads": "804940", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797101", + "accession": "SAMN37797108", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797101", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37797108", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL015", - "filename": "m64334e_220422_151506.5mc.hifi_reads.bam", + "familyId": "GB113", + "filename": "m84091_230905_205913_s4.hifi_reads.bc1017.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01940_PB1_m64334e_220422_151506_m64334e_220422_151506", + "instrumentModel": "Revio", + "libraryId": "HG03050_PB3_m84091_230905_205913_s4.hifi_reads.bc1017.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "65732", - "mean": "18473", - "metadataAccession": "SRR30151920", - "min": "96", + "max": "53531", + "mean": "18401", + "metadataAccession": "SRR30336735", + "min": "242", "mmTag": true, - "n25": "15588", - "n50": "19553", - "n75": "24314", + "n25": "16062", + "n50": "18284", + "n75": "21493", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/primrose/m64334e_220422_151506.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/m84091_230905_205913_s4.hifi_reads.bc1017.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "13989", - "quartile50": "17542", - "quartile75": "21933", + "quartile25": "15612", + "quartile50": "17537", + "quartile75": "20350", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01940", + "sampleId": "HG03050", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "30248862465", - "totalGbp": "30.25", - "totalReads": "1637435", + "totalBp": "32472953202", + "totalGbp": "32.47", + "totalReads": "1764709", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797101", + "accession": "SAMN37797098", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797101", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37797098", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL015", - "filename": "m64334e_220424_021126.5mc.hifi_reads.bam", + "familyId": "CLM14", + "filename": "m84091_230905_205913_s4.hifi_reads.bc1020.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01940_PB1_m64334e_220424_021126_m64334e_220424_021126", + "instrumentModel": "Revio", + "libraryId": "HG01252_PB3_m84091_230905_205913_s4.hifi_reads.bc1020.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "68924", - "mean": "18380", - "metadataAccession": "SRR30151919", - "min": "103", + "max": "61149", + "mean": "19611", + "metadataAccession": "SRR30336747", + "min": "159", "mmTag": true, - "n25": "15517", - "n50": "19434", - "n75": "24124", + "n25": "16982", + "n50": "19596", + "n75": "23247", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/primrose/m64334e_220424_021126.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/m84091_230905_205913_s4.hifi_reads.bc1020.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "13961", - "quartile50": "17465", - "quartile75": "21800", + "quartile25": "16414", + "quartile50": "18668", + "quartile75": "21894", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01940", + "sampleId": "HG01252", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "PEL", + "subpopulation": "CLM", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "28711690224", - "totalGbp": "28.71", - "totalReads": "1562113", + "totalBp": "51778207574", + "totalGbp": "51.78", + "totalReads": "2640185", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797105", + "accession": "SAMN37797107", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797105", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37797107", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN087", - "filename": "m64334e_220426_185110.demultiplex.bc1001--bc1001.5mc.hifi_reads.bam", + "familyId": "GB97", + "filename": "m84091_231004_192043_s3.hifi_reads.bc1016.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02514_PB1_m64334e_220426_185110_m64334e_220426_185110", + "instrumentModel": "Revio", + "libraryId": "HG02984_PB3_m84091_231004_192043_s3.hifi_reads.bc1016.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "58871", - "mean": "17012", - "metadataAccession": "SRR30151930", - "min": "54", + "max": "59887", + "mean": "19543", + "metadataAccession": "SRR30336734", + "min": "164", "mmTag": true, - "n25": "14597", - "n50": "17508", - "n75": "21137", + "n25": "17003", + "n50": "19474", + "n75": "22983", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/primrose/m64334e_220426_185110.demultiplex.bc1001--bc1001.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/m84091_231004_192043_s3.hifi_reads.bc1016.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "13692", - "quartile50": "16299", - "quartile75": "19638", + "quartile25": "16490", + "quartile50": "18628", + "quartile75": "21721", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02514", + "sampleId": "HG02984", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "15823874531", - "totalGbp": "15.82", - "totalReads": "930158", + "totalBp": "72663560503", + "totalGbp": "72.66", + "totalReads": "3717971", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797101", + "accession": "SAMN37797097", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797101", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37797097", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL015", - "filename": "m64334e_220426_185110.demultiplex.bc1010--bc1010.5mc.hifi_reads.bam", + "familyId": "CLM12", + "filename": "m84091_231004_192043_s3.hifi_reads.bc1019.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01940_PB1_m64334e_220426_185110_m64334e_220426_185110", + "instrumentModel": "Revio", + "libraryId": "HG01150_PB3_m84091_231004_192043_s3.hifi_reads.bc1019.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "64624", - "mean": "19757", - "metadataAccession": "SRR30151918", - "min": "63", + "max": "52170", + "mean": "19914", + "metadataAccession": "SRR30336742", + "min": "100", "mmTag": true, - "n25": "16610", - "n50": "20898", - "n75": "25978", + "n25": "17254", + "n50": "19985", + "n75": "23648", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/primrose/m64334e_220426_185110.demultiplex.bc1010--bc1010.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/m84091_231004_192043_s3.hifi_reads.bc1019.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "14933", - "quartile50": "18729", - "quartile75": "23463", + "quartile25": "16599", + "quartile50": "19019", + "quartile75": "22271", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01940", + "sampleId": "HG01150", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "PEL", + "subpopulation": "CLM", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "8165347513", + "totalBp": "8167494589", "totalGbp": "8.17", - "totalReads": "413272", + "totalReads": "410126", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797107", + "accession": "SAMN41021691", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797107", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021691", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB97", - "filename": "m64334e_220428_054535.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_231106_194835_s4.hifi_reads.bc1001.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG02984_PB1_m64334e_220428_054535_m64334e_220428_054535", + "instrumentModel": "Revio", + "libraryId": "HG02624_PB1_m84091_231106_194835_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57608", - "mean": "16626", - "metadataAccession": "SRR30151976", - "min": "89", + "max": "61392", + "mean": "21215", + "metadataAccession": "SRR29405822", + "min": "126", "mmTag": true, - "n25": "14397", - "n50": "16928", - "n75": "20223", + "n25": "18152", + "n50": "21403", + "n75": "25741", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m64334e_220428_054535.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02624/raw_data/PacBio_HiFi/m84091_231106_194835_s4.hifi_reads.bc1001.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "13681", - "quartile50": "15936", - "quartile75": "18923", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17347", + "quartile50": "20121", + "quartile75": "24002", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02984", + "sampleId": "HG02624", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", @@ -161778,582 +220798,582 @@ "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "19889245475", - "totalGbp": "19.89", - "totalReads": "1196204", + "totalBp": "60423047644", + "totalGbp": "60.42", + "totalReads": "2848011", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797096", + "accession": "SAMN41021693", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797096", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021693", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH074", - "filename": "m64334e_220429_152228.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_231106_201855_s1.hifi_reads.bc1003.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG00658_PB1_m64334e_220429_152228_m64334e_220429_152228", + "instrumentModel": "Revio", + "libraryId": "HG03372_PB1_m84091_231106_201855_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "55657", - "mean": "18616", - "metadataAccession": "SRR30151924", - "min": "189", + "max": "61686", + "mean": "20025", + "metadataAccession": "SRR29405804", + "min": "124", "mmTag": true, - "n25": "16006", - "n50": "19569", - "n75": "23831", + "n25": "17280", + "n50": "19956", + "n75": "23721", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64334e_220429_152228.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03372/raw_data/PacBio_HiFi/m84091_231106_201855_s1.hifi_reads.bc1003.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "14474", - "quartile50": "17995", - "quartile75": "21851", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "16723", + "quartile50": "18985", + "quartile75": "22321", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00658", + "sampleId": "HG03372", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "ESN", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "19615164107", - "totalGbp": "19.62", - "totalReads": "1053649", + "totalBp": "82654306669", + "totalGbp": "82.65", + "totalReads": "4127489", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797086", + "accession": "SAMN41021692", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797086", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021692", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m64334e_220815_142753.5mc.hifi_reads.bam", + "filename": "m84091_231106_212107_s3.hifi_reads.bc1021.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA18570_PB1_m64334e_220815_142753_m64334e_220815_142753", + "instrumentModel": "Revio", + "libraryId": "HG03672_PB1_m84091_231106_212107_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50893", - "mean": "21204", - "metadataAccession": "SRR30152003", - "min": "112", + "max": "65187", + "mean": "20604", + "metadataAccession": "SRR29405790", + "min": "66", "mmTag": true, - "n25": "17826", - "n50": "21773", - "n75": "26898", + "n25": "17783", + "n50": "20616", + "n75": "24485", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/PacBio_HiFi/primrose/m64334e_220815_142753.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03672/raw_data/PacBio_HiFi/m84091_231106_212107_s3.hifi_reads.bc1021.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "16585", - "quartile50": "19988", - "quartile75": "24514", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17161", + "quartile50": "19586", + "quartile75": "23056", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18570", + "sampleId": "HG03672", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "STU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "42430166886", - "totalGbp": "42.43", - "totalReads": "2001019", + "totalBp": "74693823037", + "totalGbp": "74.69", + "totalReads": "3625163", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797092", + "accession": "SAMN41021695", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797092", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021695", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m64334e_220819_174259.5mc.hifi_reads.bam", + "filename": "m84091_231110_171321_s4.hifi_reads.bc1009.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA19391_PB1_m64334e_220819_174259_m64334e_220819_174259", + "instrumentModel": "Revio", + "libraryId": "NA19703_PB1_m84091_231110_171321_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51485", - "mean": "22350", - "metadataAccession": "SRR30151969", - "min": "117", + "max": "53725", + "mean": "18247", + "metadataAccession": "SRR29405770", + "min": "113", "mmTag": true, - "n25": "18754", - "n50": "22985", - "n75": "28384", + "n25": "15451", + "n50": "18436", + "n75": "22422", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/PacBio_HiFi/primrose/m64334e_220819_174259.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19703/raw_data/PacBio_HiFi/m84091_231110_171321_s4.hifi_reads.bc1009.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "17435", - "quartile50": "21060", - "quartile75": "25897", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "14716", + "quartile50": "17191", + "quartile75": "20771", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19391", + "sampleId": "NA19703", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "ASW", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "37436208846", - "totalGbp": "37.44", - "totalReads": "1674963", + "totalBp": "59926767647", + "totalGbp": "59.93", + "totalReads": "3284143", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797086", + "accession": "SAMN41021691", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797086", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021691", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m64334e_220821_130100.5mc.hifi_reads.bam", + "filename": "m84091_231113_162942_s4.hifi_reads.bc1001.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA18570_PB1_m64334e_220821_130100_m64334e_220821_130100", + "instrumentModel": "Revio", + "libraryId": "HG02624_PB1_m84091_231113_162942_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51332", - "mean": "24787", - "metadataAccession": "SRR30152004", - "min": "102", + "max": "72097", + "mean": "21567", + "metadataAccession": "SRR29405821", + "min": "80", "mmTag": true, - "n25": "21259", - "n50": "26063", - "n75": "31632", + "n25": "18409", + "n50": "21808", + "n75": "26342", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/PacBio_HiFi/primrose/m64334e_220821_130100.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02624/raw_data/PacBio_HiFi/m84091_231113_162942_s4.hifi_reads.bc1001.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "19456", - "quartile50": "23910", - "quartile75": "29238", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17534", + "quartile50": "20443", + "quartile75": "24485", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18570", + "sampleId": "HG02624", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "43938908016", - "totalGbp": "43.94", - "totalReads": "1772623", + "totalBp": "72407932208", + "totalGbp": "72.41", + "totalReads": "3357318", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797109", + "accession": "SAMN41021694", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797109", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021694", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m64334e_220823_095812.5mc.hifi_reads.bam", + "filename": "m84091_231113_170005_s1.hifi_reads.bc1008.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG03458_PB1_m64334e_220823_095812_m64334e_220823_095812", + "instrumentModel": "Revio", + "libraryId": "HG03108_PB1_m84091_231113_170005_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50787", - "mean": "24571", - "metadataAccession": "SRR30151989", - "min": "135", + "max": "64350", + "mean": "21758", + "metadataAccession": "SRR29405814", + "min": "156", "mmTag": true, - "n25": "20975", - "n50": "25664", - "n75": "31158", + "n25": "18477", + "n50": "22138", + "n75": "26903", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03458/raw_data/PacBio_HiFi/primrose/m64334e_220823_095812.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03108/raw_data/PacBio_HiFi/m84091_231113_170005_s1.hifi_reads.bc1008.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "19355", - "quartile50": "23610", - "quartile75": "28841", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17455", + "quartile50": "20616", + "quartile75": "24894", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03458", + "sampleId": "HG03108", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", + "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31613679548", - "totalGbp": "31.61", - "totalReads": "1286621", + "totalBp": "49182307712", + "totalGbp": "49.18", + "totalReads": "2260373", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797089", + "accession": "SAMN41021692", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797089", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021692", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "Y056", - "filename": "m64334e_220907_175418.5mc.hifi_reads.bam", + "familyId": null, + "filename": "m84091_231113_173111_s2.hifi_reads.bc1021.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "NA19159_PB1_m64334e_220907_175418_m64334e_220907_175418", + "instrumentModel": "Revio", + "libraryId": "HG03672_PB1_m84091_231113_173111_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51316", - "mean": "23768", - "metadataAccession": "SRR30151953", - "min": "250", + "max": "54675", + "mean": "20297", + "metadataAccession": "SRR29405791", + "min": "55", "mmTag": true, - "n25": "20178", - "n50": "24160", - "n75": "29330", + "n25": "17592", + "n50": "20281", + "n75": "23965", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/PacBio_HiFi/primrose/m64334e_220907_175418.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03672/raw_data/PacBio_HiFi/m84091_231113_173111_s2.hifi_reads.bc1021.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "19119", - "quartile50": "22514", - "quartile75": "27187", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "17020", + "quartile50": "19332", + "quartile75": "22627", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19159", + "sampleId": "HG03672", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "STU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "46798237500", - "totalGbp": "46.8", - "totalReads": "1968924", + "totalBp": "69517456229", + "totalGbp": "69.52", + "totalReads": "3424955", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", + "accession": "SAMN41021695", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797099", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN41021695", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m64334e_220920_180418.5mc.hifi_reads.bam", + "filename": "m84091_231113_180217_s3.hifi_reads.bc1009.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01530_PB1_m64334e_220920_180418_m64334e_220920_180418", + "instrumentModel": "Revio", + "libraryId": "NA19703_PB1_m84091_231113_180217_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50671", - "mean": "18655", - "metadataAccession": "SRR30151944", - "min": "183", + "max": "62382", + "mean": "18767", + "metadataAccession": "SRR29405769", + "min": "114", "mmTag": true, - "n25": "16427", - "n50": "18530", - "n75": "21529", + "n25": "15784", + "n50": "19072", + "n75": "23370", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/primrose/m64334e_220920_180418.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19703/raw_data/PacBio_HiFi/m84091_231113_180217_s3.hifi_reads.bc1009.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", - "productionYear": "YR3", - "quartile25": "15989", - "quartile50": "17845", - "quartile75": "20490", + "polymeraseVersion": "Revio P1", + "productionYear": "YR4", + "quartile25": "14929", + "quartile50": "17642", + "quartile75": "21523", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "NA19703", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": "ASW", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "43813649115", - "totalGbp": "43.81", - "totalReads": "2348559", + "totalBp": "79305068847", + "totalGbp": "79.31", + "totalReads": "4225622", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", + "accession": "SAMN37797091", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797099", - "ccsAlgorithm": "6.0.0", + "biosampleAccession": "SAMN37797091", + "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m64334e_220922_131140.5mc.hifi_reads.bam", + "filename": "m84091_231120_175800_s4.hifi_reads.bc1002.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", - "instrumentModel": "Sequel II", - "libraryId": "HG01530_PB1_m64334e_220922_131140_m64334e_220922_131140", + "instrumentModel": "Revio", + "libraryId": "NA19338_PB2_m84091_231120_175800_s4.hifi_reads.bc1002.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50739", - "mean": "18965", - "metadataAccession": "SRR30151943", - "min": "155", + "max": "59726", + "mean": "20554", + "metadataAccession": "SRR30336749", + "min": "118", "mmTag": true, - "n25": "16626", - "n50": "18864", - "n75": "22028", + "n25": "17667", + "n50": "20798", + "n75": "24872", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/primrose/m64334e_220922_131140.5mc.hifi_reads.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/m84091_231120_175800_s4.hifi_reads.bc1002.bam", "platform": "PACBIO_SMRT", - "polymeraseVersion": "P2", + "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "16152", - "quartile50": "18115", - "quartile75": "20910", + "quartile25": "16868", + "quartile50": "19599", + "quartile75": "23288", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "NA19338", "seqKit": "N/A", - "seqPlateChemistryVersion": "C2", + "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": "LWK", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "45963012660", - "totalGbp": "45.96", - "totalReads": "2423499", + "totalBp": "24019833389", + "totalGbp": "24.02", + "totalReads": "1168582", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797091", + "accession": "SAMN37797092", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797091", + "biosampleAccession": "SAMN37797092", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m84091_230705_174256_s2.hifi_reads.bc1002.bam", + "filename": "m84091_231120_175800_s4.hifi_reads.bc1015.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "NA19338_PB2_m84091_230705_174256_s2.hifi_reads.bc1002.bam", + "libraryId": "NA19391_PB3_m84091_231120_175800_s4.hifi_reads.bc1015.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "70947", - "mean": "22498", - "metadataAccession": "SRR30336761", - "min": "53", + "max": "57886", + "mean": "18839", + "metadataAccession": "SRR30336728", + "min": "130", "mmTag": true, - "n25": "18804", - "n50": "23742", - "n75": "29607", + "n25": "16504", + "n50": "18935", + "n75": "22196", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/m84091_230705_174256_s2.hifi_reads.bc1002.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/PacBio_HiFi/m84091_231120_175800_s4.hifi_reads.bc1015.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "16955", - "quartile50": "21281", - "quartile75": "26737", + "quartile25": "15963", + "quartile50": "18107", + "quartile75": "21074", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19338", + "sampleId": "NA19391", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", @@ -162363,1102 +221383,1102 @@ "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "20149672331", - "totalGbp": "20.15", - "totalReads": "895592", + "totalBp": "70911019454", + "totalGbp": "70.91", + "totalReads": "3763902", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797110", + "accession": "SAMN37797090", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797110", + "biosampleAccession": "SAMN37797090", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SL56", - "filename": "m84091_230705_174256_s2.hifi_reads.bc1009.bam", + "familyId": "Y039", + "filename": "m84091_231120_182829_s1.hifi_reads.bc1017.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG03470_PB1_m84091_230705_174256_s2.hifi_reads.bc1009.bam", + "libraryId": "NA19185_PB2_m84091_231120_182829_s1.hifi_reads.bc1017.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "70709", - "mean": "24497", - "metadataAccession": "SRR30336727", - "min": "110", + "max": "64094", + "mean": "19616", + "metadataAccession": "SRR30336750", + "min": "162", "mmTag": true, - "n25": "20781", - "n50": "25534", - "n75": "31304", + "n25": "17105", + "n50": "19663", + "n75": "23107", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/PacBio_HiFi/m84091_230705_174256_s2.hifi_reads.bc1009.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/PacBio_HiFi/m84091_231120_182829_s1.hifi_reads.bc1017.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "19169", - "quartile50": "23378", - "quartile75": "28738", + "quartile25": "16543", + "quartile50": "18780", + "quartile75": "21892", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03470", + "sampleId": "NA19185", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", + "subpopulation": "YRI", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34295733741", - "totalGbp": "34.3", - "totalReads": "1399961", + "totalBp": "27128033641", + "totalGbp": "27.13", + "totalReads": "1382900", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797091", + "accession": "SAMN37797100", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797091", + "biosampleAccession": "SAMN37797100", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m84091_230705_184508_s4.hifi_reads.bc1002.bam", + "filename": "m84091_231120_182829_s1.hifi_reads.bc1019.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "NA19338_PB2_m84091_230705_184508_s4.hifi_reads.bc1002.bam", + "libraryId": "HG01784_PB2_m84091_231120_182829_s1.hifi_reads.bc1019.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "70626", - "mean": "23018", - "metadataAccession": "SRR30336760", - "min": "183", + "max": "52530", + "mean": "17039", + "metadataAccession": "SRR30336725", + "min": "90", "mmTag": true, - "n25": "19215", - "n50": "24378", - "n75": "30496", + "n25": "15268", + "n50": "17021", + "n75": "19360", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/m84091_230705_184508_s4.hifi_reads.bc1002.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01784/raw_data/PacBio_HiFi/m84091_231120_182829_s1.hifi_reads.bc1019.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "17229", - "quartile50": "21762", - "quartile75": "27432", + "quartile25": "14937", + "quartile50": "16533", + "quartile75": "18694", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19338", + "sampleId": "HG01784", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "IBS", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "19698176409", - "totalGbp": "19.7", - "totalReads": "855746", + "totalBp": "65222185255", + "totalGbp": "65.22", + "totalReads": "3827674", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797110", + "accession": "SAMN37797104", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797110", + "biosampleAccession": "SAMN37797104", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SL56", - "filename": "m84091_230705_184508_s4.hifi_reads.bc1009.bam", + "familyId": null, + "filename": "m84091_231120_185935_s2.hifi_reads.bc1010.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG03470_PB1_m84091_230705_184508_s4.hifi_reads.bc1009.bam", + "libraryId": "HG02391_PB2_m84091_231120_185935_s2.hifi_reads.bc1010.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "68532", - "mean": "25009", - "metadataAccession": "SRR30336726", - "min": "217", + "max": "48026", + "mean": "18707", + "metadataAccession": "SRR30336751", + "min": "200", "mmTag": true, - "n25": "21189", - "n50": "26154", - "n75": "32139", + "n25": "16462", + "n50": "18705", + "n75": "21784", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03470/raw_data/PacBio_HiFi/m84091_230705_184508_s4.hifi_reads.bc1009.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/PacBio_HiFi/m84091_231120_185935_s2.hifi_reads.bc1010.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "19455", - "quartile50": "23857", - "quartile75": "29458", + "quartile25": "15980", + "quartile50": "17971", + "quartile75": "20742", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03470", + "sampleId": "HG02391", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", - "superpopulation": "AFR", + "subpopulation": "CDX", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "34109597312", - "totalGbp": "34.11", - "totalReads": "1363854", + "totalBp": "31025558943", + "totalGbp": "31.03", + "totalReads": "1658490", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797102", + "accession": "SAMN37797087", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797102", + "biosampleAccession": "SAMN37797087", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "BB11", - "filename": "m84091_230817_150246_s3.hifi_reads.bc1012.bam", + "familyId": null, + "filename": "m84091_231120_185935_s2.hifi_reads.bc1016.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG01960_PB3_m84091_230817_150246_s3.hifi_reads.bc1012.bam", + "libraryId": "NA19087_PB2_m84091_231120_185935_s2.hifi_reads.bc1016.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57666", - "mean": "19297", - "metadataAccession": "SRR30336730", - "min": "70", + "max": "59674", + "mean": "20471", + "metadataAccession": "SRR30336753", + "min": "147", "mmTag": true, - "n25": "16765", - "n50": "19261", - "n75": "22723", + "n25": "17540", + "n50": "21029", + "n75": "25338", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01960/raw_data/PacBio_HiFi/m84091_230817_150246_s3.hifi_reads.bc1012.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/PacBio_HiFi/m84091_231120_185935_s2.hifi_reads.bc1016.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "16237", - "quartile50": "18402", - "quartile75": "21481", + "quartile25": "16450", + "quartile50": "19599", + "quartile75": "23547", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01960", + "sampleId": "NA19087", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ACB", - "superpopulation": "AFR", + "subpopulation": "JPT", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "51521920991", - "totalGbp": "51.52", - "totalReads": "2669847", + "totalBp": "58221913081", + "totalGbp": "58.22", + "totalReads": "2844047", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797089", + "accession": "SAMN37797086", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797089", + "biosampleAccession": "SAMN37797086", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "Y056", - "filename": "m84091_230817_150246_s3.hifi_reads.bc1015.bam", + "familyId": null, + "filename": "m84091_231120_193041_s3.hifi_reads.bc1012.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "NA19159_PB1_m84091_230817_150246_s3.hifi_reads.bc1015.bam", + "libraryId": "NA18570_PB4_m84091_231120_193041_s3.hifi_reads.bc1012.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "63442", - "mean": "22237", - "metadataAccession": "SRR30336724", - "min": "176", + "max": "57172", + "mean": "18460", + "metadataAccession": "SRR30336752", + "min": "173", "mmTag": true, - "n25": "18976", - "n50": "22358", - "n75": "27020", + "n25": "16308", + "n50": "18454", + "n75": "21346", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19159/raw_data/PacBio_HiFi/m84091_230817_150246_s3.hifi_reads.bc1015.bam", + "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/PacBio_HiFi/m84091_231120_193041_s3.hifi_reads.bc1012.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "18178", - "quartile50": "20997", - "quartile75": "25135", + "quartile25": "15874", + "quartile50": "17784", + "quartile75": "20430", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19159", + "sampleId": "NA18570", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", - "superpopulation": "AFR", + "subpopulation": "CHB", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "23688286583", - "totalGbp": "23.69", - "totalReads": "1065226", + "totalBp": "50245213157", + "totalGbp": "50.25", + "totalReads": "2721746", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797106", + "accession": "SAMN37797111", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797106", + "biosampleAccession": "SAMN37797111", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB74", - "filename": "m84091_230905_192642_s1.hifi_reads.bc1015.bam", + "familyId": null, + "filename": "m84091_231120_193041_s3.hifi_reads.bc1020.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG02841_PB3_m84091_230905_192642_s1.hifi_reads.bc1015.bam", + "libraryId": "HG03742_PB2_m84091_231120_193041_s3.hifi_reads.bc1020.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "70436", - "mean": "16387", - "metadataAccession": "SRR30336733", - "min": "101", + "max": "54431", + "mean": "17199", + "metadataAccession": "SRR30336759", + "min": "107", "mmTag": true, - "n25": "14616", - "n50": "16267", - "n75": "18519", + "n25": "15097", + "n50": "17203", + "n75": "20097", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/m84091_230905_192642_s1.hifi_reads.bc1015.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/PacBio_HiFi/m84091_231120_193041_s3.hifi_reads.bc1020.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "14330", - "quartile50": "15798", - "quartile75": "17874", + "quartile25": "14656", + "quartile50": "16506", + "quartile75": "19130", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02841", + "sampleId": "HG03742", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "ITU", + "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "26410820072", - "totalGbp": "26.41", - "totalReads": "1611638", + "totalBp": "40822247506", + "totalGbp": "40.82", + "totalReads": "2373463", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797096", + "accession": "SAMN37797093", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797096", + "biosampleAccession": "SAMN37797093", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH074", - "filename": "m84091_230905_192642_s1.hifi_reads.bc1018.bam", + "familyId": null, + "filename": "m84091_231208_194716_s4.hifi_reads.bc1008.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG00658_PB3_m84091_230905_192642_s1.hifi_reads.bc1018.bam", + "libraryId": "NA19468_PB2_m84091_231208_194716_s4.hifi_reads.bc1008.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "54608", - "mean": "17726", - "metadataAccession": "SRR30336740", - "min": "214", + "max": "61387", + "mean": "19848", + "metadataAccession": "SRR30336738", + "min": "145", "mmTag": true, - "n25": "15762", - "n50": "17647", - "n75": "20252", + "n25": "17111", + "n50": "19968", + "n75": "23768", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/m84091_230905_192642_s1.hifi_reads.bc1018.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/m84091_231208_194716_s4.hifi_reads.bc1008.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "15404", - "quartile50": "17090", - "quartile75": "19458", + "quartile25": "16434", + "quartile50": "18914", + "quartile75": "22327", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00658", + "sampleId": "NA19468", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "LWK", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "28947533667", - "totalGbp": "28.95", - "totalReads": "1633001", + "totalBp": "41116262569", + "totalGbp": "41.12", + "totalReads": "2071540", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797097", + "accession": "SAMN37797099", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797097", + "biosampleAccession": "SAMN37797099", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM12", - "filename": "m84091_230905_192642_s1.hifi_reads.bc1019.bam", + "familyId": null, + "filename": "m84091_231208_194716_s4.hifi_reads.bc1021.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG01150_PB3_m84091_230905_192642_s1.hifi_reads.bc1019.bam", + "libraryId": "HG01530_PB3_m84091_231208_194716_s4.hifi_reads.bc1021.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "59777", - "mean": "20466", - "metadataAccession": "SRR30336745", - "min": "147", + "max": "62111", + "mean": "17682", + "metadataAccession": "SRR30336756", + "min": "152", "mmTag": true, - "n25": "17631", - "n50": "20623", - "n75": "24644", + "n25": "15304", + "n50": "17421", + "n75": "20764", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/m84091_230905_192642_s1.hifi_reads.bc1019.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/m84091_231208_194716_s4.hifi_reads.bc1021.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "16875", - "quartile50": "19502", - "quartile75": "23080", + "quartile25": "14890", + "quartile50": "16636", + "quartile75": "19456", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01150", + "sampleId": "HG01530", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": "IBS", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "16813536710", - "totalGbp": "16.81", - "totalReads": "821512", + "totalBp": "14704255771", + "totalGbp": "14.7", + "totalReads": "831560", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797106", + "accession": "SAMN37797109", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797106", + "biosampleAccession": "SAMN37797109", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB74", - "filename": "m84091_230905_195701_s2.hifi_reads.bc1015.bam", + "familyId": null, + "filename": "m84091_231208_201822_s1.hifi_reads.bc1011.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG02841_PB3_m84091_230905_195701_s2.hifi_reads.bc1015.bam", + "libraryId": "HG03458_PB2_m84091_231208_201822_s1.hifi_reads.bc1011.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "65476", - "mean": "16286", - "metadataAccession": "SRR30336732", - "min": "104", + "max": "63208", + "mean": "21941", + "metadataAccession": "SRR30336748", + "min": "133", "mmTag": true, - "n25": "14558", - "n50": "16167", - "n75": "18380", + "n25": "18702", + "n50": "22357", + "n75": "27038", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/m84091_230905_195701_s2.hifi_reads.bc1015.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03458/raw_data/PacBio_HiFi/m84091_231208_201822_s1.hifi_reads.bc1011.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "14284", - "quartile50": "15715", - "quartile75": "17757", + "quartile25": "17683", + "quartile50": "20872", + "quartile75": "25111", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02841", + "sampleId": "HG03458", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "GWD", + "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "25976366531", - "totalGbp": "25.98", - "totalReads": "1595006", + "totalBp": "82185612598", + "totalGbp": "82.19", + "totalReads": "3745686", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797096", + "accession": "SAMN37797099", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797096", + "biosampleAccession": "SAMN37797099", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH074", - "filename": "m84091_230905_195701_s2.hifi_reads.bc1018.bam", + "familyId": null, + "filename": "m84091_231208_201822_s1.hifi_reads.bc1021.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG00658_PB3_m84091_230905_195701_s2.hifi_reads.bc1018.bam", + "libraryId": "HG01530_PB3_m84091_231208_201822_s1.hifi_reads.bc1021.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "50180", - "mean": "17611", - "metadataAccession": "SRR30336739", - "min": "71", + "max": "62777", + "mean": "17520", + "metadataAccession": "SRR30336755", + "min": "322", "mmTag": true, - "n25": "15689", - "n50": "17526", - "n75": "20080", + "n25": "15225", + "n50": "17248", + "n75": "20482", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/m84091_230905_195701_s2.hifi_reads.bc1018.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/m84091_231208_201822_s1.hifi_reads.bc1021.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "15344", - "quartile50": "16987", - "quartile75": "19304", + "quartile25": "14829", + "quartile50": "16525", + "quartile75": "19228", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00658", + "sampleId": "HG01530", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "IBS", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "28067920433", - "totalGbp": "28.07", - "totalReads": "1593745", + "totalBp": "9669215846", + "totalGbp": "9.67", + "totalReads": "551869", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797097", + "accession": "SAMN37797094", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797097", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM12", - "filename": "m84091_230905_195701_s2.hifi_reads.bc1019.bam", + "familyId": null, + "filename": "m84091_231208_204928_s2.hifi_reads.bc1018.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG01150_PB3_m84091_230905_195701_s2.hifi_reads.bc1019.bam", + "libraryId": "NA20799_PB2_m84091_231208_204928_s2.hifi_reads.bc1018.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "56800", - "mean": "20190", - "metadataAccession": "SRR30336744", - "min": "204", + "max": "52733", + "mean": "19458", + "metadataAccession": "SRR30336758", + "min": "76", "mmTag": true, - "n25": "17434", - "n50": "20325", - "n75": "24157", + "n25": "16917", + "n50": "19595", + "n75": "23188", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/m84091_230905_195701_s2.hifi_reads.bc1019.bam", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/m84091_231208_204928_s2.hifi_reads.bc1018.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "16730", - "quartile50": "19264", - "quartile75": "22692", + "quartile25": "16289", + "quartile50": "18624", + "quartile75": "21862", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01150", + "sampleId": "NA20799", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": "TSI", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "15710208724", - "totalGbp": "15.71", - "totalReads": "778094", + "totalBp": "37473687834", + "totalGbp": "37.47", + "totalReads": "1925842", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797106", + "accession": "SAMN37797099", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797106", + "biosampleAccession": "SAMN37797099", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB74", - "filename": "m84091_230905_202807_s3.hifi_reads.bc1015.bam", + "familyId": null, + "filename": "m84091_231208_204928_s2.hifi_reads.bc1021.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG02841_PB3_m84091_230905_202807_s3.hifi_reads.bc1015.bam", + "libraryId": "HG01530_PB3_m84091_231208_204928_s2.hifi_reads.bc1021.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "74486", - "mean": "16355", - "metadataAccession": "SRR30336731", - "min": "101", + "max": "57614", + "mean": "17660", + "metadataAccession": "SRR30336754", + "min": "192", "mmTag": true, - "n25": "14588", - "n50": "16230", - "n75": "18476", + "n25": "15296", + "n50": "17395", + "n75": "20730", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/m84091_230905_202807_s3.hifi_reads.bc1015.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/m84091_231208_204928_s2.hifi_reads.bc1021.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "14306", - "quartile50": "15762", - "quartile75": "17832", + "quartile25": "14885", + "quartile50": "16622", + "quartile75": "19423", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02841", + "sampleId": "HG01530", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "GWD", - "superpopulation": "AFR", + "subpopulation": "IBS", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "25930880331", - "totalGbp": "25.93", - "totalReads": "1585432", + "totalBp": "8552141762", + "totalGbp": "8.55", + "totalReads": "484246", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797096", + "accession": "SAMN37797093", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797096", + "biosampleAccession": "SAMN37797093", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "SH074", - "filename": "m84091_230905_202807_s3.hifi_reads.bc1018.bam", + "familyId": null, + "filename": "m84091_231211_215746_s3.hifi_reads.bc1008.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG00658_PB3_m84091_230905_202807_s3.hifi_reads.bc1018.bam", + "libraryId": "NA19468_PB2_m84091_231211_215746_s3.hifi_reads.bc1008.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "56570", - "mean": "17700", - "metadataAccession": "SRR30336737", - "min": "221", + "max": "54526", + "mean": "19887", + "metadataAccession": "SRR30336729", + "min": "259", "mmTag": true, - "n25": "15740", - "n50": "17617", - "n75": "20227", + "n25": "17152", + "n50": "20014", + "n75": "23806", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/m84091_230905_202807_s3.hifi_reads.bc1018.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/m84091_231211_215746_s3.hifi_reads.bc1008.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "15383", - "quartile50": "17057", - "quartile75": "19422", + "quartile25": "16468", + "quartile50": "18966", + "quartile75": "22377", "readN50": "N/A", "result": "N/A", - "sampleId": "HG00658", + "sampleId": "NA19468", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHS", - "superpopulation": "EAS", + "subpopulation": "LWK", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "28356016363", - "totalGbp": "28.36", - "totalReads": "1601972", + "totalBp": "20112027354", + "totalGbp": "20.11", + "totalReads": "1011292", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797097", + "accession": "SAMN37797094", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797097", + "biosampleAccession": "SAMN37797094", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM12", - "filename": "m84091_230905_202807_s3.hifi_reads.bc1019.bam", + "familyId": null, + "filename": "m84091_231211_215746_s3.hifi_reads.bc1018.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG01150_PB3_m84091_230905_202807_s3.hifi_reads.bc1019.bam", + "libraryId": "NA20799_PB2_m84091_231211_215746_s3.hifi_reads.bc1018.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "56054", - "mean": "20455", - "metadataAccession": "SRR30336743", - "min": "175", + "max": "51953", + "mean": "19533", + "metadataAccession": "SRR30336757", + "min": "124", "mmTag": true, - "n25": "17602", - "n50": "20609", - "n75": "24647", + "n25": "16965", + "n50": "19657", + "n75": "23271", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/m84091_230905_202807_s3.hifi_reads.bc1019.bam", + "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/m84091_231211_215746_s3.hifi_reads.bc1018.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "16854", - "quartile50": "19481", - "quartile75": "23065", + "quartile25": "16340", + "quartile50": "18689", + "quartile75": "21929", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01150", + "sampleId": "NA20799", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": "TSI", + "superpopulation": "EUR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "16465388808", - "totalGbp": "16.47", - "totalReads": "804940", + "totalBp": "28344896301", + "totalGbp": "28.34", + "totalReads": "1451118", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797108", + "accession": "SAMN41021694", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797108", + "biosampleAccession": "SAMN41021694", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB113", - "filename": "m84091_230905_205913_s4.hifi_reads.bc1017.bam", + "familyId": null, + "filename": "m84091_231214_200959_s1.hifi_reads.bc1008.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG03050_PB3_m84091_230905_205913_s4.hifi_reads.bc1017.bam", + "libraryId": "HG03108_PB1_m84091_231214_200959_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "53531", - "mean": "18401", - "metadataAccession": "SRR30336735", - "min": "242", + "max": "65917", + "mean": "22030", + "metadataAccession": "SRR29405813", + "min": "163", "mmTag": true, - "n25": "16062", - "n50": "18284", - "n75": "21493", + "n25": "18635", + "n50": "22455", + "n75": "27452", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/m84091_230905_205913_s4.hifi_reads.bc1017.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03108/raw_data/PacBio_HiFi/m84091_231214_200959_s1.hifi_reads.bc1008.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", - "productionYear": "YR3", - "quartile25": "15612", - "quartile50": "17537", - "quartile75": "20350", + "productionYear": "YR4", + "quartile25": "17551", + "quartile50": "20828", + "quartile75": "25292", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03050", + "sampleId": "HG03108", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "GWD", + "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "32472953202", - "totalGbp": "32.47", - "totalReads": "1764709", + "totalBp": "61873183479", + "totalGbp": "61.87", + "totalReads": "2808537", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797098", + "accession": "SAMN41021693", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797098", + "biosampleAccession": "SAMN41021693", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM14", - "filename": "m84091_230905_205913_s4.hifi_reads.bc1020.bam", + "familyId": null, + "filename": "m84091_231214_204105_s2.hifi_reads.bc1003.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG01252_PB3_m84091_230905_205913_s4.hifi_reads.bc1020.bam", + "libraryId": "HG03372_PB1_m84091_231214_204105_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "61149", - "mean": "19611", - "metadataAccession": "SRR30336747", - "min": "159", + "max": "56430", + "mean": "20339", + "metadataAccession": "SRR29405805", + "min": "163", "mmTag": true, - "n25": "16982", - "n50": "19596", - "n75": "23247", + "n25": "17441", + "n50": "20290", + "n75": "24317", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/m84091_230905_205913_s4.hifi_reads.bc1020.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03372/raw_data/PacBio_HiFi/m84091_231214_204105_s2.hifi_reads.bc1003.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", - "productionYear": "YR3", - "quartile25": "16414", - "quartile50": "18668", - "quartile75": "21894", + "productionYear": "YR4", + "quartile25": "16831", + "quartile50": "19214", + "quartile75": "22762", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01252", + "sampleId": "HG03372", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CLM", - "superpopulation": "AMR", + "subpopulation": "ESN", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "51778207574", - "totalGbp": "51.78", - "totalReads": "2640185", + "totalBp": "36636856565", + "totalGbp": "36.64", + "totalReads": "1801269", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797107", + "accession": "SAMN41021691", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797107", + "biosampleAccession": "SAMN41021691", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "GB97", - "filename": "m84091_231004_192043_s3.hifi_reads.bc1016.bam", + "familyId": null, + "filename": "m84091_231214_211211_s3.hifi_reads.bc1001.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG02984_PB3_m84091_231004_192043_s3.hifi_reads.bc1016.bam", + "libraryId": "HG02624_PB1_m84091_231214_211211_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "59887", - "mean": "19543", - "metadataAccession": "SRR30336734", - "min": "164", + "max": "66338", + "mean": "22035", + "metadataAccession": "SRR29405820", + "min": "146", "mmTag": true, - "n25": "17003", - "n50": "19474", - "n75": "22983", + "n25": "18713", + "n50": "22358", + "n75": "27192", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/m84091_231004_192043_s3.hifi_reads.bc1016.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02624/raw_data/PacBio_HiFi/m84091_231214_211211_s3.hifi_reads.bc1001.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", - "productionYear": "YR3", - "quartile25": "16490", - "quartile50": "18628", - "quartile75": "21721", + "productionYear": "YR4", + "quartile25": "17740", + "quartile50": "20852", + "quartile75": "25145", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02984", + "sampleId": "HG02624", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", @@ -163468,647 +222488,647 @@ "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "72663560503", - "totalGbp": "72.66", - "totalReads": "3717971", + "totalBp": "47928785289", + "totalGbp": "47.93", + "totalReads": "2175052", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797097", + "accession": "SAMN37797101", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797097", + "biosampleAccession": "SAMN37797101", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "CLM12", - "filename": "m84091_231004_192043_s3.hifi_reads.bc1019.bam", + "familyId": "PEL015", + "filename": "m84091_240110_191713_s4.hifi_reads.bc1010.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG01150_PB3_m84091_231004_192043_s3.hifi_reads.bc1019.bam", + "libraryId": "HG01940_PB4_m84091_240110_191713_s4.hifi_reads.bc1010.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "52170", - "mean": "19914", - "metadataAccession": "SRR30336742", - "min": "100", + "max": "55009", + "mean": "19030", + "metadataAccession": "SRR30336736", + "min": "205", "mmTag": true, - "n25": "17254", - "n50": "19985", - "n75": "23648", + "n25": "16742", + "n50": "19020", + "n75": "22308", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/m84091_231004_192043_s3.hifi_reads.bc1019.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/m84091_240110_191713_s4.hifi_reads.bc1010.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "16599", - "quartile50": "19019", - "quartile75": "22271", + "quartile25": "16232", + "quartile50": "18226", + "quartile75": "21127", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01150", + "sampleId": "HG01940", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CLM", + "subpopulation": "PEL", "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "8167494589", - "totalGbp": "8.17", - "totalReads": "410126", + "totalBp": "57205109823", + "totalGbp": "57.21", + "totalReads": "3005904", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797091", + "accession": "SAMN37797105", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797091", + "biosampleAccession": "SAMN37797105", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m84091_231120_175800_s4.hifi_reads.bc1002.bam", + "familyId": "VN087", + "filename": "m84091_240110_194735_s1.hifi_reads.bc1001.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "NA19338_PB2_m84091_231120_175800_s4.hifi_reads.bc1002.bam", + "libraryId": "HG02514_PB4_m84091_240110_194735_s1.hifi_reads.bc1001.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "59726", - "mean": "20554", - "metadataAccession": "SRR30336749", - "min": "118", + "max": "58573", + "mean": "21003", + "metadataAccession": "SRR30336741", + "min": "145", "mmTag": true, - "n25": "17667", - "n50": "20798", - "n75": "24872", + "n25": "18014", + "n50": "21232", + "n75": "25577", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/m84091_231120_175800_s4.hifi_reads.bc1002.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/m84091_240110_194735_s1.hifi_reads.bc1001.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "16868", - "quartile50": "19599", - "quartile75": "23288", + "quartile25": "17201", + "quartile50": "19943", + "quartile75": "23820", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19338", + "sampleId": "HG02514", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "KHV", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "24019833389", - "totalGbp": "24.02", - "totalReads": "1168582", + "totalBp": "61203787317", + "totalGbp": "61.2", + "totalReads": "2914041", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797092", + "accession": "SAMN37797103", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797092", + "biosampleAccession": "SAMN37797103", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": null, - "filename": "m84091_231120_175800_s4.hifi_reads.bc1015.bam", + "familyId": "PEL023", + "filename": "m84091_240110_201841_s2.hifi_reads.bc1002.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "NA19391_PB3_m84091_231120_175800_s4.hifi_reads.bc1015.bam", + "libraryId": "HG01969_PB5_m84091_240110_201841_s2.hifi_reads.bc1002.bam", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57886", - "mean": "18839", - "metadataAccession": "SRR30336728", - "min": "130", + "max": "65188", + "mean": "20909", + "metadataAccession": "SRR30336746", + "min": "62", "mmTag": true, - "n25": "16504", - "n50": "18935", - "n75": "22196", + "n25": "17764", + "n50": "21387", + "n75": "26025", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19391/raw_data/PacBio_HiFi/m84091_231120_175800_s4.hifi_reads.bc1015.bam", + "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/m84091_240110_201841_s2.hifi_reads.bc1002.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", "productionYear": "YR3", - "quartile25": "15963", - "quartile50": "18107", - "quartile75": "21074", + "quartile25": "16719", + "quartile50": "19839", + "quartile75": "24046", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19391", + "sampleId": "HG01969", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", - "superpopulation": "AFR", + "subpopulation": "PEL", + "superpopulation": "AMR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "70911019454", - "totalGbp": "70.91", - "totalReads": "3763902", + "totalBp": "60008819440", + "totalGbp": "60.01", + "totalReads": "2869967", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797090", + "accession": "SAMN41021704", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797090", + "biosampleAccession": "SAMN41021704", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "Y039", - "filename": "m84091_231120_182829_s1.hifi_reads.bc1017.bam", + "familyId": null, + "filename": "m84091_240110_204947_s3.hifi_reads.bc1015.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "NA19185_PB2_m84091_231120_182829_s1.hifi_reads.bc1017.bam", + "libraryId": "HG03445_PB1_m84091_240110_204947_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "64094", - "mean": "19616", - "metadataAccession": "SRR30336750", - "min": "162", + "max": "67580", + "mean": "20874", + "metadataAccession": "SRR29405808", + "min": "87", "mmTag": true, - "n25": "17105", - "n50": "19663", - "n75": "23107", + "n25": "17553", + "n50": "21018", + "n75": "25786", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19185/raw_data/PacBio_HiFi/m84091_231120_182829_s1.hifi_reads.bc1017.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03445/raw_data/PacBio_HiFi/m84091_240110_204947_s3.hifi_reads.bc1015.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", - "productionYear": "YR3", - "quartile25": "16543", - "quartile50": "18780", - "quartile75": "21892", + "productionYear": "YR4", + "quartile25": "16709", + "quartile50": "19547", + "quartile75": "23723", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19185", + "sampleId": "HG03445", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "YRI", + "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "27128033641", - "totalGbp": "27.13", - "totalReads": "1382900", + "totalBp": "65097127516", + "totalGbp": "65.1", + "totalReads": "3118474", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797100", + "accession": "SAMN41021703", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797100", + "biosampleAccession": "SAMN41021703", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m84091_231120_182829_s1.hifi_reads.bc1019.bam", + "filename": "m84091_240122_201558_s1.hifi_reads.bc1012.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG01784_PB2_m84091_231120_182829_s1.hifi_reads.bc1019.bam", + "libraryId": "HG03072_PB1_m84091_240122_201558_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "52530", - "mean": "17039", - "metadataAccession": "SRR30336725", - "min": "90", + "max": "63436", + "mean": "20638", + "metadataAccession": "SRR29405818", + "min": "114", "mmTag": true, - "n25": "15268", - "n50": "17021", - "n75": "19360", + "n25": "17504", + "n50": "20673", + "n75": "25130", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01784/raw_data/PacBio_HiFi/m84091_231120_182829_s1.hifi_reads.bc1019.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03072/raw_data/PacBio_HiFi/m84091_240122_201558_s1.hifi_reads.bc1012.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", - "productionYear": "YR3", - "quartile25": "14937", - "quartile50": "16533", - "quartile75": "18694", + "productionYear": "YR4", + "quartile25": "16770", + "quartile50": "19387", + "quartile75": "23268", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01784", + "sampleId": "HG03072", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": "MSL", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "65222185255", - "totalGbp": "65.22", - "totalReads": "3827674", + "totalBp": "72760626031", + "totalGbp": "72.76", + "totalReads": "3525553", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797104", + "accession": "SAMN41021701", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797104", + "biosampleAccession": "SAMN41021701", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m84091_231120_185935_s2.hifi_reads.bc1010.bam", + "filename": "m84091_240221_202725_s4.hifi_reads.bc1022.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG02391_PB2_m84091_231120_185935_s2.hifi_reads.bc1010.bam", + "libraryId": "NA19042_PB1_m84091_240221_202725_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "48026", - "mean": "18707", - "metadataAccession": "SRR30336751", - "min": "200", + "max": "61590", + "mean": "19663", + "metadataAccession": "SRR29405760", + "min": "99", "mmTag": true, - "n25": "16462", - "n50": "18705", - "n75": "21784", + "n25": "16758", + "n50": "20587", + "n75": "25172", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02391/raw_data/PacBio_HiFi/m84091_231120_185935_s2.hifi_reads.bc1010.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19042/raw_data/PacBio_HiFi/m84091_240221_202725_s4.hifi_reads.bc1022.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", - "productionYear": "YR3", - "quartile25": "15980", - "quartile50": "17971", - "quartile75": "20742", + "productionYear": "YR4", + "quartile25": "15372", + "quartile50": "18829", + "quartile75": "23120", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02391", + "sampleId": "NA19042", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CDX", - "superpopulation": "EAS", + "subpopulation": "LWK", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "31025558943", - "totalGbp": "31.03", - "totalReads": "1658490", + "totalBp": "65471433956", + "totalGbp": "65.47", + "totalReads": "3329518", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797087", + "accession": "SAMN41021695", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797087", + "biosampleAccession": "SAMN41021695", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m84091_231120_185935_s2.hifi_reads.bc1016.bam", + "filename": "m84091_240221_212852_s2.hifi_reads.bc1009.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "NA19087_PB2_m84091_231120_185935_s2.hifi_reads.bc1016.bam", + "libraryId": "NA19703_PB1_m84091_240221_212852_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "59674", - "mean": "20471", - "metadataAccession": "SRR30336753", - "min": "147", + "max": "58776", + "mean": "18286", + "metadataAccession": "SRR29405768", + "min": "91", "mmTag": true, - "n25": "17540", - "n50": "21029", - "n75": "25338", + "n25": "15307", + "n50": "19455", + "n75": "24562", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19087/raw_data/PacBio_HiFi/m84091_231120_185935_s2.hifi_reads.bc1016.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19703/raw_data/PacBio_HiFi/m84091_240221_212852_s2.hifi_reads.bc1009.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", - "productionYear": "YR3", - "quartile25": "16450", - "quartile50": "19599", - "quartile75": "23547", + "productionYear": "YR4", + "quartile25": "13621", + "quartile50": "17233", + "quartile75": "21908", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19087", + "sampleId": "NA19703", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "JPT", - "superpopulation": "EAS", + "subpopulation": "ASW", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "58221913081", - "totalGbp": "58.22", - "totalReads": "2844047", + "totalBp": "53768952232", + "totalGbp": "53.77", + "totalReads": "2940298", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797086", + "accession": "SAMN41021691", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797086", + "biosampleAccession": "SAMN41021691", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m84091_231120_193041_s3.hifi_reads.bc1012.bam", + "filename": "m84091_240221_215958_s3.hifi_reads.bc1001.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "NA18570_PB4_m84091_231120_193041_s3.hifi_reads.bc1012.bam", + "libraryId": "HG02624_PB1_m84091_240221_215958_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57172", - "mean": "18460", - "metadataAccession": "SRR30336752", - "min": "173", + "max": "51714", + "mean": "16859", + "metadataAccession": "SRR29405819", + "min": "268", "mmTag": true, - "n25": "16308", - "n50": "18454", - "n75": "21346", + "n25": "14319", + "n50": "17514", + "n75": "21621", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA18570/raw_data/PacBio_HiFi/m84091_231120_193041_s3.hifi_reads.bc1012.bam", + "path": "s3://human-pangenomics/working/HPRC/HG02624/raw_data/PacBio_HiFi/m84091_240221_215958_s3.hifi_reads.bc1001.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", - "productionYear": "YR3", - "quartile25": "15874", - "quartile50": "17784", - "quartile75": "20430", + "productionYear": "YR4", + "quartile25": "13197", + "quartile50": "16006", + "quartile75": "19706", "readN50": "N/A", "result": "N/A", - "sampleId": "NA18570", + "sampleId": "HG02624", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "CHB", - "superpopulation": "EAS", + "subpopulation": "GWD", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "50245213157", - "totalGbp": "50.25", - "totalReads": "2721746", + "totalBp": "9765699517", + "totalGbp": "9.77", + "totalReads": "579245", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797111", + "accession": "SAMN41021692", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797111", + "biosampleAccession": "SAMN41021692", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m84091_231120_193041_s3.hifi_reads.bc1020.bam", + "filename": "m84091_240221_215958_s3.hifi_reads.bc1021.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG03742_PB2_m84091_231120_193041_s3.hifi_reads.bc1020.bam", + "libraryId": "HG03672_PB1_m84091_240221_215958_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "54431", - "mean": "17199", - "metadataAccession": "SRR30336759", - "min": "107", + "max": "54296", + "mean": "16009", + "metadataAccession": "SRR29405792", + "min": "123", "mmTag": true, - "n25": "15097", - "n50": "17203", - "n75": "20097", + "n25": "13591", + "n50": "16630", + "n75": "20613", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03742/raw_data/PacBio_HiFi/m84091_231120_193041_s3.hifi_reads.bc1020.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03672/raw_data/PacBio_HiFi/m84091_240221_215958_s3.hifi_reads.bc1021.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", - "productionYear": "YR3", - "quartile25": "14656", - "quartile50": "16506", - "quartile75": "19130", + "productionYear": "YR4", + "quartile25": "12485", + "quartile50": "15175", + "quartile75": "18679", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03742", + "sampleId": "HG03672", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "ITU", + "subpopulation": "STU", "superpopulation": "SAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "40822247506", - "totalGbp": "40.82", - "totalReads": "2373463", + "totalBp": "55137884001", + "totalGbp": "55.14", + "totalReads": "3444164", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797093", + "accession": "SAMN41021701", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797093", + "biosampleAccession": "SAMN41021701", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m84091_231208_194716_s4.hifi_reads.bc1008.bam", + "filename": "m84091_240308_202615_s4.hifi_reads.bc1022.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "NA19468_PB2_m84091_231208_194716_s4.hifi_reads.bc1008.bam", + "libraryId": "NA19042_PB1_m84091_240308_202615_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "61387", - "mean": "19848", - "metadataAccession": "SRR30336738", - "min": "145", + "max": "52948", + "mean": "19242", + "metadataAccession": "SRR29405759", + "min": "103", "mmTag": true, - "n25": "17111", - "n50": "19968", - "n75": "23768", + "n25": "16368", + "n50": "20090", + "n75": "24633", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/m84091_231208_194716_s4.hifi_reads.bc1008.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19042/raw_data/PacBio_HiFi/m84091_240308_202615_s4.hifi_reads.bc1022.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", - "productionYear": "YR3", - "quartile25": "16434", - "quartile50": "18914", - "quartile75": "22327", + "productionYear": "YR4", + "quartile25": "15049", + "quartile50": "18376", + "quartile75": "22578", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19468", + "sampleId": "NA19042", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", @@ -164118,659 +223138,659 @@ "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "41116262569", - "totalGbp": "41.12", - "totalReads": "2071540", + "totalBp": "61435006452", + "totalGbp": "61.44", + "totalReads": "3192672", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", + "accession": "SAMN41021701", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN41021701", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m84091_231208_194716_s4.hifi_reads.bc1021.bam", + "filename": "m84091_240308_205633_s1.hifi_reads.bc1022.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG01530_PB3_m84091_231208_194716_s4.hifi_reads.bc1021.bam", + "libraryId": "NA19042_PB1_m84091_240308_205633_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "62111", - "mean": "17682", - "metadataAccession": "SRR30336756", - "min": "152", + "max": "54725", + "mean": "19574", + "metadataAccession": "SRR29405758", + "min": "104", "mmTag": true, - "n25": "15304", - "n50": "17421", - "n75": "20764", + "n25": "16683", + "n50": "20488", + "n75": "25062", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/m84091_231208_194716_s4.hifi_reads.bc1021.bam", + "path": "s3://human-pangenomics/working/HPRC/NA19042/raw_data/PacBio_HiFi/m84091_240308_205633_s1.hifi_reads.bc1022.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", - "productionYear": "YR3", - "quartile25": "14890", - "quartile50": "16636", - "quartile75": "19456", + "productionYear": "YR4", + "quartile25": "15313", + "quartile50": "18745", + "quartile75": "23017", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "NA19042", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": "LWK", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "14704255771", - "totalGbp": "14.7", - "totalReads": "831560", + "totalBp": "60615596022", + "totalGbp": "60.62", + "totalReads": "3096650", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797109", + "accession": "SAMN41021693", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797109", + "biosampleAccession": "SAMN41021693", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m84091_231208_201822_s1.hifi_reads.bc1011.bam", + "filename": "m84091_240308_212739_s2.hifi_reads.bc1003.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG03458_PB2_m84091_231208_201822_s1.hifi_reads.bc1011.bam", + "libraryId": "HG03372_PB1_m84091_240308_212739_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "63208", - "mean": "21941", - "metadataAccession": "SRR30336748", - "min": "133", + "max": "68454", + "mean": "21771", + "metadataAccession": "SRR29405806", + "min": "54", "mmTag": true, - "n25": "18702", - "n50": "22357", - "n75": "27038", + "n25": "18701", + "n50": "24138", + "n75": "30172", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG03458/raw_data/PacBio_HiFi/m84091_231208_201822_s1.hifi_reads.bc1011.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03372/raw_data/PacBio_HiFi/m84091_240308_212739_s2.hifi_reads.bc1003.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", - "productionYear": "YR3", - "quartile25": "17683", - "quartile50": "20872", - "quartile75": "25111", + "productionYear": "YR4", + "quartile25": "15590", + "quartile50": "20986", + "quartile75": "26861", "readN50": "N/A", "result": "N/A", - "sampleId": "HG03458", + "sampleId": "HG03372", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "MSL", + "subpopulation": "ESN", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "82185612598", - "totalGbp": "82.19", - "totalReads": "3745686", + "totalBp": "85787605612", + "totalGbp": "85.79", + "totalReads": "3940309", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", + "accession": "SAMN41021694", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN41021694", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m84091_231208_201822_s1.hifi_reads.bc1021.bam", + "filename": "m84091_240308_215845_s3.hifi_reads.bc1008.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG01530_PB3_m84091_231208_201822_s1.hifi_reads.bc1021.bam", + "libraryId": "HG03108_PB1_m84091_240308_215845_s3", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "62777", - "mean": "17520", - "metadataAccession": "SRR30336755", - "min": "322", + "max": "59387", + "mean": "18325", + "metadataAccession": "SRR29405812", + "min": "138", "mmTag": true, - "n25": "15225", - "n50": "17248", - "n75": "20482", + "n25": "15702", + "n50": "19375", + "n75": "23712", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/m84091_231208_201822_s1.hifi_reads.bc1021.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03108/raw_data/PacBio_HiFi/m84091_240308_215845_s3.hifi_reads.bc1008.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", - "productionYear": "YR3", - "quartile25": "14829", - "quartile50": "16525", - "quartile75": "19228", + "productionYear": "YR4", + "quartile25": "14205", + "quartile50": "17621", + "quartile75": "21682", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "HG03108", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": "ESN", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "9669215846", - "totalGbp": "9.67", - "totalReads": "551869", + "totalBp": "85735358906", + "totalGbp": "85.74", + "totalReads": "4678487", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", + "accession": "SAMN41021702", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797094", + "biosampleAccession": "SAMN41021702", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m84091_231208_204928_s2.hifi_reads.bc1018.bam", + "filename": "m84091_240311_155513_s4.hifi_reads.bc1011.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "NA20799_PB2_m84091_231208_204928_s2.hifi_reads.bc1018.bam", + "libraryId": "HG00701_PB1_m84091_240311_155513_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "52733", - "mean": "19458", - "metadataAccession": "SRR30336758", - "min": "76", + "max": "70077", + "mean": "13566", + "metadataAccession": "SRR29405846", + "min": "53", "mmTag": true, - "n25": "16917", - "n50": "19595", - "n75": "23188", + "n25": "11109", + "n50": "13905", + "n75": "18061", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/m84091_231208_204928_s2.hifi_reads.bc1018.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00701/raw_data/PacBio_HiFi/m84091_240311_155513_s4.hifi_reads.bc1011.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", - "productionYear": "YR3", - "quartile25": "16289", - "quartile50": "18624", - "quartile75": "21862", + "productionYear": "YR4", + "quartile25": "10239", + "quartile50": "12385", + "quartile75": "15772", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "HG00701", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "37473687834", - "totalGbp": "37.47", - "totalReads": "1925842", + "totalBp": "66021634362", + "totalGbp": "66.02", + "totalReads": "4866441", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797099", + "accession": "SAMN41021704", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797099", + "biosampleAccession": "SAMN41021704", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m84091_231208_204928_s2.hifi_reads.bc1021.bam", + "filename": "m84091_240311_162534_s1.hifi_reads.bc1015.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG01530_PB3_m84091_231208_204928_s2.hifi_reads.bc1021.bam", + "libraryId": "HG03445_PB1_m84091_240311_162534_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "57614", - "mean": "17660", - "metadataAccession": "SRR30336754", - "min": "192", + "max": "50409", + "mean": "17376", + "metadataAccession": "SRR29405809", + "min": "122", "mmTag": true, - "n25": "15296", - "n50": "17395", - "n75": "20730", + "n25": "14791", + "n50": "18152", + "n75": "22221", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/m84091_231208_204928_s2.hifi_reads.bc1021.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03445/raw_data/PacBio_HiFi/m84091_240311_162534_s1.hifi_reads.bc1015.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", - "productionYear": "YR3", - "quartile25": "14885", - "quartile50": "16622", - "quartile75": "19423", + "productionYear": "YR4", + "quartile25": "13606", + "quartile50": "16599", + "quartile75": "20388", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01530", + "sampleId": "HG03445", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "IBS", - "superpopulation": "EUR", + "subpopulation": "MSL", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "8552141762", - "totalGbp": "8.55", - "totalReads": "484246", + "totalBp": "85916791479", + "totalGbp": "85.92", + "totalReads": "4944409", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797093", + "accession": "SAMN41021703", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797093", + "biosampleAccession": "SAMN41021703", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m84091_231211_215746_s3.hifi_reads.bc1008.bam", + "filename": "m84091_240311_165640_s2.hifi_reads.bc1012.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "NA19468_PB2_m84091_231211_215746_s3.hifi_reads.bc1008.bam", + "libraryId": "HG03072_PB1_m84091_240311_165640_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "54526", - "mean": "19887", - "metadataAccession": "SRR30336729", - "min": "259", + "max": "77803", + "mean": "19233", + "metadataAccession": "SRR29405817", + "min": "86", "mmTag": true, - "n25": "17152", - "n50": "20014", - "n75": "23806", + "n25": "16266", + "n50": "20382", + "n75": "25318", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/m84091_231211_215746_s3.hifi_reads.bc1008.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03072/raw_data/PacBio_HiFi/m84091_240311_165640_s2.hifi_reads.bc1012.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", - "productionYear": "YR3", - "quartile25": "16468", - "quartile50": "18966", - "quartile75": "22377", + "productionYear": "YR4", + "quartile25": "14598", + "quartile50": "18306", + "quartile75": "22883", "readN50": "N/A", "result": "N/A", - "sampleId": "NA19468", + "sampleId": "HG03072", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "LWK", + "subpopulation": "MSL", "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "20112027354", - "totalGbp": "20.11", - "totalReads": "1011292", + "totalBp": "89666821979", + "totalGbp": "89.67", + "totalReads": "4661892", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797094", + "accession": "SAMN41021702", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797094", + "biosampleAccession": "SAMN41021702", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", "familyId": null, - "filename": "m84091_231211_215746_s3.hifi_reads.bc1018.bam", + "filename": "m84091_240315_183649_s4.hifi_reads.bc1011.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "NA20799_PB2_m84091_231211_215746_s3.hifi_reads.bc1018.bam", + "libraryId": "HG00701_PB1_m84091_240315_183649_s4", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "51953", - "mean": "19533", - "metadataAccession": "SRR30336757", - "min": "124", + "max": "65349", + "mean": "13918", + "metadataAccession": "SRR29405845", + "min": "76", "mmTag": true, - "n25": "16965", - "n50": "19657", - "n75": "23271", + "n25": "11339", + "n50": "14335", + "n75": "18745", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/m84091_231211_215746_s3.hifi_reads.bc1018.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00701/raw_data/PacBio_HiFi/m84091_240315_183649_s4.hifi_reads.bc1011.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", - "productionYear": "YR3", - "quartile25": "16340", - "quartile50": "18689", - "quartile75": "21929", + "productionYear": "YR4", + "quartile25": "10386", + "quartile50": "12667", + "quartile75": "16260", "readN50": "N/A", "result": "N/A", - "sampleId": "NA20799", + "sampleId": "HG00701", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "TSI", - "superpopulation": "EUR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "28344896301", - "totalGbp": "28.34", - "totalReads": "1451118", + "totalBp": "74683924191", + "totalGbp": "74.68", + "totalReads": "5365799", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797101", + "accession": "SAMN41021702", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797101", + "biosampleAccession": "SAMN41021702", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL015", - "filename": "m84091_240110_191713_s4.hifi_reads.bc1010.bam", + "familyId": null, + "filename": "m84091_240315_190710_s1.hifi_reads.bc1011.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG01940_PB4_m84091_240110_191713_s4.hifi_reads.bc1010.bam", + "libraryId": "HG00701_PB1_m84091_240315_190710_s1", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "55009", - "mean": "19030", - "metadataAccession": "SRR30336736", - "min": "205", + "max": "60345", + "mean": "13594", + "metadataAccession": "SRR29405844", + "min": "74", "mmTag": true, - "n25": "16742", - "n50": "19020", - "n75": "22308", + "n25": "11122", + "n50": "13936", + "n75": "18136", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/m84091_240110_191713_s4.hifi_reads.bc1010.bam", + "path": "s3://human-pangenomics/working/HPRC/HG00701/raw_data/PacBio_HiFi/m84091_240315_190710_s1.hifi_reads.bc1011.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", - "productionYear": "YR3", - "quartile25": "16232", - "quartile50": "18226", - "quartile75": "21127", + "productionYear": "YR4", + "quartile25": "10238", + "quartile50": "12399", + "quartile75": "15802", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01940", + "sampleId": "HG00701", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": "CHS", + "superpopulation": "EAS", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "57205109823", - "totalGbp": "57.21", - "totalReads": "3005904", + "totalBp": "64553821368", + "totalGbp": "64.55", + "totalReads": "4748438", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797105", + "accession": "SAMN41021703", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797105", + "biosampleAccession": "SAMN41021703", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "VN087", - "filename": "m84091_240110_194735_s1.hifi_reads.bc1001.bam", + "familyId": null, + "filename": "m84091_240315_193817_s2.hifi_reads.bc1012.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG02514_PB4_m84091_240110_194735_s1.hifi_reads.bc1001.bam", + "libraryId": "HG03072_PB1_m84091_240315_193817_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "58573", - "mean": "21003", - "metadataAccession": "SRR30336741", - "min": "145", + "max": "57237", + "mean": "19655", + "metadataAccession": "SRR29405816", + "min": "115", "mmTag": true, - "n25": "18014", - "n50": "21232", - "n75": "25577", + "n25": "16627", + "n50": "20884", + "n75": "25858", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/m84091_240110_194735_s1.hifi_reads.bc1001.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03072/raw_data/PacBio_HiFi/m84091_240315_193817_s2.hifi_reads.bc1012.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", - "productionYear": "YR3", - "quartile25": "17201", - "quartile50": "19943", - "quartile75": "23820", + "productionYear": "YR4", + "quartile25": "14915", + "quartile50": "18745", + "quartile75": "23432", "readN50": "N/A", "result": "N/A", - "sampleId": "HG02514", + "sampleId": "HG03072", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "KHV", - "superpopulation": "EAS", + "subpopulation": "MSL", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "61203787317", - "totalGbp": "61.2", - "totalReads": "2914041", + "totalBp": "43084215319", + "totalGbp": "43.08", + "totalReads": "2191963", "twoHundredkbPlus": "N/A", "whales": "N/A" }, { "Gb": "N/A", - "accession": "SAMN37797103", + "accession": "SAMN41021704", "assembly": "N/A", "basecaller": "N/A", "basecallerModel": "N/A", "basecallerVersion": "N/A", "bioprojectAccession": "N/A", - "biosampleAccession": "SAMN37797103", + "biosampleAccession": "SAMN41021704", "ccsAlgorithm": "7.0.0", "coverage": "N/A", "dataType": "unaligned reads", "deepConsensusVersion": "", "designDescription": "HiFi sequencing of 20kb fractionated gDNA", - "familyId": "PEL023", - "filename": "m84091_240110_201841_s2.hifi_reads.bc1002.bam", + "familyId": null, + "filename": "m84091_240315_193817_s2.hifi_reads.bc1015.bam", "filetype": "N/A", "fiveHundredkbPlus": "N/A", "fourHundredkbPlus": "N/A", "generatorContact": "vgl-lab@rockefeller.edu", "generatorFacility": "Rockefeller University", "instrumentModel": "Revio", - "libraryId": "HG01969_PB5_m84091_240110_201841_s2.hifi_reads.bc1002.bam", + "libraryId": "HG03445_PB1_m84091_240315_193817_s2", "libraryLayout": "single", "librarySelection": "size fractionation", "librarySource": "GENOMIC", "libraryStrategy": "WGS", - "max": "65188", - "mean": "20909", - "metadataAccession": "SRR30336746", - "min": "62", + "max": "54186", + "mean": "17544", + "metadataAccession": "SRR29405785", + "min": "394", "mmTag": true, - "n25": "17764", - "n50": "21387", - "n75": "26025", + "n25": "14916", + "n50": "18324", + "n75": "22466", "notes": "", "ntsmResult": "N/A", "ntsmScore": "N/A", "oneHundredkbPlus": "N/A", "oneMbPlus": "N/A", - "path": "s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/m84091_240110_201841_s2.hifi_reads.bc1002.bam", + "path": "s3://human-pangenomics/working/HPRC/HG03445/raw_data/PacBio_HiFi/m84091_240315_193817_s2.hifi_reads.bc1015.bam", "platform": "PACBIO_SMRT", "polymeraseVersion": "Revio P1", - "productionYear": "YR3", - "quartile25": "16719", - "quartile50": "19839", - "quartile75": "24046", + "productionYear": "YR4", + "quartile25": "13717", + "quartile50": "16738", + "quartile75": "20594", "readN50": "N/A", "result": "N/A", - "sampleId": "HG01969", + "sampleId": "HG03445", "seqKit": "N/A", "seqPlateChemistryVersion": "Revio C1", "shearMethod": "Megaruptor 3", "sizeSelection": "Pippin HT", "study": "SRP305758", - "subpopulation": "PEL", - "superpopulation": "AMR", + "subpopulation": "MSL", + "superpopulation": "AFR", "threeHundredkbPlus": "N/A", "title": "N/A", - "totalBp": "60008819440", - "totalGbp": "60.01", - "totalReads": "2869967", + "totalBp": "45311493139", + "totalGbp": "45.31", + "totalReads": "2582676", "twoHundredkbPlus": "N/A", "whales": "N/A" } diff --git a/files/requirements.txt b/files/requirements.txt deleted file mode 100644 index 223f7cc..0000000 --- a/files/requirements.txt +++ /dev/null @@ -1,11 +0,0 @@ -certifi==2024.7.4 -charset-normalizer==3.3.2 -idna==3.7 -numpy==2.0.1 -pandas==2.2.2 -python-dateutil==2.9.0.post0 -pytz==2024.1 -requests==2.32.3 -six==1.16.0 -tzdata==2024.1 -urllib3==2.2.2 diff --git a/files/source/raw-sequencing-data.csv b/files/source/raw-sequencing-data.csv deleted file mode 100644 index 6780d3f..0000000 --- a/files/source/raw-sequencing-data.csv +++ /dev/null @@ -1,2536 +0,0 @@ -100kb+,1Mb+,200kb+,300kb+,400kb+,500kb+,DeepConsensus_version,Gb,MM_tag,N25,N50,N75,accession,assembly,basecaller,basecaller_model,basecaller_version,bioproject_accession,biosample_accession,ccs_algorithm,coverage,data_type,design_description,filename,filetype,generator_contact,generator_facility,instrument_model,library_ID,library_layout,library_selection,library_source,library_strategy,max,mean,min,notes,ntsm_result,ntsm_score,path,platform,polymerase_version,quartile_25,quartile_50,quartile_75,read_N50,result,sample,sample_ID,seq_kit,seq_plate_chemistry_version,shear_method,size_selection,study,title,total_Gbp,total_bp,total_reads,whales,Sample,Accession,familyID,Subpopulation,Superpopulation,Production Year -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242407,,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-1_S20_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-1_S20_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.63141,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,10.451741673,10451741673.0,N/A,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242406,,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-1_S20_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-1_S20_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.580328,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,11.266122224,11266122224.0,N/A,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242322,,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-1_S20_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-1_S20_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577897,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,11.263022499,11263022499.0,N/A,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242307,,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.6,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-1_S20_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-1_S20_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.610805,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,11.172967086,11172967086.0,N/A,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242271,,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-2_S28_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-2_S28_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.607471,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,10.131790358,10131790358.0,N/A,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242256,,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-2_S28_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-2_S28_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.634275,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,11.131760226,11131760226.0,N/A,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242245,,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-2_S28_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-2_S28_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.639197,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,11.135119794,11135119794.0,N/A,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242475,,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.55,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-2_S28_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-2_S28_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.602038,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,10.993123748,10993123748.0,N/A,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242464,,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,11.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-1_S22_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-1_S22_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.525447,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,37.024993829,37024993829.0,N/A,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242456,,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,12.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-1_S22_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-1_S22_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.510349,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,38.093038178,38093038178.0,N/A,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242405,,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,11.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-1_S22_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-1_S22_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.497501,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,36.160735792,36160735792.0,N/A,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242394,,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,12.02,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-1_S22_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-1_S22_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.464198,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,37.251792722,37251792722.0,N/A,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242383,,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,3.76,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-2_S30_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-2_S30_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.605446,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,11.657507684,11657507684.0,N/A,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242372,,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,3.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-2_S30_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-2_S30_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.595329,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,11.961656403,11961656403.0,N/A,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242364,,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,3.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-2_S30_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-2_S30_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.605152,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,11.381920704,11381920704.0,N/A,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242350,,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,3.77,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-2_S30_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-2_S30_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.611291,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,11.682855823,11682855823.0,N/A,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242339,,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,9.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-1_S21_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-1_S21_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.511729,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,27.990281383,27990281383.0,N/A,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242235,,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,9.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-1_S21_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-1_S21_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.527324,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,30.106363791,30106363791.0,N/A,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242224,,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,9.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-1_S21_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-1_S21_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.525498,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,30.105901448,30105901448.0,N/A,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242333,,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,9.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-1_S21_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-1_S21_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.528697,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,29.777940263,29777940263.0,N/A,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242321,,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,3.6,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-2_S29_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-2_S29_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.596472,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,11.174314891,11174314891.0,N/A,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242314,,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,3.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-2_S29_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-2_S29_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.594296,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,12.278822216,12278822216.0,N/A,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242175,,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,3.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-2_S29_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-2_S29_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.585727,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,12.282924436,12282924436.0,N/A,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242526,,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,3.92,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-2_S29_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-2_S29_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.579023,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,12.137842068,12137842068.0,N/A,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242517,,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,3.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-1_S23_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-1_S23_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.668508,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,9.30726883,9307268830.0,N/A,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242506,,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,3.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-1_S23_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-1_S23_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.624167,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,9.57280626,9572806260.0,N/A,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242207,,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,2.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-1_S23_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-1_S23_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.663599,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,8.948801097,8948801097.0,N/A,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242196,,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,2.99,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-1_S23_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-1_S23_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.628386,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,9.27341895,9273418950.0,N/A,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242449,,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,4.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-2_S31_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-2_S31_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.586155,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,13.454844253,13454844253.0,N/A,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242438,,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,4.46,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-2_S31_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-2_S31_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.629683,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,13.831739909,13831739909.0,N/A,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242306,,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,4.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-2_S31_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-2_S31_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.604095,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,12.967687388,12967687388.0,N/A,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242493,,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,4.33,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-2_S31_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-2_S31_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.581474,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,13.42278644,13422786440.0,N/A,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242502,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,5.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-1_S3_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-1_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.531106,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,15.881878484,15881878484.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242424,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,5.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-1_S3_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-1_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.543372,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,16.121034186,16121034186.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242480,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.93,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-1_S3_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-1_S3_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.518959,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,15.269723276,15269723276.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242283,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-1_S3_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-1_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.547714,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,15.150778535,15150778535.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242411,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.572679,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,14.154859985,14154859985.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242280,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.526389,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,14.365907902,14365907902.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242273,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.33,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.544446,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,13.420324024,13420324024.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242272,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.553314,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,13.477345492,13477345492.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242270,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,11.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.425715,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,35.830722289,35830722289.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242268,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,12.69,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.462949,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,39.35182041,39351820410.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242265,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,10.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.477153,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,33.977811222,33977811222.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242264,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,9.49,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.484091,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,29.404032796,29404032796.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242262,,N/A,N/A,N/A,PRJNA701308,SAMN37797100,N/A,4.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01784-2_S31_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01784-2_S31_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.602602,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01784,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01784,12.386565567,12386565567.0,N/A,N/A,HG01784,SAMN37797100,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242479,,N/A,N/A,N/A,PRJNA701308,SAMN37797100,N/A,4.32,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01784-2_S31_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01784-2_S31_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.592402,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01784,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01784,13.377187618,13377187618.0,N/A,N/A,HG01784,SAMN37797100,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242478,,N/A,N/A,N/A,PRJNA701308,SAMN37797100,N/A,4.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01784-2_S31_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01784-2_S31_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.583023,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01784,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01784,13.371568307,13371568307.0,N/A,N/A,HG01784,SAMN37797100,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242259,,N/A,N/A,N/A,PRJNA701308,SAMN37797100,N/A,4.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01784-2_S31_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01784-2_S31_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.605486,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01784,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01784,13.250775565,13250775565.0,N/A,N/A,HG01784,SAMN37797100,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242258,,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,2.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-1_S1_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-1_S1_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.647356,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,8.290570287,8290570287.0,N/A,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242257,,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,2.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-1_S1_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-1_S1_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.620614,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,8.975206509,8975206509.0,N/A,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242255,,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,2.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-1_S1_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-1_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.622793,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,8.977755556,8977755556.0,N/A,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242254,,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,2.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-1_S1_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-1_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.649502,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,8.864041665,8864041665.0,N/A,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242253,,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,3.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-2_S9_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-2_S9_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.620916,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,9.651428893,9651428893.0,N/A,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242252,,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,3.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-2_S9_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-2_S9_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.612289,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,10.541830391,10541830391.0,N/A,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242251,,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,3.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-2_S9_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-2_S9_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.596701,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,10.535978094,10535978094.0,N/A,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242250,,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,3.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-2_S9_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-2_S9_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.611257,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,10.368682458,10368682458.0,N/A,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242249,,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,3.64,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-1_S24_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-1_S24_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.623241,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,11.299227154,11299227154.0,N/A,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242248,,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,3.73,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-1_S24_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-1_S24_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.602946,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,11.567425336,11567425336.0,N/A,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242247,,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,3.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-1_S24_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-1_S24_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.619456,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,11.07005695,11070056950.0,N/A,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242246,,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,3.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-1_S24_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-1_S24_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.618786,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,11.32253086,11322530860.0,N/A,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242244,,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,4.06,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-2_S32_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-2_S32_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.6,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,12.578918553,12578918553.0,N/A,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242243,,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,4.16,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-2_S32_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-2_S32_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.570687,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,12.886674344,12886674344.0,N/A,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242242,,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,3.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-2_S32_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-2_S32_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.588933,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,12.241855001,12241855001.0,N/A,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242241,,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,4.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-2_S32_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-2_S32_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.596469,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,12.561609829,12561609829.0,N/A,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242240,,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,1.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-1_S2_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-1_S2_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.690243,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,6.089723758,6089723758.0,N/A,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242461,,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,2.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-1_S2_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-1_S2_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.661908,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,6.601978749,6601978749.0,N/A,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242460,,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,2.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-1_S2_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-1_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.702147,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,6.605231258,6605231258.0,N/A,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242459,,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,2.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-1_S2_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-1_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.668794,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,6.519329233,6519329233.0,N/A,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242477,,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,3.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-2_S10_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-2_S10_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.659534,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,10.042788187,10042788187.0,N/A,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242476,,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,3.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-2_S10_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-2_S10_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.611808,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,11.079858825,11079858825.0,N/A,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242474,,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,3.58,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-2_S10_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-2_S10_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.634816,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,11.090061438,11090061438.0,N/A,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242473,,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,3.52,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-2_S10_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-2_S10_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.632186,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,10.897836302,10897836302.0,N/A,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242472,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.567596,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,14.685113009,14685113009.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242471,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.56761,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,14.883637778,14883637778.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242470,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.55,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.513992,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,14.11954328,14119543280.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242469,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.51,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.502015,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,13.969422876,13969422876.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242468,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,9.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.490643,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,30.877274276,30877274276.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242467,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,10.42,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.456736,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,32.305103519,32305103519.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242466,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,8.62,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.506923,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,26.710287853,26710287853.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242465,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,7.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.49395,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,22.807009905,22807009905.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242463,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.598362,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,14.063990321,14063990321.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242462,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.62,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.581007,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,14.326966085,14326966085.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242182,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.602997,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,12.970944182,12970944182.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242181,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.608654,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,13.17428182,13174281820.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242180,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,11.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.495572,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,35.42050074,35420500740.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242179,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,13.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.506931,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,40.301197724,40301197724.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242178,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,10.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.507416,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,31.160504966,31160504966.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242177,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,8.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.562155,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,25.907269627,25907269627.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242458,,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,3.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-1_S5_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-1_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.606866,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,10.853036509,10853036509.0,N/A,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242457,,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,3.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-1_S5_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-1_S5_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.6135,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,11.815698653,11815698653.0,N/A,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242191,,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,3.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-1_S5_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-1_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.601405,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,11.814658427,11814658427.0,N/A,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242190,,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,3.77,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-1_S5_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-1_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.620551,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,11.675066505,11675066505.0,N/A,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242189,,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,4.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-2_S13_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-2_S13_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577079,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,15.353640937,15353640937.0,N/A,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242188,,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,5.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-2_S13_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-2_S13_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.565604,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,16.613036709,16613036709.0,N/A,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242187,,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,5.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-2_S13_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-2_S13_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.549475,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,16.614538681,16614538681.0,N/A,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242186,,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,5.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-2_S13_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-2_S13_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.584754,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,16.407373892,16407373892.0,N/A,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242185,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,5.06,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.541485,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,15.679484213,15679484213.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242184,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,5.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.566459,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,15.878378348,15878378348.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242176,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.560546,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,15.353893039,15353893039.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242183,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.534743,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,15.058862575,15058862575.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242404,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,11.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.45325,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,34.473291574,34473291574.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242403,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,11.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.497254,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,36.674507291,36674507291.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242402,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,10.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.460186,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,31.405734054,31405734054.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242401,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,8.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.485954,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,27.099399518,27099399518.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242400,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.559289,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,14.475042591,14475042591.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242399,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.73,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.541696,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,14.674740969,14674740969.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242398,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.7,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.569154,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,14.56820151,14568201510.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242397,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.52,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.54842,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,14.013170961,14013170961.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242396,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,9.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.448434,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,28.606795597,28606795597.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242395,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,9.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.495269,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,29.969805791,29969805791.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242393,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,8.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.516831,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,26.806180472,26806180472.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242392,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,7.55,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.504828,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,23.402723198,23402723198.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242391,,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.52,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-1_S1_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-1_S1_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.628871,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,10.909100017,10909100017.0,N/A,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242390,,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-1_S1_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-1_S1_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.594433,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,11.188624282,11188624282.0,N/A,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242389,,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.49,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-1_S1_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-1_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.613123,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,10.804113739,10804113739.0,N/A,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242388,,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-1_S1_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-1_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.601814,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,11.042916113,11042916113.0,N/A,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242387,,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-2_S9_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-2_S9_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.617718,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,9.617944611,9617944611.0,N/A,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242386,,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-2_S9_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-2_S9_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.576885,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,9.855703706,9855703706.0,N/A,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242385,,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.06,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-2_S9_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-2_S9_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.606758,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,9.483522303,9483522303.0,N/A,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242384,,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-2_S9_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-2_S9_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.606566,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,9.692742184,9692742184.0,N/A,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242382,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-1_S6_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-1_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.5947,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,13.615945405,13615945405.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242381,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.46,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-1_S6_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-1_S6_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.571247,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,13.833717712,13833717712.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242380,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-1_S6_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-1_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.54991,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,13.135668935,13135668935.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242379,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-1_S6_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-1_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.615965,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,13.006089425,13006089425.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242378,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,3.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.587759,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,12.202402986,12202402986.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242377,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.611986,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,12.415186534,12415186534.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242376,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.59877,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,12.414356855,12414356855.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242375,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,3.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.580856,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,11.921734213,11921734213.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242374,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,9.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.49904,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,28.058254078,28058254078.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242373,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,9.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.495795,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,28.508736738,28508736738.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242371,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,8.01,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.513093,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,24.826749519,24826749519.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242370,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,6.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.537468,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,21.083832226,21083832226.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242369,,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,4.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-1_S5_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-1_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.574426,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,13.499572647,13499572647.0,N/A,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242368,,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,4.47,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-1_S5_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-1_S5_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.569608,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,13.860885604,13860885604.0,N/A,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242367,,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,4.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-1_S5_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-1_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.573949,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,13.167995623,13167995623.0,N/A,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242359,,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,4.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-1_S5_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-1_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.557848,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,13.524884287,13524884287.0,N/A,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242360,,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,3.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-2_S13_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-2_S13_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.605598,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,11.497934604,11497934604.0,N/A,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242361,,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,3.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-2_S13_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-2_S13_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.605748,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,11.785363728,11785363728.0,N/A,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242362,,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,3.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-2_S13_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-2_S13_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.588376,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,11.135847597,11135847597.0,N/A,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242363,,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,3.7,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-2_S13_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-2_S13_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.630068,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,11.475577542,11475577542.0,N/A,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242365,,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,3.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-1_S6_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-1_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.600621,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,11.952931713,11952931713.0,N/A,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242366,,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,3.97,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-1_S6_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-1_S6_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.623442,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,12.303021339,12303021339.0,N/A,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242342,,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,3.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-1_S6_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-1_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.620107,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,11.636777051,11636777051.0,N/A,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242343,,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,3.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-1_S6_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-1_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.581818,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,12.02945079,12029450790.0,N/A,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242344,,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,4.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-2_S14_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-2_S14_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.587956,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,12.748095306,12748095306.0,N/A,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242345,,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,4.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-2_S14_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-2_S14_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.5655,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,13.102628356,13102628356.0,N/A,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242346,,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,3.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-2_S14_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-2_S14_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.60048,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,12.351349239,12351349239.0,N/A,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242347,,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,4.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-2_S14_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-2_S14_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.572203,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,12.697988712,12697988712.0,N/A,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242348,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.78,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-1_S7_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-1_S7_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.56484,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,14.832803612,14832803612.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242349,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-1_S7_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-1_S7_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.570263,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,15.041853062,15041853062.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242351,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-1_S7_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-1_S7_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.588908,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,14.040285498,14040285498.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242352,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.51,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-1_S7_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-1_S7_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.550107,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,13.982392584,13982392584.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242353,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.581302,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,14.303290679,14303290679.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242354,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.544862,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,14.501402402,14501402402.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242355,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.57522,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,13.509928125,13509928125.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242356,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.56572,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,13.501792797,13501792797.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242357,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,11.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.469732,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,36.917053749,36917053749.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242358,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,13.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.485264,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,41.838825896,41838825896.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242341,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,11.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.51802,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,34.794784186,34794784186.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242340,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,9.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.477419,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,29.901590068,29901590068.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242338,,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,5.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-1_S7_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-1_S7_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.527096,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,15.485841647,15485841647.0,N/A,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242337,,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,5.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-1_S7_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-1_S7_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.553008,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,15.915046864,15915046864.0,N/A,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242221,,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,4.76,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-1_S7_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-1_S7_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.554386,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,14.757163472,14757163472.0,N/A,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242220,,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,4.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-1_S7_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-1_S7_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.588467,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,15.315851335,15315851335.0,N/A,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242219,,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,3.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-2_S15_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-2_S15_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.616049,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,11.880470588,11880470588.0,N/A,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242336,,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,3.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-2_S15_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-2_S15_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.593427,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,12.222747126,12222747126.0,N/A,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242239,,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,3.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-2_S15_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-2_S15_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.599817,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,11.395230541,11395230541.0,N/A,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242238,,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,3.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-2_S15_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-2_S15_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.587912,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,11.780225528,11780225528.0,N/A,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242237,,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-1_S4_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-1_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.618107,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.264492114,13264492114.0,N/A,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242236,,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-1_S4_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-1_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.57144,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.551937789,13551937789.0,N/A,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242234,,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-1_S4_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-1_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.580506,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,12.982900077,12982900077.0,N/A,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242233,,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-1_S4_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-1_S4_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.563984,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.20823363,13208233630.0,N/A,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242232,,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-2_S12_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-2_S12_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.589349,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.753800959,13753800959.0,N/A,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242231,,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-2_S12_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-2_S12_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.568515,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,14.0815468,14081546800.0,N/A,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242230,,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.33,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-2_S12_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-2_S12_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.569739,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.415679158,13415679158.0,N/A,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242229,,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-2_S12_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-2_S12_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.617625,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.747816543,13747816543.0,N/A,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242228,,N/A,N/A,N/A,PRJNA701308,SAMN37797109,N/A,2.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03458-1_S17_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03458-1_S17_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.648711,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03458,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03458,7.34275989,7342759890.0,N/A,N/A,HG03458,SAMN37797109,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242227,,N/A,N/A,N/A,PRJNA701308,SAMN37797109,N/A,2.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03458-1_S17_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03458-1_S17_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.631313,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03458,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03458,7.54121031,7541210310.0,N/A,N/A,HG03458,SAMN37797109,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242226,,N/A,N/A,N/A,PRJNA701308,SAMN37797109,N/A,2.32,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03458-1_S17_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03458-1_S17_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.637325,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03458,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03458,7.184535005,7184535005.0,N/A,N/A,HG03458,SAMN37797109,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242225,,N/A,N/A,N/A,PRJNA701308,SAMN37797109,N/A,2.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03458-1_S17_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03458-1_S17_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.665429,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03458,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03458,7.354789323,7354789323.0,N/A,N/A,HG03458,SAMN37797109,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242223,,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.82,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-1_S18_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-1_S18_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.594815,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,11.849763503,11849763503.0,N/A,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242222,,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-1_S18_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-1_S18_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.600467,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,12.135092146,12135092146.0,N/A,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242319,,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-1_S18_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-1_S18_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.594667,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,11.634327328,11634327328.0,N/A,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242318,,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-1_S18_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-1_S18_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.6004,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,11.86036897,11860368970.0,N/A,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242317,,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-2_S26_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-2_S26_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.620073,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,9.587897548,9587897548.0,N/A,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242218,,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-2_S26_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-2_S26_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.572677,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,9.825240348,9825240348.0,N/A,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242217,,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.02,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-2_S26_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-2_S26_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.598062,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,9.358371465,9358371465.0,N/A,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242216,,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.08,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-2_S26_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-2_S26_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.603151,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,9.560358443,9560358443.0,N/A,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242335,,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,2.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-1_S24_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-1_S24_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.650114,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,6.754019188,6754019188.0,N/A,N/A,HG03742,SAMN37797111,,ITU,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242334,,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,2.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-1_S24_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-1_S24_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.612799,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,7.071031529,7071031529.0,N/A,N/A,HG03742,SAMN37797111,,ITU,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242332,,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,2.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-1_S24_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-1_S24_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.633073,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,7.069840467,7069840467.0,N/A,N/A,HG03742,SAMN37797111,,ITU,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242331,,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,2.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-1_S24_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-1_S24_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.632801,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,7.012952628,7012952628.0,N/A,N/A,HG03742,SAMN37797111,,ITU,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242330,,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,6.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-2_S32_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-2_S32_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.500177,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,18.877366518,18877366518.0,N/A,N/A,HG03742,SAMN37797111,,ITU,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242329,,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,6.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-2_S32_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-2_S32_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.551993,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,20.557546849,20557546849.0,N/A,N/A,HG03742,SAMN37797111,,ITU,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242328,,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,6.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-2_S32_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-2_S32_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.525506,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,20.566876467,20566876467.0,N/A,N/A,HG03742,SAMN37797111,,ITU,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242327,,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,6.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-2_S32_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-2_S32_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.508401,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,20.431898061,20431898061.0,N/A,N/A,HG03742,SAMN37797111,,ITU,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242326,,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,2.87,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-1_S19_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-1_S19_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.652957,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,8.894617797,8894617797.0,N/A,N/A,HG03792,SAMN37797112,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242325,,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.15,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-1_S19_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-1_S19_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.647623,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,9.758746396,9758746396.0,N/A,N/A,HG03792,SAMN37797112,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242324,,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.15,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-1_S19_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-1_S19_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.636941,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,9.768810382,9768810382.0,N/A,N/A,HG03792,SAMN37797112,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242323,,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-1_S19_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-1_S19_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.592393,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,9.615301263,9615301263.0,N/A,N/A,HG03792,SAMN37797112,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242320,,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,2.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-2_S27_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-2_S27_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.639005,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,9.122844278,9122844278.0,N/A,N/A,HG03792,SAMN37797112,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242316,,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-2_S27_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-2_S27_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.613655,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,10.00435106,10004351060.0,N/A,N/A,HG03792,SAMN37797112,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242172,,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-2_S27_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-2_S27_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.6202,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,10.00805921,10008059210.0,N/A,N/A,HG03792,SAMN37797112,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242171,,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-2_S27_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-2_S27_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.607695,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,9.834207094,9834207094.0,N/A,N/A,HG03792,SAMN37797112,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242315,,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,4.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-1_S8_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-1_S8_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.572991,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,12.670729097,12670729097.0,N/A,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242167,,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,4.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-1_S8_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-1_S8_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.558825,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,13.095838677,13095838677.0,N/A,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242166,,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,3.93,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-1_S8_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-1_S8_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.611446,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,12.187989591,12187989591.0,N/A,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242165,,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,4.07,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-1_S8_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-1_S8_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.608723,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,12.630827955,12630827955.0,N/A,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242164,,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,5.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-2_S16_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-2_S16_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.571952,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,16.313555116,16313555116.0,N/A,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242163,,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,5.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-2_S16_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-2_S16_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.578408,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,16.717750885,16717750885.0,N/A,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242313,,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,5.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-2_S16_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-2_S16_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.569439,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,15.608912229,15608912229.0,N/A,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242312,,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,5.21,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-2_S16_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-2_S16_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.580577,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,16.150293852,16150293852.0,N/A,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242159,,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-1_S6_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-1_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.601569,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,11.128098122,11128098122.0,N/A,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242158,,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-1_S6_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-1_S6_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.597847,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,12.088124186,12088124186.0,N/A,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242157,,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-1_S6_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-1_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.612623,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,12.106703496,12106703496.0,N/A,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242156,,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-1_S6_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-1_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.607579,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,11.93190536,11931905360.0,N/A,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242155,,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-2_S14_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-2_S14_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.611813,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,10.078151831,10078151831.0,N/A,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242154,,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.49,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-2_S14_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-2_S14_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.627078,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,10.8331673,10833167300.0,N/A,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242153,,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.49,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-2_S14_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-2_S14_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.638538,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,10.827380755,10827380755.0,N/A,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242528,,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-2_S14_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-2_S14_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.601804,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,10.674939126,10674939126.0,N/A,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242174,,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,4.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-1_S2_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-1_S2_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.593934,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,14.504938924,14504938924.0,N/A,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242173,,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,4.79,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-1_S2_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-1_S2_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.571957,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,14.839350107,14839350107.0,N/A,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242215,,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,4.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-1_S2_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-1_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.56045,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,14.225785815,14225785815.0,N/A,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242214,,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,4.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-1_S2_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-1_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.586383,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,14.45108859,14451088590.0,N/A,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242213,,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,3.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-2_S10_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-2_S10_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.629584,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,10.496884578,10496884578.0,N/A,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242170,,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,3.47,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-2_S10_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-2_S10_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.638907,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,10.759683519,10759683519.0,N/A,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242162,,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,3.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-2_S10_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-2_S10_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.661084,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,10.349756404,10349756404.0,N/A,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242161,,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,3.41,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-2_S10_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-2_S10_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.642143,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,10.576293045,10576293045.0,N/A,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242160,,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-1_S3_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-1_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.567091,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,12.551596173,12551596173.0,N/A,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242527,,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-1_S3_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-1_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.594242,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,13.770283286,13770283286.0,N/A,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242525,,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-1_S3_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-1_S3_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.586409,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,13.779161976,13779161976.0,N/A,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242524,,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-1_S3_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-1_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.602279,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,13.579732696,13579732696.0,N/A,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242523,,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-2_S11_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-2_S11_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.627018,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,13.292917501,13292917501.0,N/A,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242169,,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-2_S11_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-2_S11_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.568298,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,14.462000368,14462000368.0,N/A,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242168,,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-2_S11_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-2_S11_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.586129,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,14.439258485,14439258485.0,N/A,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242522,,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-2_S11_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-2_S11_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.555905,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,14.233988117,14233988117.0,N/A,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242521,,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.72,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-1_S3_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-1_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.587984,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.546555904,11546555904.0,N/A,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242520,,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.82,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-1_S3_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-1_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.585985,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.847239507,11847239507.0,N/A,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242519,,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.64,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-1_S3_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-1_S3_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.592584,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.276006296,11276006296.0,N/A,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242518,,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-1_S3_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-1_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.571223,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.580409557,11580409557.0,N/A,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242516,,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.72,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-2_S11_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-2_S11_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.599769,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.529545009,11529545009.0,N/A,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242515,,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-2_S11_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-2_S11_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.578065,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.808316315,11808316315.0,N/A,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242514,,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-2_S11_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-2_S11_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577688,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.178435722,11178435722.0,N/A,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242513,,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.69,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-2_S11_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-2_S11_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.609274,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.452546788,11452546788.0,N/A,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242512,,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,2.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-1_S4_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-1_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.625452,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,9.242082335,9242082335.0,N/A,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242511,,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,3.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-1_S4_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-1_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.611177,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,10.113221981,10113221981.0,N/A,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242510,,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,3.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-1_S4_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-1_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.617873,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,10.114463682,10114463682.0,N/A,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242509,,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,3.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-1_S4_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-1_S4_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.612165,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,9.990030775,9990030775.0,N/A,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242508,,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,2.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-2_S12_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-2_S12_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.675966,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,7.423144968,7423144968.0,N/A,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242507,,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,2.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-2_S12_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-2_S12_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.663478,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,8.040954772,8040954772.0,N/A,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242505,,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,2.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-2_S12_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-2_S12_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.643436,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,8.042818109,8042818109.0,N/A,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242504,,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,2.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-2_S12_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-2_S12_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.659335,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,7.923211922,7923211922.0,N/A,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242193,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,4.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-1_S2_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-1_S2_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.551493,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,13.298864748,13298864748.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242192,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,4.32,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-1_S2_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-1_S2_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.57845,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,13.393992269,13393992269.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242455,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,4.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-1_S2_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-1_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.536203,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,13.235899441,13235899441.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242212,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,4.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-1_S2_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-1_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.568374,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,12.727345287,12727345287.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242211,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,5.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.57131,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,18.017491417,18017491417.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242210,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,5.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.575995,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,18.268555097,18268555097.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242209,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,5.64,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.538242,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,17.481085109,17481085109.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242208,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,5.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.533142,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,17.147769724,17147769724.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242206,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,13.69,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.450461,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,42.445471726,42445471726.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242205,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,15.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.458555,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,47.194300396,47194300396.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242204,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,12.97,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.507915,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,40.218516326,40218516326.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242203,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,11.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.509102,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,34.446361258,34446361258.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242202,,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,3.78,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-1_S7_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-1_S7_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.612259,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,11.718103219,11718103219.0,N/A,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242201,,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-1_S7_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-1_S7_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.609764,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,12.802197777,12802197777.0,N/A,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242200,,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-1_S7_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-1_S7_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.601135,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,12.815141373,12815141373.0,N/A,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242199,,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-1_S7_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-1_S7_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.622165,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,12.664445294,12664445294.0,N/A,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242198,,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-2_S15_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-2_S15_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.584413,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,14.053826809,14053826809.0,N/A,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242197,,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-2_S15_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-2_S15_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.588101,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,15.206352036,15206352036.0,N/A,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242195,,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-2_S15_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-2_S15_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.589067,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,15.19864848,15198648480.0,N/A,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242194,,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-2_S15_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-2_S15_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.566336,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,15.02171587,15021715870.0,N/A,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242435,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,5.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-1_S5_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-1_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.541936,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,16.029493671,16029493671.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242434,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,5.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-1_S5_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-1_S5_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.563837,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,16.217741508,16217741508.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242433,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,5.08,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-1_S5_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-1_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.545486,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,15.742401699,15742401699.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242454,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,4.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-1_S5_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-1_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.587746,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,15.341183111,15341183111.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242453,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,7.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.530724,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,21.808416507,21808416507.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242452,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,7.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.534757,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,22.222196021,22222196021.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242451,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,6.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.5267,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,20.6394112,20639411200.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242450,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,6.76,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.516312,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,20.951317422,20951317422.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242448,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,16.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.461663,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,52.270389803,52270389803.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242447,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,18.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.484363,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,55.926147946,55926147946.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242446,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,15.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.460326,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,47.200415951,47200415951.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242445,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,13.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.505864,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,40.634736086,40634736086.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242444,,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,4.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-1_S8_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-1_S8_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.566407,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,14.067634876,14067634876.0,N/A,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242443,,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,4.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-1_S8_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-1_S8_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.566578,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,15.32364045,15323640450.0,N/A,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242442,,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,4.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-1_S8_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-1_S8_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.608204,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,15.33033419,15330334190.0,N/A,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242441,,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,4.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-1_S8_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-1_S8_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.589573,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,15.198062363,15198062363.0,N/A,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242440,,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,5.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-2_S16_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-2_S16_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.554173,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,16.324115791,16324115791.0,N/A,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242439,,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,5.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-2_S16_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-2_S16_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.575919,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,17.80660776,17806607760.0,N/A,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242437,,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,5.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-2_S16_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-2_S16_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.535619,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,17.808457755,17808457755.0,N/A,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242436,,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,5.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-2_S16_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-2_S16_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.548013,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,17.582589136,17582589136.0,N/A,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242295,,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,3.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-1_S17_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-1_S17_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.618567,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,12.257135185,12257135185.0,N/A,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242294,,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-1_S17_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-1_S17_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.609886,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,13.073641404,13073641404.0,N/A,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242293,,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-1_S17_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-1_S17_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.586516,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,13.085456563,13085456563.0,N/A,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242432,,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-1_S17_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-1_S17_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.594033,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,12.97945496,12979454960.0,N/A,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242311,,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-2_S25_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-2_S25_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.585463,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,12.682043444,12682043444.0,N/A,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242310,,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-2_S25_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-2_S25_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.580722,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,13.649692314,13649692314.0,N/A,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242309,,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.41,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-2_S25_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-2_S25_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.593398,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,13.658084505,13658084505.0,N/A,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242308,,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-2_S25_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-2_S25_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.588779,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,13.527344367,13527344367.0,N/A,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242305,,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,3.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-1_S19_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-1_S19_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.62636,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,11.05344032,11053440320.0,N/A,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242304,,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,3.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-1_S19_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-1_S19_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.606111,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,11.310326695,11310326695.0,N/A,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242303,,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,3.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-1_S19_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-1_S19_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.609677,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,10.860495038,10860495038.0,N/A,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242302,,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,3.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-1_S19_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-1_S19_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.612421,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,11.075509617,11075509617.0,N/A,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242301,,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,4.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-2_S27_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-2_S27_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.582207,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,14.353976469,14353976469.0,N/A,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242300,,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,4.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-2_S27_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-2_S27_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.565677,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,14.70342425,14703424250.0,N/A,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242299,,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,4.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-2_S27_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-2_S27_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.593926,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,14.050211042,14050211042.0,N/A,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242298,,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,4.62,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-2_S27_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-2_S27_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.618126,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,14.334585396,14334585396.0,N/A,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242297,,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,4.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-1_S20_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-1_S20_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.609815,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,13.51898685,13518986850.0,N/A,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242296,,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,4.45,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-1_S20_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-1_S20_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.587456,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,13.806306273,13806306273.0,N/A,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242492,,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,4.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-1_S20_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-1_S20_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.585312,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,13.184382871,13184382871.0,N/A,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242491,,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,4.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-1_S20_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-1_S20_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.601529,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,13.361652282,13361652282.0,N/A,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242490,,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,3.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-2_S28_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-2_S28_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.631885,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,10.436347266,10436347266.0,N/A,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242489,,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,3.46,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-2_S28_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-2_S28_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.598073,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,10.731057735,10731057735.0,N/A,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242292,,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,3.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-2_S28_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-2_S28_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.616016,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,10.166644606,10166644606.0,N/A,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242291,,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,3.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-2_S28_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-2_S28_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.624638,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,10.446413932,10446413932.0,N/A,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242290,,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-1_S21_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-1_S21_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.60731,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.240955911,12240955911.0,N/A,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242289,,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,4.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-1_S21_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-1_S21_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.615993,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.523728405,12523728405.0,N/A,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242288,,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-1_S21_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-1_S21_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.595639,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,11.875186444,11875186444.0,N/A,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242503,,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-1_S21_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-1_S21_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.635543,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.120041298,12120041298.0,N/A,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242501,,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-2_S29_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-2_S29_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.599757,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.047225949,12047225949.0,N/A,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242500,,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.99,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-2_S29_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-2_S29_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.620903,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.353976938,12353976938.0,N/A,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242499,,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.79,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-2_S29_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-2_S29_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.579837,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,11.751376969,11751376969.0,N/A,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242498,,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-2_S29_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-2_S29_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.617989,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.025993794,12025993794.0,N/A,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242497,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-1_S1_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-1_S1_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.523421,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,19.690591453,19690591453.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242496,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.46,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-1_S1_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-1_S1_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.533744,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,20.025200989,20025200989.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242495,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-1_S1_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-1_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.521817,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,18.740355922,18740355922.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242494,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-1_S1_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-1_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.535841,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,18.768231936,18768231936.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242426,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.548052,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,18.872657779,18872657779.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242425,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.550298,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,19.215002188,19215002188.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242423,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,5.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.565838,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,17.98483757,17984837570.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242422,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,5.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.550269,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,18.074423221,18074423221.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242488,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,14.15,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.480913,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,43.860690211,43860690211.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242487,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,15.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.461152,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,47.681058086,47681058086.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242486,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,13.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.468138,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,40.859482919,40859482919.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242485,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,11.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.492513,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,35.265588464,35265588464.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242484,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-1_S4_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-1_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.53525,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,16.08450502,16084505020.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242483,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-1_S4_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-1_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.530327,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,16.306582361,16306582361.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242482,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-1_S4_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-1_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.549532,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,15.641580822,15641580822.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242481,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.02,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-1_S4_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-1_S4_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.541735,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,15.555176575,15555176575.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242431,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.532172,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,17.149676191,17149676191.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242430,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.525542,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,17.376969777,17376969777.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242429,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.544479,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,16.28661071,16286610710.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242428,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.536677,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,16.252607758,16252607758.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242427,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,13.16,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.470925,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,40.786811298,40786811298.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242408,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,14.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.47961,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,45.068829797,45068829797.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242287,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,12.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.468291,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,39.289404409,39289404409.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242286,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,10.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.482272,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,34.040491107,34040491107.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242285,,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.58,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-1_S18_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-1_S18_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.610008,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,11.099179477,11099179477.0,N/A,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242284,,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-1_S18_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-1_S18_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.588123,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,12.027302447,12027302447.0,N/A,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242421,,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-1_S18_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-1_S18_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.579802,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,12.020931686,12020931686.0,N/A,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242420,,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-1_S18_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-1_S18_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.614887,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,11.933368898,11933368898.0,N/A,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242419,,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-2_S26_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-2_S26_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.597025,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,9.670985294,9670985294.0,N/A,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242418,,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-2_S26_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-2_S26_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.626269,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,10.512394048,10512394048.0,N/A,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242417,,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-2_S26_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-2_S26_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577644,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,10.519144528,10519144528.0,N/A,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242416,,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-2_S26_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-2_S26_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.635641,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,10.393439184,10393439184.0,N/A,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242415,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,5.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-1_S8_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-1_S8_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.546634,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,15.90294153,15902941530.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242414,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,5.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-1_S8_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-1_S8_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.551288,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,16.28802994,16288029940.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242413,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,4.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-1_S8_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-1_S8_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.5569,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,14.729014208,14729014208.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242412,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,4.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-1_S8_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-1_S8_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.561915,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,15.041475923,15041475923.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242410,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,5.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.52546,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,15.500163249,15500163249.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242409,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,5.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.543107,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,15.803601523,15803601523.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242269,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,4.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.579286,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,14.226695314,14226695314.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242267,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,4.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.560394,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,14.475540882,14475540882.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242266,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,11.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16i_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.467558,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,37.051047895,37051047895.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242263,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,14.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16i_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.48385,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,44.137166906,44137166906.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242261,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,11.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16i_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.494007,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,34.914480186,34914480186.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242260,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,9.42,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16i_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.530554,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,29.21494616,29214946160.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242282,,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,1.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-1_S22_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-1_S22_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.748392,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,3.470106754,3470106754.0,N/A,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242281,,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,1.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-1_S22_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-1_S22_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.753747,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,3.720093206,3720093206.0,N/A,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242279,,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,1.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-1_S22_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-1_S22_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.759788,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,3.72054028,3720540280.0,N/A,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242278,,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,1.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-1_S22_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-1_S22_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.730382,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,3.675727312,3675727312.0,N/A,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242277,,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,3.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-2_S30_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-2_S30_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.643335,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,9.453142449,9453142449.0,N/A,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242276,,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,3.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-2_S30_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-2_S30_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.631089,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,10.369296228,10369296228.0,N/A,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242275,,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,3.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-2_S30_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-2_S30_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.625653,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,10.37617397,10376173970.0,N/A,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242274,,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,3.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-2_S30_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-2_S30_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.633477,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,10.205773998,10205773998.0,N/A,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242407,,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-1_S20_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-1_S20_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.586367,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,10.450847711,10450847711.0,N/A,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242406,,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-1_S20_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-1_S20_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.584291,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,11.265516145,11265516145.0,N/A,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242322,,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-1_S20_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-1_S20_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.593362,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,11.262373437,11262373437.0,N/A,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242307,,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.6,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-1_S20_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-1_S20_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.606946,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,11.172372001,11172372001.0,N/A,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242271,,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-2_S28_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-2_S28_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.585726,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,10.130938028,10130938028.0,N/A,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242256,,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-2_S28_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-2_S28_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.574405,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,11.131143646,11131143646.0,N/A,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242245,,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-2_S28_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-2_S28_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.580572,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,11.134454158,11134454158.0,N/A,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242475,,N/A,N/A,N/A,PRJNA701308,SAMN33758778,N/A,3.55,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00099-2_S28_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00099-2_S28_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.590519,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00099,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00099,10.992500429,10992500429.0,N/A,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242464,,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,11.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-1_S22_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-1_S22_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.502603,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,37.022701013,37022701013.0,N/A,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242456,,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,12.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-1_S22_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-1_S22_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.458847,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,38.090056712,38090056712.0,N/A,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242405,,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,11.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-1_S22_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-1_S22_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.461085,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,36.15802852,36158028520.0,N/A,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242394,,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,12.02,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-1_S22_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-1_S22_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.478879,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,37.249046997,37249046997.0,N/A,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242383,,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,3.76,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-2_S30_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-2_S30_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.578836,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,11.656900126,11656900126.0,N/A,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242372,,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,3.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-2_S30_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-2_S30_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.558096,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,11.960834436,11960834436.0,N/A,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242364,,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,3.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-2_S30_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-2_S30_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.584642,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,11.381178346,11381178346.0,N/A,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242350,,N/A,N/A,N/A,PRJNA701308,SAMN33621941,N/A,3.77,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00140-2_S30_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00140-2_S30_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.605834,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00140,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00140,11.682118798,11682118798.0,N/A,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242339,,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,9.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-1_S21_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-1_S21_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.524038,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,27.988108312,27988108312.0,N/A,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242235,,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,9.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-1_S21_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-1_S21_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.487399,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,30.104843106,30104843106.0,N/A,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242224,,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,9.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-1_S21_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-1_S21_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.480544,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,30.104295509,30104295509.0,N/A,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242333,,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,9.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-1_S21_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-1_S21_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.524678,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,29.776396233,29776396233.0,N/A,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242321,,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,3.6,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-2_S29_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-2_S29_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.58995,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,11.173432972,11173432972.0,N/A,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242314,,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,3.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-2_S29_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-2_S29_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.607224,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,12.278186501,12278186501.0,N/A,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242175,,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,3.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-2_S29_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-2_S29_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577749,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,12.282249384,12282249384.0,N/A,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242526,,N/A,N/A,N/A,PRJNA701308,SAMN33758779,N/A,3.92,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00280-2_S29_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00280-2_S29_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.606626,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00280,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00280,12.137209598,12137209598.0,N/A,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242517,,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,3.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-1_S23_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-1_S23_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.572325,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,9.306726494,9306726494.0,N/A,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242506,,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,3.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-1_S23_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-1_S23_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.576623,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,9.572123103,9572123103.0,N/A,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242207,,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,2.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-1_S23_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-1_S23_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.600535,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,8.948237735,8948237735.0,N/A,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242196,,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,2.99,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-1_S23_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-1_S23_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.607121,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,9.272807579,9272807579.0,N/A,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242449,,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,4.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-2_S31_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-2_S31_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.558651,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,13.454144527,13454144527.0,N/A,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242438,,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,4.46,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-2_S31_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-2_S31_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.524332,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,13.830862496,13830862496.0,N/A,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242306,,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,4.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-2_S31_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-2_S31_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.606035,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,12.966946971,12966946971.0,N/A,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242493,,N/A,N/A,N/A,PRJNA701308,SAMN33621942,N/A,4.33,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00323-2_S31_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00323-2_S31_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.567536,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00323,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00323,13.421982668,13421982668.0,N/A,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242502,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,5.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-1_S3_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-1_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.534723,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,15.880840056,15880840056.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242424,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,5.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-1_S3_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-1_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.51989,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,16.120270893,16120270893.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242480,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.93,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-1_S3_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-1_S3_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.524037,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,15.268847244,15268847244.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242283,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-1_S3_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-1_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.552279,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,15.14983771,15149837710.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242411,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.556003,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,14.153832303,14153832303.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242280,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.477837,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,14.365146781,14365146781.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242273,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.33,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.55355,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,13.419442072,13419442072.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242272,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,4.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.508802,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,13.476424101,13476424101.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242270,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,11.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.425428,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,35.828051996,35828051996.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242268,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,12.69,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.442026,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,39.350313141,39350313141.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242265,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,10.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.475761,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,33.976500567,33976500567.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242264,,N/A,N/A,N/A,PRJNA701308,SAMN37797099,N/A,9.48,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01530-2_S11i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01530-2_S11i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.46578,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01530,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01530,29.402751218,29402751218.0,N/A,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242262,,N/A,N/A,N/A,PRJNA701308,SAMN37797100,N/A,4.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01784-2_S31_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01784-2_S31_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.572815,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01784,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01784,12.385592349,12385592349.0,N/A,N/A,HG01784,SAMN37797100,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242479,,N/A,N/A,N/A,PRJNA701308,SAMN37797100,N/A,4.32,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01784-2_S31_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01784-2_S31_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.571426,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01784,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01784,13.376511718,13376511718.0,N/A,N/A,HG01784,SAMN37797100,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242478,,N/A,N/A,N/A,PRJNA701308,SAMN37797100,N/A,4.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01784-2_S31_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01784-2_S31_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.566998,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01784,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01784,13.370845357,13370845357.0,N/A,N/A,HG01784,SAMN37797100,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242259,,N/A,N/A,N/A,PRJNA701308,SAMN37797100,N/A,4.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01784-2_S31_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01784-2_S31_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.530222,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01784,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01784,13.250075767,13250075767.0,N/A,N/A,HG01784,SAMN37797100,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242258,,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,2.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-1_S1_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-1_S1_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.601321,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,8.28995987,8289959870.0,N/A,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242257,,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,2.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-1_S1_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-1_S1_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.652041,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,8.974786338,8974786338.0,N/A,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242255,,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,2.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-1_S1_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-1_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.614708,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,8.977307221,8977307221.0,N/A,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242254,,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,2.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-1_S1_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-1_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.590258,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,8.863626631,8863626631.0,N/A,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242253,,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,3.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-2_S9_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-2_S9_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.617313,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,9.650777164,9650777164.0,N/A,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242252,,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,3.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-2_S9_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-2_S9_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.586206,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,10.541378055,10541378055.0,N/A,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242251,,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,3.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-2_S9_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-2_S9_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.558683,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,10.535494418,10535494418.0,N/A,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242250,,N/A,N/A,N/A,PRJNA701308,SAMN33758784,N/A,3.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02040-2_S9_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02040-2_S9_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.596591,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02040,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02040,10.368222187,10368222187.0,N/A,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242249,,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,3.64,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-1_S24_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-1_S24_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.583929,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,11.298572204,11298572204.0,N/A,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242248,,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,3.73,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-1_S24_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-1_S24_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.608902,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,11.566537131,11566537131.0,N/A,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242247,,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,3.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-1_S24_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-1_S24_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.575936,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,11.069248116,11069248116.0,N/A,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242246,,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,3.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-1_S24_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-1_S24_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.570708,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,11.321714271,11321714271.0,N/A,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242244,,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,4.06,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-2_S32_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-2_S32_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.556892,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,12.578283355,12578283355.0,N/A,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242243,,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,4.16,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-2_S32_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-2_S32_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.580289,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,12.885824519,12885824519.0,N/A,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242242,,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,3.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-2_S32_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-2_S32_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.585525,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,12.241096227,12241096227.0,N/A,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242241,,N/A,N/A,N/A,PRJNA701308,SAMN33621951,N/A,4.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02155-2_S32_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02155-2_S32_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.57334,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02155,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02155,12.56082404,12560824040.0,N/A,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242240,,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,1.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-1_S2_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-1_S2_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.663926,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,6.089288766,6089288766.0,N/A,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242461,,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,2.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-1_S2_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-1_S2_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.624771,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,6.601669753,6601669753.0,N/A,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242460,,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,2.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-1_S2_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-1_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.641039,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,6.604919718,6604919718.0,N/A,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242459,,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,2.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-1_S2_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-1_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.689028,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,6.519022113,6519022113.0,N/A,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242477,,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,3.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-2_S10_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-2_S10_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.627653,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,10.042100462,10042100462.0,N/A,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242476,,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,3.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-2_S10_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-2_S10_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.60866,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,11.079359976,11079359976.0,N/A,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242474,,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,3.58,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-2_S10_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-2_S10_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.603623,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,11.089554141,11089554141.0,N/A,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242473,,N/A,N/A,N/A,PRJNA701308,SAMN33758785,N/A,3.52,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02165-2_S10_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02165-2_S10_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.567315,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02165,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02165,10.897343108,10897343108.0,N/A,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242472,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.534099,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,14.684168841,14684168841.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242471,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.49938,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,14.882988127,14882988127.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242470,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.55,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.522761,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,14.11875585,14118755850.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242469,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.51,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.539868,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,13.968616751,13968616751.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242468,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,9.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.479031,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,30.875082106,30875082106.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242467,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,10.42,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.47092,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,32.304025376,32304025376.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242466,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,8.62,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.488808,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,26.709413361,26709413361.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242465,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,7.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-1_S17i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-1_S17i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.486786,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,22.806162075,22806162075.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242463,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.505772,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,14.06299658,14062996580.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242462,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.62,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.533121,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,14.326153377,14326153377.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242182,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.519903,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,12.970060855,12970060855.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242181,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,4.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.537389,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,13.173351744,13173351744.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242180,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,11.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.445329,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,35.417826788,35417826788.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242179,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,13.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.392894,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,40.299352827,40299352827.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242178,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,10.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.478066,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,31.159100171,31159100171.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242177,,N/A,N/A,N/A,PRJNA701308,SAMN33621953,N/A,8.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02273-2_S19i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02273-2_S19i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.458482,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02273,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02273,25.905984548,25905984548.0,N/A,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242458,,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,3.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-1_S5_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-1_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.563404,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,10.852127037,10852127037.0,N/A,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242457,,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,3.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-1_S5_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-1_S5_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.58974,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,11.815059895,11815059895.0,N/A,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242191,,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,3.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-1_S5_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-1_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.584097,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,11.813973287,11813973287.0,N/A,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242190,,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,3.77,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-1_S5_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-1_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.590675,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,11.674424204,11674424204.0,N/A,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242189,,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,4.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-2_S13_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-2_S13_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.549027,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,15.352495826,15352495826.0,N/A,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242188,,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,5.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-2_S13_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-2_S13_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.521443,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,16.612259508,16612259508.0,N/A,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242187,,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,5.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-2_S13_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-2_S13_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.563252,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,16.613671783,16613671783.0,N/A,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242186,,N/A,N/A,N/A,PRJNA701308,SAMN37797104,N/A,5.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02391-2_S13_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02391-2_S13_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.555217,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02391,16.40657313,16406573130.0,N/A,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242185,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,5.06,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.528025,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,15.678477524,15678477524.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242184,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,5.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.540985,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,15.877680604,15877680604.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242176,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.569764,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,15.353059475,15353059475.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242183,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.538057,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,15.057987757,15057987757.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242404,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,11.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.47633,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,34.470837368,34470837368.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242403,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,11.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.459331,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,36.673265858,36673265858.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242402,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,10.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.451275,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,31.404653189,31404653189.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242401,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,8.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-1_S18i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-1_S18i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.48088,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,27.098330323,27098330323.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242400,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.571817,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,14.473925138,14473925138.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242399,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.73,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.527607,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,14.67391478,14673914780.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242398,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.7,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.546273,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,14.567183879,14567183879.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242397,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,4.52,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.524473,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,14.012189171,14012189171.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242396,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,9.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.472228,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,28.604467707,28604467707.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242395,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,9.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.471149,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,29.968611585,29968611585.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242393,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,8.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.490183,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,26.805199204,26805199204.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242392,,N/A,N/A,N/A,PRJNA701308,SAMN33758788,N/A,7.55,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02922-2_S20i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02922-2_S20i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.48997,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02922,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02922,23.401744757,23401744757.0,N/A,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242391,,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.52,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-1_S1_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-1_S1_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.611813,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,10.908367237,10908367237.0,N/A,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242390,,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-1_S1_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-1_S1_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.588381,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,11.187675916,11187675916.0,N/A,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242389,,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.48,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-1_S1_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-1_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.519883,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,10.803222671,10803222671.0,N/A,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242388,,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-1_S1_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-1_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.576679,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,11.042022598,11042022598.0,N/A,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242387,,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-2_S9_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-2_S9_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.591012,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,9.61731751,9617317510.0,N/A,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242386,,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-2_S9_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-2_S9_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.621251,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,9.854880335,9854880335.0,N/A,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242385,,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.06,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-2_S9_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-2_S9_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.581478,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,9.482716711,9482716711.0,N/A,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242384,,N/A,N/A,N/A,PRJNA701308,SAMN33621954,N/A,3.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02965-2_S9_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02965-2_S9_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.59662,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02965,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02965,9.691974613,9691974613.0,N/A,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242382,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-1_S6_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-1_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.592511,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,13.615192282,13615192282.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242381,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.46,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-1_S6_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-1_S6_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.549554,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,13.833181288,13833181288.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242380,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-1_S6_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-1_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.568814,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,13.135049409,13135049409.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242379,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-1_S6_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-1_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.578165,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,13.005431684,13005431684.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242378,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,3.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.589188,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,12.201618883,12201618883.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242377,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.572139,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,12.414632826,12414632826.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242376,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,4.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.575913,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,12.413702363,12413702363.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242375,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,3.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.574769,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,11.921026808,11921026808.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242374,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,9.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.494608,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,28.056392408,28056392408.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242373,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,9.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.471465,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,28.507899595,28507899595.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242371,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,8.01,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.517213,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,24.826011545,24826011545.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242370,,N/A,N/A,N/A,PRJNA701308,SAMN33621955,N/A,6.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02976-2_S14i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02976-2_S14i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.529189,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02976,21.083129517,21083129517.0,N/A,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242369,,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,4.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-1_S5_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-1_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.513182,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,13.498735238,13498735238.0,N/A,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242368,,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,4.47,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-1_S5_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-1_S5_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.541266,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,13.859849667,13859849667.0,N/A,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242367,,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,4.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-1_S5_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-1_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.512745,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,13.167045749,13167045749.0,N/A,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242359,,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,4.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-1_S5_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-1_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.559787,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,13.523916317,13523916317.0,N/A,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242360,,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,3.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-2_S13_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-2_S13_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577007,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,11.497300137,11497300137.0,N/A,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242361,,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,3.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-2_S13_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-2_S13_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.55918,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,11.784559031,11784559031.0,N/A,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242362,,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,3.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-2_S13_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-2_S13_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.537702,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,11.13508745,11135087450.0,N/A,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242363,,N/A,N/A,N/A,PRJNA701308,SAMN33758791,N/A,3.7,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03130-2_S13_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03130-2_S13_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.567845,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03130,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03130,11.474815636,11474815636.0,N/A,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242365,,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,3.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-1_S6_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-1_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.599319,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,11.952237057,11952237057.0,N/A,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242366,,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,3.97,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-1_S6_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-1_S6_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.58376,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,12.302107333,12302107333.0,N/A,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242342,,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,3.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-1_S6_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-1_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.583228,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,11.635941925,11635941925.0,N/A,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242343,,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,3.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-1_S6_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-1_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.596229,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,12.028614997,12028614997.0,N/A,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242344,,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,4.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-2_S14_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-2_S14_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.552105,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,12.747435871,12747435871.0,N/A,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242345,,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,4.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-2_S14_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-2_S14_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.581126,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,13.101759299,13101759299.0,N/A,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242346,,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,3.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-2_S14_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-2_S14_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.549756,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,12.350569304,12350569304.0,N/A,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242347,,N/A,N/A,N/A,PRJNA701308,SAMN33758792,N/A,4.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03139-2_S14_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03139-2_S14_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.562295,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03139,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03139,12.697196399,12697196399.0,N/A,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242348,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.78,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-1_S7_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-1_S7_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.538429,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,14.831815272,14831815272.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242349,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-1_S7_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-1_S7_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.533578,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,15.041101316,15041101316.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242351,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-1_S7_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-1_S7_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.565042,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,14.039451752,14039451752.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242352,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.51,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-1_S7_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-1_S7_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.553076,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,13.981512589,13981512589.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242353,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.526772,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,14.302336909,14302336909.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242354,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.510395,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,14.500663032,14500663032.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242355,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.574072,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,13.509134049,13509134049.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242356,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,4.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.543852,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,13.500963017,13500963017.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242357,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,11.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.441498,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,36.914321619,36914321619.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242358,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,13.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.44424,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,41.837025639,41837025639.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242341,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,11.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.434257,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,34.793350416,34793350416.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242340,,N/A,N/A,N/A,PRJNA701308,SAMN33621956,N/A,9.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03195-2_S15i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03195-2_S15i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.458188,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03195,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03195,29.900251317,29900251317.0,N/A,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242338,,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,5.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-1_S7_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-1_S7_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.522831,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,15.485160859,15485160859.0,N/A,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242337,,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,5.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-1_S7_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-1_S7_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.518024,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,15.914161942,15914161942.0,N/A,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242221,,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,4.76,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-1_S7_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-1_S7_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.532258,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,14.756398358,14756398358.0,N/A,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242220,,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,4.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-1_S7_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-1_S7_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.536059,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,15.315027568,15315027568.0,N/A,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242219,,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,3.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-2_S15_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-2_S15_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.538166,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,11.879927823,11879927823.0,N/A,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242336,,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,3.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-2_S15_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-2_S15_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.564085,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,12.222037317,12222037317.0,N/A,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242239,,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,3.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-2_S15_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-2_S15_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.51788,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,11.394635181,11394635181.0,N/A,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242238,,N/A,N/A,N/A,PRJNA701308,SAMN33758793,N/A,3.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03209-2_S15_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03209-2_S15_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.549943,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03209,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03209,11.779594297,11779594297.0,N/A,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242237,,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-1_S4_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-1_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.562888,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.263638492,13263638492.0,N/A,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242236,,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-1_S4_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-1_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.566573,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.550869907,13550869907.0,N/A,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242234,,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-1_S4_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-1_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.568687,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,12.981889183,12981889183.0,N/A,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242233,,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-1_S4_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-1_S4_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.530182,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.207245038,13207245038.0,N/A,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242232,,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-2_S12_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-2_S12_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.578433,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.7530006,13753000600.0,N/A,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242231,,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-2_S12_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-2_S12_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.550283,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,14.080492078,14080492078.0,N/A,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242230,,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.33,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-2_S12_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-2_S12_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.557953,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.41471584,13414715840.0,N/A,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242229,,N/A,N/A,N/A,PRJNA701308,SAMN33621957,N/A,4.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03225-2_S12_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03225-2_S12_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.566993,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03225,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03225,13.746864304,13746864304.0,N/A,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242228,,N/A,N/A,N/A,PRJNA701308,SAMN37797109,N/A,2.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03458-1_S17_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03458-1_S17_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.657246,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03458,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03458,7.342347586,7342347586.0,N/A,N/A,HG03458,SAMN37797109,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242227,,N/A,N/A,N/A,PRJNA701308,SAMN37797109,N/A,2.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03458-1_S17_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03458-1_S17_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.664157,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03458,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03458,7.540661411,7540661411.0,N/A,N/A,HG03458,SAMN37797109,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242226,,N/A,N/A,N/A,PRJNA701308,SAMN37797109,N/A,2.32,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03458-1_S17_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03458-1_S17_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.634673,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03458,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03458,7.184028769,7184028769.0,N/A,N/A,HG03458,SAMN37797109,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242225,,N/A,N/A,N/A,PRJNA701308,SAMN37797109,N/A,2.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03458-1_S17_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03458-1_S17_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.60862,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03458,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03458,7.354296718,7354296718.0,N/A,N/A,HG03458,SAMN37797109,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242223,,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.82,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-1_S18_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-1_S18_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577085,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,11.849107556,11849107556.0,N/A,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242222,,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-1_S18_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-1_S18_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.552266,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,12.134176924,12134176924.0,N/A,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242319,,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-1_S18_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-1_S18_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.574864,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,11.633456348,11633456348.0,N/A,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242318,,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-1_S18_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-1_S18_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.567967,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,11.85951864,11859518640.0,N/A,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242317,,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-2_S26_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-2_S26_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.593232,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,9.587299787,9587299787.0,N/A,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242218,,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-2_S26_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-2_S26_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.595658,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,9.824464467,9824464467.0,N/A,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242217,,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.02,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-2_S26_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-2_S26_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.572006,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,9.35764282,9357642820.0,N/A,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242216,,N/A,N/A,N/A,PRJNA701308,SAMN37797110,N/A,3.08,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03470-2_S26_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03470-2_S26_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.579355,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03470,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03470,9.5596399,9559639900.0,N/A,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242335,,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,2.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-1_S24_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-1_S24_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.651477,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,6.753334539,6753334539.0,N/A,N/A,HG03742,SAMN37797111,,ITU,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242334,,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,2.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-1_S24_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-1_S24_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.610281,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,7.070557687,7070557687.0,N/A,N/A,HG03742,SAMN37797111,,ITU,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242332,,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,2.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-1_S24_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-1_S24_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.655928,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,7.069350018,7069350018.0,N/A,N/A,HG03742,SAMN37797111,,ITU,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242331,,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,2.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-1_S24_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-1_S24_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.636586,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,7.012492701,7012492701.0,N/A,N/A,HG03742,SAMN37797111,,ITU,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242330,,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,6.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-2_S32_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-2_S32_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.510251,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,18.875657885,18875657885.0,N/A,N/A,HG03742,SAMN37797111,,ITU,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242329,,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,6.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-2_S32_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-2_S32_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.52019,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,20.556396284,20556396284.0,N/A,N/A,HG03742,SAMN37797111,,ITU,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242328,,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,6.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-2_S32_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-2_S32_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.5459,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,20.565643644,20565643644.0,N/A,N/A,HG03742,SAMN37797111,,ITU,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242327,,N/A,N/A,N/A,PRJNA701308,SAMN37797111,N/A,6.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03742-2_S32_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03742-2_S32_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.520253,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03742,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03742,20.430728922,20430728922.0,N/A,N/A,HG03742,SAMN37797111,,ITU,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242326,,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,2.87,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-1_S19_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-1_S19_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.620963,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,8.894046349,8894046349.0,N/A,N/A,HG03792,SAMN37797112,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242325,,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.15,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-1_S19_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-1_S19_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.60376,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,9.758351664,9758351664.0,N/A,N/A,HG03792,SAMN37797112,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242324,,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.15,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-1_S19_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-1_S19_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.60274,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,9.768393628,9768393628.0,N/A,N/A,HG03792,SAMN37797112,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242323,,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-1_S19_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-1_S19_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.602769,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,9.614885527,9614885527.0,N/A,N/A,HG03792,SAMN37797112,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242320,,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,2.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-2_S27_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-2_S27_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.607542,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,9.122210111,9122210111.0,N/A,N/A,HG03792,SAMN37797112,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242316,,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-2_S27_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-2_S27_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.647329,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,10.003875652,10003875652.0,N/A,N/A,HG03792,SAMN37797112,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242172,,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-2_S27_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-2_S27_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.620433,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,10.007585293,10007585293.0,N/A,N/A,HG03792,SAMN37797112,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242171,,N/A,N/A,N/A,PRJNA701308,SAMN37797112,N/A,3.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03792-2_S27_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03792-2_S27_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.605631,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03792,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03792,9.833727946,9833727946.0,N/A,N/A,HG03792,SAMN37797112,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242315,,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,4.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-1_S8_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-1_S8_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.574618,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,12.669946134,12669946134.0,N/A,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242167,,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,4.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-1_S8_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-1_S8_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.53355,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,13.094893749,13094893749.0,N/A,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242166,,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,3.93,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-1_S8_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-1_S8_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.543095,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,12.18721396,12187213960.0,N/A,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242165,,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,4.07,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-1_S8_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-1_S8_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.591182,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,12.629954975,12629954975.0,N/A,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242164,,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,5.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-2_S16_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-2_S16_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.504895,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,16.312805022,16312805022.0,N/A,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242163,,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,5.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-2_S16_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-2_S16_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.512093,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,16.71679122,16716791220.0,N/A,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242313,,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,5.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-2_S16_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-2_S16_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.55818,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,15.608095066,15608095066.0,N/A,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242312,,N/A,N/A,N/A,PRJNA701308,SAMN33758796,N/A,5.21,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18522-2_S16_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18522-2_S16_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.539815,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18522,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18522,16.149401435,16149401435.0,N/A,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242159,,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-1_S6_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-1_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.595608,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,11.127181174,11127181174.0,N/A,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242158,,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-1_S6_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-1_S6_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.578868,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,12.087460014,12087460014.0,N/A,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242157,,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-1_S6_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-1_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.595106,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,12.10600597,12106005970.0,N/A,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242156,,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-1_S6_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-1_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.542617,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,11.931251919,11931251919.0,N/A,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242155,,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-2_S14_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-2_S14_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.609444,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,10.077433892,10077433892.0,N/A,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242154,,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.49,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-2_S14_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-2_S14_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.593433,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,10.832689311,10832689311.0,N/A,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242153,,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.49,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-2_S14_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-2_S14_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.607336,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,10.826886349,10826886349.0,N/A,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242528,,N/A,N/A,N/A,PRJNA701308,SAMN37797086,N/A,3.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18570-2_S14_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18570-2_S14_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.572355,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18570,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18570,10.674467316,10674467316.0,N/A,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242174,,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,4.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-1_S2_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-1_S2_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.563411,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,14.50409675,14504096750.0,N/A,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242173,,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,4.79,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-1_S2_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-1_S2_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.52518,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,14.838209778,14838209778.0,N/A,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242215,,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,4.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-1_S2_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-1_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.56213,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,14.224758234,14224758234.0,N/A,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242214,,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,4.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-1_S2_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-1_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.537692,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,14.450030677,14450030677.0,N/A,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242213,,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,3.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-2_S10_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-2_S10_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.56808,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,10.496206124,10496206124.0,N/A,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242170,,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,3.47,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-2_S10_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-2_S10_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.568986,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,10.758805375,10758805375.0,N/A,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242162,,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,3.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-2_S10_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-2_S10_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.582099,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,10.348962235,10348962235.0,N/A,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242161,,N/A,N/A,N/A,PRJNA701308,SAMN33621960,N/A,3.41,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18612-2_S10_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18612-2_S10_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.590349,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18612,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18612,10.575504601,10575504601.0,N/A,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242160,,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-1_S3_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-1_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.561688,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,12.550734996,12550734996.0,N/A,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242527,,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-1_S3_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-1_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.523654,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,13.769695959,13769695959.0,N/A,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242525,,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.44,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-1_S3_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-1_S3_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.544026,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,13.778551619,13778551619.0,N/A,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242524,,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-1_S3_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-1_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.567863,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,13.579153216,13579153216.0,N/A,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242523,,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-2_S11_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-2_S11_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.547127,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,13.292067409,13292067409.0,N/A,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242169,,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-2_S11_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-2_S11_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.547781,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,14.461438438,14461438438.0,N/A,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242168,,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-2_S11_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-2_S11_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.568463,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,14.43868495,14438684950.0,N/A,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242522,,N/A,N/A,N/A,PRJNA701308,SAMN33758797,N/A,4.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18747-2_S11_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18747-2_S11_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577051,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18747,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18747,14.233416171,14233416171.0,N/A,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242521,,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.72,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-1_S3_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-1_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.592032,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.545972577,11545972577.0,N/A,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242520,,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.82,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-1_S3_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-1_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.572946,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.846461324,11846461324.0,N/A,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242519,,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.64,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-1_S3_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-1_S3_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.562171,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.275281789,11275281789.0,N/A,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242518,,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-1_S3_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-1_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.573881,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.579687017,11579687017.0,N/A,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242516,,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.72,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-2_S11_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-2_S11_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.572832,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.528908261,11528908261.0,N/A,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242515,,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-2_S11_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-2_S11_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.573433,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.807501248,11807501248.0,N/A,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242514,,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-2_S11_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-2_S11_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.613323,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.177698253,11177698253.0,N/A,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242513,,N/A,N/A,N/A,PRJNA701308,SAMN33621961,N/A,3.69,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18971-2_S11_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18971-2_S11_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.608275,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18971,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18971,11.451809471,11451809471.0,N/A,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242512,,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,2.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-1_S4_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-1_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.613675,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,9.24143913,9241439130.0,N/A,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242511,,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,3.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-1_S4_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-1_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.593331,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,10.11277202,10112772020.0,N/A,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242510,,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,3.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-1_S4_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-1_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.618289,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,10.113984842,10113984842.0,N/A,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242509,,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,3.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-1_S4_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-1_S4_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.596679,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,9.989587215,9989587215.0,N/A,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242508,,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,2.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-2_S12_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-2_S12_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.639034,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,7.422624252,7422624252.0,N/A,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242507,,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,2.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-2_S12_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-2_S12_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.640635,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,8.040583206,8040583206.0,N/A,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242505,,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,2.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-2_S12_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-2_S12_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.633691,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,8.042451194,8042451194.0,N/A,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242504,,N/A,N/A,N/A,PRJNA701308,SAMN33758798,N/A,2.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18983-2_S12_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18983-2_S12_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.631655,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18983,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18983,7.922840121,7922840121.0,N/A,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242193,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,4.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-1_S2_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-1_S2_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.564106,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,13.298041923,13298041923.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242192,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,4.32,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-1_S2_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-1_S2_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.562492,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,13.393435932,13393435932.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242455,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,4.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-1_S2_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-1_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577364,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,13.235179516,13235179516.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242212,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,4.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-1_S2_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-1_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.584527,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,12.726639314,12726639314.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242211,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,5.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.516226,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,18.016003549,18016003549.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242210,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,5.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.518854,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,18.267375506,18267375506.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242209,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,5.64,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.519287,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,17.479781708,17479781708.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242208,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,5.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.513145,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,17.14646394,17146463940.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242206,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,13.69,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.446453,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,42.441850095,42441850095.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242205,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,15.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.472157,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,47.191895994,47191895994.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242204,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,12.97,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.44722,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,40.216454617,40216454617.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242203,,N/A,N/A,N/A,PRJNA701308,SAMN33758799,N/A,11.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19043-2_S10i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19043-2_S10i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.435394,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19043,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19043,34.444435664,34444435664.0,N/A,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242202,,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,3.78,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-1_S7_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-1_S7_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.61564,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,11.717167938,11717167938.0,N/A,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242201,,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-1_S7_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-1_S7_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.570558,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,12.801556577,12801556577.0,N/A,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242200,,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-1_S7_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-1_S7_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.570399,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,12.814460471,12814460471.0,N/A,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242199,,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-1_S7_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-1_S7_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.585035,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,12.663787818,12663787818.0,N/A,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242198,,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-2_S15_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-2_S15_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.553335,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,14.052848081,14052848081.0,N/A,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242197,,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-2_S15_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-2_S15_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.571684,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,15.20572448,15205724480.0,N/A,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242195,,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-2_S15_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-2_S15_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.586585,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,15.197962308,15197962308.0,N/A,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242194,,N/A,N/A,N/A,PRJNA701308,SAMN37797087,N/A,4.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19087-2_S15_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19087-2_S15_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577717,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19087,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19087,15.021066704,15021066704.0,N/A,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242435,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,5.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-1_S5_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-1_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.541506,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,16.028501092,16028501092.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242434,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,5.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-1_S5_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-1_S5_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.574512,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,16.217052773,16217052773.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242433,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,5.08,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-1_S5_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-1_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.559764,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,15.741568716,15741568716.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242454,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,4.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-1_S5_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-1_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.580991,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,15.34032751,15340327510.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242453,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,7.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.524834,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,21.807050017,21807050017.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242452,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,7.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.53991,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,22.221232152,22221232152.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242451,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,6.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.540593,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,20.638270093,20638270093.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242450,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,6.76,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.526534,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,20.950101316,20950101316.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242448,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,16.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.449159,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,52.26666054,52266660540.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242447,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,18.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.475519,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,55.924239854,55924239854.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242446,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,15.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.50701,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,47.198861709,47198861709.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242445,,N/A,N/A,N/A,PRJNA701308,SAMN37797088,N/A,13.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19120-2_S13i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19120-2_S13i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.489479,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19120,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19120,40.633250382,40633250382.0,N/A,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242444,,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,4.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-1_S8_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-1_S8_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.547741,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,14.066467348,14066467348.0,N/A,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242443,,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,4.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-1_S8_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-1_S8_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.545824,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,15.322839268,15322839268.0,N/A,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242442,,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,4.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-1_S8_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-1_S8_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.559477,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,15.329439126,15329439126.0,N/A,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242441,,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,4.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-1_S8_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-1_S8_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.556074,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,15.19721499,15197214990.0,N/A,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242440,,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,5.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-2_S16_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-2_S16_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.569959,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,16.322909256,16322909256.0,N/A,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242439,,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,5.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-2_S16_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-2_S16_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.522968,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,17.805753536,17805753536.0,N/A,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242437,,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,5.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-2_S16_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-2_S16_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.537256,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,17.807570446,17807570446.0,N/A,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242436,,N/A,N/A,N/A,PRJNA701308,SAMN37797089,N/A,5.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19159-2_S16_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19159-2_S16_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.561775,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19159,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19159,17.581755267,17581755267.0,N/A,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242295,,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,3.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-1_S17_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-1_S17_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.568337,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,12.256101559,12256101559.0,N/A,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242294,,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-1_S17_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-1_S17_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.598748,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,13.072948865,13072948865.0,N/A,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242293,,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-1_S17_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-1_S17_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.574441,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,13.084705432,13084705432.0,N/A,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242432,,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-1_S17_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-1_S17_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.574654,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,12.978755728,12978755728.0,N/A,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242311,,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-2_S25_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-2_S25_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.579125,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,12.680980988,12680980988.0,N/A,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242310,,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-2_S25_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-2_S25_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.556523,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,13.648938374,13648938374.0,N/A,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242309,,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.41,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-2_S25_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-2_S25_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.567571,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,13.657310272,13657310272.0,N/A,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242308,,N/A,N/A,N/A,PRJNA701308,SAMN37797090,N/A,4.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19185-2_S25_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19185-2_S25_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.571938,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19185,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19185,13.526574718,13526574718.0,N/A,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242305,,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,3.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-1_S19_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-1_S19_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.592449,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,11.052813837,11052813837.0,N/A,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242304,,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,3.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-1_S19_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-1_S19_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.588985,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,11.309496506,11309496506.0,N/A,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242303,,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,3.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-1_S19_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-1_S19_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.603413,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,10.859728554,10859728554.0,N/A,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242302,,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,3.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-1_S19_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-1_S19_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.587928,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,11.074749106,11074749106.0,N/A,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242301,,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,4.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-2_S27_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-2_S27_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.550579,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,14.353115615,14353115615.0,N/A,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242300,,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,4.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-2_S27_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-2_S27_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.563184,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,14.702293665,14702293665.0,N/A,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242299,,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,4.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-2_S27_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-2_S27_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.545612,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,14.049151602,14049151602.0,N/A,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242298,,N/A,N/A,N/A,PRJNA701308,SAMN37797091,N/A,4.62,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19338-2_S27_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19338-2_S27_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.559476,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19338,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19338,14.333528623,14333528623.0,N/A,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242297,,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,4.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-1_S20_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-1_S20_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.544625,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,13.518244805,13518244805.0,N/A,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242296,,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,4.45,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-1_S20_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-1_S20_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.539666,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,13.805315933,13805315933.0,N/A,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242492,,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,4.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-1_S20_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-1_S20_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.550523,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,13.18347916,13183479160.0,N/A,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242491,,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,4.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-1_S20_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-1_S20_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.53483,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,13.360758809,13360758809.0,N/A,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242490,,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,3.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-2_S28_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-2_S28_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.595998,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,10.435705406,10435705406.0,N/A,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242489,,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,3.46,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-2_S28_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-2_S28_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.583996,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,10.730260451,10730260451.0,N/A,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242292,,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,3.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-2_S28_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-2_S28_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.562347,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,10.165906652,10165906652.0,N/A,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242291,,N/A,N/A,N/A,PRJNA701308,SAMN37797092,N/A,3.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19391-2_S28_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19391-2_S28_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.585156,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19391,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19391,10.445658425,10445658425.0,N/A,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242290,,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-1_S21_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-1_S21_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.579113,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.240254262,12240254262.0,N/A,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242289,,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,4.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-1_S21_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-1_S21_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.578908,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.52280756,12522807560.0,N/A,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242288,,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-1_S21_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-1_S21_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.560997,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,11.874352869,11874352869.0,N/A,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242503,,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-1_S21_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-1_S21_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.594546,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.119181785,12119181785.0,N/A,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242501,,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-2_S29_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-2_S29_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.594036,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.046627353,12046627353.0,N/A,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242500,,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-2_S29_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-2_S29_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.591322,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.353146997,12353146997.0,N/A,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242499,,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.79,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-2_S29_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-2_S29_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.57708,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,11.750624626,11750624626.0,N/A,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242498,,N/A,N/A,N/A,PRJNA701308,SAMN37797093,N/A,3.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19468-2_S29_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19468-2_S29_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.599243,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19468,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19468,12.025256732,12025256732.0,N/A,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242497,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-1_S1_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-1_S1_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.521492,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,19.689103089,19689103089.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242496,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.46,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-1_S1_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-1_S1_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.508134,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,20.024129403,20024129403.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242495,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-1_S1_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-1_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.544839,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,18.739099351,18739099351.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242494,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-1_S1_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-1_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.529485,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,18.766931778,18766931778.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242426,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.50303,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,18.871293988,18871293988.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242425,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,6.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.529809,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,19.213995724,19213995724.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242423,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,5.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.550279,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,17.98370407,17983704070.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242422,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,5.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.53068,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,18.073203675,18073203675.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242488,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,14.15,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.467534,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,43.857149837,43857149837.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242487,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,15.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.433645,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,47.679124939,47679124939.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242486,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,13.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.469565,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,40.857911928,40857911928.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242485,,N/A,N/A,N/A,PRJNA701308,SAMN33758800,N/A,11.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20752-2_S9i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20752-2_S9i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.461973,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20752,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20752,35.264086975,35264086975.0,N/A,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242484,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-1_S4_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-1_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.51074,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,16.08358114,16083581140.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242483,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-1_S4_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-1_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.514144,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,16.305974272,16305974272.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242482,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-1_S4_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-1_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.527647,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,15.640822549,15640822549.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242481,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.02,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-1_S4_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-1_S4_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.505313,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,15.55436882,15554368820.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242431,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.532822,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,17.148483684,17148483684.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242430,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.509521,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,17.376099145,17376099145.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242429,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.527273,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,16.285604458,16285604458.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242428,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,5.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.514582,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,16.251563719,16251563719.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242427,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,13.16,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.450139,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,40.783737096,40783737096.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242408,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,14.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.443745,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,45.067101993,45067101993.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242287,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,12.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.447935,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,39.287924676,39287924676.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242286,,N/A,N/A,N/A,PRJNA701308,SAMN37797094,N/A,10.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20799-2_S12i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20799-2_S12i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.473899,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20799,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20799,34.03905639,34039056390.0,N/A,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242285,,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.58,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-1_S18_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-1_S18_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.601875,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,11.098297137,11098297137.0,N/A,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242284,,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-1_S18_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-1_S18_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.595815,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,12.026700245,12026700245.0,N/A,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242421,,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-1_S18_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-1_S18_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.598198,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,12.02030955,12020309550.0,N/A,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242420,,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-1_S18_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-1_S18_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.574895,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,11.932764485,11932764485.0,N/A,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242419,,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-2_S26_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-2_S26_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.593732,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,9.670160093,9670160093.0,N/A,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242418,,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-2_S26_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-2_S26_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.588998,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,10.511815847,10511815847.0,N/A,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242417,,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-2_S26_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-2_S26_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.580557,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,10.518532134,10518532134.0,N/A,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242416,,N/A,N/A,N/A,PRJNA701308,SAMN33621962,N/A,3.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20805-2_S26_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20805-2_S26_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.590195,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20805,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20805,10.392835274,10392835274.0,N/A,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242415,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,5.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-1_S8_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-1_S8_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.49203,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,15.901873018,15901873018.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242414,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,5.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-1_S8_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-1_S8_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.520439,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,16.287207571,16287207571.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242413,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,4.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-1_S8_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-1_S8_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.529462,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,14.728119611,14728119611.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242412,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,4.85,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-1_S8_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-1_S8_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.504581,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,15.040514196,15040514196.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242410,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,5.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.496052,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,15.499013952,15499013952.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242409,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,5.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.507463,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,15.802649569,15802649569.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242269,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,4.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.539783,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,14.225747009,14225747009.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242267,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,4.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.564607,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,14.474485161,14474485161.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242266,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,11.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16i_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16i_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.425627,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,37.048158449,37048158449.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242263,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,14.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16i_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16i_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.435221,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,44.135016189,44135016189.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242261,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,11.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16i_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16i_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.448822,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,34.912919193,34912919193.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242260,,N/A,N/A,N/A,PRJNA701308,SAMN37797095,N/A,9.42,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20858-2_S16i_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20858-2_S16i_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.443759,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20858,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20858,29.213614599,29213614599.0,N/A,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242282,,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,1.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-1_S22_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-1_S22_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.757607,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,3.46986016,3469860160.0,N/A,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242281,,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,1.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-1_S22_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-1_S22_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.747719,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,3.719930534,3719930534.0,N/A,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242279,,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,1.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-1_S22_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-1_S22_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.718086,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,3.720373007,3720373007.0,N/A,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242278,,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,1.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-1_S22_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-1_S22_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.765865,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,3.675576738,3675576738.0,N/A,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242277,,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,3.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-2_S30_L001_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-2_S30_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.581919,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,9.45241058,9452410580.0,N/A,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242276,,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,3.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-2_S30_L002_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-2_S30_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.622021,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,10.368742664,10368742664.0,N/A,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242275,,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,3.35,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-2_S30_L003_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-2_S30_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.588899,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,10.375607032,10375607032.0,N/A,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30242274,,N/A,N/A,N/A,PRJNA701308,SAMN33758801,N/A,3.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20905-2_S30_L004_R2_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20905-2_S30_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.582213,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20905,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20905,10.205214056,10205214056.0,N/A,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310981,,N/A,N/A,N/A,PRJNA701308,SAMN41021637,N/A,7.42,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00126-1_FC1_S3_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00126-1_FC1_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.456062,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00126,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00126,23.014404072,23014404072.0,N/A,N/A,HG00126,SAMN41021637,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310980,,N/A,N/A,N/A,PRJNA701308,SAMN41021637,N/A,6.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00126-1_FC2_S3_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00126-1_FC2_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.494569,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00126,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00126,21.643319995,21643319995.0,N/A,N/A,HG00126,SAMN41021637,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310819,,N/A,N/A,N/A,PRJNA701308,SAMN41021637,N/A,10.74,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00126-2_FC1_S4_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00126-2_FC1_S4_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.416005,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00126,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00126,33.281084483,33281084483.0,N/A,N/A,HG00126,SAMN41021637,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310952,,N/A,N/A,N/A,PRJNA701308,SAMN41021637,N/A,10.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00126-2_FC2_S4_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00126-2_FC2_S4_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.42042,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00126,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00126,31.102901178,31102901178.0,N/A,N/A,HG00126,SAMN41021637,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310941,,N/A,N/A,N/A,PRJNA701308,SAMN41021641,N/A,5.92,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00128-1_FC1_S9_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00128-1_FC1_S9_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.461992,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00128,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00128,18.338855625,18338855625.0,N/A,N/A,HG00128,SAMN41021641,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310906,,N/A,N/A,N/A,PRJNA701308,SAMN41021641,N/A,5.64,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00128-1_FC2_S9_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00128-1_FC2_S9_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.498659,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00128,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00128,17.480349957,17480349957.0,N/A,N/A,HG00128,SAMN41021641,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310895,,N/A,N/A,N/A,PRJNA701308,SAMN41021641,N/A,5.52,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00128-2_FC1_S10_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00128-2_FC1_S10_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.519285,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00128,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00128,17.124632311,17124632311.0,N/A,N/A,HG00128,SAMN41021641,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310884,,N/A,N/A,N/A,PRJNA701308,SAMN41021641,N/A,5.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00128-2_FC2_S10_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00128-2_FC2_S10_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.558467,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00128,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00128,16.272984308,16272984308.0,N/A,N/A,HG00128,SAMN41021641,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310849,,N/A,N/A,N/A,PRJNA701308,SAMN41021638,N/A,7.03,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00133-1_FC1_S5_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00133-1_FC1_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.481832,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00133,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00133,21.805365041,21805365041.0,N/A,N/A,HG00133,SAMN41021638,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310838,,N/A,N/A,N/A,PRJNA701308,SAMN41021638,N/A,6.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00133-1_FC2_S5_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00133-1_FC2_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.453404,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00133,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00133,20.487595742,20487595742.0,N/A,N/A,HG00133,SAMN41021638,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310979,,N/A,N/A,N/A,PRJNA701308,SAMN41021638,N/A,5.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00133-2_FC1_S6_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00133-2_FC1_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.513267,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00133,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00133,15.627199286,15627199286.0,N/A,N/A,HG00133,SAMN41021638,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310968,,N/A,N/A,N/A,PRJNA701308,SAMN41021638,N/A,4.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00133-2_FC2_S6_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00133-2_FC2_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.527565,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00133,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00133,14.710505617,14710505617.0,N/A,N/A,HG00133,SAMN41021638,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310957,,N/A,N/A,N/A,PRJNA701308,SAMN41021634,N/A,8.55,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00146-1_FC1_S5_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00146-1_FC1_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.461355,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00146,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00146,26.496294197,26496294197.0,N/A,N/A,HG00146,SAMN41021634,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310922,,N/A,N/A,N/A,PRJNA701308,SAMN41021634,N/A,8.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00146-1_FC2_S5_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00146-1_FC2_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.476218,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00146,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00146,27.358753045,27358753045.0,N/A,N/A,HG00146,SAMN41021634,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310911,,N/A,N/A,N/A,PRJNA701308,SAMN41021634,N/A,7.73,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00146-2_FC1_S6_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00146-2_FC1_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.50744,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00146,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00146,23.962537602,23962537602.0,N/A,N/A,HG00146,SAMN41021634,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310876,,N/A,N/A,N/A,PRJNA701308,SAMN41021634,N/A,8.01,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00146-2_FC2_S6_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00146-2_FC2_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.501278,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00146,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00146,24.830283262,24830283262.0,N/A,N/A,HG00146,SAMN41021634,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310865,,N/A,N/A,N/A,PRJNA701308,SAMN41021635,N/A,6.16,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00232-1_FC1_S7_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00232-1_FC1_S7_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.486337,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00232,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00232,19.099015899,19099015899.0,N/A,N/A,HG00232,SAMN41021635,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310830,,N/A,N/A,N/A,PRJNA701308,SAMN41021635,N/A,6.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00232-1_FC2_S7_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00232-1_FC2_S7_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.510446,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00232,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00232,19.310675468,19310675468.0,N/A,N/A,HG00232,SAMN41021635,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310821,,N/A,N/A,N/A,PRJNA701308,SAMN41021635,N/A,8.01,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00232-2_FC1_S8_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00232-2_FC1_S8_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.441484,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00232,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00232,24.837421032,24837421032.0,N/A,N/A,HG00232,SAMN41021635,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310820,,N/A,N/A,N/A,PRJNA701308,SAMN41021635,N/A,8.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00232-2_FC2_S8_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00232-2_FC2_S8_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.459377,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00232,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00232,25.214121638,25214121638.0,N/A,N/A,HG00232,SAMN41021635,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310818,,N/A,N/A,N/A,PRJNA701308,SAMN41021639,N/A,6.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00290-1_FC1_S7_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00290-1_FC1_S7_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.4654,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00290,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00290,19.497247142,19497247142.0,N/A,N/A,HG00290,SAMN41021639,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310817,,N/A,N/A,N/A,PRJNA701308,SAMN41021639,N/A,6.17,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00290-1_FC2_S7_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00290-1_FC2_S7_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.484694,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00290,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00290,19.123573331,19123573331.0,N/A,N/A,HG00290,SAMN41021639,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310816,,N/A,N/A,N/A,PRJNA701308,SAMN41021639,N/A,7.47,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00290-2_FC1_S8_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00290-2_FC1_S8_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.48162,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00290,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00290,23.168123129,23168123129.0,N/A,N/A,HG00290,SAMN41021639,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310815,,N/A,N/A,N/A,PRJNA701308,SAMN41021639,N/A,7.42,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00290-2_FC2_S8_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00290-2_FC2_S8_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.50788,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00290,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00290,22.995756931,22995756931.0,N/A,N/A,HG00290,SAMN41021639,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310814,,N/A,N/A,N/A,PRJNA701308,SAMN41021632,N/A,7.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00320-1_FC1_S9_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00320-1_FC1_S9_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.506774,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00320,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00320,21.859015341,21859015341.0,N/A,N/A,HG00320,SAMN41021632,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310813,,N/A,N/A,N/A,PRJNA701308,SAMN41021632,N/A,7.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00320-1_FC2_S9_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00320-1_FC2_S9_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.48307,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00320,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00320,22.604932087,22604932087.0,N/A,N/A,HG00320,SAMN41021632,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310812,,N/A,N/A,N/A,PRJNA701308,SAMN41021632,N/A,11.46,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00320-2_FC1_S10_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00320-2_FC1_S10_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.439958,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00320,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00320,35.516787765,35516787765.0,N/A,N/A,HG00320,SAMN41021632,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310811,,N/A,N/A,N/A,PRJNA701308,SAMN41021632,N/A,11.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00320-2_FC2_S10_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00320-2_FC2_S10_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.465434,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00320,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00320,36.761442562,36761442562.0,N/A,N/A,HG00320,SAMN41021632,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310954,,N/A,N/A,N/A,PRJNA701308,SAMN41021636,N/A,10.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00321-1_FC1_S11_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00321-1_FC1_S11_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.445028,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00321,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00321,31.765796916,31765796916.0,N/A,N/A,HG00321,SAMN41021636,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310953,,N/A,N/A,N/A,PRJNA701308,SAMN41021636,N/A,10.52,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00321-1_FC2_S11_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00321-1_FC2_S11_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.435627,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00321,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00321,32.618282667,32618282667.0,N/A,N/A,HG00321,SAMN41021636,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310951,,N/A,N/A,N/A,PRJNA701308,SAMN41021636,N/A,9.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00321-2_FC1_S12_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00321-2_FC1_S12_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.440311,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00321,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00321,28.71641896,28716418960.0,N/A,N/A,HG00321,SAMN41021636,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310950,,N/A,N/A,N/A,PRJNA701308,SAMN41021636,N/A,9.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00321-2_FC2_S12_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00321-2_FC2_S12_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.477987,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00321,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00321,29.645490401,29645490401.0,N/A,N/A,HG00321,SAMN41021636,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310949,,N/A,N/A,N/A,PRJNA701308,SAMN33621943,N/A,24.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00408-1_S4_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00408-1_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.402711,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00408,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00408,75.586775321,75586775321.0,N/A,N/A,HG00408,SAMN33621943,SH002,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310948,,N/A,N/A,N/A,PRJNA701308,SAMN33621943,N/A,17.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00408-2_S4_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00408-2_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.439714,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00408,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00408,55.207426647,55207426647.0,N/A,N/A,HG00408,SAMN33621943,SH002,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310947,,N/A,N/A,N/A,PRJNA701308,SAMN33758780,N/A,8.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00558-1_S4_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00558-1_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.465973,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00558,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00558,27.603885539,27603885539.0,N/A,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310946,,N/A,N/A,N/A,PRJNA701308,SAMN33758780,N/A,10.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00558-2_S8_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00558-2_S8_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.482983,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00558,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00558,32.101602796,32101602796.0,N/A,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310945,,N/A,N/A,N/A,PRJNA701308,SAMN33621944,N/A,32.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00597-1_S1_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00597-1_S1_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.406575,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00597,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00597,101.280993154,101280993154.0,N/A,N/A,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310944,,N/A,N/A,N/A,PRJNA701308,SAMN33621944,N/A,19.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00597-2_S1_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00597-2_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.417803,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00597,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00597,60.459807174,60459807174.0,N/A,N/A,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310943,,N/A,N/A,N/A,PRJNA701308,SAMN33758781,N/A,28.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00639-1_S6_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00639-1_S6_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.424694,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00639,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00639,88.846013898,88846013898.0,N/A,N/A,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310942,,N/A,N/A,N/A,PRJNA701308,SAMN33758781,N/A,17.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00639-2_S6_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00639-2_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.454326,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00639,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00639,55.624447424,55624447424.0,N/A,N/A,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310940,,N/A,N/A,N/A,PRJNA701308,SAMN37797096,N/A,15.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00658-1_S6_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00658-1_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.407118,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00658,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00658,48.698842692,48698842692.0,N/A,N/A,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310939,,N/A,N/A,N/A,PRJNA701308,SAMN37797096,N/A,16.43,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00658-2_S12_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00658-2_S12_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.425113,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00658,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00658,50.947499509,50947499509.0,N/A,N/A,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310938,,N/A,N/A,N/A,PRJNA701308,SAMN41021616,N/A,6.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00867-1_FC1_S7_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00867-1_FC1_S7_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.497153,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00867,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00867,19.551234323,19551234323.0,N/A,N/A,HG00867,SAMN41021616,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310937,,N/A,N/A,N/A,PRJNA701308,SAMN41021616,N/A,6.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00867-1_FC2_S7_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00867-1_FC2_S7_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.492661,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00867,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00867,19.398350296,19398350296.0,N/A,N/A,HG00867,SAMN41021616,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310936,,N/A,N/A,N/A,PRJNA701308,SAMN41021616,N/A,16.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00867-2_FC1_S8_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00867-2_FC1_S8_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.447926,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00867,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00867,50.659452513,50659452513.0,N/A,N/A,HG00867,SAMN41021616,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310935,,N/A,N/A,N/A,PRJNA701308,SAMN41021616,N/A,16.22,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG00867-2_FC2_S8_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG00867-2_FC2_S8_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.446306,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG00867,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG00867,50.295251838,50295251838.0,N/A,N/A,HG00867,SAMN41021616,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310934,,N/A,N/A,N/A,PRJNA701308,SAMN33758782,N/A,6.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01074-1_S1_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01074-1_S1_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.530659,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01074,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01074,21.626785797,21626785797.0,N/A,N/A,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310933,,N/A,N/A,N/A,PRJNA701308,SAMN33758782,N/A,9.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01074-2_S5_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01074-2_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.503104,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01074,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01074,30.020586028,30020586028.0,N/A,N/A,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310932,,N/A,N/A,N/A,PRJNA701308,SAMN33758783,N/A,37.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01081-1_S5_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01081-1_S5_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.416466,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01081,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01081,115.919387211,115919387211.0,N/A,N/A,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310931,,N/A,N/A,N/A,PRJNA701308,SAMN33758783,N/A,17.73,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01081-2_S5_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01081-2_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.432473,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01081,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01081,54.958779326,54958779326.0,N/A,N/A,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310905,,N/A,N/A,N/A,PRJNA701308,SAMN37797097,N/A,12.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01150-1_S5_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01150-1_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.436529,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01150,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01150,38.965707191,38965707191.0,N/A,N/A,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310904,,N/A,N/A,N/A,PRJNA701308,SAMN37797097,N/A,10.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01150-2_S11_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01150-2_S11_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.451094,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01150,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01150,32.958728626,32958728626.0,N/A,N/A,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310903,,N/A,N/A,N/A,PRJNA701308,SAMN37797098,N/A,44.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01252-2_S2_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01252-2_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.42038,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01252,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01252,137.329443161,137329443161.0,N/A,N/A,HG01252,SAMN37797098,CLM14,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310902,,N/A,N/A,N/A,PRJNA701308,SAMN41021633,N/A,5.41,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01786-1_FC1_S1_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01786-1_FC1_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.53728,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01786,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01786,16.785803411,16785803411.0,N/A,N/A,HG01786,SAMN41021633,,IBS,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310901,,N/A,N/A,N/A,PRJNA701308,SAMN41021633,N/A,5.23,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01786-1_FC2_S1_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01786-1_FC2_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.497086,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01786,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01786,16.208070616,16208070616.0,N/A,N/A,HG01786,SAMN41021633,,IBS,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310900,,N/A,N/A,N/A,PRJNA701308,SAMN41021633,N/A,5.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01786-2_FC1_S2_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01786-2_FC1_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.487939,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01786,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01786,18.534527163,18534527163.0,N/A,N/A,HG01786,SAMN41021633,,IBS,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310899,,N/A,N/A,N/A,PRJNA701308,SAMN41021633,N/A,5.72,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01786-2_FC2_S2_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01786-2_FC2_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.489055,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01786,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01786,17.723207636,17723207636.0,N/A,N/A,HG01786,SAMN41021633,,IBS,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310898,,N/A,N/A,N/A,PRJNA701308,SAMN37797101,N/A,13.07,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01940-2_S10_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01940-2_S10_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.353777,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01940,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01940,40.532207314,40532207314.0,N/A,N/A,HG01940,SAMN37797101,PEL015,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310897,,N/A,N/A,N/A,PRJNA701308,SAMN37797103,N/A,25.93,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01969-1_S3_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01969-1_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.409527,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01969,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01969,80.380642385,80380642385.0,N/A,N/A,HG01969,SAMN37797103,PEL023,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310896,,N/A,N/A,N/A,PRJNA701308,SAMN37797103,N/A,22.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01969-2_S3_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01969-2_S3_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.428637,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01969,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01969,68.330824416,68330824416.0,N/A,N/A,HG01969,SAMN37797103,PEL023,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310894,,N/A,N/A,N/A,PRJNA701308,SAMN33621948,N/A,8.99,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02015-1_S3_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02015-1_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.474905,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02015,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02015,27.863340987,27863340987.0,N/A,N/A,HG02015,SAMN33621948,VN046,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310893,,N/A,N/A,N/A,PRJNA701308,SAMN33621949,N/A,12.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02056-1_S1_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02056-1_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.401986,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02056,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02056,38.875139656,38875139656.0,N/A,N/A,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310892,,N/A,N/A,N/A,PRJNA701308,SAMN33621949,N/A,12.1,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02056-2_S5_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02056-2_S5_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.412847,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02056,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02056,37.502509943,37502509943.0,N/A,N/A,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310891,,N/A,N/A,N/A,PRJNA701308,SAMN33621950,N/A,40.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02129-1_S2_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02129-1_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.409818,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02129,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02129,124.595417314,124595417314.0,N/A,N/A,HG02129,SAMN33621950,VN079,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310890,,N/A,N/A,N/A,PRJNA701308,SAMN33621950,N/A,9.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02129-2_S6_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02129-2_S6_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.454769,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02129,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02129,29.800157587,29800157587.0,N/A,N/A,HG02129,SAMN33621950,VN079,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310889,,N/A,N/A,N/A,PRJNA701308,SAMN41021617,N/A,7.01,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02178-1_FC1_S9_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02178-1_FC1_S9_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.47463,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02178,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02178,21.744973497,21744973497.0,N/A,N/A,HG02178,SAMN41021617,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310888,,N/A,N/A,N/A,PRJNA701308,SAMN41021617,N/A,6.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02178-1_FC2_S9_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02178-1_FC2_S9_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.502882,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02178,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02178,21.164708885,21164708885.0,N/A,N/A,HG02178,SAMN41021617,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310887,,N/A,N/A,N/A,PRJNA701308,SAMN41021617,N/A,4.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02178-2_FC1_S10_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02178-2_FC1_S10_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.559189,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02178,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02178,13.449042406,13449042406.0,N/A,N/A,HG02178,SAMN41021617,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310886,,N/A,N/A,N/A,PRJNA701308,SAMN41021617,N/A,4.25,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02178-2_FC2_S10_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02178-2_FC2_S10_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.526419,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02178,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02178,13.16496369,13164963690.0,N/A,N/A,HG02178,SAMN41021617,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310885,,N/A,N/A,N/A,PRJNA701308,SAMN33621952,N/A,17.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02258-2_S7_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02258-2_S7_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.400263,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02258,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02258,55.183613645,55183613645.0,N/A,N/A,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310883,,N/A,N/A,N/A,PRJNA701308,SAMN41021615,N/A,7.6,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02392-1_FC1_S5_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02392-1_FC1_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.518886,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02392,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02392,23.554018125,23554018125.0,N/A,N/A,HG02392,SAMN41021615,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310858,,N/A,N/A,N/A,PRJNA701308,SAMN41021615,N/A,7.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02392-1_FC2_S5_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02392-1_FC2_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.496335,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02392,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02392,23.252301099,23252301099.0,N/A,N/A,HG02392,SAMN41021615,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310857,,N/A,N/A,N/A,PRJNA701308,SAMN41021615,N/A,5.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02392-2_FC1_S6_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02392-2_FC1_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.531586,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02392,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02392,15.61634299,15616342990.0,N/A,N/A,HG02392,SAMN41021615,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310856,,N/A,N/A,N/A,PRJNA701308,SAMN41021615,N/A,4.95,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02392-2_FC2_S6_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02392-2_FC2_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.552625,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02392,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02392,15.330246008,15330246008.0,N/A,N/A,HG02392,SAMN41021615,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310855,,N/A,N/A,N/A,PRJNA701308,SAMN33758786,N/A,12.65,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02451-1_S2_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02451-1_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.40241,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02451,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02451,39.210516394,39210516394.0,N/A,N/A,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310854,,N/A,N/A,N/A,PRJNA701308,SAMN33758786,N/A,11.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02451-2_S8_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02451-2_S8_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.389143,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02451,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02451,36.412020257,36412020257.0,N/A,N/A,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310853,,N/A,N/A,N/A,PRJNA701308,SAMN37797105,N/A,33.27,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02514-1_S5_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02514-1_S5_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.425097,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02514,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02514,103.145633415,103145633415.0,N/A,N/A,HG02514,SAMN37797105,VN087,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310852,,N/A,N/A,N/A,PRJNA701308,SAMN37797105,N/A,25.89,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02514-2_S6_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02514-2_S6_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.393691,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02514,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02514,80.256080824,80256080824.0,N/A,N/A,HG02514,SAMN37797105,VN087,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310851,,N/A,N/A,N/A,PRJNA701308,SAMN41021657,N/A,7.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02583-1_FC1_S15_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02583-1_FC1_S15_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.52969,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02583,24.428567694,24428567694.0,N/A,N/A,HG02583,SAMN41021657,GB23,GWD,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310850,,N/A,N/A,N/A,PRJNA701308,SAMN41021657,N/A,8.04,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02583-1_FC2_S15_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02583-1_FC2_S15_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.528616,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02583,24.916814416,24916814416.0,N/A,N/A,HG02583,SAMN41021657,GB23,GWD,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310848,,N/A,N/A,N/A,PRJNA701308,SAMN41021657,N/A,7.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02583-2_FC1_S16_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02583-2_FC1_S16_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.493089,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02583,22.281528139,22281528139.0,N/A,N/A,HG02583,SAMN41021657,GB23,GWD,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310847,,N/A,N/A,N/A,PRJNA701308,SAMN41021657,N/A,7.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02583-2_FC2_S16_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02583-2_FC2_S16_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.550728,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02583,22.801913701,22801913701.0,N/A,N/A,HG02583,SAMN41021657,GB23,GWD,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310846,,N/A,N/A,N/A,PRJNA701308,SAMN33758787,N/A,3.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02735-1_S1_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02735-1_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.537195,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02735,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02735,10.480992446,10480992446.0,N/A,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310845,,N/A,N/A,N/A,PRJNA701308,SAMN33758787,N/A,10.76,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02735-2_S7_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02735-2_S7_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.350536,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02735,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02735,33.352232512,33352232512.0,N/A,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310844,,N/A,N/A,N/A,PRJNA701308,SAMN33758789,N/A,28.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03017-1_S3_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03017-1_S3_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.4146,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03017,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03017,87.156808155,87156808155.0,N/A,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310843,,N/A,N/A,N/A,PRJNA701308,SAMN33758789,N/A,27.86,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03017-2_S4_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03017-2_S4_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.37944,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03017,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03017,86.375269452,86375269452.0,N/A,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310842,,N/A,N/A,N/A,PRJNA701308,SAMN33758790,N/A,8.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03041-1_S3_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03041-1_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.496384,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03041,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03041,25.740160036,25740160036.0,N/A,N/A,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310841,,N/A,N/A,N/A,PRJNA701308,SAMN33758790,N/A,8.75,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03041-2_S7_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03041-2_S7_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.492089,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03041,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03041,27.119442356,27119442356.0,N/A,N/A,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310840,unaligned,N/A,N/A,N/A,PRJNA701308,SAMN37797108,N/A,60.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03050-1_S2_L001_R1_001.fastq.gz,bam,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03050-1_S2_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.423403,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03050,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03050,188.117962773,188117962773.0,N/A,N/A,HG03050,SAMN37797108,GB113,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310839,,N/A,N/A,N/A,PRJNA701308,SAMN37797108,N/A,11.69,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03050-2_S6_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03050-2_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.476047,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03050,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03050,36.254239904,36254239904.0,N/A,N/A,HG03050,SAMN37797108,GB113,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310837,,N/A,N/A,N/A,PRJNA701308,SAMN33758794,N/A,21.06,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03239-1_S1_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03239-1_S1_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.418687,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03239,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03239,65.277299547,65277299547.0,N/A,N/A,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310836,,N/A,N/A,N/A,PRJNA701308,SAMN33758794,N/A,6.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03239-2_S2_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03239-2_S2_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.505738,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03239,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03239,19.542904861,19542904861.0,N/A,N/A,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310835,,N/A,N/A,N/A,PRJNA701308,SAMN41021631,N/A,7.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03270-1_FC1_S1_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03270-1_FC1_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.489839,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03270,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03270,21.691936257,21691936257.0,N/A,N/A,HG03270,SAMN41021631,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310810,,N/A,N/A,N/A,PRJNA701308,SAMN41021631,N/A,7.15,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03270-1_FC2_S1_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03270-1_FC2_S1_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.456019,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03270,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03270,22.171447478,22171447478.0,N/A,N/A,HG03270,SAMN41021631,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310809,,N/A,N/A,N/A,PRJNA701308,SAMN41021631,N/A,10.26,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03270-2_FC1_S2_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03270-2_FC1_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.4784,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03270,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03270,31.810967811,31810967811.0,N/A,N/A,HG03270,SAMN41021631,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310808,,N/A,N/A,N/A,PRJNA701308,SAMN41021631,N/A,10.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03270-2_FC2_S2_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03270-2_FC2_S2_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.494294,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03270,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03270,32.756866692,32756866692.0,N/A,N/A,HG03270,SAMN41021631,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310807,,N/A,N/A,N/A,PRJNA701308,SAMN41021645,N/A,3.31,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03583-1_FC1_S15_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03583-1_FC1_S15_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.587735,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03583,10.268,10268000000.0,N/A,N/A,HG03583,SAMN41021645,SL73,MSL,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310806,,N/A,N/A,N/A,PRJNA701308,SAMN41021645,N/A,3.11,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03583-1_FC2_S15_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03583-1_FC2_S15_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.555637,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03583,9.656429011,9656429011.0,N/A,N/A,HG03583,SAMN41021645,SL73,MSL,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310805,,N/A,N/A,N/A,PRJNA701308,SAMN41021645,N/A,3.91,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03583-2_FC1_S16_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03583-2_FC1_S16_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.559499,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03583,12.121397556,12121397556.0,N/A,N/A,HG03583,SAMN41021645,SL73,MSL,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310804,,N/A,N/A,N/A,PRJNA701308,SAMN41021645,N/A,3.79,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03583-2_FC2_S16_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03583-2_FC2_S16_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.557892,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03583,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03583,11.736739401,11736739401.0,N/A,N/A,HG03583,SAMN41021645,SL73,MSL,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310978,,N/A,N/A,N/A,PRJNA701308,SAMN33758795,N/A,24.15,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03704-1_S1_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03704-1_S1_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.288385,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03704,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03704,74.878233793,74878233793.0,N/A,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310977,,N/A,N/A,N/A,PRJNA701308,SAMN33758795,N/A,18.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03704-2_S1_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03704-2_S1_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.26475,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03704,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03704,56.722768121,56722768121.0,N/A,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310976,,N/A,N/A,N/A,PRJNA701308,SAMN33621958,N/A,10.32,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03834-1_S4_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03834-1_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.43792,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03834,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03834,31.97983851,31979838510.0,N/A,N/A,HG03834,SAMN33621958,BD28,BEB,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310975,,N/A,N/A,N/A,PRJNA701308,SAMN33621958,N/A,22.54,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03834-2_S8_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03834-2_S8_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.391397,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03834,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03834,69.883486748,69883486748.0,N/A,N/A,HG03834,SAMN33621958,BD28,BEB,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310974,,N/A,N/A,N/A,PRJNA701308,SAMN41021625,N/A,3.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03874-1_FC1_S3_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03874-1_FC1_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.577744,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03874,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03874,10.847832903,10847832903.0,N/A,N/A,HG03874,SAMN41021625,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310973,,N/A,N/A,N/A,PRJNA701308,SAMN41021625,N/A,3.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03874-1_FC2_S3_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03874-1_FC2_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.546948,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03874,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03874,10.442312286,10442312286.0,N/A,N/A,HG03874,SAMN41021625,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310972,,N/A,N/A,N/A,PRJNA701308,SAMN41021625,N/A,5.62,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03874-2_FC1_S4_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03874-2_FC1_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.546283,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03874,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03874,17.415838378,17415838378.0,N/A,N/A,HG03874,SAMN41021625,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310971,,N/A,N/A,N/A,PRJNA701308,SAMN41021625,N/A,5.48,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG03874-2_FC2_S4_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG03874-2_FC2_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.528561,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG03874,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG03874,17.001269237,17001269237.0,N/A,N/A,HG03874,SAMN41021625,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310970,,N/A,N/A,N/A,PRJNA701308,SAMN41021643,N/A,7.14,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18505-1_FC1_S13_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18505-1_FC1_S13_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.467255,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18505,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18505,22.139961713,22139961713.0,N/A,N/A,NA18505,SAMN41021643,Y005,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310969,,N/A,N/A,N/A,PRJNA701308,SAMN41021643,N/A,6.81,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18505-1_FC2_S13_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18505-1_FC2_S13_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.489725,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18505,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18505,21.101450908,21101450908.0,N/A,N/A,NA18505,SAMN41021643,Y005,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310967,,N/A,N/A,N/A,PRJNA701308,SAMN41021643,N/A,5.58,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18505-2_FC1_S14_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18505-2_FC1_S14_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.5285,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18505,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18505,17.3103531,17310353100.0,N/A,N/A,NA18505,SAMN41021643,Y005,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310966,,N/A,N/A,N/A,PRJNA701308,SAMN41021643,N/A,5.37,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18505-2_FC2_S14_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18505-2_FC2_S14_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.487172,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18505,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18505,16.645942681,16645942681.0,N/A,N/A,NA18505,SAMN41021643,Y005,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310965,,N/A,N/A,N/A,PRJNA701308,SAMN41021626,N/A,5.53,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18508-1_FC1_S7_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18508-1_FC1_S7_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.511853,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18508,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18508,17.138703246,17138703246.0,N/A,N/A,NA18508,SAMN41021626,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310964,,N/A,N/A,N/A,PRJNA701308,SAMN41021626,N/A,5.45,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18508-1_FC2_S7_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18508-1_FC2_S7_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.506867,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18508,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18508,16.89384074,16893840740.0,N/A,N/A,NA18508,SAMN41021626,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310963,,N/A,N/A,N/A,PRJNA701308,SAMN41021626,N/A,3.32,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18508-2_FC1_S8_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18508-2_FC1_S8_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.549076,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18508,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18508,10.283027218,10283027218.0,N/A,N/A,NA18508,SAMN41021626,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310962,,N/A,N/A,N/A,PRJNA701308,SAMN41021626,N/A,3.19,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18508-2_FC2_S8_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18508-2_FC2_S8_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.615152,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18508,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18508,9.883300622,9883300622.0,N/A,N/A,NA18508,SAMN41021626,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310961,,N/A,N/A,N/A,PRJNA701308,SAMN41021619,N/A,3.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18608-1_FC1_S11_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18608-1_FC1_S11_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.587437,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18608,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18608,12.289594493,12289594493.0,N/A,N/A,NA18608,SAMN41021619,,CHB,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310960,,N/A,N/A,N/A,PRJNA701308,SAMN41021619,N/A,3.83,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18608-1_FC2_S11_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18608-1_FC2_S11_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.585861,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18608,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18608,11.87238557,11872385570.0,N/A,N/A,NA18608,SAMN41021619,,CHB,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310959,,N/A,N/A,N/A,PRJNA701308,SAMN41021619,N/A,4.94,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18608-2_FC1_S12_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18608-2_FC1_S12_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.558086,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18608,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18608,15.304368987,15304368987.0,N/A,N/A,NA18608,SAMN41021619,,CHB,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310958,,N/A,N/A,N/A,PRJNA701308,SAMN41021619,N/A,4.78,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18608-2_FC2_S12_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18608-2_FC2_S12_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.546922,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18608,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18608,14.807755355,14807755355.0,N/A,N/A,NA18608,SAMN41021619,,CHB,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310956,,N/A,N/A,N/A,PRJNA701308,SAMN41021618,N/A,5.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18620-1_FC1_S13_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18620-1_FC1_S13_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.512003,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18620,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18620,16.711418697,16711418697.0,N/A,N/A,NA18620,SAMN41021618,,CHB,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310955,,N/A,N/A,N/A,PRJNA701308,SAMN41021618,N/A,5.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18620-1_FC2_S13_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18620-1_FC2_S13_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.527546,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18620,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18620,16.444896902,16444896902.0,N/A,N/A,NA18620,SAMN41021618,,CHB,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310930,,N/A,N/A,N/A,PRJNA701308,SAMN41021618,N/A,6.45,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18620-2_FC1_S14_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18620-2_FC1_S14_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.491903,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18620,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18620,20.009587877,20009587877.0,N/A,N/A,NA18620,SAMN41021618,,CHB,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310929,,N/A,N/A,N/A,PRJNA701308,SAMN41021618,N/A,6.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18620-2_FC2_S14_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18620-2_FC2_S14_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.495146,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18620,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18620,19.83220108,19832201080.0,N/A,N/A,NA18620,SAMN41021618,,CHB,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310928,,N/A,N/A,N/A,PRJNA701308,SAMN41021621,N/A,16.61,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18952-1_FC1_S13_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18952-1_FC1_S13_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.440657,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18952,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18952,51.483278615,51483278615.0,N/A,N/A,NA18952,SAMN41021621,,JPT,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310927,,N/A,N/A,N/A,PRJNA701308,SAMN41021621,N/A,17.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18952-1_FC2_S13_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18952-1_FC2_S13_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.425158,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18952,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18952,54.534807717,54534807717.0,N/A,N/A,NA18952,SAMN41021621,,JPT,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310926,,N/A,N/A,N/A,PRJNA701308,SAMN41021621,N/A,12.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18952-2_FC1_S14_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18952-2_FC1_S14_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.488041,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18952,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18952,37.586941895,37586941895.0,N/A,N/A,NA18952,SAMN41021621,,JPT,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310925,,N/A,N/A,N/A,PRJNA701308,SAMN41021621,N/A,12.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18952-2_FC2_S14_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18952-2_FC2_S14_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.445759,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18952,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18952,38.068632499,38068632499.0,N/A,N/A,NA18952,SAMN41021621,,JPT,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310924,,N/A,N/A,N/A,PRJNA701308,SAMN41021620,N/A,4.0,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18974-1_FC1_S15_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18974-1_FC1_S15_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.552761,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18974,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18974,12.402378205,12402378205.0,N/A,N/A,NA18974,SAMN41021620,,JPT,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310923,,N/A,N/A,N/A,PRJNA701308,SAMN41021620,N/A,3.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18974-1_FC2_S15_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18974-1_FC2_S15_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.545855,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18974,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18974,12.023989419,12023989419.0,N/A,N/A,NA18974,SAMN41021620,,JPT,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310921,,N/A,N/A,N/A,PRJNA701308,SAMN41021620,N/A,4.08,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18974-2_FC1_S16_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18974-2_FC1_S16_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.557506,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18974,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18974,12.652812007,12652812007.0,N/A,N/A,NA18974,SAMN41021620,,JPT,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310920,,N/A,N/A,N/A,PRJNA701308,SAMN41021620,N/A,3.97,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18974-2_FC2_S16_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18974-2_FC2_S16_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.558145,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18974,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18974,12.31814059,12318140590.0,N/A,N/A,NA18974,SAMN41021620,,JPT,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310919,,N/A,N/A,N/A,PRJNA701308,SAMN41021622,N/A,5.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18976-1_FC1_S15_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18976-1_FC1_S15_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.522123,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18976,17.594352088,17594352088.0,N/A,N/A,NA18976,SAMN41021622,,JPT,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310918,,N/A,N/A,N/A,PRJNA701308,SAMN41021622,N/A,5.8,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18976-1_FC2_S15_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18976-1_FC2_S15_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.52081,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18976,17.988627735,17988627735.0,N/A,N/A,NA18976,SAMN41021622,,JPT,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310917,,N/A,N/A,N/A,PRJNA701308,SAMN41021622,N/A,5.67,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18976-2_FC1_S16_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18976-2_FC1_S16_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.546516,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18976,17.585532782,17585532782.0,N/A,N/A,NA18976,SAMN41021622,,JPT,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310916,,N/A,N/A,N/A,PRJNA701308,SAMN41021622,N/A,5.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA18976-2_FC2_S16_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA18976-2_FC2_S16_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.498766,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA18976,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA18976,18.284725296,18284725296.0,N/A,N/A,NA18976,SAMN41021622,,JPT,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310915,,N/A,N/A,N/A,PRJNA701308,SAMN41021642,N/A,6.59,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19036-1_FC1_S11_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19036-1_FC1_S11_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.487006,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19036,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19036,20.434060051,20434060051.0,N/A,N/A,NA19036,SAMN41021642,,LWK,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310914,,N/A,N/A,N/A,PRJNA701308,SAMN41021642,N/A,6.42,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19036-1_FC2_S11_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19036-1_FC2_S11_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.500655,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19036,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19036,19.91368521,19913685210.0,N/A,N/A,NA19036,SAMN41021642,,LWK,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310913,,N/A,N/A,N/A,PRJNA701308,SAMN41021642,N/A,6.96,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19036-2_FC1_S12_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19036-2_FC1_S12_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.47374,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19036,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19036,21.585898923,21585898923.0,N/A,N/A,NA19036,SAMN41021642,,LWK,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310912,,N/A,N/A,N/A,PRJNA701308,SAMN41021642,N/A,7.05,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19036-2_FC2_S12_L004_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19036-2_FC2_S12_L004,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.496843,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19036,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19036,21.854926865,21854926865.0,N/A,N/A,NA19036,SAMN41021642,,LWK,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310910,,N/A,N/A,N/A,PRJNA701308,SAMN41021640,N/A,7.36,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19443-1_FC1_S13_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19443-1_FC1_S13_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.509644,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19443,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19443,22.826931381,22826931381.0,N/A,N/A,NA19443,SAMN41021640,,LWK,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310909,,N/A,N/A,N/A,PRJNA701308,SAMN41021640,N/A,7.49,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19443-1_FC2_S13_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19443-1_FC2_S13_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.522303,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19443,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19443,23.204091329,23204091329.0,N/A,N/A,NA19443,SAMN41021640,,LWK,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310908,,N/A,N/A,N/A,PRJNA701308,SAMN41021640,N/A,6.13,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19443-2_FC1_S14_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19443-2_FC1_S14_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.536895,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19443,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19443,18.998543519,18998543519.0,N/A,N/A,NA19443,SAMN41021640,,LWK,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310907,,N/A,N/A,N/A,PRJNA701308,SAMN41021640,N/A,6.28,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19443-2_FC2_S14_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19443-2_FC2_S14_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.546267,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19443,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19443,19.46706345,19467063450.0,N/A,N/A,NA19443,SAMN41021640,,LWK,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310882,,N/A,N/A,N/A,PRJNA701308,SAMN41021612,N/A,5.18,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19700-1_FC1_S1_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19700-1_FC1_S1_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.384847,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19700,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19700,16.058502851,16058502851.0,N/A,N/A,NA19700,SAMN41021612,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310881,,N/A,N/A,N/A,PRJNA701308,SAMN41021612,N/A,5.09,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19700-1_FC2_S1_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19700-1_FC2_S1_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.43614,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19700,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19700,15.78728858,15787288580.0,N/A,N/A,NA19700,SAMN41021612,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310880,,N/A,N/A,N/A,PRJNA701308,SAMN41021612,N/A,5.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19700-2_FC1_S2_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19700-2_FC1_S2_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.39049,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19700,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19700,17.266491224,17266491224.0,N/A,N/A,NA19700,SAMN41021612,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310879,,N/A,N/A,N/A,PRJNA701308,SAMN41021612,N/A,5.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA19700-2_FC2_S2_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA19700-2_FC2_S2_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.433272,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA19700,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA19700,17.056973137,17056973137.0,N/A,N/A,NA19700,SAMN41021612,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310878,,N/A,N/A,N/A,PRJNA701308,SAMN41021630,N/A,10.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20503-1_FC1_S3_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20503-1_FC1_S3_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.504887,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20503,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20503,33.098049078,33098049078.0,N/A,N/A,NA20503,SAMN41021630,,TSI,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310877,,N/A,N/A,N/A,PRJNA701308,SAMN41021630,N/A,10.93,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20503-1_FC2_S3_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20503-1_FC2_S3_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.498824,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20503,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20503,33.877784539,33877784539.0,N/A,N/A,NA20503,SAMN41021630,,TSI,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310875,,N/A,N/A,N/A,PRJNA701308,SAMN41021630,N/A,11.57,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20503-2_FC1_S4_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20503-2_FC1_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.454984,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20503,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20503,35.852541248,35852541248.0,N/A,N/A,NA20503,SAMN41021630,,TSI,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310874,,N/A,N/A,N/A,PRJNA701308,SAMN41021630,N/A,11.98,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20503-2_FC2_S4_L003_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20503-2_FC2_S4_L003,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.482764,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20503,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20503,37.124680914,37124680914.0,N/A,N/A,NA20503,SAMN41021630,,TSI,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310873,,N/A,N/A,N/A,PRJNA701308,SAMN41021623,N/A,6.21,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20870-1_FC1_S3_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20870-1_FC1_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.494366,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20870,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20870,19.250551345,19250551345.0,N/A,N/A,NA20870,SAMN41021623,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310872,,N/A,N/A,N/A,PRJNA701308,SAMN41021623,N/A,6.34,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20870-1_FC2_S3_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20870-1_FC2_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.533929,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20870,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20870,19.643337377,19643337377.0,N/A,N/A,NA20870,SAMN41021623,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310871,,N/A,N/A,N/A,PRJNA701308,SAMN41021623,N/A,11.39,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20870-2_FC1_S4_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20870-2_FC1_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.434158,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20870,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20870,35.312248601,35312248601.0,N/A,N/A,NA20870,SAMN41021623,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310870,,N/A,N/A,N/A,PRJNA701308,SAMN41021623,N/A,11.5,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA20870-2_FC2_S4_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA20870-2_FC2_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.469992,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA20870,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA20870,35.658974952,35658974952.0,N/A,N/A,NA20870,SAMN41021623,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310869,,N/A,N/A,N/A,PRJNA701308,SAMN41021627,N/A,5.68,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21093-1_FC1_S9_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21093-1_FC1_S9_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.532711,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA21093,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21093,17.61802919,17618029190.0,N/A,N/A,NA21093,SAMN41021627,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310868,,N/A,N/A,N/A,PRJNA701308,SAMN41021627,N/A,5.73,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21093-1_FC2_S9_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21093-1_FC2_S9_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.494601,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA21093,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21093,17.763157706,17763157706.0,N/A,N/A,NA21093,SAMN41021627,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310867,,N/A,N/A,N/A,PRJNA701308,SAMN41021627,N/A,6.3,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21093-2_FC1_S10_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21093-2_FC1_S10_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.453901,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA21093,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21093,19.541671946,19541671946.0,N/A,N/A,NA21093,SAMN41021627,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310866,,N/A,N/A,N/A,PRJNA701308,SAMN41021627,N/A,6.24,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21093-2_FC2_S10_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21093-2_FC2_S10_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.475376,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA21093,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21093,19.354976452,19354976452.0,N/A,N/A,NA21093,SAMN41021627,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310864,,N/A,N/A,N/A,PRJNA701308,SAMN41021629,N/A,7.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21106-1_FC1_S11_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21106-1_FC1_S11_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.457198,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA21106,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21106,22.600425794,22600425794.0,N/A,N/A,NA21106,SAMN41021629,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310863,,N/A,N/A,N/A,PRJNA701308,SAMN41021629,N/A,7.48,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21106-1_FC2_S11_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21106-1_FC2_S11_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.452267,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA21106,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21106,23.180756242,23180756242.0,N/A,N/A,NA21106,SAMN41021629,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310862,,N/A,N/A,N/A,PRJNA701308,SAMN41021629,N/A,7.2,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21106-2_FC1_S12_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21106-2_FC1_S12_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.456851,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA21106,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21106,22.320651031,22320651031.0,N/A,N/A,NA21106,SAMN41021629,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310861,,N/A,N/A,N/A,PRJNA701308,SAMN41021629,N/A,7.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21106-2_FC2_S12_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21106-2_FC2_S12_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.524822,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA21106,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21106,22.591797805,22591797805.0,N/A,N/A,NA21106,SAMN41021629,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310860,,N/A,N/A,N/A,PRJNA701308,SAMN41021624,N/A,5.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21110-1_FC1_S1_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21110-1_FC1_S1_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.476082,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA21110,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21110,15.872921435,15872921435.0,N/A,N/A,NA21110,SAMN41021624,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310859,,N/A,N/A,N/A,PRJNA701308,SAMN41021624,N/A,5.12,unaligned reads,Illumina Sequencing of Omni-C Libraries,NA21110-1_FC2_S1_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,NA21110-1_FC2_S1_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.512692,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,NA21110,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of NA21110,15.872702636,15872702636.0,N/A,N/A,NA21110,SAMN41021624,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310834,,N/A,N/A,N/A,PRJNA701308,SAMN33621945,N/A,16.29,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01192-1_S7_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01192-1_S7_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.279172,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01192,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01192,50.487274763,50487274763.0,N/A,N/A,HG01192,SAMN33621945,PR40,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310833,,N/A,N/A,N/A,PRJNA701308,SAMN33621945,N/A,19.63,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01192-2_S7_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01192-2_S7_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.244302,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01192,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01192,60.842911086,60842911086.0,N/A,N/A,HG01192,SAMN33621945,PR40,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310832,,N/A,N/A,N/A,PRJNA701308,SAMN33621946,N/A,36.73,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01261-1_S2_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01261-1_S2_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.176353,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01261,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01261,113.858604745,113858604745.0,N/A,N/A,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310831,,N/A,N/A,N/A,PRJNA701308,SAMN33621946,N/A,19.48,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01261-2_S2_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01261-2_S2_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.256517,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01261,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01261,60.396447725,60396447725.0,N/A,N/A,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310829,,N/A,N/A,N/A,PRJNA701308,SAMN37797102,N/A,9.9,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01960-1_S3_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01960-1_S3_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.46504,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01960,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01960,30.702431662,30702431662.0,N/A,N/A,HG01960,SAMN37797102,BB11,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310828,,N/A,N/A,N/A,PRJNA701308,SAMN37797102,N/A,8.56,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01960-2_S3_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01960-2_S3_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.448195,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01960,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01960,26.523678349,26523678349.0,N/A,N/A,HG01960,SAMN37797102,BB11,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310827,,N/A,N/A,N/A,PRJNA701308,SAMN33621947,N/A,10.88,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01975-1_S4_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01975-1_S4_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.439404,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01975,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01975,33.735008754,33735008754.0,N/A,N/A,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310826,,N/A,N/A,N/A,PRJNA701308,SAMN33621947,N/A,14.66,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG01975-2_S4_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG01975-2_S4_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.406998,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG01975,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG01975,45.449986488,45449986488.0,N/A,N/A,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310825,,N/A,N/A,N/A,PRJNA701308,SAMN37797106,N/A,10.38,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02841-1_S5_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02841-1_S5_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.488242,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02841,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02841,32.175246855,32175246855.0,N/A,N/A,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310824,,N/A,N/A,N/A,PRJNA701308,SAMN37797106,N/A,13.4,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02841-2_S5_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02841-2_S5_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.437549,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02841,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02841,41.551546102,41551546102.0,N/A,N/A,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310823,,N/A,N/A,N/A,PRJNA701308,SAMN37797107,N/A,10.84,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02984-1_S6_L001_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02984-1_S6_L001,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.450685,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02984,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02984,33.60146375,33601463750.0,N/A,N/A,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,N/A,SRR30310822,,N/A,N/A,N/A,PRJNA701308,SAMN37797107,N/A,9.71,unaligned reads,Illumina Sequencing of Omni-C Libraries,HG02984-2_S6_L002_R1_001.fastq.gz,fastq,wseligma@ucsc.edu,University of California Santa Cruz,Illumina NovaSeq 6000,HG02984-2_S6_L002,paired,RANDOM,GENOMIC,Hi-C,N/A,N/A,N/A,N/A,Similar,0.466494,N/A,ILLUMINA,N/A,N/A,N/A,N/A,N/A,N/A,N/A,HG02984,N/A,N/A,no shear,N/A,SRP305758,Illumina Sequencing of Omni-C Libraries of HG02984,30.11007648,30110076480.0,N/A,N/A,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 -9.82,0.0,2.77,0.63,0.18,0.07,N/A,64.14,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.44,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_08_22_R941_HG00558_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_08_22_R941_HG00558_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.312169,s3://human-pangenomics/working/HPRC/HG00558/raw_data/nanopore/guppy_6/02_08_22_R941_HG00558_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,100937.0,Similar,HG00558,HG00558,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,10.0,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 -7.29,0.0,1.98,0.43,0.12,0.05,N/A,50.46,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,15.29,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_08_22_R941_HG00558_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_08_22_R941_HG00558_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.352575,s3://human-pangenomics/working/HPRC/HG00558/raw_data/nanopore/guppy_6/02_08_22_R941_HG00558_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,95821.0,Similar,HG00558,HG00558,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,12.0,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 -9.58,0.0,2.55,0.54,0.15,0.06,N/A,65.0,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.7,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_08_22_R941_HG00558_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_08_22_R941_HG00558_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.374149,s3://human-pangenomics/working/HPRC/HG00558/raw_data/nanopore/guppy_6/02_08_22_R941_HG00558_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,97461.0,Similar,HG00558,HG00558,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,13.0,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 -5.27,0.0,0.89,0.19,0.04,0.01,N/A,46.52,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,14.1,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_08_22_R941_HG01252_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_08_22_R941_HG01252_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.331159,s3://human-pangenomics/working/HPRC/HG01252/raw_data/nanopore/guppy_6/02_08_22_R941_HG01252_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,80723.0,Similar,HG01252,HG01252,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG01252,SAMN37797098,CLM14,CLM,AMR,YR3 -5.63,0.0,1.02,0.23,0.07,0.03,N/A,49.73,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,15.07,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_08_22_R941_HG01252_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_08_22_R941_HG01252_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.339225,s3://human-pangenomics/working/HPRC/HG01252/raw_data/nanopore/guppy_6/02_08_22_R941_HG01252_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,80454.0,Similar,HG01252,HG01252,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,4.0,HG01252,SAMN37797098,CLM14,CLM,AMR,YR3 -6.55,0.0,1.11,0.24,0.07,0.03,N/A,60.58,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.36,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_08_22_R941_HG01252_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_08_22_R941_HG01252_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.310941,s3://human-pangenomics/working/HPRC/HG01252/raw_data/nanopore/guppy_6/02_08_22_R941_HG01252_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,77916.0,Similar,HG01252,HG01252,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG01252,SAMN37797098,CLM14,CLM,AMR,YR3 -11.1,0.0,3.03,0.59,0.12,0.04,N/A,70.78,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.45,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_08_22_R941_HG02258_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_08_22_R941_HG02258_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.348374,s3://human-pangenomics/working/HPRC/HG02258/raw_data/nanopore/guppy_6/02_08_22_R941_HG02258_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,103269.0,Similar,HG02258,HG02258,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 -7.34,0.0,1.92,0.36,0.07,0.02,N/A,47.83,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,14.49,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_08_22_R941_HG02258_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_08_22_R941_HG02258_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.359481,s3://human-pangenomics/working/HPRC/HG02258/raw_data/nanopore/guppy_6/02_08_22_R941_HG02258_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,101187.0,Similar,HG02258,HG02258,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 -3.86,0.0,1.08,0.21,0.05,0.02,N/A,25.92,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,7.85,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_08_22_R941_HG02258_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_08_22_R941_HG02258_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.442759,s3://human-pangenomics/working/HPRC/HG02258/raw_data/nanopore/guppy_6/02_08_22_R941_HG02258_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,98290.0,Similar,HG02258,HG02258,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 -2.71,0.0,0.59,0.1,0.02,0.0,N/A,19.61,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,5.94,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_08_22_R941_HG02258_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_08_22_R941_HG02258_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.429346,s3://human-pangenomics/working/HPRC/HG02258/raw_data/nanopore/guppy_6/02_08_22_R941_HG02258_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,92608.0,Similar,HG02258,HG02258,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 -9.29,0.01,3.25,1.17,0.47,0.21,N/A,54.02,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,16.37,,,02_08_22_R941_HG03834_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_08_22_R941_HG03834_1,,,,,N/A,N/A,N/A,,N/A,0.358252,s3://human-pangenomics/working/HPRC/HG03834/raw_data/nanopore/guppy_6/02_08_22_R941_HG03834_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,113319.0,Similar,HG03834,HG03834,,N/A,,,N/A,N/A,N/A,N/A,N/A,28.0,HG03834,SAMN33621958,BD28,BEB,SAS,YR3 -8.93,0.01,3.02,1.09,0.47,0.23,N/A,55.11,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,16.7,,,02_08_22_R941_HG03834_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_08_22_R941_HG03834_2,,,,,N/A,N/A,N/A,,N/A,0.366502,s3://human-pangenomics/working/HPRC/HG03834/raw_data/nanopore/guppy_6/02_08_22_R941_HG03834_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,106614.0,Similar,HG03834,HG03834,,N/A,,,N/A,N/A,N/A,N/A,N/A,39.0,HG03834,SAMN33621958,BD28,BEB,SAS,YR3 -8.11,0.01,2.7,0.97,0.41,0.2,N/A,51.91,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,15.73,,,02_08_22_R941_HG03834_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_08_22_R941_HG03834_3,,,,,N/A,N/A,N/A,,N/A,0.353039,s3://human-pangenomics/working/HPRC/HG03834/raw_data/nanopore/guppy_6/02_08_22_R941_HG03834_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,103009.0,Similar,HG03834,HG03834,,N/A,,,N/A,N/A,N/A,N/A,N/A,32.0,HG03834,SAMN33621958,BD28,BEB,SAS,YR3 -9.29,0.0,2.5,0.53,0.13,0.05,N/A,68.86,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.87,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_15_22_R941_HG00658_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_15_22_R941_HG00658_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.301266,s3://human-pangenomics/working/HPRC/HG00658/raw_data/nanopore/guppy_6/02_15_22_R941_HG00658_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,89274.0,Similar,HG00658,HG00658,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 -12.28,0.0,3.38,0.77,0.21,0.07,N/A,86.75,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.29,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_15_22_R941_HG00658_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_15_22_R941_HG00658_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.302639,s3://human-pangenomics/working/HPRC/HG00658/raw_data/nanopore/guppy_6/02_15_22_R941_HG00658_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,93714.0,Similar,HG00658,HG00658,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 -9.23,0.0,2.49,0.55,0.15,0.06,N/A,69.61,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.09,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_15_22_R941_HG00658_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_15_22_R941_HG00658_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.342092,s3://human-pangenomics/working/HPRC/HG00658/raw_data/nanopore/guppy_6/02_15_22_R941_HG00658_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,87952.0,Similar,HG00658,HG00658,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,12.0,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 -10.49,0.0,3.14,0.76,0.17,0.05,N/A,70.91,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.49,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_15_22_R941_HG02514_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_15_22_R941_HG02514_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.334196,s3://human-pangenomics/working/HPRC/HG02514/raw_data/nanopore/guppy_6/02_15_22_R941_HG02514_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,97579.0,Similar,HG02514,HG02514,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG02514,SAMN37797105,VN087,KHV,EAS,YR3 -10.86,0.0,3.3,0.8,0.19,0.05,N/A,74.55,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.59,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_15_22_R941_HG02514_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_15_22_R941_HG02514_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.312431,s3://human-pangenomics/working/HPRC/HG02514/raw_data/nanopore/guppy_6/02_15_22_R941_HG02514_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,96127.0,Similar,HG02514,HG02514,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,4.0,HG02514,SAMN37797105,VN087,KHV,EAS,YR3 -8.95,0.0,2.5,0.57,0.13,0.03,N/A,65.96,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.99,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_15_22_R941_HG02514_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_15_22_R941_HG02514_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.293918,s3://human-pangenomics/working/HPRC/HG02514/raw_data/nanopore/guppy_6/02_15_22_R941_HG02514_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,90028.0,Similar,HG02514,HG02514,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG02514,SAMN37797105,VN087,KHV,EAS,YR3 -9.5,0.0,2.76,0.72,0.22,0.08,N/A,66.91,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,20.27,,,02_15_22_R941_HG03041_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_15_22_R941_HG03041_1,,,,,N/A,N/A,N/A,,N/A,0.338052,s3://human-pangenomics/working/HPRC/HG03041/raw_data/nanopore/guppy_6/02_15_22_R941_HG03041_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,94132.0,Similar,HG03041,HG03041,,N/A,,,N/A,N/A,N/A,N/A,N/A,7.0,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 -9.49,0.0,2.69,0.72,0.23,0.09,N/A,72.05,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,21.83,,,02_15_22_R941_HG03041_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_15_22_R941_HG03041_2,,,,,N/A,N/A,N/A,,N/A,0.339754,s3://human-pangenomics/working/HPRC/HG03041/raw_data/nanopore/guppy_6/02_15_22_R941_HG03041_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,87337.0,Similar,HG03041,HG03041,,N/A,,,N/A,N/A,N/A,N/A,N/A,10.0,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 -8.29,0.01,2.44,0.65,0.2,0.08,N/A,57.11,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,17.31,,,02_15_22_R941_HG03041_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_15_22_R941_HG03041_3,,,,,N/A,N/A,N/A,,N/A,0.315332,s3://human-pangenomics/working/HPRC/HG03041/raw_data/nanopore/guppy_6/02_15_22_R941_HG03041_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,95935.0,Similar,HG03041,HG03041,,N/A,,,N/A,N/A,N/A,N/A,N/A,15.0,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 -11.14,0.0,2.91,0.63,0.16,0.05,N/A,76.7,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,23.24,,,02_15_22_R941_HG03050_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_15_22_R941_HG03050_1,,,,,N/A,N/A,N/A,,N/A,0.325861,s3://human-pangenomics/working/HPRC/HG03050/raw_data/nanopore/guppy_6/02_15_22_R941_HG03050_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,96204.0,Similar,HG03050,HG03050,,N/A,,,N/A,N/A,N/A,N/A,N/A,4.0,HG03050,SAMN37797108,GB113,GWD,AFR,YR3 -6.89,0.0,1.72,0.37,0.1,0.03,N/A,51.87,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,15.72,,,02_15_22_R941_HG03050_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_15_22_R941_HG03050_2,,,,,N/A,N/A,N/A,,N/A,0.341999,s3://human-pangenomics/working/HPRC/HG03050/raw_data/nanopore/guppy_6/02_15_22_R941_HG03050_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,88591.0,Similar,HG03050,HG03050,,N/A,,,N/A,N/A,N/A,N/A,N/A,3.0,HG03050,SAMN37797108,GB113,GWD,AFR,YR3 -9.85,0.0,2.51,0.54,0.14,0.05,N/A,71.23,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,21.59,,,02_15_22_R941_HG03050_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_15_22_R941_HG03050_3,,,,,N/A,N/A,N/A,,N/A,0.346017,s3://human-pangenomics/working/HPRC/HG03050/raw_data/nanopore/guppy_6/02_15_22_R941_HG03050_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,92017.0,Similar,HG03050,HG03050,,N/A,,,N/A,N/A,N/A,N/A,N/A,8.0,HG03050,SAMN37797108,GB113,GWD,AFR,YR3 -9.29,0.0,1.99,0.37,0.1,0.04,N/A,74.38,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,22.54,,,02_15_22_R941_HG03239_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_15_22_R941_HG03239_1,,,,,N/A,N/A,N/A,,N/A,0.34711,s3://human-pangenomics/working/HPRC/HG03239/raw_data/nanopore/guppy_6/02_15_22_R941_HG03239_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,84730.0,Similar,HG03239,HG03239,,N/A,,,N/A,N/A,N/A,N/A,N/A,3.0,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 -9.26,0.0,1.98,0.39,0.11,0.05,N/A,78.16,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,23.69,,,02_15_22_R941_HG03239_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_15_22_R941_HG03239_2,,,,,N/A,N/A,N/A,,N/A,0.328338,s3://human-pangenomics/working/HPRC/HG03239/raw_data/nanopore/guppy_6/02_15_22_R941_HG03239_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,80855.0,Similar,HG03239,HG03239,,N/A,,,N/A,N/A,N/A,N/A,N/A,6.0,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 -6.93,0.0,1.42,0.27,0.08,0.03,N/A,58.69,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,17.79,,,02_15_22_R941_HG03239_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,02_15_22_R941_HG03239_3,,,,,N/A,N/A,N/A,,N/A,0.36187,s3://human-pangenomics/working/HPRC/HG03239/raw_data/nanopore/guppy_6/02_15_22_R941_HG03239_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,80856.0,Similar,HG03239,HG03239,,N/A,,,N/A,N/A,N/A,N/A,N/A,7.0,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 -11.93,0.0,3.19,0.68,0.18,0.06,N/A,85.01,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.76,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_17_22_R941_HG01074_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_17_22_R941_HG01074_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.378887,s3://human-pangenomics/working/HPRC/HG01074/raw_data/nanopore/guppy_6/02_17_22_R941_HG01074_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,93003.0,Similar,HG01074,HG01074,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,4.0,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 -12.64,0.01,3.4,0.79,0.25,0.11,N/A,92.24,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.95,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_17_22_R941_HG01074_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_17_22_R941_HG01074_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.370613,s3://human-pangenomics/working/HPRC/HG01074/raw_data/nanopore/guppy_6/02_17_22_R941_HG01074_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,90778.0,Similar,HG01074,HG01074,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,22.0,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 -10.44,0.0,2.71,0.58,0.17,0.06,N/A,77.56,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,23.5,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,02_17_22_R941_HG01074_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,02_17_22_R941_HG01074_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.404218,s3://human-pangenomics/working/HPRC/HG01074/raw_data/nanopore/guppy_6/02_17_22_R941_HG01074_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,89548.0,Similar,HG01074,HG01074,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,6.0,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 -13.5,0.0,3.21,0.55,0.1,0.03,N/A,101.69,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,30.82,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG00639_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG00639_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.338452,s3://human-pangenomics/working/HPRC/HG00639/raw_data/nanopore/guppy_6/03_01_22_R941_HG00639_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,88735.0,Similar,HG00639,HG00639,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,4.0,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 -12.8,0.0,3.0,0.54,0.09,0.02,N/A,97.09,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,29.42,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG00639_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG00639_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.347786,s3://human-pangenomics/working/HPRC/HG00639/raw_data/nanopore/guppy_6/03_01_22_R941_HG00639_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,88325.0,Similar,HG00639,HG00639,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 -11.14,0.0,2.69,0.48,0.09,0.02,N/A,84.25,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.53,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG00639_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG00639_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.345697,s3://human-pangenomics/working/HPRC/HG00639/raw_data/nanopore/guppy_6/03_01_22_R941_HG00639_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,88377.0,Similar,HG00639,HG00639,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 -5.51,0.0,1.26,0.2,0.03,0.01,N/A,44.57,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,13.51,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01081_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01081_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.419744,s3://human-pangenomics/working/HPRC/HG01081/raw_data/nanopore/guppy_6/03_01_22_R941_HG01081_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,82757.0,Similar,HG01081,HG01081,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 -11.0,0.0,2.38,0.37,0.06,0.02,N/A,93.45,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,28.32,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01081_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01081_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.354066,s3://human-pangenomics/working/HPRC/HG01081/raw_data/nanopore/guppy_6/03_01_22_R941_HG01081_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,79502.0,Similar,HG01081,HG01081,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 -11.47,0.0,2.55,0.4,0.07,0.02,N/A,94.66,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,28.68,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01081_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01081_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.345031,s3://human-pangenomics/working/HPRC/HG01081/raw_data/nanopore/guppy_6/03_01_22_R941_HG01081_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,81570.0,Similar,HG01081,HG01081,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 -12.42,0.0,2.68,0.39,0.07,0.02,N/A,99.55,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,30.17,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01081_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01081_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.364588,s3://human-pangenomics/working/HPRC/HG01081/raw_data/nanopore/guppy_6/03_01_22_R941_HG01081_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,83915.0,Similar,HG01081,HG01081,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 -13.6,0.0,3.92,0.84,0.14,0.02,N/A,97.29,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,29.48,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01150_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01150_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.340795,s3://human-pangenomics/working/HPRC/HG01150/raw_data/nanopore/guppy_6/03_01_22_R941_HG01150_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,92449.0,Similar,HG01150,HG01150,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 -11.79,0.0,3.1,0.62,0.1,0.02,N/A,92.38,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.99,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01150_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01150_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.357692,s3://human-pangenomics/working/HPRC/HG01150/raw_data/nanopore/guppy_6/03_01_22_R941_HG01150_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,85044.0,Similar,HG01150,HG01150,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 -11.94,0.0,3.36,0.73,0.13,0.02,N/A,88.26,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.75,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01150_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01150_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.318516,s3://human-pangenomics/working/HPRC/HG01150/raw_data/nanopore/guppy_6/03_01_22_R941_HG01150_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,89619.0,Similar,HG01150,HG01150,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 -12.13,0.0,3.05,0.66,0.18,0.06,N/A,92.0,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.88,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01940_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01940_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.329193,s3://human-pangenomics/working/HPRC/HG01940/raw_data/nanopore/guppy_6/03_01_22_R941_HG01940_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,87902.0,Similar,HG01940,HG01940,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,5.0,HG01940,SAMN37797101,PEL015,PEL,AMR,YR3 -11.09,0.0,2.7,0.57,0.15,0.05,N/A,85.7,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.97,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01940_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01940_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.332433,s3://human-pangenomics/working/HPRC/HG01940/raw_data/nanopore/guppy_6/03_01_22_R941_HG01940_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,86686.0,Similar,HG01940,HG01940,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG01940,SAMN37797101,PEL015,PEL,AMR,YR3 -9.03,0.0,2.2,0.47,0.12,0.04,N/A,71.28,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.6,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01940_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01940_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.311553,s3://human-pangenomics/working/HPRC/HG01940/raw_data/nanopore/guppy_6/03_01_22_R941_HG01940_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,84815.0,Similar,HG01940,HG01940,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG01940,SAMN37797101,PEL015,PEL,AMR,YR3 -6.16,0.0,1.58,0.33,0.07,0.02,N/A,45.78,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,13.87,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01969_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01969_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.384367,s3://human-pangenomics/working/HPRC/HG01969/raw_data/nanopore/guppy_6/03_01_22_R941_HG01969_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,89548.0,Similar,HG01969,HG01969,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG01969,SAMN37797103,PEL023,PEL,AMR,YR3 -12.38,0.0,3.24,0.68,0.14,0.03,N/A,91.24,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.65,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01969_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01969_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.335214,s3://human-pangenomics/working/HPRC/HG01969/raw_data/nanopore/guppy_6/03_01_22_R941_HG01969_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,90251.0,Similar,HG01969,HG01969,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG01969,SAMN37797103,PEL023,PEL,AMR,YR3 -8.2,0.0,2.18,0.49,0.11,0.03,N/A,61.72,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.7,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG01969_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG01969_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.362328,s3://human-pangenomics/working/HPRC/HG01969/raw_data/nanopore/guppy_6/03_01_22_R941_HG01969_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,88378.0,Similar,HG01969,HG01969,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG01969,SAMN37797103,PEL023,PEL,AMR,YR3 -10.45,0.0,2.74,0.52,0.09,0.02,N/A,80.42,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.37,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,03_01_22_R941_HG03017_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,03_01_22_R941_HG03017_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.338232,s3://human-pangenomics/working/HPRC/HG03017/raw_data/nanopore/guppy_6/03_01_22_R941_HG03017_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,86206.0,Similar,HG03017,HG03017,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 -13.36,0.0,3.68,0.74,0.12,0.03,N/A,99.17,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,30.05,,,03_01_22_R941_HG03017_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,03_01_22_R941_HG03017_2,,,,,N/A,N/A,N/A,,N/A,0.350232,s3://human-pangenomics/working/HPRC/HG03017/raw_data/nanopore/guppy_6/03_01_22_R941_HG03017_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,89100.0,Similar,HG03017,HG03017,,N/A,,,N/A,N/A,N/A,N/A,N/A,0.0,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 -10.33,0.0,2.81,0.54,0.09,0.02,N/A,76.92,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,23.31,,,03_01_22_R941_HG03017_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,03_01_22_R941_HG03017_3,,,,,N/A,N/A,N/A,,N/A,0.310042,s3://human-pangenomics/working/HPRC/HG03017/raw_data/nanopore/guppy_6/03_01_22_R941_HG03017_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,88874.0,Similar,HG03017,HG03017,,N/A,,,N/A,N/A,N/A,N/A,N/A,0.0,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 -9.62,0.02,2.94,0.91,0.36,0.18,N/A,69.07,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.93,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,04_12_22_R941_HG02273_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,04_12_22_R941_HG02273_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.306329,s3://human-pangenomics/working/HPRC/HG02273/raw_data/nanopore/guppy_6/04_12_22_R941_HG02273_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,91973.0,Similar,HG02273,HG02273,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,50.0,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -11.0,0.01,3.12,0.88,0.31,0.14,N/A,84.0,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.46,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,04_12_22_R941_HG02273_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,04_12_22_R941_HG02273_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.336303,s3://human-pangenomics/working/HPRC/HG02273/raw_data/nanopore/guppy_6/04_12_22_R941_HG02273_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,87115.0,Similar,HG02273,HG02273,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,21.0,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -9.93,0.01,2.96,0.86,0.31,0.14,N/A,71.3,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.61,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,04_12_22_R941_HG02273_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,04_12_22_R941_HG02273_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.322979,s3://human-pangenomics/working/HPRC/HG02273/raw_data/nanopore/guppy_6/04_12_22_R941_HG02273_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,92212.0,Similar,HG02273,HG02273,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,26.0,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -9.87,0.0,3.31,0.91,0.22,0.06,N/A,66.34,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.1,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,04_12_22_R941_HG02965_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,04_12_22_R941_HG02965_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.348437,s3://human-pangenomics/working/HPRC/HG02965/raw_data/nanopore/guppy_6/04_12_22_R941_HG02965_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,98065.0,Similar,HG02965,HG02965,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -12.88,0.0,4.59,1.32,0.34,0.08,N/A,81.02,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.55,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,04_12_22_R941_HG02965_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,04_12_22_R941_HG02965_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.337004,s3://human-pangenomics/working/HPRC/HG02965/raw_data/nanopore/guppy_6/04_12_22_R941_HG02965_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,105322.0,Similar,HG02965,HG02965,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -10.94,0.0,3.93,1.14,0.3,0.07,N/A,69.09,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.94,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,04_12_22_R941_HG02965_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,04_12_22_R941_HG02965_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.358389,s3://human-pangenomics/working/HPRC/HG02965/raw_data/nanopore/guppy_6/04_12_22_R941_HG02965_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,104882.0,Similar,HG02965,HG02965,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -8.3,0.0,2.13,0.48,0.14,0.06,N/A,67.21,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.37,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,04_12_22_R941_HG02976_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,04_12_22_R941_HG02976_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.368315,s3://human-pangenomics/working/HPRC/HG02976/raw_data/nanopore/guppy_6/04_12_22_R941_HG02976_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,82006.0,Similar,HG02976,HG02976,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,11.0,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -9.57,0.0,2.58,0.58,0.16,0.06,N/A,71.9,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.79,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,04_12_22_R941_HG02976_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,04_12_22_R941_HG02976_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.374164,s3://human-pangenomics/working/HPRC/HG02976/raw_data/nanopore/guppy_6/04_12_22_R941_HG02976_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,88094.0,Similar,HG02976,HG02976,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,7.0,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -9.61,0.0,2.61,0.58,0.15,0.05,N/A,71.6,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.7,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,04_12_22_R941_HG02976_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,04_12_22_R941_HG02976_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.362134,s3://human-pangenomics/working/HPRC/HG02976/raw_data/nanopore/guppy_6/04_12_22_R941_HG02976_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,88896.0,Similar,HG02976,HG02976,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -2.92,0.0,0.57,0.11,0.03,0.02,N/A,24.23,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,7.34,,,04_12_22_R941_HG03195_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,04_12_22_R941_HG03195_1,,,,,N/A,N/A,N/A,,N/A,0.435326,s3://human-pangenomics/working/HPRC/HG03195/raw_data/nanopore/guppy_6/04_12_22_R941_HG03195_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,82523.0,Similar,HG03195,HG03195,,N/A,,,N/A,N/A,N/A,N/A,N/A,3.0,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -3.75,0.0,0.72,0.15,0.05,0.02,N/A,32.42,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,9.83,,,04_12_22_R941_HG03195_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,04_12_22_R941_HG03195_2,,,,,N/A,N/A,N/A,,N/A,0.39897,s3://human-pangenomics/working/HPRC/HG03195/raw_data/nanopore/guppy_6/04_12_22_R941_HG03195_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,79825.0,Similar,HG03195,HG03195,,N/A,,,N/A,N/A,N/A,N/A,N/A,4.0,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -7.67,0.01,1.47,0.3,0.09,0.04,N/A,66.57,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,20.17,,,04_12_22_R941_HG03195_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,04_12_22_R941_HG03195_3,,,,,N/A,N/A,N/A,,N/A,0.379395,s3://human-pangenomics/working/HPRC/HG03195/raw_data/nanopore/guppy_6/04_12_22_R941_HG03195_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,79740.0,Similar,HG03195,HG03195,,N/A,,,N/A,N/A,N/A,N/A,N/A,15.0,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -3.74,0.01,0.81,0.22,0.1,0.06,N/A,33.71,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,10.21,,,04_12_22_R941_HG03195_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,04_12_22_R941_HG03195_4,,,,,N/A,N/A,N/A,,N/A,0.399203,s3://human-pangenomics/working/HPRC/HG03195/raw_data/nanopore/guppy_6/04_12_22_R941_HG03195_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,76326.0,Similar,HG03195,HG03195,,N/A,,,N/A,N/A,N/A,N/A,N/A,24.0,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -12.28,0.0,5.0,1.73,0.54,0.17,N/A,72.99,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,22.12,,,04_12_22_R941_HG03225_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,04_12_22_R941_HG03225_1,,,,,N/A,N/A,N/A,,N/A,0.321181,s3://human-pangenomics/working/HPRC/HG03225/raw_data/nanopore/guppy_6/04_12_22_R941_HG03225_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,113230.0,Similar,HG03225,HG03225,,N/A,,,N/A,N/A,N/A,N/A,N/A,4.0,HG03225,SAMN33621957,,MSL,AFR,YR3 -13.06,0.0,5.3,1.82,0.57,0.18,N/A,78.71,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,23.85,,,04_12_22_R941_HG03225_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,04_12_22_R941_HG03225_2,,,,,N/A,N/A,N/A,,N/A,0.341689,s3://human-pangenomics/working/HPRC/HG03225/raw_data/nanopore/guppy_6/04_12_22_R941_HG03225_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,111305.0,Similar,HG03225,HG03225,,N/A,,,N/A,N/A,N/A,N/A,N/A,4.0,HG03225,SAMN33621957,,MSL,AFR,YR3 -10.17,0.0,4.07,1.39,0.44,0.14,N/A,62.97,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,19.08,,,04_12_22_R941_HG03225_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,04_12_22_R941_HG03225_3,,,,,N/A,N/A,N/A,,N/A,0.385432,s3://human-pangenomics/working/HPRC/HG03225/raw_data/nanopore/guppy_6/04_12_22_R941_HG03225_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,107783.0,Similar,HG03225,HG03225,,N/A,,,N/A,N/A,N/A,N/A,N/A,7.0,HG03225,SAMN33621957,,MSL,AFR,YR3 -10.33,0.0,2.31,0.34,0.05,0.01,N/A,76.64,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,23.22,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_17_22_R941_GM18522_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_17_22_R941_GM18522_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.336724,s3://human-pangenomics/working/HPRC/NA18522/raw_data/nanopore/guppy_6/05_17_22_R941_GM18522_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,90186.0,Similar,GM18522,GM18522,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,,,,,, -13.52,0.0,3.04,0.46,0.07,0.01,N/A,97.92,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,29.67,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_17_22_R941_GM18522_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_17_22_R941_GM18522_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.333979,s3://human-pangenomics/working/HPRC/NA18522/raw_data/nanopore/guppy_6/05_17_22_R941_GM18522_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,92175.0,Similar,GM18522,GM18522,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,,,,,, -6.97,0.0,1.65,0.27,0.05,0.01,N/A,53.19,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,16.12,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_17_22_R941_GM18522_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_17_22_R941_GM18522_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.385127,s3://human-pangenomics/working/HPRC/NA18522/raw_data/nanopore/guppy_6/05_17_22_R941_GM18522_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,87553.0,Similar,GM18522,GM18522,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,,,,,, -7.17,0.0,1.05,0.1,0.02,0.01,N/A,64.75,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,19.62,,,05_17_22_R941_HG03130_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_17_22_R941_HG03130_1,,,,,N/A,N/A,N/A,,N/A,0.338227,s3://human-pangenomics/working/HPRC/HG03130/raw_data/nanopore/guppy_6/05_17_22_R941_HG03130_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,78539.0,Similar,HG03130,HG03130,,N/A,,,N/A,N/A,N/A,N/A,N/A,0.0,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -5.75,0.0,0.82,0.08,0.01,0.0,N/A,53.19,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,16.12,,,05_17_22_R941_HG03130_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_17_22_R941_HG03130_2,,,,,N/A,N/A,N/A,,N/A,0.336958,s3://human-pangenomics/working/HPRC/HG03130/raw_data/nanopore/guppy_6/05_17_22_R941_HG03130_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,77435.0,Similar,HG03130,HG03130,,N/A,,,N/A,N/A,N/A,N/A,N/A,2.0,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -8.37,0.0,1.25,0.12,0.02,0.01,N/A,76.3,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,23.12,,,05_17_22_R941_HG03130_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_17_22_R941_HG03130_3,,,,,N/A,N/A,N/A,,N/A,0.332566,s3://human-pangenomics/working/HPRC/HG03130/raw_data/nanopore/guppy_6/05_17_22_R941_HG03130_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,77603.0,Similar,HG03130,HG03130,,N/A,,,N/A,N/A,N/A,N/A,N/A,0.0,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -7.98,0.0,1.75,0.35,0.1,0.04,N/A,61.42,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,18.61,,,05_17_22_R941_HG03139_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_17_22_R941_HG03139_1,,,,,N/A,N/A,N/A,,N/A,0.361164,s3://human-pangenomics/working/HPRC/HG03139/raw_data/nanopore/guppy_6/05_17_22_R941_HG03139_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,87401.0,Similar,HG03139,HG03139,,N/A,,,N/A,N/A,N/A,N/A,N/A,5.0,HG03139,SAMN33758792,,ESN,AFR,YR3 -8.82,0.0,1.84,0.35,0.1,0.04,N/A,67.58,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,20.48,,,05_17_22_R941_HG03139_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_17_22_R941_HG03139_2,,,,,N/A,N/A,N/A,,N/A,0.30899,s3://human-pangenomics/working/HPRC/HG03139/raw_data/nanopore/guppy_6/05_17_22_R941_HG03139_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,88064.0,Similar,HG03139,HG03139,,N/A,,,N/A,N/A,N/A,N/A,N/A,12.0,HG03139,SAMN33758792,,ESN,AFR,YR3 -8.0,0.0,1.72,0.33,0.09,0.04,N/A,61.26,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,18.56,,,05_17_22_R941_HG03139_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_17_22_R941_HG03139_3,,,,,N/A,N/A,N/A,,N/A,0.356189,s3://human-pangenomics/working/HPRC/HG03139/raw_data/nanopore/guppy_6/05_17_22_R941_HG03139_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,87921.0,Similar,HG03139,HG03139,,N/A,,,N/A,N/A,N/A,N/A,N/A,8.0,HG03139,SAMN33758792,,ESN,AFR,YR3 -13.56,0.0,3.08,0.49,0.07,0.01,N/A,101.17,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,30.66,,,05_17_22_R941_HG03209_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_17_22_R941_HG03209_1,,,,,N/A,N/A,N/A,,N/A,0.338017,s3://human-pangenomics/working/HPRC/HG03209/raw_data/nanopore/guppy_6/05_17_22_R941_HG03209_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,89912.0,Similar,HG03209,HG03209,,N/A,,,N/A,N/A,N/A,N/A,N/A,0.0,HG03209,SAMN33758793,,MSL,AFR,YR3 -4.38,0.0,0.83,0.12,0.01,0.0,N/A,40.63,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,12.31,,,05_17_22_R941_HG03209_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_17_22_R941_HG03209_2,,,,,N/A,N/A,N/A,,N/A,0.339003,s3://human-pangenomics/working/HPRC/HG03209/raw_data/nanopore/guppy_6/05_17_22_R941_HG03209_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,76033.0,Similar,HG03209,HG03209,,N/A,,,N/A,N/A,N/A,N/A,N/A,0.0,HG03209,SAMN33758793,,MSL,AFR,YR3 -11.85,0.0,2.66,0.44,0.06,0.01,N/A,92.31,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,27.97,,,05_17_22_R941_HG03209_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_17_22_R941_HG03209_3,,,,,N/A,N/A,N/A,,N/A,0.312373,s3://human-pangenomics/working/HPRC/HG03209/raw_data/nanopore/guppy_6/05_17_22_R941_HG03209_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,86569.0,Similar,HG03209,HG03209,,N/A,,,N/A,N/A,N/A,N/A,N/A,1.0,HG03209,SAMN33758793,,MSL,AFR,YR3 -9.58,0.0,2.45,0.46,0.09,0.02,N/A,66.68,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.21,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_24_22_R941_GM19338_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_24_22_R941_GM19338_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.326651,s3://human-pangenomics/working/HPRC/NA19338/raw_data/nanopore/guppy_6/05_24_22_R941_GM19338_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,95247.0,Similar,GM19338,GM19338,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,,,,,, -11.67,0.0,3.03,0.6,0.12,0.03,N/A,84.39,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.57,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_24_22_R941_GM19338_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_24_22_R941_GM19338_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.305379,s3://human-pangenomics/working/HPRC/NA19338/raw_data/nanopore/guppy_6/05_24_22_R941_GM19338_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,91754.0,Similar,GM19338,GM19338,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,,,,,, -9.19,0.0,2.36,0.44,0.08,0.02,N/A,64.47,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.54,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_24_22_R941_GM19338_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_24_22_R941_GM19338_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.331124,s3://human-pangenomics/working/HPRC/NA19338/raw_data/nanopore/guppy_6/05_24_22_R941_GM19338_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,94485.0,Similar,GM19338,GM19338,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,,,,,, -12.65,0.0,3.45,0.68,0.11,0.02,N/A,89.49,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.12,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_24_22_R941_GM19391_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_24_22_R941_GM19391_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.350281,s3://human-pangenomics/working/HPRC/NA19391/raw_data/nanopore/guppy_6/05_24_22_R941_GM19391_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,93740.0,Similar,GM19391,GM19391,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,,,,,, -13.23,0.0,3.54,0.67,0.11,0.02,N/A,96.08,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,29.12,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_24_22_R941_GM19391_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_24_22_R941_GM19391_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.331306,s3://human-pangenomics/working/HPRC/NA19391/raw_data/nanopore/guppy_6/05_24_22_R941_GM19391_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,91516.0,Similar,GM19391,GM19391,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,,,,,, -10.36,0.0,2.73,0.54,0.1,0.03,N/A,84.59,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.63,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_24_22_R941_GM19391_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_24_22_R941_GM19391_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.359076,s3://human-pangenomics/working/HPRC/NA19391/raw_data/nanopore/guppy_6/05_24_22_R941_GM19391_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,81407.0,Similar,GM19391,GM19391,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,,,,,, -9.24,0.0,1.37,0.24,0.05,0.01,N/A,89.02,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.98,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_24_22_R941_GM19468_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_24_22_R941_GM19468_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.353823,s3://human-pangenomics/working/HPRC/NA19468/raw_data/nanopore/guppy_6/05_24_22_R941_GM19468_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,75210.0,Similar,GM19468,GM19468,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,,,,,, -8.88,0.0,1.38,0.25,0.06,0.02,N/A,84.5,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.61,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_24_22_R941_GM19468_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_24_22_R941_GM19468_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.339855,s3://human-pangenomics/working/HPRC/NA19468/raw_data/nanopore/guppy_6/05_24_22_R941_GM19468_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,75624.0,Similar,GM19468,GM19468,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,,,,,, -8.77,0.0,1.33,0.24,0.05,0.02,N/A,84.38,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.57,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,05_24_22_R941_GM19468_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,05_24_22_R941_GM19468_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.363104,s3://human-pangenomics/working/HPRC/NA19468/raw_data/nanopore/guppy_6/05_24_22_R941_GM19468_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,75099.0,Similar,GM19468,GM19468,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,,,,,, -8.33,0.0,2.18,0.44,0.08,0.01,N/A,66.67,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,20.2,,,05_24_22_R941_HG03458_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_24_22_R941_HG03458_1,,,,,N/A,N/A,N/A,,N/A,0.328283,s3://human-pangenomics/working/HPRC/HG03458/raw_data/nanopore/guppy_6/05_24_22_R941_HG03458_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,83325.0,Similar,HG03458,HG03458,,N/A,,,N/A,N/A,N/A,N/A,N/A,0.0,HG03458,SAMN37797109,,MSL,AFR,YR3 -9.9,0.0,2.67,0.58,0.11,0.02,N/A,79.84,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,24.19,,,05_24_22_R941_HG03458_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_24_22_R941_HG03458_2,,,,,N/A,N/A,N/A,,N/A,0.363894,s3://human-pangenomics/working/HPRC/HG03458/raw_data/nanopore/guppy_6/05_24_22_R941_HG03458_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,82416.0,Similar,HG03458,HG03458,,N/A,,,N/A,N/A,N/A,N/A,N/A,0.0,HG03458,SAMN37797109,,MSL,AFR,YR3 -9.59,0.0,2.57,0.56,0.11,0.02,N/A,78.8,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,23.88,,,05_24_22_R941_HG03458_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_24_22_R941_HG03458_3,,,,,N/A,N/A,N/A,,N/A,0.393812,s3://human-pangenomics/working/HPRC/HG03458/raw_data/nanopore/guppy_6/05_24_22_R941_HG03458_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,81018.0,Similar,HG03458,HG03458,,N/A,,,N/A,N/A,N/A,N/A,N/A,0.0,HG03458,SAMN37797109,,MSL,AFR,YR3 -11.2,0.0,3.29,0.76,0.18,0.06,N/A,79.99,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,24.24,,,05_24_22_R941_HG03470_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_24_22_R941_HG03470_1,,,,,N/A,N/A,N/A,,N/A,0.364659,s3://human-pangenomics/working/HPRC/HG03470/raw_data/nanopore/guppy_6/05_24_22_R941_HG03470_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,92406.0,Similar,HG03470,HG03470,,N/A,,,N/A,N/A,N/A,N/A,N/A,4.0,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -9.12,0.0,2.73,0.67,0.16,0.05,N/A,66.47,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,20.14,,,05_24_22_R941_HG03470_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_24_22_R941_HG03470_2,,,,,N/A,N/A,N/A,,N/A,0.334592,s3://human-pangenomics/working/HPRC/HG03470/raw_data/nanopore/guppy_6/05_24_22_R941_HG03470_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,90420.0,Similar,HG03470,HG03470,,N/A,,,N/A,N/A,N/A,N/A,N/A,8.0,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -10.33,0.0,3.08,0.74,0.18,0.06,N/A,74.44,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,22.56,,,05_24_22_R941_HG03470_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,05_24_22_R941_HG03470_3,,,,,N/A,N/A,N/A,,N/A,0.330391,s3://human-pangenomics/working/HPRC/HG03470/raw_data/nanopore/guppy_6/05_24_22_R941_HG03470_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,91609.0,Similar,HG03470,HG03470,,N/A,,,N/A,N/A,N/A,N/A,N/A,5.0,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -11.0,0.0,2.73,0.78,0.24,0.09,N/A,92.07,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,27.9,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_22_21_R941_HG00738_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_22_21_R941_HG00738_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.350062,s3://human-pangenomics/working/HPRC/HG00738/raw_data/nanopore/guppy_6/06_22_21_R941_HG00738_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,82004.0,Similar,HG00738,HG00738,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,9.0,HG00738,SAMN26237493,PR07,PUR,AMR,YR2 -11.9,0.0,2.05,0.31,0.08,0.03,N/A,110.43,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,33.46,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_22_21_R941_HG02135_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_22_21_R941_HG02135_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.316953,s3://human-pangenomics/working/HPRC/HG02135/raw_data/nanopore/guppy_6/06_22_21_R941_HG02135_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,75826.0,Similar,HG02135,HG02135,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,7.0,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 -10.34,0.0,2.25,0.37,0.07,0.02,N/A,80.7,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.45,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18612_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18612_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.340271,s3://human-pangenomics/working/HPRC/NA18612/raw_data/nanopore/guppy_6/06_28_22_R941_GM18612_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,86342.0,Similar,GM18612,GM18612,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,,,,,, -8.41,0.0,1.89,0.33,0.08,0.03,N/A,65.62,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.88,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18612_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18612_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.369822,s3://human-pangenomics/working/HPRC/NA18612/raw_data/nanopore/guppy_6/06_28_22_R941_GM18612_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,86242.0,Similar,GM18612,GM18612,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,5.0,,,,,, -11.6,0.0,2.49,0.42,0.1,0.04,N/A,92.45,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,28.01,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18612_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18612_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.329798,s3://human-pangenomics/working/HPRC/NA18612/raw_data/nanopore/guppy_6/06_28_22_R941_GM18612_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,84839.0,Similar,GM18612,GM18612,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,,,,,, -9.59,0.0,2.2,0.36,0.05,0.01,N/A,80.94,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.53,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18747_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18747_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.326619,s3://human-pangenomics/working/HPRC/NA18747/raw_data/nanopore/guppy_6/06_28_22_R941_GM18747_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,79877.0,Similar,GM18747,GM18747,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,,,,,, -10.02,0.0,2.4,0.41,0.06,0.01,N/A,80.89,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.51,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18747_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18747_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.340225,s3://human-pangenomics/working/HPRC/NA18747/raw_data/nanopore/guppy_6/06_28_22_R941_GM18747_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,83080.0,Similar,GM18747,GM18747,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,,,,,, -11.51,0.0,2.97,0.54,0.08,0.01,N/A,86.07,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.08,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18747_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18747_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.330606,s3://human-pangenomics/working/HPRC/NA18747/raw_data/nanopore/guppy_6/06_28_22_R941_GM18747_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,88902.0,Similar,GM18747,GM18747,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,,,,,, -9.2,0.0,1.79,0.33,0.1,0.04,N/A,81.83,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.8,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18971_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18971_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.378314,s3://human-pangenomics/working/HPRC/NA18971/raw_data/nanopore/guppy_6/06_28_22_R941_GM18971_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,77826.0,Similar,GM18971,GM18971,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,8.0,,,,,, -10.78,0.0,2.17,0.43,0.13,0.05,N/A,94.02,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,28.49,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18971_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18971_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.383637,s3://human-pangenomics/working/HPRC/NA18971/raw_data/nanopore/guppy_6/06_28_22_R941_GM18971_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,78916.0,Similar,GM18971,GM18971,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,10.0,,,,,, -10.0,0.0,1.99,0.39,0.11,0.04,N/A,87.74,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.59,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18971_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18971_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.366243,s3://human-pangenomics/working/HPRC/NA18971/raw_data/nanopore/guppy_6/06_28_22_R941_GM18971_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,78514.0,Similar,GM18971,GM18971,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,6.0,,,,,, -7.43,0.0,1.54,0.2,0.03,0.01,N/A,61.47,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.63,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18983_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18983_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.432677,s3://human-pangenomics/working/HPRC/NA18983/raw_data/nanopore/guppy_6/06_28_22_R941_GM18983_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,82261.0,Similar,GM18983,GM18983,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,,,,,, -9.45,0.0,1.98,0.28,0.04,0.01,N/A,81.5,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.7,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18983_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18983_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.404763,s3://human-pangenomics/working/HPRC/NA18983/raw_data/nanopore/guppy_6/06_28_22_R941_GM18983_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,78875.0,Similar,GM18983,GM18983,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,,,,,, -9.52,0.0,2.03,0.29,0.04,0.01,N/A,81.73,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.77,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_GM18983_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_GM18983_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.403313,s3://human-pangenomics/working/HPRC/NA18983/raw_data/nanopore/guppy_6/06_28_22_R941_GM18983_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,78929.0,Similar,GM18983,GM18983,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,,,,,, -9.54,0.0,1.78,0.21,0.04,0.01,N/A,79.9,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.21,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG00140_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG00140_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.385939,s3://human-pangenomics/working/HPRC/HG00140/raw_data/nanopore/guppy_6/06_28_22_R941_HG00140_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,81568.0,Similar,HG00140,HG00140,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG00140,SAMN33621941,,GBR,EUR,YR3 -10.8,0.0,2.05,0.24,0.04,0.01,N/A,85.83,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.01,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG00140_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG00140_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.361734,s3://human-pangenomics/working/HPRC/HG00140/raw_data/nanopore/guppy_6/06_28_22_R941_HG00140_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,85375.0,Similar,HG00140,HG00140,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG00140,SAMN33621941,,GBR,EUR,YR3 -9.42,0.0,1.79,0.21,0.04,0.01,N/A,74.74,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.65,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG00140_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG00140_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.354421,s3://human-pangenomics/working/HPRC/HG00140/raw_data/nanopore/guppy_6/06_28_22_R941_HG00140_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,85423.0,Similar,HG00140,HG00140,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG00140,SAMN33621941,,GBR,EUR,YR3 -7.48,0.0,1.96,0.59,0.2,0.07,N/A,58.41,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,17.7,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG00323_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG00323_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.399829,s3://human-pangenomics/working/HPRC/HG00323/raw_data/nanopore/guppy_6/06_28_22_R941_HG00323_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,85739.0,Similar,HG00323,HG00323,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,4.0,HG00323,SAMN33621942,,FIN,EUR,YR3 -9.35,0.0,2.5,0.79,0.3,0.12,N/A,72.74,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.04,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG00323_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG00323_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.391998,s3://human-pangenomics/working/HPRC/HG00323/raw_data/nanopore/guppy_6/06_28_22_R941_HG00323_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,85829.0,Similar,HG00323,HG00323,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,14.0,HG00323,SAMN33621942,,FIN,EUR,YR3 -5.56,0.0,0.96,0.22,0.07,0.02,N/A,69.65,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.11,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG00323_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG00323_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.414351,s3://human-pangenomics/working/HPRC/HG00323/raw_data/nanopore/guppy_6/06_28_22_R941_HG00323_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,60729.0,Similar,HG00323,HG00323,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,6.0,HG00323,SAMN33621942,,FIN,EUR,YR3 -11.38,0.0,2.74,0.48,0.07,0.01,N/A,89.9,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.24,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02040_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02040_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.370728,s3://human-pangenomics/working/HPRC/HG02040/raw_data/nanopore/guppy_6/06_28_22_R941_HG02040_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,84809.0,Similar,HG02040,HG02040,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02040,SAMN33758784,,KHV,EAS,YR3 -13.59,0.0,3.31,0.58,0.09,0.02,N/A,103.06,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,31.23,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02040_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02040_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.35563,s3://human-pangenomics/working/HPRC/HG02040/raw_data/nanopore/guppy_6/06_28_22_R941_HG02040_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,88092.0,Similar,HG02040,HG02040,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02040,SAMN33758784,,KHV,EAS,YR3 -9.27,0.0,2.07,0.34,0.05,0.01,N/A,79.82,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.19,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02040_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02040_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.356216,s3://human-pangenomics/working/HPRC/HG02040/raw_data/nanopore/guppy_6/06_28_22_R941_HG02040_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,79018.0,Similar,HG02040,HG02040,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02040,SAMN33758784,,KHV,EAS,YR3 -8.68,0.0,1.74,0.26,0.05,0.01,N/A,77.69,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,23.54,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02155_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02155_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.393689,s3://human-pangenomics/working/HPRC/HG02155/raw_data/nanopore/guppy_6/06_28_22_R941_HG02155_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,77287.0,Similar,HG02155,HG02155,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02155,SAMN33621951,,CDX,EAS,YR3 -11.23,0.0,2.68,0.49,0.12,0.05,N/A,85.86,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.02,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02155_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02155_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.372588,s3://human-pangenomics/working/HPRC/HG02155/raw_data/nanopore/guppy_6/06_28_22_R941_HG02155_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,87421.0,Similar,HG02155,HG02155,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,10.0,HG02155,SAMN33621951,,CDX,EAS,YR3 -10.95,0.0,2.58,0.47,0.12,0.05,N/A,86.15,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.11,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02155_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02155_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.395328,s3://human-pangenomics/working/HPRC/HG02155/raw_data/nanopore/guppy_6/06_28_22_R941_HG02155_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,85506.0,Similar,HG02155,HG02155,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG02155,SAMN33621951,,CDX,EAS,YR3 -9.25,0.0,2.26,0.42,0.07,0.01,N/A,74.64,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.62,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02165_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02165_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.377173,s3://human-pangenomics/working/HPRC/HG02165/raw_data/nanopore/guppy_6/06_28_22_R941_HG02165_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,83115.0,Similar,HG02165,HG02165,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG02165,SAMN33758785,,CDX,EAS,YR3 -9.6,0.0,2.48,0.48,0.09,0.02,N/A,70.71,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.43,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02165_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02165_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.376957,s3://human-pangenomics/working/HPRC/HG02165/raw_data/nanopore/guppy_6/06_28_22_R941_HG02165_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,90174.0,Similar,HG02165,HG02165,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02165,SAMN33758785,,CDX,EAS,YR3 -11.34,0.0,3.19,0.64,0.12,0.03,N/A,75.21,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.79,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02165_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02165_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.38002,s3://human-pangenomics/working/HPRC/HG02165/raw_data/nanopore/guppy_6/06_28_22_R941_HG02165_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,99543.0,Similar,HG02165,HG02165,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02165,SAMN33758785,,CDX,EAS,YR3 -12.93,0.0,3.24,0.6,0.1,0.02,N/A,102.34,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,31.01,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02922_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02922_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.357278,s3://human-pangenomics/working/HPRC/HG02922/raw_data/nanopore/guppy_6/06_28_22_R941_HG02922_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,84324.0,Similar,HG02922,HG02922,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -13.1,0.0,3.37,0.64,0.1,0.02,N/A,102.21,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,30.97,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02922_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02922_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.368987,s3://human-pangenomics/working/HPRC/HG02922/raw_data/nanopore/guppy_6/06_28_22_R941_HG02922_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,85325.0,Similar,HG02922,HG02922,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -9.18,0.0,2.2,0.42,0.07,0.01,N/A,83.8,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.39,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,06_28_22_R941_HG02922_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,06_28_22_R941_HG02922_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.361226,s3://human-pangenomics/working/HPRC/HG02922/raw_data/nanopore/guppy_6/06_28_22_R941_HG02922_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,74004.0,Similar,HG02922,HG02922,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -5.66,0.0,0.56,0.09,0.02,0.01,N/A,78.86,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,23.9,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG00544_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG00544_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.365332,s3://human-pangenomics/working/HPRC/HG00544/raw_data/nanopore/guppy_6/07_13_21_R941_HG00544_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,62807.0,Similar,HG00544,HG00544,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG00544,SAMN26237491,SH042,CHS,EAS,YR2 -4.89,0.0,0.38,0.05,0.01,0.0,N/A,70.63,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,21.4,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG00544_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG00544_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.360982,s3://human-pangenomics/working/HPRC/HG00544/raw_data/nanopore/guppy_6/07_13_21_R941_HG00544_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,62839.0,Similar,HG00544,HG00544,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG00544,SAMN26237491,SH042,CHS,EAS,YR2 -5.68,0.0,0.43,0.06,0.01,0.01,N/A,76.46,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,23.17,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG00544_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG00544_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.354387,s3://human-pangenomics/working/HPRC/HG00544/raw_data/nanopore/guppy_6/07_13_21_R941_HG00544_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,65631.0,Similar,HG00544,HG00544,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,4.0,HG00544,SAMN26237491,SH042,CHS,EAS,YR2 -7.11,0.0,0.93,0.14,0.03,0.01,N/A,74.09,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,22.45,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG00706_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG00706_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.345581,s3://human-pangenomics/working/HPRC/HG00706/raw_data/nanopore/guppy_6/07_13_21_R941_HG00706_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,72401.0,Similar,HG00706,HG00706,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG00706,SAMN37706905,SH090,CHS,EAS,YR2 -8.6,0.0,1.16,0.19,0.04,0.01,N/A,89.85,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,27.23,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG00706_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG00706_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.348804,s3://human-pangenomics/working/HPRC/HG00706/raw_data/nanopore/guppy_6/07_13_21_R941_HG00706_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,72132.0,Similar,HG00706,HG00706,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG00706,SAMN37706905,SH090,CHS,EAS,YR2 -7.12,0.0,0.93,0.14,0.03,0.01,N/A,74.34,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,22.53,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG00706_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG00706_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.323904,s3://human-pangenomics/working/HPRC/HG00706/raw_data/nanopore/guppy_6/07_13_21_R941_HG00706_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,72386.0,Similar,HG00706,HG00706,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG00706,SAMN37706905,SH090,CHS,EAS,YR2 -7.47,0.0,0.92,0.1,0.02,0.0,N/A,78.47,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,23.78,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG00738_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG00738_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.350161,s3://human-pangenomics/working/HPRC/HG00738/raw_data/nanopore/guppy_6/07_13_21_R941_HG00738_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,72927.0,Similar,HG00738,HG00738,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG00738,SAMN26237493,PR07,PUR,AMR,YR2 -8.23,0.0,1.03,0.13,0.02,0.01,N/A,88.09,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,26.69,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG00738_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG00738_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.347786,s3://human-pangenomics/working/HPRC/HG00738/raw_data/nanopore/guppy_6/07_13_21_R941_HG00738_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,71965.0,Similar,HG00738,HG00738,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,5.0,HG00738,SAMN26237493,PR07,PUR,AMR,YR2 -6.38,0.0,0.62,0.05,0.01,0.0,N/A,61.74,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,18.71,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG01255_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG01255_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.364765,s3://human-pangenomics/working/HPRC/HG01255/raw_data/nanopore/guppy_6/07_13_21_R941_HG01255_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,76438.0,Similar,HG01255,HG01255,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG01255,SAMN26237495,CLM15,CLM,AMR,YR2 -8.92,0.0,0.85,0.07,0.01,0.0,N/A,88.28,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,26.75,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG01255_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG01255_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.365546,s3://human-pangenomics/working/HPRC/HG01255/raw_data/nanopore/guppy_6/07_13_21_R941_HG01255_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,75335.0,Similar,HG01255,HG01255,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG01255,SAMN26237495,CLM15,CLM,AMR,YR2 -11.21,0.0,1.24,0.13,0.02,0.0,N/A,106.24,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,32.19,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG01255_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG01255_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.381373,s3://human-pangenomics/working/HPRC/HG01255/raw_data/nanopore/guppy_6/07_13_21_R941_HG01255_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,77211.0,Similar,HG01255,HG01255,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG01255,SAMN26237495,CLM15,CLM,AMR,YR2 -7.61,0.0,0.38,0.03,0.0,0.0,N/A,94.47,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,28.63,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG02071_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG02071_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.328543,s3://human-pangenomics/working/HPRC/HG02071/raw_data/nanopore/guppy_6/07_13_21_R941_HG02071_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,68103.0,Similar,HG02071,HG02071,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02071,SAMN26267380,VN065,KHV,EAS,YR2 -8.45,0.0,0.49,0.05,0.01,0.0,N/A,105.36,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,31.93,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG02071_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG02071_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.315385,s3://human-pangenomics/working/HPRC/HG02071/raw_data/nanopore/guppy_6/07_13_21_R941_HG02071_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,67686.0,Similar,HG02071,HG02071,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02071,SAMN26267380,VN065,KHV,EAS,YR2 -4.76,0.0,0.25,0.02,0.0,0.0,N/A,60.19,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,18.24,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG02071_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG02071_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.335713,s3://human-pangenomics/working/HPRC/HG02071/raw_data/nanopore/guppy_6/07_13_21_R941_HG02071_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,67347.0,Similar,HG02071,HG02071,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02071,SAMN26267380,VN065,KHV,EAS,YR2 -6.32,0.0,0.32,0.02,0.0,0.0,N/A,88.36,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,26.78,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG02074_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG02074_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.238384,s3://human-pangenomics/working/HPRC/HG02074/raw_data/nanopore/guppy_6/07_13_21_R941_HG02074_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,62895.0,Similar,HG02074,HG02074,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02074,SAMN26267381,VN066,KHV,EAS,YR2 -6.81,0.0,0.46,0.05,0.01,0.0,N/A,93.19,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,28.24,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG02074_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG02074_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.253961,s3://human-pangenomics/working/HPRC/HG02074/raw_data/nanopore/guppy_6/07_13_21_R941_HG02074_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,62972.0,Similar,HG02074,HG02074,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02074,SAMN26267381,VN066,KHV,EAS,YR2 -5.53,0.0,0.31,0.03,0.0,0.0,N/A,78.64,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,23.83,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG02074_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG02074_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.282248,s3://human-pangenomics/working/HPRC/HG02074/raw_data/nanopore/guppy_6/07_13_21_R941_HG02074_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,62011.0,Similar,HG02074,HG02074,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02074,SAMN26267381,VN066,KHV,EAS,YR2 -10.21,0.0,1.31,0.15,0.03,0.01,N/A,99.88,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,30.27,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG02132_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG02132_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.375313,s3://human-pangenomics/working/HPRC/HG02132/raw_data/nanopore/guppy_6/07_13_21_R941_HG02132_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,74492.0,Similar,HG02132,HG02132,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02132,SAMN26267382,VN080,KHV,EAS,YR2 -4.61,0.0,0.57,0.06,0.02,0.0,N/A,45.44,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,13.77,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG02132_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG02132_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.36073,s3://human-pangenomics/working/HPRC/HG02132/raw_data/nanopore/guppy_6/07_13_21_R941_HG02132_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,74076.0,Similar,HG02132,HG02132,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02132,SAMN26267382,VN080,KHV,EAS,YR2 -8.1,0.0,1.02,0.12,0.02,0.01,N/A,82.68,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,25.05,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG02132_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG02132_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.377674,s3://human-pangenomics/working/HPRC/HG02132/raw_data/nanopore/guppy_6/07_13_21_R941_HG02132_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,72221.0,Similar,HG02132,HG02132,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02132,SAMN26267382,VN080,KHV,EAS,YR2 -4.62,0.0,0.5,0.05,0.01,0.0,N/A,47.95,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,14.53,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG02135_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG02135_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.32118,s3://human-pangenomics/working/HPRC/HG02135/raw_data/nanopore/guppy_6/07_13_21_R941_HG02135_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,72386.0,Similar,HG02135,HG02135,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 -8.8,0.0,1.0,0.12,0.03,0.01,N/A,92.79,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,28.12,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_13_21_R941_HG02135_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_13_21_R941_HG02135_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.310944,s3://human-pangenomics/working/HPRC/HG02135/raw_data/nanopore/guppy_6/07_13_21_R941_HG02135_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,71374.0,Similar,HG02135,HG02135,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 -8.03,0.0,0.54,0.05,0.01,0.0,N/A,106.62,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,32.31,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02602_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02602_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.323213,s3://human-pangenomics/working/HPRC/HG02602/raw_data/nanopore/guppy_6/07_20_21_R941_HG02602_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,65361.0,Similar,HG02602,HG02602,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG02602,SAMN26237507,PK09,PJL,SAS,YR2 -6.93,0.0,0.46,0.04,0.01,0.0,N/A,96.1,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,29.12,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02602_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02602_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.341738,s3://human-pangenomics/working/HPRC/HG02602/raw_data/nanopore/guppy_6/07_20_21_R941_HG02602_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,63774.0,Similar,HG02602,HG02602,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02602,SAMN26237507,PK09,PJL,SAS,YR2 -5.14,0.0,0.32,0.03,0.01,0.0,N/A,71.47,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.66,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02602_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02602_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.344395,s3://human-pangenomics/working/HPRC/HG02602/raw_data/nanopore/guppy_6/07_20_21_R941_HG02602_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,63732.0,Similar,HG02602,HG02602,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02602,SAMN26237507,PK09,PJL,SAS,YR2 -8.59,0.0,0.92,0.07,0.01,0.0,N/A,92.07,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.9,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02615_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02615_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.28681,s3://human-pangenomics/working/HPRC/HG02615/raw_data/nanopore/guppy_6/07_20_21_R941_HG02615_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,70878.0,Similar,HG02615,HG02615,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02615,SAMN26237508,GB29,GWD,AFR,YR2 -8.96,0.0,0.98,0.09,0.01,0.0,N/A,97.5,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,29.54,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02615_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02615_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.282447,s3://human-pangenomics/working/HPRC/HG02615/raw_data/nanopore/guppy_6/07_20_21_R941_HG02615_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,70070.0,Similar,HG02615,HG02615,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02615,SAMN26237508,GB29,GWD,AFR,YR2 -3.37,0.0,0.4,0.04,0.01,0.0,N/A,37.46,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,11.35,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02615_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02615_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.352641,s3://human-pangenomics/working/HPRC/HG02615/raw_data/nanopore/guppy_6/07_20_21_R941_HG02615_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,68679.0,Similar,HG02615,HG02615,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02615,SAMN26237508,GB29,GWD,AFR,YR2 -4.43,0.0,0.26,0.02,0.0,0.0,N/A,54.64,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,16.56,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02668_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02668_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.330569,s3://human-pangenomics/working/HPRC/HG02668/raw_data/nanopore/guppy_6/07_20_21_R941_HG02668_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,67467.0,Similar,HG02668,HG02668,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02668,SAMN37706906,GB40,GWD,AFR,YR2 -5.95,0.0,0.4,0.04,0.01,0.0,N/A,69.45,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.05,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02668_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02668_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.319356,s3://human-pangenomics/working/HPRC/HG02668/raw_data/nanopore/guppy_6/07_20_21_R941_HG02668_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,69535.0,Similar,HG02668,HG02668,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02668,SAMN37706906,GB40,GWD,AFR,YR2 -4.42,0.0,0.33,0.04,0.01,0.0,N/A,54.16,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,16.41,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02668_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02668_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.343288,s3://human-pangenomics/working/HPRC/HG02668/raw_data/nanopore/guppy_6/07_20_21_R941_HG02668_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,67023.0,Similar,HG02668,HG02668,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02668,SAMN37706906,GB40,GWD,AFR,YR2 -9.89,0.0,0.7,0.08,0.02,0.0,N/A,114.21,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,34.61,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02698_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02698_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.271365,s3://human-pangenomics/working/HPRC/HG02698/raw_data/nanopore/guppy_6/07_20_21_R941_HG02698_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,70225.0,Similar,HG02698,HG02698,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02698,SAMN26237509,PK21,PJL,SAS,YR2 -1.95,0.0,0.14,0.02,0.0,0.0,N/A,23.99,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,7.27,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02698_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02698_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.389891,s3://human-pangenomics/working/HPRC/HG02698/raw_data/nanopore/guppy_6/07_20_21_R941_HG02698_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,67825.0,Similar,HG02698,HG02698,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02698,SAMN26237509,PK21,PJL,SAS,YR2 -1.79,0.0,0.17,0.03,0.01,0.0,N/A,23.2,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,7.03,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02698_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02698_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.39883,s3://human-pangenomics/working/HPRC/HG02698/raw_data/nanopore/guppy_6/07_20_21_R941_HG02698_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,64031.0,Similar,HG02698,HG02698,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02698,SAMN26237509,PK21,PJL,SAS,YR2 -7.5,0.0,0.55,0.07,0.01,0.0,N/A,91.79,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.81,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02698_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02698_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.316759,s3://human-pangenomics/working/HPRC/HG02698/raw_data/nanopore/guppy_6/07_20_21_R941_HG02698_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,67680.0,Similar,HG02698,HG02698,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02698,SAMN26237509,PK21,PJL,SAS,YR2 -1.6,0.0,0.12,0.02,0.0,0.0,N/A,19.6,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,5.94,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG02698_5_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG02698_5,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.370307,s3://human-pangenomics/working/HPRC/HG02698/raw_data/nanopore/guppy_6/07_20_21_R941_HG02698_5_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,67466.0,Similar,HG02698,HG02698,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02698,SAMN26237509,PK21,PJL,SAS,YR2 -8.19,0.0,1.64,0.44,0.15,0.06,N/A,83.88,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.42,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03710_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03710_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.315969,s3://human-pangenomics/working/HPRC/HG03710/raw_data/nanopore/guppy_6/07_20_21_R941_HG03710_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,70962.0,Similar,HG03710,HG03710,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,9.0,HG03710,SAMN26237513,PK62,PJL,SAS,YR2 -0.72,0.0,0.16,0.05,0.02,0.01,N/A,7.22,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,2.19,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03710_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03710_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.53917,s3://human-pangenomics/working/HPRC/HG03710/raw_data/nanopore/guppy_6/07_20_21_R941_HG03710_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,72459.0,Similar,HG03710,HG03710,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG03710,SAMN26237513,PK62,PJL,SAS,YR2 -10.03,0.01,2.04,0.58,0.21,0.09,N/A,100.83,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,30.55,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03710_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03710_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.326694,s3://human-pangenomics/working/HPRC/HG03710/raw_data/nanopore/guppy_6/07_20_21_R941_HG03710_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,71735.0,Similar,HG03710,HG03710,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,14.0,HG03710,SAMN26237513,PK62,PJL,SAS,YR2 -2.9,0.0,0.47,0.08,0.02,0.01,N/A,29.92,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,9.07,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03710_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03710_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.382901,s3://human-pangenomics/working/HPRC/HG03710/raw_data/nanopore/guppy_6/07_20_21_R941_HG03710_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,71374.0,Similar,HG03710,HG03710,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG03710,SAMN26237513,PK62,PJL,SAS,YR2 -13.09,0.0,2.51,0.33,0.05,0.02,N/A,105.33,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,31.92,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03804_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03804_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.348398,s3://human-pangenomics/working/HPRC/HG03804/raw_data/nanopore/guppy_6/07_20_21_R941_HG03804_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,84812.0,Similar,HG03804,HG03804,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG03804,SAMN37706907,BD18,BEB,SAS,YR2 -11.27,0.0,2.13,0.3,0.05,0.01,N/A,92.91,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,28.16,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03804_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03804_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.371964,s3://human-pangenomics/working/HPRC/HG03804/raw_data/nanopore/guppy_6/07_20_21_R941_HG03804_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,83161.0,Similar,HG03804,HG03804,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG03804,SAMN37706907,BD18,BEB,SAS,YR2 -13.44,0.0,2.85,0.51,0.12,0.03,N/A,106.31,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,32.21,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03804_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03804_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.359278,s3://human-pangenomics/working/HPRC/HG03804/raw_data/nanopore/guppy_6/07_20_21_R941_HG03804_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,85557.0,Similar,HG03804,HG03804,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG03804,SAMN37706907,BD18,BEB,SAS,YR2 -8.56,0.0,1.66,0.48,0.17,0.06,N/A,95.51,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,28.94,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03816_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03816_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.362723,s3://human-pangenomics/working/HPRC/HG03816/raw_data/nanopore/guppy_6/07_20_21_R941_HG03816_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,67158.0,Similar,HG03816,HG03816,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,9.0,HG03816,SAMN37706908,BD22,BEB,SAS,YR2 -6.47,0.0,1.24,0.35,0.12,0.05,N/A,67.87,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.57,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03816_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03816_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.369259,s3://human-pangenomics/working/HPRC/HG03816/raw_data/nanopore/guppy_6/07_20_21_R941_HG03816_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,71008.0,Similar,HG03816,HG03816,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,12.0,HG03816,SAMN37706908,BD22,BEB,SAS,YR2 -9.29,0.0,1.73,0.44,0.13,0.05,N/A,99.03,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,30.01,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03816_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03816_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.358974,s3://human-pangenomics/working/HPRC/HG03816/raw_data/nanopore/guppy_6/07_20_21_R941_HG03816_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,70485.0,Similar,HG03816,HG03816,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,4.0,HG03816,SAMN37706908,BD22,BEB,SAS,YR2 -1.32,0.0,0.1,0.01,0.0,0.0,N/A,15.74,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,4.77,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03942_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03942_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.458215,s3://human-pangenomics/working/HPRC/HG03942/raw_data/nanopore/guppy_6/07_20_21_R941_HG03942_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,66391.0,Similar,HG03942,HG03942,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG03942,SAMN26267387,BD42,BEB,SAS,YR2 -8.18,0.0,0.7,0.06,0.01,0.0,N/A,95.93,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,29.07,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03942_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03942_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.329795,s3://human-pangenomics/working/HPRC/HG03942/raw_data/nanopore/guppy_6/07_20_21_R941_HG03942_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,66610.0,Similar,HG03942,HG03942,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG03942,SAMN26267387,BD42,BEB,SAS,YR2 -5.72,0.0,0.51,0.05,0.01,0.0,N/A,70.83,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.46,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_20_21_R941_HG03942_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_20_21_R941_HG03942_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.33346,s3://human-pangenomics/working/HPRC/HG03942/raw_data/nanopore/guppy_6/07_20_21_R941_HG03942_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,63707.0,Similar,HG03942,HG03942,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG03942,SAMN26267387,BD42,BEB,SAS,YR2 -13.91,0.0,2.7,0.43,0.07,0.02,N/A,112.85,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,34.2,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG00408_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG00408_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.330454,s3://human-pangenomics/working/HPRC/HG00408/raw_data/nanopore/guppy_6/07_27_21_R941_HG00408_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,84313.0,Similar,HG00408,HG00408,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG00408,SAMN33621943,SH002,CHS,EAS,YR3 -5.05,0.0,1.09,0.22,0.05,0.01,N/A,40.67,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,12.32,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG00408_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG00408_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.375213,s3://human-pangenomics/working/HPRC/HG00408/raw_data/nanopore/guppy_6/07_27_21_R941_HG00408_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,84178.0,Similar,HG00408,HG00408,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG00408,SAMN33621943,SH002,CHS,EAS,YR3 -9.57,0.0,1.95,0.37,0.08,0.02,N/A,83.06,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.17,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG00408_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG00408_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.341721,s3://human-pangenomics/working/HPRC/HG00408/raw_data/nanopore/guppy_6/07_27_21_R941_HG00408_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,79492.0,Similar,HG00408,HG00408,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG00408,SAMN33621943,SH002,CHS,EAS,YR3 -12.58,0.0,1.95,0.36,0.1,0.03,N/A,117.05,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,35.47,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG00597_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG00597_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.312985,s3://human-pangenomics/working/HPRC/HG00597/raw_data/nanopore/guppy_6/07_27_21_R941_HG00597_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,77949.0,Similar,HG00597,HG00597,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 -12.95,0.0,2.1,0.43,0.11,0.03,N/A,119.79,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,36.3,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG00597_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG00597_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.338146,s3://human-pangenomics/working/HPRC/HG00597/raw_data/nanopore/guppy_6/07_27_21_R941_HG00597_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,77976.0,Similar,HG00597,HG00597,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 -1.44,0.0,0.21,0.03,0.01,0.0,N/A,14.19,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,4.3,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG00597_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG00597_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.453926,s3://human-pangenomics/working/HPRC/HG00597/raw_data/nanopore/guppy_6/07_27_21_R941_HG00597_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,74934.0,Similar,HG00597,HG00597,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 -2.6,0.0,0.39,0.06,0.01,0.0,N/A,23.87,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,7.23,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG00597_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG00597_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.413863,s3://human-pangenomics/working/HPRC/HG00597/raw_data/nanopore/guppy_6/07_27_21_R941_HG00597_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,78817.0,Similar,HG00597,HG00597,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 -3.5,0.0,0.39,0.05,0.01,0.0,N/A,56.96,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,17.26,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG01261_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG01261_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.358418,s3://human-pangenomics/working/HPRC/HG01261/raw_data/nanopore/guppy_6/07_27_21_R941_HG01261_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,48175.0,Similar,HG01261,HG01261,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 -8.6,0.0,0.96,0.11,0.03,0.01,N/A,85.3,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.85,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG01261_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG01261_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.351018,s3://human-pangenomics/working/HPRC/HG01261/raw_data/nanopore/guppy_6/07_27_21_R941_HG01261_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,74715.0,Similar,HG01261,HG01261,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 -7.81,0.0,0.86,0.1,0.02,0.01,N/A,76.83,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,23.28,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG01261_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG01261_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.321985,s3://human-pangenomics/working/HPRC/HG01261/raw_data/nanopore/guppy_6/07_27_21_R941_HG01261_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,75397.0,Similar,HG01261,HG01261,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,5.0,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 -11.87,0.0,2.26,0.24,0.03,0.0,N/A,86.8,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,26.3,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG01934_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG01934_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.301812,s3://human-pangenomics/working/HPRC/HG01934/raw_data/nanopore/guppy_6/07_27_21_R941_HG01934_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,91931.0,Similar,HG01934,HG01934,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG01934,SAMN26237498,PEL013,PEL,AMR,YR2 -1.2,0.0,0.24,0.03,0.0,0.0,N/A,9.09,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,2.75,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG01934_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG01934_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.513319,s3://human-pangenomics/working/HPRC/HG01934/raw_data/nanopore/guppy_6/07_27_21_R941_HG01934_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,89234.0,Similar,HG01934,HG01934,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG01934,SAMN26237498,PEL013,PEL,AMR,YR2 -12.35,0.0,2.44,0.29,0.04,0.01,N/A,91.37,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,27.69,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG01934_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG01934_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.304109,s3://human-pangenomics/working/HPRC/HG01934/raw_data/nanopore/guppy_6/07_27_21_R941_HG01934_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,90878.0,Similar,HG01934,HG01934,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG01934,SAMN26237498,PEL013,PEL,AMR,YR2 -8.21,0.0,1.59,0.2,0.03,0.0,N/A,62.23,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,18.86,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG01934_4_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG01934_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.350033,s3://human-pangenomics/working/HPRC/HG01934/raw_data/nanopore/guppy_6/07_27_21_R941_HG01934_4_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,89331.0,Similar,HG01934,HG01934,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG01934,SAMN26237498,PEL013,PEL,AMR,YR2 -5.72,0.0,0.78,0.08,0.02,0.01,N/A,46.03,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,13.95,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG03654_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG03654_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.365241,s3://human-pangenomics/working/HPRC/HG03654/raw_data/nanopore/guppy_6/07_27_21_R941_HG03654_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,86618.0,Similar,HG03654,HG03654,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG03654,SAMN26237511,PK53,PJL,SAS,YR2 -9.29,0.0,1.36,0.17,0.05,0.02,N/A,74.33,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.53,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG03654_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG03654_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.310269,s3://human-pangenomics/working/HPRC/HG03654/raw_data/nanopore/guppy_6/07_27_21_R941_HG03654_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,86774.0,Similar,HG03654,HG03654,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,5.0,HG03654,SAMN26237511,PK53,PJL,SAS,YR2 -9.41,0.0,1.4,0.19,0.05,0.02,N/A,75.59,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.91,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG03654_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG03654_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.318698,s3://human-pangenomics/working/HPRC/HG03654/raw_data/nanopore/guppy_6/07_27_21_R941_HG03654_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,86618.0,Similar,HG03654,HG03654,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG03654,SAMN26237511,PK53,PJL,SAS,YR2 -9.12,0.0,0.78,0.06,0.01,0.0,N/A,82.25,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.92,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG03669_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG03669_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.283215,s3://human-pangenomics/working/HPRC/HG03669/raw_data/nanopore/guppy_6/07_27_21_R941_HG03669_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,81595.0,Similar,HG03669,HG03669,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG03669,SAMN26237512,PK58,PJL,SAS,YR2 -1.12,0.0,0.08,0.0,0.0,0.0,N/A,11.04,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,3.34,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG03669_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG03669_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.507088,s3://human-pangenomics/working/HPRC/HG03669/raw_data/nanopore/guppy_6/07_27_21_R941_HG03669_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,77047.0,Similar,HG03669,HG03669,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG03669,SAMN26237512,PK58,PJL,SAS,YR2 -8.62,0.0,0.72,0.06,0.01,0.0,N/A,83.29,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.24,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG03669_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG03669_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.340057,s3://human-pangenomics/working/HPRC/HG03669/raw_data/nanopore/guppy_6/07_27_21_R941_HG03669_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,78086.0,Similar,HG03669,HG03669,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG03669,SAMN26237512,PK58,PJL,SAS,YR2 -2.58,0.0,0.19,0.01,0.0,0.0,N/A,24.32,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,7.37,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG03669_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG03669_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.418265,s3://human-pangenomics/working/HPRC/HG03669/raw_data/nanopore/guppy_6/07_27_21_R941_HG03669_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,79377.0,Similar,HG03669,HG03669,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG03669,SAMN26237512,PK58,PJL,SAS,YR2 -8.59,0.0,1.47,0.28,0.08,0.03,N/A,70.9,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.49,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG03688_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG03688_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.334326,s3://human-pangenomics/working/HPRC/HG03688/raw_data/nanopore/guppy_6/07_27_21_R941_HG03688_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,84574.0,Similar,HG03688,HG03688,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,5.0,HG03688,SAMN26267385,ST016,STU,SAS,YR2 -10.54,0.0,1.38,0.19,0.05,0.01,N/A,90.13,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.31,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG03688_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG03688_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.342356,s3://human-pangenomics/working/HPRC/HG03688/raw_data/nanopore/guppy_6/07_27_21_R941_HG03688_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,83458.0,Similar,HG03688,HG03688,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG03688,SAMN26267385,ST016,STU,SAS,YR2 -8.63,0.0,1.01,0.12,0.02,0.01,N/A,79.27,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.02,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG03688_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG03688_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.323537,s3://human-pangenomics/working/HPRC/HG03688/raw_data/nanopore/guppy_6/07_27_21_R941_HG03688_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,79602.0,Similar,HG03688,HG03688,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG03688,SAMN26267385,ST016,STU,SAS,YR2 -2.99,0.0,0.46,0.09,0.02,0.01,N/A,27.22,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,8.25,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG04115_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG04115_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.392543,s3://human-pangenomics/working/HPRC/HG04115/raw_data/nanopore/guppy_6/07_27_21_R941_HG04115_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,79209.0,Similar,HG04115,HG04115,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG04115,SAMN26267388,ST111,STU,SAS,YR2 -6.57,0.0,1.13,0.25,0.07,0.02,N/A,58.04,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,17.59,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG04115_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG04115_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.274663,s3://human-pangenomics/working/HPRC/HG04115/raw_data/nanopore/guppy_6/07_27_21_R941_HG04115_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,80416.0,Similar,HG04115,HG04115,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,4.0,HG04115,SAMN26267388,ST111,STU,SAS,YR2 -2.6,0.0,0.41,0.09,0.03,0.01,N/A,24.85,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,7.53,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG04115_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG04115_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.399528,s3://human-pangenomics/working/HPRC/HG04115/raw_data/nanopore/guppy_6/07_27_21_R941_HG04115_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,76195.0,Similar,HG04115,HG04115,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG04115,SAMN26267388,ST111,STU,SAS,YR2 -5.47,0.0,0.86,0.17,0.04,0.01,N/A,49.13,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,14.89,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG04115_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG04115_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.348811,s3://human-pangenomics/working/HPRC/HG04115/raw_data/nanopore/guppy_6/07_27_21_R941_HG04115_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,79848.0,Similar,HG04115,HG04115,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG04115,SAMN26267388,ST111,STU,SAS,YR2 -2.84,0.0,0.48,0.1,0.03,0.01,N/A,25.3,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,7.67,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,07_27_21_R941_HG04115_5_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,07_27_21_R941_HG04115_5,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.422534,s3://human-pangenomics/working/HPRC/HG04115/raw_data/nanopore/guppy_6/07_27_21_R941_HG04115_5_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,80123.0,Similar,HG04115,HG04115,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG04115,SAMN26267388,ST111,STU,SAS,YR2 -3.64,0.0,0.54,0.13,0.04,0.02,N/A,35.44,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,10.74,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG01960_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG01960_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.354958,s3://human-pangenomics/working/HPRC/HG01960/raw_data/nanopore/guppy_6/08_03_21_R941_HG01960_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,76744.0,Similar,HG01960,HG01960,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG01960,SAMN37797102,BB11,ACB,AFR,YR3 -9.21,0.0,1.45,0.36,0.12,0.05,N/A,92.37,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.99,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG01960_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG01960_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.292281,s3://human-pangenomics/working/HPRC/HG01960/raw_data/nanopore/guppy_6/08_03_21_R941_HG01960_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,74685.0,Similar,HG01960,HG01960,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,12.0,HG01960,SAMN37797102,BB11,ACB,AFR,YR3 -2.35,0.0,0.38,0.1,0.04,0.02,N/A,24.12,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,7.31,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG01960_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG01960_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.423853,s3://human-pangenomics/working/HPRC/HG01960/raw_data/nanopore/guppy_6/08_03_21_R941_HG01960_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,73518.0,Similar,HG01960,HG01960,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG01960,SAMN37797102,BB11,ACB,AFR,YR3 -0.98,0.0,0.12,0.02,0.0,0.0,N/A,10.09,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,3.06,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG01960_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG01960_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.473214,s3://human-pangenomics/working/HPRC/HG01960/raw_data/nanopore/guppy_6/08_03_21_R941_HG01960_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,74432.0,Similar,HG01960,HG01960,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG01960,SAMN37797102,BB11,ACB,AFR,YR3 -12.71,0.0,2.22,0.3,0.06,0.02,N/A,109.15,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,33.07,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG01975_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG01975_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.27161,s3://human-pangenomics/working/HPRC/HG01975/raw_data/nanopore/guppy_6/08_03_21_R941_HG01975_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,80551.0,Similar,HG01975,HG01975,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 -8.55,0.0,1.42,0.17,0.03,0.01,N/A,74.02,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.43,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG01975_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG01975_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.305576,s3://human-pangenomics/working/HPRC/HG01975/raw_data/nanopore/guppy_6/08_03_21_R941_HG01975_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,80419.0,Similar,HG01975,HG01975,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 -8.03,0.0,1.24,0.13,0.02,0.01,N/A,75.67,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.93,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG01975_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG01975_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.291271,s3://human-pangenomics/working/HPRC/HG01975/raw_data/nanopore/guppy_6/08_03_21_R941_HG01975_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,75260.0,Similar,HG01975,HG01975,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 -7.23,0.0,0.81,0.04,0.01,0.0,N/A,63.15,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.14,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG02841_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG02841_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.296905,s3://human-pangenomics/working/HPRC/HG02841/raw_data/nanopore/guppy_6/08_03_21_R941_HG02841_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,81577.0,Similar,HG02841,HG02841,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 -5.04,0.0,0.58,0.04,0.01,0.0,N/A,45.81,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,13.88,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG02841_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG02841_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.325085,s3://human-pangenomics/working/HPRC/HG02841/raw_data/nanopore/guppy_6/08_03_21_R941_HG02841_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,79068.0,Similar,HG02841,HG02841,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 -9.73,0.0,1.3,0.16,0.05,0.01,N/A,87.47,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.51,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG02841_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG02841_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.303632,s3://human-pangenomics/working/HPRC/HG02841/raw_data/nanopore/guppy_6/08_03_21_R941_HG02841_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,79315.0,Similar,HG02841,HG02841,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 -11.21,0.0,2.15,0.54,0.15,0.05,N/A,101.85,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,30.86,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG02984_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG02984_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.314809,s3://human-pangenomics/working/HPRC/HG02984/raw_data/nanopore/guppy_6/08_03_21_R941_HG02984_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,78236.0,Similar,HG02984,HG02984,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 -7.53,0.0,1.42,0.36,0.11,0.04,N/A,76.68,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,23.24,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG02984_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG02984_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.314432,s3://human-pangenomics/working/HPRC/HG02984/raw_data/nanopore/guppy_6/08_03_21_R941_HG02984_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,71722.0,Similar,HG02984,HG02984,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,5.0,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 -3.66,0.0,0.7,0.18,0.06,0.02,N/A,34.98,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,10.6,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG02984_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG02984_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.339783,s3://human-pangenomics/working/HPRC/HG02984/raw_data/nanopore/guppy_6/08_03_21_R941_HG02984_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,74982.0,Similar,HG02984,HG02984,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 -2.5,0.0,0.5,0.14,0.04,0.01,N/A,21.96,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,6.65,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG02984_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG02984_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.390259,s3://human-pangenomics/working/HPRC/HG02984/raw_data/nanopore/guppy_6/08_03_21_R941_HG02984_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,79486.0,Similar,HG02984,HG02984,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 -10.29,0.0,1.24,0.16,0.04,0.01,N/A,97.61,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,29.58,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG04157_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG04157_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.277016,s3://human-pangenomics/working/HPRC/HG04157/raw_data/nanopore/guppy_6/08_03_21_R941_HG04157_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,76817.0,Similar,HG04157,HG04157,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG04157,SAMN37706909,BD52,BEB,SAS,YR2 -11.03,0.0,1.37,0.18,0.05,0.02,N/A,106.58,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,32.3,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG04157_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG04157_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.335831,s3://human-pangenomics/working/HPRC/HG04157/raw_data/nanopore/guppy_6/08_03_21_R941_HG04157_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,75575.0,Similar,HG04157,HG04157,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG04157,SAMN37706909,BD52,BEB,SAS,YR2 -8.01,0.0,1.1,0.21,0.07,0.03,N/A,78.71,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,23.85,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG04157_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG04157_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.284331,s3://human-pangenomics/working/HPRC/HG04157/raw_data/nanopore/guppy_6/08_03_21_R941_HG04157_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,74339.0,Similar,HG04157,HG04157,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG04157,SAMN37706909,BD52,BEB,SAS,YR2 -6.44,0.0,0.49,0.05,0.01,0.0,N/A,75.69,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.94,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG04160_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG04160_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.329487,s3://human-pangenomics/working/HPRC/HG04160/raw_data/nanopore/guppy_6/08_03_21_R941_HG04160_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,69217.0,Similar,HG04160,HG04160,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG04160,SAMN37706910,BD53,BEB,SAS,YR2 -6.86,0.0,0.53,0.07,0.01,0.0,N/A,80.9,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.52,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG04160_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG04160_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.361508,s3://human-pangenomics/working/HPRC/HG04160/raw_data/nanopore/guppy_6/08_03_21_R941_HG04160_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,68811.0,Similar,HG04160,HG04160,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG04160,SAMN37706910,BD53,BEB,SAS,YR2 -6.75,0.0,0.55,0.07,0.02,0.0,N/A,81.77,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.78,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_03_21_R941_HG04160_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_03_21_R941_HG04160_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.385452,s3://human-pangenomics/working/HPRC/HG04160/raw_data/nanopore/guppy_6/08_03_21_R941_HG04160_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,67552.0,Similar,HG04160,HG04160,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG04160,SAMN37706910,BD53,BEB,SAS,YR2 -8.82,0.0,0.89,0.18,0.06,0.02,N/A,93.22,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,28.25,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG00609_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG00609_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.303564,s3://human-pangenomics/working/HPRC/HG00609/raw_data/nanopore/guppy_6/08_10_21_R941_HG00609_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,73742.0,Similar,HG00609,HG00609,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,4.0,HG00609,SAMN26237492,SH062,CHS,EAS,YR2 -10.45,0.0,1.08,0.2,0.07,0.02,N/A,106.08,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,32.14,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG00609_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG00609_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.323289,s3://human-pangenomics/working/HPRC/HG00609/raw_data/nanopore/guppy_6/08_10_21_R941_HG00609_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,75448.0,Similar,HG00609,HG00609,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG00609,SAMN26237492,SH062,CHS,EAS,YR2 -9.09,0.0,0.98,0.19,0.05,0.02,N/A,94.9,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,28.76,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG00609_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG00609_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.331212,s3://human-pangenomics/working/HPRC/HG00609/raw_data/nanopore/guppy_6/08_10_21_R941_HG00609_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,73789.0,Similar,HG00609,HG00609,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG00609,SAMN26237492,SH062,CHS,EAS,YR2 -8.67,0.01,2.06,0.42,0.13,0.07,N/A,60.56,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,18.35,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG00642_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG00642_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.295302,s3://human-pangenomics/working/HPRC/HG00642/raw_data/nanopore/guppy_6/08_10_21_R941_HG00642_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,94988.0,Similar,HG00642,HG00642,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,23.0,HG00642,SAMN26267378,PR04,PUR,AMR,YR2 -10.52,0.0,2.52,0.47,0.13,0.05,N/A,68.63,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.8,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG00642_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG00642_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.34542,s3://human-pangenomics/working/HPRC/HG00642/raw_data/nanopore/guppy_6/08_10_21_R941_HG00642_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,101008.0,Similar,HG00642,HG00642,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,7.0,HG00642,SAMN26267378,PR04,PUR,AMR,YR2 -13.15,0.0,2.93,0.53,0.15,0.06,N/A,91.35,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.68,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG00642_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG00642_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.350263,s3://human-pangenomics/working/HPRC/HG00642/raw_data/nanopore/guppy_6/08_10_21_R941_HG00642_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,95618.0,Similar,HG00642,HG00642,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,5.0,HG00642,SAMN26267378,PR04,PUR,AMR,YR2 -7.9,0.0,0.93,0.19,0.07,0.03,N/A,79.51,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,24.09,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG01099_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG01099_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.319944,s3://human-pangenomics/working/HPRC/HG01099/raw_data/nanopore/guppy_6/08_10_21_R941_HG01099_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,74857.0,Similar,HG01099,HG01099,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,6.0,HG01099,SAMN26237494,PR31,PUR,AMR,YR2 -8.39,0.0,0.91,0.16,0.05,0.02,N/A,84.33,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,25.55,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG01099_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG01099_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.315749,s3://human-pangenomics/working/HPRC/HG01099/raw_data/nanopore/guppy_6/08_10_21_R941_HG01099_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,75225.0,Similar,HG01099,HG01099,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG01099,SAMN26237494,PR31,PUR,AMR,YR2 -6.6,0.0,0.75,0.13,0.04,0.01,N/A,65.67,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,19.9,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG01099_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG01099_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.29249,s3://human-pangenomics/working/HPRC/HG01099/raw_data/nanopore/guppy_6/08_10_21_R941_HG01099_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,75724.0,Similar,HG01099,HG01099,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG01099,SAMN26237494,PR31,PUR,AMR,YR2 -7.9,0.0,0.75,0.17,0.06,0.02,N/A,104.5,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,31.67,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG01433_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG01433_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.327795,s3://human-pangenomics/working/HPRC/HG01433/raw_data/nanopore/guppy_6/08_10_21_R941_HG01433_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,67193.0,Similar,HG01433,HG01433,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,5.0,HG01433,SAMN26237496,CLM43,CLM,AMR,YR2 -6.07,0.0,0.48,0.1,0.03,0.01,N/A,81.82,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,24.79,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG01433_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG01433_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.28057,s3://human-pangenomics/working/HPRC/HG01433/raw_data/nanopore/guppy_6/08_10_21_R941_HG01433_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,67405.0,Similar,HG01433,HG01433,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG01433,SAMN26237496,CLM43,CLM,AMR,YR2 -5.92,0.0,0.48,0.09,0.03,0.01,N/A,80.97,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,24.54,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG01433_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG01433_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.348327,s3://human-pangenomics/working/HPRC/HG01433/raw_data/nanopore/guppy_6/08_10_21_R941_HG01433_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,66723.0,Similar,HG01433,HG01433,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG01433,SAMN26237496,CLM43,CLM,AMR,YR2 -9.14,0.0,1.31,0.19,0.06,0.02,N/A,81.17,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,24.6,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG01993_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG01993_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.357558,s3://human-pangenomics/working/HPRC/HG01993/raw_data/nanopore/guppy_6/08_10_21_R941_HG01993_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,79775.0,Similar,HG01993,HG01993,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,6.0,HG01993,SAMN26237501,PEL29,PEL,AMR,YR2 -14.08,0.0,2.34,0.41,0.13,0.05,N/A,117.99,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,35.76,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG01993_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG01993_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.337567,s3://human-pangenomics/working/HPRC/HG01993/raw_data/nanopore/guppy_6/08_10_21_R941_HG01993_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,83016.0,Similar,HG01993,HG01993,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG01993,SAMN26237501,PEL29,PEL,AMR,YR2 -13.81,0.0,2.59,0.58,0.2,0.08,N/A,114.71,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,34.76,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG01993_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG01993_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.346723,s3://human-pangenomics/working/HPRC/HG01993/raw_data/nanopore/guppy_6/08_10_21_R941_HG01993_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,83178.0,Similar,HG01993,HG01993,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,4.0,HG01993,SAMN26237501,PEL29,PEL,AMR,YR2 -3.34,0.01,0.66,0.2,0.09,0.05,N/A,35.55,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,10.77,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG02647_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG02647_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.364914,s3://human-pangenomics/working/HPRC/HG02647/raw_data/nanopore/guppy_6/08_10_21_R941_HG02647_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,67975.0,Similar,HG02647,HG02647,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,22.0,HG02647,SAMN26267383,GB38,GWD,AFR,YR2 -5.9,0.0,0.94,0.18,0.06,0.03,N/A,57.79,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,17.51,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG02647_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG02647_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.293523,s3://human-pangenomics/working/HPRC/HG02647/raw_data/nanopore/guppy_6/08_10_21_R941_HG02647_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,74826.0,Similar,HG02647,HG02647,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,5.0,HG02647,SAMN26267383,GB38,GWD,AFR,YR2 -6.51,0.0,0.95,0.16,0.04,0.01,N/A,63.43,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.22,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG02647_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG02647_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.272442,s3://human-pangenomics/working/HPRC/HG02647/raw_data/nanopore/guppy_6/08_10_21_R941_HG02647_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,75914.0,Similar,HG02647,HG02647,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG02647,SAMN26267383,GB38,GWD,AFR,YR2 -1.24,0.0,0.19,0.04,0.01,0.0,N/A,11.54,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,3.5,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG02647_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG02647_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.472454,s3://human-pangenomics/working/HPRC/HG02647/raw_data/nanopore/guppy_6/08_10_21_R941_HG02647_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,78171.0,Similar,HG02647,HG02647,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02647,SAMN26267383,GB38,GWD,AFR,YR2 -9.56,0.0,1.72,0.3,0.07,0.02,N/A,84.42,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.58,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG03831_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG03831_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.312214,s3://human-pangenomics/working/HPRC/HG03831/raw_data/nanopore/guppy_6/08_10_21_R941_HG03831_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,79360.0,Similar,HG03831,HG03831,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG03831,SAMN26237514,BD27,BEB,SAS,YR2 -9.89,0.0,1.63,0.23,0.04,0.01,N/A,85.9,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.03,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG03831_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG03831_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.324472,s3://human-pangenomics/working/HPRC/HG03831/raw_data/nanopore/guppy_6/08_10_21_R941_HG03831_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,81179.0,Similar,HG03831,HG03831,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG03831,SAMN26237514,BD27,BEB,SAS,YR2 -10.65,0.0,1.95,0.35,0.08,0.02,N/A,93.08,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,28.21,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG03831_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG03831_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.324669,s3://human-pangenomics/working/HPRC/HG03831/raw_data/nanopore/guppy_6/08_10_21_R941_HG03831_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,80227.0,Similar,HG03831,HG03831,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG03831,SAMN26237514,BD27,BEB,SAS,YR2 -4.52,0.0,0.77,0.1,0.02,0.0,N/A,40.5,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,12.27,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG03927_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG03927_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.403406,s3://human-pangenomics/working/HPRC/HG03927/raw_data/nanopore/guppy_6/08_10_21_R941_HG03927_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,78594.0,Similar,HG03927,HG03927,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG03927,SAMN26267386,BD37,BEB,SAS,YR2 -8.6,0.0,1.43,0.2,0.04,0.01,N/A,75.61,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.91,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG03927_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG03927_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.318072,s3://human-pangenomics/working/HPRC/HG03927/raw_data/nanopore/guppy_6/08_10_21_R941_HG03927_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,80348.0,Similar,HG03927,HG03927,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,4.0,HG03927,SAMN26267386,BD37,BEB,SAS,YR2 -10.7,0.0,1.88,0.26,0.05,0.02,N/A,88.3,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.76,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG03927_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG03927_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.361284,s3://human-pangenomics/working/HPRC/HG03927/raw_data/nanopore/guppy_6/08_10_21_R941_HG03927_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,84221.0,Similar,HG03927,HG03927,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG03927,SAMN26267386,BD37,BEB,SAS,YR2 -2.83,0.0,0.3,0.03,0.0,0.0,N/A,25.66,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,7.78,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04187_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04187_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.399721,s3://human-pangenomics/working/HPRC/HG04187/raw_data/nanopore/guppy_6/08_10_21_R941_HG04187_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,80040.0,Similar,HG04187,HG04187,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG04187,SAMN37706911,BD62,BEB,SAS,YR2 -6.95,0.0,0.76,0.07,0.02,0.01,N/A,66.07,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.02,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04187_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04187_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.336445,s3://human-pangenomics/working/HPRC/HG04187/raw_data/nanopore/guppy_6/08_10_21_R941_HG04187_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,77575.0,Similar,HG04187,HG04187,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG04187,SAMN37706911,BD62,BEB,SAS,YR2 -6.19,0.0,0.71,0.08,0.02,0.01,N/A,60.84,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.44,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04187_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04187_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.329922,s3://human-pangenomics/working/HPRC/HG04187/raw_data/nanopore/guppy_6/08_10_21_R941_HG04187_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,75818.0,Similar,HG04187,HG04187,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG04187,SAMN37706911,BD62,BEB,SAS,YR2 -0.31,0.0,0.03,0.0,0.0,0.0,N/A,2.82,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,0.86,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04187_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04187_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.679294,s3://human-pangenomics/working/HPRC/HG04187/raw_data/nanopore/guppy_6/08_10_21_R941_HG04187_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,79819.0,Similar,HG04187,HG04187,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG04187,SAMN37706911,BD62,BEB,SAS,YR2 -11.2,0.0,1.59,0.3,0.08,0.03,N/A,95.87,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,29.05,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04199_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04199_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.300183,s3://human-pangenomics/working/HPRC/HG04199/raw_data/nanopore/guppy_6/08_10_21_R941_HG04199_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,83714.0,Similar,HG04199,HG04199,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG04199,SAMN26267389,ST203,STU,SAS,YR2 -4.58,0.0,0.63,0.12,0.04,0.01,N/A,41.26,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,12.5,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04199_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04199_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.366146,s3://human-pangenomics/working/HPRC/HG04199/raw_data/nanopore/guppy_6/08_10_21_R941_HG04199_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,80766.0,Similar,HG04199,HG04199,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG04199,SAMN26267389,ST203,STU,SAS,YR2 -5.55,0.0,0.64,0.1,0.02,0.01,N/A,60.89,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.45,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04199_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04199_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.337721,s3://human-pangenomics/working/HPRC/HG04199/raw_data/nanopore/guppy_6/08_10_21_R941_HG04199_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,71491.0,Similar,HG04199,HG04199,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG04199,SAMN26267389,ST203,STU,SAS,YR2 -11.74,0.0,1.6,0.22,0.07,0.03,N/A,93.56,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,28.35,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04204_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04204_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.322726,s3://human-pangenomics/working/HPRC/HG04204/raw_data/nanopore/guppy_6/08_10_21_R941_HG04204_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,87228.0,Similar,HG04204,HG04204,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,5.0,HG04204,SAMN26267390,ST006,STU,SAS,YR2 -8.43,0.0,1.17,0.17,0.05,0.02,N/A,70.98,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.51,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04204_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04204_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.308884,s3://human-pangenomics/working/HPRC/HG04204/raw_data/nanopore/guppy_6/08_10_21_R941_HG04204_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,83571.0,Similar,HG04204,HG04204,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG04204,SAMN26267390,ST006,STU,SAS,YR2 -3.19,0.0,0.41,0.06,0.02,0.01,N/A,27.6,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,8.36,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04204_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04204_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.38478,s3://human-pangenomics/working/HPRC/HG04204/raw_data/nanopore/guppy_6/08_10_21_R941_HG04204_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,82249.0,Similar,HG04204,HG04204,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG04204,SAMN26267390,ST006,STU,SAS,YR2 -10.71,0.0,1.93,0.4,0.1,0.03,N/A,100.06,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,30.32,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04228_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04228_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.313973,s3://human-pangenomics/working/HPRC/HG04228/raw_data/nanopore/guppy_6/08_10_21_R941_HG04228_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,77428.0,Similar,HG04228,HG04228,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG04228,SAMN26267391,ST232,STU,SAS,YR2 -5.27,0.0,0.93,0.18,0.04,0.01,N/A,49.57,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,15.02,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04228_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04228_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.340369,s3://human-pangenomics/working/HPRC/HG04228/raw_data/nanopore/guppy_6/08_10_21_R941_HG04228_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,77232.0,Similar,HG04228,HG04228,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG04228,SAMN26267391,ST232,STU,SAS,YR2 -9.37,0.0,1.71,0.36,0.09,0.03,N/A,88.93,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,26.95,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_21_R941_HG04228_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_21_R941_HG04228_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.316726,s3://human-pangenomics/working/HPRC/HG04228/raw_data/nanopore/guppy_6/08_10_21_R941_HG04228_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,76339.0,Similar,HG04228,HG04228,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG04228,SAMN26267391,ST232,STU,SAS,YR2 -10.02,0.0,2.71,0.63,0.17,0.06,N/A,77.67,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,23.54,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM18570_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM18570_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.339543,s3://human-pangenomics/working/HPRC/NA18570/raw_data/nanopore/guppy_6/08_10_22_R941_GM18570_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,85731.0,Similar,GM18570,GM18570,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,5.0,,,,,, -9.24,0.01,2.63,0.68,0.22,0.08,N/A,78.8,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,23.88,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM18570_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM18570_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.340802,s3://human-pangenomics/working/HPRC/NA18570/raw_data/nanopore/guppy_6/08_10_22_R941_GM18570_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,77119.0,Similar,GM18570,GM18570,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,15.0,,,,,, -7.59,0.0,1.94,0.44,0.11,0.03,N/A,62.05,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.8,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM18570_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM18570_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.353154,s3://human-pangenomics/working/HPRC/NA18570/raw_data/nanopore/guppy_6/08_10_22_R941_GM18570_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,81801.0,Similar,GM18570,GM18570,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,,,,,, -7.09,0.0,2.2,0.61,0.16,0.04,N/A,51.0,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,15.45,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM19120_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM19120_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.349111,s3://human-pangenomics/working/HPRC/NA19120/raw_data/nanopore/guppy_6/08_10_22_R941_GM19120_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,91781.0,Similar,GM19120,GM19120,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,,,,,, -7.62,0.0,2.34,0.64,0.17,0.05,N/A,58.1,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,17.61,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM19120_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM19120_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.386826,s3://human-pangenomics/working/HPRC/NA19120/raw_data/nanopore/guppy_6/08_10_22_R941_GM19120_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,86577.0,Similar,GM19120,GM19120,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,,,,,, -9.34,0.0,2.58,0.66,0.16,0.04,N/A,80.4,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.36,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM19120_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM19120_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.361188,s3://human-pangenomics/working/HPRC/NA19120/raw_data/nanopore/guppy_6/08_10_22_R941_GM19120_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,77646.0,Similar,GM19120,GM19120,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,6.0,,,,,, -9.42,0.0,2.77,0.69,0.16,0.04,N/A,69.84,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.16,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM19159_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM19159_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.332599,s3://human-pangenomics/working/HPRC/NA19159/raw_data/nanopore/guppy_6/08_10_22_R941_GM19159_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,89279.0,Similar,GM19159,GM19159,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,6.0,,,,,, -7.17,0.0,2.01,0.5,0.12,0.04,N/A,60.82,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.43,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM19159_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM19159_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.370954,s3://human-pangenomics/working/HPRC/NA19159/raw_data/nanopore/guppy_6/08_10_22_R941_GM19159_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,78467.0,Similar,GM19159,GM19159,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,6.0,,,,,, -7.14,0.0,2.11,0.55,0.15,0.04,N/A,55.23,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,16.74,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM19159_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM19159_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.376472,s3://human-pangenomics/working/HPRC/NA19159/raw_data/nanopore/guppy_6/08_10_22_R941_GM19159_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,85827.0,Similar,GM19159,GM19159,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,,,,,, -7.54,0.0,2.31,0.69,0.21,0.07,N/A,61.0,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.49,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM19185_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM19185_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.358044,s3://human-pangenomics/working/HPRC/NA19185/raw_data/nanopore/guppy_6/08_10_22_R941_GM19185_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,82038.0,Similar,GM19185,GM19185,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,8.0,,,,,, -5.63,0.0,1.45,0.39,0.1,0.03,N/A,55.98,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,16.96,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM19185_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM19185_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.349426,s3://human-pangenomics/working/HPRC/NA19185/raw_data/nanopore/guppy_6/08_10_22_R941_GM19185_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,69161.0,Similar,GM19185,GM19185,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,,,,,, -6.79,0.0,1.88,0.53,0.15,0.05,N/A,62.93,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.07,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM19185_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM19185_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.363303,s3://human-pangenomics/working/HPRC/NA19185/raw_data/nanopore/guppy_6/08_10_22_R941_GM19185_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,72791.0,Similar,GM19185,GM19185,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,4.0,,,,,, -1.98,0.0,0.62,0.17,0.04,0.01,N/A,17.01,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,5.16,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM20805_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM20805_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.507947,s3://human-pangenomics/working/HPRC/NA20805/raw_data/nanopore/guppy_6/08_10_22_R941_GM20805_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,74947.0,Similar,GM20805,GM20805,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,,,,,, -7.77,0.0,2.23,0.55,0.12,0.03,N/A,62.3,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.88,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM20805_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM20805_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.373759,s3://human-pangenomics/working/HPRC/NA20805/raw_data/nanopore/guppy_6/08_10_22_R941_GM20805_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,82608.0,Similar,GM20805,GM20805,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,,,,,, -5.68,0.0,1.55,0.37,0.07,0.02,N/A,50.43,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,15.28,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM20805_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM20805_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.387074,s3://human-pangenomics/working/HPRC/NA20805/raw_data/nanopore/guppy_6/08_10_22_R941_GM20805_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,75115.0,Similar,GM20805,GM20805,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,,,,,, -3.53,0.0,0.93,0.22,0.05,0.01,N/A,33.38,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,10.11,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM20805_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM20805_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.420147,s3://human-pangenomics/working/HPRC/NA20805/raw_data/nanopore/guppy_6/08_10_22_R941_GM20805_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,71330.0,Similar,GM20805,GM20805,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,,,,,, -7.21,0.0,2.25,0.6,0.15,0.03,N/A,56.73,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,17.19,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM20858_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM20858_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.38728,s3://human-pangenomics/working/HPRC/NA20858/raw_data/nanopore/guppy_6/08_10_22_R941_GM20858_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,83361.0,Similar,GM20858,GM20858,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,,,,,, -5.54,0.0,1.56,0.41,0.1,0.02,N/A,50.68,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,15.36,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM20858_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM20858_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.38856,s3://human-pangenomics/working/HPRC/NA20858/raw_data/nanopore/guppy_6/08_10_22_R941_GM20858_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,72966.0,Similar,GM20858,GM20858,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,,,,,, -5.33,0.0,1.55,0.43,0.12,0.03,N/A,47.89,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,14.51,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_GM20858_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_GM20858_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.398138,s3://human-pangenomics/working/HPRC/NA20858/raw_data/nanopore/guppy_6/08_10_22_R941_GM20858_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,73630.0,Similar,GM20858,GM20858,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,,,,,, -0.44,0.0,0.09,0.02,0.0,0.0,N/A,4.33,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,1.31,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_HG02391_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_HG02391_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.64693,s3://human-pangenomics/working/HPRC/HG02391/raw_data/nanopore/guppy_6/08_10_22_R941_HG02391_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,72462.0,Similar,HG02391,HG02391,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02391,SAMN37797104,,CDX,EAS,YR3 -7.27,0.0,1.96,0.45,0.1,0.03,N/A,62.98,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.09,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_HG02391_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_HG02391_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.373826,s3://human-pangenomics/working/HPRC/HG02391/raw_data/nanopore/guppy_6/08_10_22_R941_HG02391_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,76876.0,Similar,HG02391,HG02391,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG02391,SAMN37797104,,CDX,EAS,YR3 -6.5,0.0,1.71,0.38,0.08,0.02,N/A,60.06,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.2,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_HG02391_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_HG02391_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.369934,s3://human-pangenomics/working/HPRC/HG02391/raw_data/nanopore/guppy_6/08_10_22_R941_HG02391_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,72921.0,Similar,HG02391,HG02391,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02391,SAMN37797104,,CDX,EAS,YR3 -6.34,0.0,1.93,0.45,0.1,0.02,N/A,43.65,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,13.23,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_10_22_R941_HG02391_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_10_22_R941_HG02391_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.39373,s3://human-pangenomics/working/HPRC/HG02391/raw_data/nanopore/guppy_6/08_10_22_R941_HG02391_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,95822.0,Similar,HG02391,HG02391,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02391,SAMN37797104,,CDX,EAS,YR3 -6.56,0.0,1.02,0.14,0.02,0.01,N/A,85.57,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,25.93,,,08_10_22_R941_HG03792_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,08_10_22_R941_HG03792_1,,,,,N/A,N/A,N/A,,N/A,0.322213,s3://human-pangenomics/working/HPRC/HG03792/raw_data/nanopore/guppy_6/08_10_22_R941_HG03792_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,59519.0,Similar,HG03792,HG03792,,N/A,,,N/A,N/A,N/A,N/A,N/A,1.0,HG03792,SAMN37797112,,ITU,SAS,YR4 -4.49,0.0,0.63,0.09,0.02,0.0,N/A,70.26,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,21.29,,,08_10_22_R941_HG03792_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,08_10_22_R941_HG03792_2,,,,,N/A,N/A,N/A,,N/A,0.349105,s3://human-pangenomics/working/HPRC/HG03792/raw_data/nanopore/guppy_6/08_10_22_R941_HG03792_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,53139.0,Similar,HG03792,HG03792,,N/A,,,N/A,N/A,N/A,N/A,N/A,0.0,HG03792,SAMN37797112,,ITU,SAS,YR4 -6.43,0.0,1.04,0.15,0.02,0.01,N/A,85.23,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,25.83,,,08_10_22_R941_HG03792_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,08_10_22_R941_HG03792_3,,,,,N/A,N/A,N/A,,N/A,0.358335,s3://human-pangenomics/working/HPRC/HG03792/raw_data/nanopore/guppy_6/08_10_22_R941_HG03792_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,58516.0,Similar,HG03792,HG03792,,N/A,,,N/A,N/A,N/A,N/A,N/A,0.0,HG03792,SAMN37797112,,ITU,SAS,YR4 -4.89,0.01,0.75,0.15,0.06,0.03,N/A,49.22,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,14.92,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01346_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01346_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.349099,s3://human-pangenomics/working/HPRC/HG01346/raw_data/nanopore/guppy_6/08_17_21_R941_HG01346_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,72488.0,Similar,HG01346,HG01346,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,13.0,HG01346,SAMN26267379,CLM27,CLM,AMR,YR2 -9.7,0.0,1.34,0.21,0.07,0.03,N/A,99.49,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,30.15,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01346_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01346_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.297416,s3://human-pangenomics/working/HPRC/HG01346/raw_data/nanopore/guppy_6/08_17_21_R941_HG01346_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,72436.0,Similar,HG01346,HG01346,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,6.0,HG01346,SAMN26267379,CLM27,CLM,AMR,YR2 -8.89,0.0,1.2,0.18,0.05,0.02,N/A,91.0,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,27.58,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01346_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01346_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.322652,s3://human-pangenomics/working/HPRC/HG01346/raw_data/nanopore/guppy_6/08_17_21_R941_HG01346_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,72638.0,Similar,HG01346,HG01346,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG01346,SAMN26267379,CLM27,CLM,AMR,YR2 -13.53,0.0,2.45,0.32,0.06,0.02,N/A,111.18,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,33.69,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01496_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01496_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.372854,s3://human-pangenomics/working/HPRC/HG01496/raw_data/nanopore/guppy_6/08_17_21_R941_HG01496_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,83713.0,Similar,HG01496,HG01496,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG01496,SAMN26237497,CLM64,CLM,AMR,YR2 -10.53,0.0,1.75,0.21,0.04,0.01,N/A,97.59,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,29.57,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01496_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01496_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.364163,s3://human-pangenomics/working/HPRC/HG01496/raw_data/nanopore/guppy_6/08_17_21_R941_HG01496_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,75967.0,Similar,HG01496,HG01496,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG01496,SAMN26237497,CLM64,CLM,AMR,YR2 -6.87,0.0,1.18,0.16,0.03,0.01,N/A,58.91,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,17.85,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01496_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01496_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.328512,s3://human-pangenomics/working/HPRC/HG01496/raw_data/nanopore/guppy_6/08_17_21_R941_HG01496_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,80965.0,Similar,HG01496,HG01496,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG01496,SAMN26237497,CLM64,CLM,AMR,YR2 -7.84,0.0,1.46,0.33,0.12,0.05,N/A,67.44,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,20.44,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01884_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01884_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.2997,s3://human-pangenomics/working/HPRC/HG01884/raw_data/nanopore/guppy_6/08_17_21_R941_HG01884_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,81515.0,Similar,HG01884,HG01884,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,14.0,HG01884,SAMN26267393,BB03,ACB,AFR,YR2 -7.35,0.0,1.31,0.28,0.1,0.05,N/A,65.99,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,20.0,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01884_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01884_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.30104,s3://human-pangenomics/working/HPRC/HG01884/raw_data/nanopore/guppy_6/08_17_21_R941_HG01884_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,78937.0,Similar,HG01884,HG01884,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,10.0,HG01884,SAMN26267393,BB03,ACB,AFR,YR2 -4.64,0.0,0.81,0.18,0.08,0.04,N/A,45.84,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,13.89,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01884_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01884_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.329724,s3://human-pangenomics/working/HPRC/HG01884/raw_data/nanopore/guppy_6/08_17_21_R941_HG01884_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,72924.0,Similar,HG01884,HG01884,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,8.0,HG01884,SAMN26267393,BB03,ACB,AFR,YR2 -8.87,0.0,1.27,0.2,0.05,0.01,N/A,89.17,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,27.02,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01943_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01943_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.322052,s3://human-pangenomics/working/HPRC/HG01943/raw_data/nanopore/guppy_6/08_17_21_R941_HG01943_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,72475.0,Similar,HG01943,HG01943,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG01943,SAMN26237499,PEL016,PEL,AMR,YR2 -4.59,0.0,0.61,0.1,0.02,0.01,N/A,49.72,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,15.07,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01943_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01943_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.322058,s3://human-pangenomics/working/HPRC/HG01943/raw_data/nanopore/guppy_6/08_17_21_R941_HG01943_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,68632.0,Similar,HG01943,HG01943,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG01943,SAMN26237499,PEL016,PEL,AMR,YR2 -5.92,0.0,0.82,0.13,0.04,0.01,N/A,67.8,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,20.55,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG01943_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG01943_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.326738,s3://human-pangenomics/working/HPRC/HG01943/raw_data/nanopore/guppy_6/08_17_21_R941_HG01943_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,65101.0,Similar,HG01943,HG01943,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG01943,SAMN26237499,PEL016,PEL,AMR,YR2 -8.3,0.0,1.79,0.28,0.04,0.01,N/A,66.07,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,20.02,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02280_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02280_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.334565,s3://human-pangenomics/working/HPRC/HG02280/raw_data/nanopore/guppy_6/08_17_21_R941_HG02280_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,84963.0,Similar,HG02280,HG02280,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02280,SAMN26237505,BB23,ACB,AFR,YR2 -13.82,0.0,2.93,0.48,0.08,0.02,N/A,114.3,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,34.64,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02280_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02280_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.324119,s3://human-pangenomics/working/HPRC/HG02280/raw_data/nanopore/guppy_6/08_17_21_R941_HG02280_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,82220.0,Similar,HG02280,HG02280,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG02280,SAMN26237505,BB23,ACB,AFR,YR2 -4.85,0.0,1.05,0.17,0.03,0.01,N/A,39.92,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,12.1,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02280_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02280_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.348716,s3://human-pangenomics/working/HPRC/HG02280/raw_data/nanopore/guppy_6/08_17_21_R941_HG02280_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,82435.0,Similar,HG02280,HG02280,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02280,SAMN26237505,BB23,ACB,AFR,YR2 -10.94,0.0,1.9,0.37,0.12,0.04,N/A,94.09,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,28.51,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02293_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02293_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.365369,s3://human-pangenomics/working/HPRC/HG02293/raw_data/nanopore/guppy_6/08_17_21_R941_HG02293_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,81288.0,Similar,HG02293,HG02293,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,7.0,HG02293,SAMN26267394,PEL51,PEL,AMR,YR2 -11.63,0.0,2.06,0.41,0.13,0.05,N/A,99.12,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,30.04,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02293_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02293_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.384852,s3://human-pangenomics/working/HPRC/HG02293/raw_data/nanopore/guppy_6/08_17_21_R941_HG02293_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,81745.0,Similar,HG02293,HG02293,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,6.0,HG02293,SAMN26267394,PEL51,PEL,AMR,YR2 -12.69,0.0,2.16,0.4,0.12,0.05,N/A,109.5,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,33.18,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02293_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02293_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.374775,s3://human-pangenomics/working/HPRC/HG02293/raw_data/nanopore/guppy_6/08_17_21_R941_HG02293_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,81085.0,Similar,HG02293,HG02293,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,6.0,HG02293,SAMN26267394,PEL51,PEL,AMR,YR2 -7.72,0.0,1.72,0.35,0.08,0.02,N/A,58.23,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,17.64,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02300_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02300_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.329926,s3://human-pangenomics/working/HPRC/HG02300/raw_data/nanopore/guppy_6/08_17_21_R941_HG02300_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,89326.0,Similar,HG02300,HG02300,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02300,SAMN26267395,PEL52,PEL,AMR,YR2 -11.44,0.01,2.82,0.67,0.21,0.08,N/A,85.74,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,25.98,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02300_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02300_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.326405,s3://human-pangenomics/working/HPRC/HG02300/raw_data/nanopore/guppy_6/08_17_21_R941_HG02300_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,89321.0,Similar,HG02300,HG02300,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,16.0,HG02300,SAMN26267395,PEL52,PEL,AMR,YR2 -8.27,0.0,2.0,0.48,0.15,0.06,N/A,63.45,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,19.23,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02300_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02300_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.327987,s3://human-pangenomics/working/HPRC/HG02300/raw_data/nanopore/guppy_6/08_17_21_R941_HG02300_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,87466.0,Similar,HG02300,HG02300,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,9.0,HG02300,SAMN26267395,PEL52,PEL,AMR,YR2 -4.81,0.0,0.89,0.13,0.02,0.0,N/A,39.87,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,12.08,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02451_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02451_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.338318,s3://human-pangenomics/working/HPRC/HG02451/raw_data/nanopore/guppy_6/08_17_21_R941_HG02451_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,83173.0,Similar,HG02451,HG02451,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 -6.97,0.0,1.24,0.18,0.03,0.01,N/A,62.38,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,18.9,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02451_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02451_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.301994,s3://human-pangenomics/working/HPRC/HG02451/raw_data/nanopore/guppy_6/08_17_21_R941_HG02451_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,78263.0,Similar,HG02451,HG02451,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 -7.45,0.0,1.45,0.25,0.05,0.01,N/A,62.53,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,18.95,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02451_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02451_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.307473,s3://human-pangenomics/working/HPRC/HG02451/raw_data/nanopore/guppy_6/08_17_21_R941_HG02451_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,82173.0,Similar,HG02451,HG02451,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 -5.83,0.01,1.14,0.29,0.11,0.05,N/A,52.05,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,15.77,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02735_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02735_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.362279,s3://human-pangenomics/working/HPRC/HG02735/raw_data/nanopore/guppy_6/08_17_21_R941_HG02735_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,79365.0,Similar,HG02735,HG02735,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,18.0,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 -6.43,0.0,1.13,0.26,0.09,0.04,N/A,57.41,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,17.4,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02735_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02735_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.350825,s3://human-pangenomics/working/HPRC/HG02735/raw_data/nanopore/guppy_6/08_17_21_R941_HG02735_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,80063.0,Similar,HG02735,HG02735,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,7.0,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 -2.99,0.0,0.46,0.09,0.03,0.01,N/A,28.87,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,8.75,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02735_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02735_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.419899,s3://human-pangenomics/working/HPRC/HG02735/raw_data/nanopore/guppy_6/08_17_21_R941_HG02735_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,77157.0,Similar,HG02735,HG02735,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 -4.74,0.0,0.79,0.16,0.05,0.02,N/A,41.91,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,12.7,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02735_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02735_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.352212,s3://human-pangenomics/working/HPRC/HG02735/raw_data/nanopore/guppy_6/08_17_21_R941_HG02735_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,81587.0,Similar,HG02735,HG02735,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 -2.19,0.0,0.42,0.1,0.04,0.02,N/A,20.37,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,6.17,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02738_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02738_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.407703,s3://human-pangenomics/working/HPRC/HG02738/raw_data/nanopore/guppy_6/08_17_21_R941_HG02738_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,75231.0,Similar,HG02738,HG02738,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,5.0,HG02738,SAMN26267396,PK27,PJL,SAS,YR2 -8.82,0.0,1.79,0.4,0.14,0.06,N/A,70.92,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.49,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02738_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02738_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.275721,s3://human-pangenomics/working/HPRC/HG02738/raw_data/nanopore/guppy_6/08_17_21_R941_HG02738_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,84858.0,Similar,HG02738,HG02738,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,6.0,HG02738,SAMN26267396,PK27,PJL,SAS,YR2 -12.07,0.01,2.64,0.64,0.22,0.09,N/A,95.7,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,29.0,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02738_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02738_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.296058,s3://human-pangenomics/working/HPRC/HG02738/raw_data/nanopore/guppy_6/08_17_21_R941_HG02738_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,85682.0,Similar,HG02738,HG02738,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,16.0,HG02738,SAMN26267396,PK27,PJL,SAS,YR2 -6.43,0.0,1.32,0.24,0.07,0.03,N/A,48.89,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,14.81,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02809_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02809_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.330392,s3://human-pangenomics/working/HPRC/HG02809/raw_data/nanopore/guppy_6/08_17_21_R941_HG02809_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,88827.0,Similar,HG02809,HG02809,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG02809,SAMN26237510,GB63,GWD,AFR,YR2 -10.41,0.0,2.04,0.32,0.08,0.02,N/A,74.33,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.52,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02809_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02809_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.339115,s3://human-pangenomics/working/HPRC/HG02809/raw_data/nanopore/guppy_6/08_17_21_R941_HG02809_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,93836.0,Similar,HG02809,HG02809,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,4.0,HG02809,SAMN26237510,GB63,GWD,AFR,YR2 -11.5,0.0,2.28,0.4,0.1,0.04,N/A,84.25,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.53,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG02809_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG02809_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.321222,s3://human-pangenomics/working/HPRC/HG02809/raw_data/nanopore/guppy_6/08_17_21_R941_HG02809_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,91856.0,Similar,HG02809,HG02809,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG02809,SAMN26237510,GB63,GWD,AFR,YR2 -10.17,0.0,1.49,0.17,0.03,0.01,N/A,82.75,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.08,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG03704_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG03704_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.322761,s3://human-pangenomics/working/HPRC/HG03704/raw_data/nanopore/guppy_6/08_17_21_R941_HG03704_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,85778.0,Similar,HG03704,HG03704,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 -9.61,0.0,1.48,0.19,0.04,0.01,N/A,81.19,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.6,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG03704_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG03704_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.35997,s3://human-pangenomics/working/HPRC/HG03704/raw_data/nanopore/guppy_6/08_17_21_R941_HG03704_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,82890.0,Similar,HG03704,HG03704,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 -7.24,0.0,0.99,0.11,0.02,0.01,N/A,66.14,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.04,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_17_21_R941_HG03704_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_17_21_R941_HG03704_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.333713,s3://human-pangenomics/working/HPRC/HG03704/raw_data/nanopore/guppy_6/08_17_21_R941_HG03704_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,78860.0,Similar,HG03704,HG03704,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 -4.92,0.0,0.52,0.04,0.01,0.0,N/A,56.38,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,17.09,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG01981_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG01981_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.266703,s3://human-pangenomics/working/HPRC/HG01981/raw_data/nanopore/guppy_6/08_25_21_R941_HG01981_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,66847.0,Similar,HG01981,HG01981,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG01981,SAMN26237500,PEL27,PEL,AMR,YR2 -6.96,0.0,0.75,0.07,0.01,0.0,N/A,80.81,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,24.49,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG01981_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG01981_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.301576,s3://human-pangenomics/working/HPRC/HG01981/raw_data/nanopore/guppy_6/08_25_21_R941_HG01981_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,65984.0,Similar,HG01981,HG01981,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG01981,SAMN26237500,PEL27,PEL,AMR,YR2 -5.88,0.0,0.66,0.07,0.01,0.0,N/A,69.28,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,20.99,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG01981_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG01981_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.323498,s3://human-pangenomics/working/HPRC/HG01981/raw_data/nanopore/guppy_6/08_25_21_R941_HG01981_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,65439.0,Similar,HG01981,HG01981,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG01981,SAMN26237500,PEL27,PEL,AMR,YR2 -15.74,0.0,3.26,0.39,0.07,0.02,N/A,116.98,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,35.45,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG02004_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG02004_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.297757,s3://human-pangenomics/working/HPRC/HG02004/raw_data/nanopore/guppy_6/08_25_21_R941_HG02004_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,89941.0,Similar,HG02004,HG02004,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,4.0,HG02004,SAMN26237502,PEL33,PEL,AMR,YR2 -13.86,0.0,2.91,0.36,0.06,0.02,N/A,103.09,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,31.24,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG02004_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG02004_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.307564,s3://human-pangenomics/working/HPRC/HG02004/raw_data/nanopore/guppy_6/08_25_21_R941_HG02004_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,89761.0,Similar,HG02004,HG02004,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG02004,SAMN26237502,PEL33,PEL,AMR,YR2 -7.42,0.0,1.48,0.19,0.03,0.01,N/A,58.55,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,17.74,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG02004_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG02004_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.341192,s3://human-pangenomics/working/HPRC/HG02004/raw_data/nanopore/guppy_6/08_25_21_R941_HG02004_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,85447.0,Similar,HG02004,HG02004,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02004,SAMN26237502,PEL33,PEL,AMR,YR2 -7.2,0.0,1.76,0.33,0.08,0.03,N/A,51.01,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,15.46,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG02683_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG02683_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.373037,s3://human-pangenomics/working/HPRC/HG02683/raw_data/nanopore/guppy_6/08_25_21_R941_HG02683_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,93672.0,Similar,HG02683,HG02683,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG02683,SAMN26267384,PK16,PJL,SAS,YR2 -8.17,0.0,1.89,0.31,0.07,0.02,N/A,54.69,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,16.57,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG02683_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG02683_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.341715,s3://human-pangenomics/working/HPRC/HG02683/raw_data/nanopore/guppy_6/08_25_21_R941_HG02683_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,98701.0,Similar,HG02683,HG02683,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,6.0,HG02683,SAMN26267384,PK16,PJL,SAS,YR2 -7.42,0.0,1.67,0.27,0.06,0.02,N/A,51.42,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,15.58,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG02683_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG02683_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.344844,s3://human-pangenomics/working/HPRC/HG02683/raw_data/nanopore/guppy_6/08_25_21_R941_HG02683_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,95821.0,Similar,HG02683,HG02683,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02683,SAMN26267384,PK16,PJL,SAS,YR2 -6.0,0.01,1.5,0.43,0.17,0.08,N/A,46.09,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,13.97,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG04184_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG04184_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.340642,s3://human-pangenomics/working/HPRC/HG04184/raw_data/nanopore/guppy_6/08_25_21_R941_HG04184_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,87332.0,Similar,HG04184,HG04184,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,15.0,HG04184,SAMN26267397,BD61,BEB,SAS,YR2 -8.99,0.01,2.4,0.69,0.28,0.13,N/A,59.44,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.01,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG04184_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG04184_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.334229,s3://human-pangenomics/working/HPRC/HG04184/raw_data/nanopore/guppy_6/08_25_21_R941_HG04184_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,99822.0,Similar,HG04184,HG04184,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,30.0,HG04184,SAMN26267397,BD61,BEB,SAS,YR2 -6.96,0.01,1.73,0.5,0.21,0.1,N/A,52.17,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,15.81,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,08_25_21_R941_HG04184_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,08_25_21_R941_HG04184_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.361875,s3://human-pangenomics/working/HPRC/HG04184/raw_data/nanopore/guppy_6/08_25_21_R941_HG04184_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,89392.0,Similar,HG04184,HG04184,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,25.0,HG04184,SAMN26267397,BD61,BEB,SAS,YR2 -9.23,0.0,2.6,0.58,0.14,0.05,N/A,65.28,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.78,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_08_21_R941_HG01192_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_08_21_R941_HG01192_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.36009,s3://human-pangenomics/working/HPRC/HG01192/raw_data/nanopore/guppy_6/09_08_21_R941_HG01192_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,93439.0,Similar,HG01192,HG01192,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,10.0,HG01192,SAMN33621945,PR40,PUR,AMR,YR3 -6.63,0.0,1.75,0.35,0.07,0.02,N/A,45.46,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,13.78,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_08_21_R941_HG01192_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_08_21_R941_HG01192_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.341194,s3://human-pangenomics/working/HPRC/HG01192/raw_data/nanopore/guppy_6/09_08_21_R941_HG01192_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,96482.0,Similar,HG01192,HG01192,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG01192,SAMN33621945,PR40,PUR,AMR,YR3 -7.86,0.0,2.12,0.44,0.09,0.03,N/A,53.82,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,16.31,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_08_21_R941_HG01192_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_08_21_R941_HG01192_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.383568,s3://human-pangenomics/working/HPRC/HG01192/raw_data/nanopore/guppy_6/09_08_21_R941_HG01192_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,96610.0,Similar,HG01192,HG01192,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,5.0,HG01192,SAMN33621945,PR40,PUR,AMR,YR3 -7.34,0.0,1.35,0.26,0.06,0.02,N/A,78.91,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,23.91,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_GM19087_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_GM19087_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.363347,s3://human-pangenomics/working/HPRC/NA19087/raw_data/nanopore/guppy_6/09_14_22_R941_GM19087_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,67258.0,Similar,GM19087,GM19087,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,,,,,, -6.62,0.0,1.25,0.26,0.07,0.03,N/A,75.53,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.89,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_GM19087_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_GM19087_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.37074,s3://human-pangenomics/working/HPRC/NA19087/raw_data/nanopore/guppy_6/09_14_22_R941_GM19087_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,63634.0,Similar,GM19087,GM19087,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,,,,,, -8.38,0.0,1.75,0.4,0.12,0.04,N/A,83.18,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.21,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_GM19087_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_GM19087_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.389523,s3://human-pangenomics/working/HPRC/NA19087/raw_data/nanopore/guppy_6/09_14_22_R941_GM19087_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,70432.0,Similar,GM19087,GM19087,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,,,,,, -10.05,0.0,2.39,0.49,0.1,0.03,N/A,89.75,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.2,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_GM20752_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_GM20752_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.35574,s3://human-pangenomics/working/HPRC/NA20752/raw_data/nanopore/guppy_6/09_14_22_R941_GM20752_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,76135.0,Similar,GM20752,GM20752,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,,,,,, -10.05,0.0,2.39,0.49,0.1,0.03,N/A,89.75,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,27.2,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_GM20752_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_GM20752_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.35574,s3://human-pangenomics/working/HPRC/NA20752/raw_data/nanopore/guppy_6/09_14_22_R941_GM20752_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,76135.0,Similar,GM20752,GM20752,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,,,,,, -9.75,0.0,2.47,0.53,0.11,0.03,N/A,80.96,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,24.53,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_GM20752_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_GM20752_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.370001,s3://human-pangenomics/working/HPRC/NA20752/raw_data/nanopore/guppy_6/09_14_22_R941_GM20752_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,81001.0,Similar,GM20752,GM20752,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,,,,,, -6.98,0.0,1.86,0.5,0.13,0.04,N/A,64.04,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.41,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG00099_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG00099_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.369611,s3://human-pangenomics/working/HPRC/HG00099/raw_data/nanopore/guppy_6/09_14_22_R941_HG00099_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,72981.0,Similar,HG00099,HG00099,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG00099,SAMN33758778,,GBR,EUR,YR3 -6.65,0.0,1.72,0.45,0.12,0.03,N/A,63.02,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.1,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG00099_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG00099_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.377991,s3://human-pangenomics/working/HPRC/HG00099/raw_data/nanopore/guppy_6/09_14_22_R941_HG00099_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,71544.0,Similar,HG00099,HG00099,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG00099,SAMN33758778,,GBR,EUR,YR3 -7.12,0.0,1.83,0.47,0.12,0.03,N/A,66.9,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.27,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG00099_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG00099_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.3764,s3://human-pangenomics/working/HPRC/HG00099/raw_data/nanopore/guppy_6/09_14_22_R941_HG00099_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,71872.0,Similar,HG00099,HG00099,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG00099,SAMN33758778,,GBR,EUR,YR3 -8.13,0.0,2.14,0.5,0.12,0.04,N/A,72.98,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.12,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG00280_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG00280_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.375128,s3://human-pangenomics/working/HPRC/HG00280/raw_data/nanopore/guppy_6/09_14_22_R941_HG00280_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,74653.0,Similar,HG00280,HG00280,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,4.0,HG00280,SAMN33758779,,FIN,EUR,YR3 -6.12,0.01,1.57,0.39,0.11,0.04,N/A,62.41,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.91,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG00280_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG00280_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.380822,s3://human-pangenomics/working/HPRC/HG00280/raw_data/nanopore/guppy_6/09_14_22_R941_HG00280_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,65990.0,Similar,HG00280,HG00280,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,14.0,HG00280,SAMN33758779,,FIN,EUR,YR3 -6.15,0.0,1.49,0.34,0.09,0.03,N/A,62.07,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.81,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG00280_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG00280_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.360848,s3://human-pangenomics/working/HPRC/HG00280/raw_data/nanopore/guppy_6/09_14_22_R941_HG00280_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,67870.0,Similar,HG00280,HG00280,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,8.0,HG00280,SAMN33758779,,FIN,EUR,YR3 -6.91,0.0,2.13,0.65,0.19,0.06,N/A,56.39,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,17.09,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG01530_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG01530_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.373646,s3://human-pangenomics/working/HPRC/HG01530/raw_data/nanopore/guppy_6/09_14_22_R941_HG01530_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,80614.0,Similar,HG01530,HG01530,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,4.0,HG01530,SAMN37797099,,IBS,EUR,YR3 -7.19,0.0,2.14,0.66,0.2,0.06,N/A,62.94,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.07,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG01530_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG01530_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.370886,s3://human-pangenomics/working/HPRC/HG01530/raw_data/nanopore/guppy_6/09_14_22_R941_HG01530_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,75444.0,Similar,HG01530,HG01530,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG01530,SAMN37797099,,IBS,EUR,YR3 -6.49,0.0,1.77,0.49,0.14,0.04,N/A,59.17,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,17.93,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG01530_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG01530_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.39413,s3://human-pangenomics/working/HPRC/HG01530/raw_data/nanopore/guppy_6/09_14_22_R941_HG01530_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,73858.0,Similar,HG01530,HG01530,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG01530,SAMN37797099,,IBS,EUR,YR3 -8.62,0.0,2.16,0.52,0.14,0.05,N/A,75.57,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.9,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG01784_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG01784_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.352992,s3://human-pangenomics/working/HPRC/HG01784/raw_data/nanopore/guppy_6/09_14_22_R941_HG01784_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,76764.0,Similar,HG01784,HG01784,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,4.0,HG01784,SAMN37797100,,IBS,EUR,YR3 -8.93,0.0,2.11,0.5,0.14,0.04,N/A,84.4,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,25.58,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG01784_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG01784_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.367476,s3://human-pangenomics/working/HPRC/HG01784/raw_data/nanopore/guppy_6/09_14_22_R941_HG01784_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,72441.0,Similar,HG01784,HG01784,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG01784,SAMN37797100,,IBS,EUR,YR3 -7.55,0.0,1.71,0.39,0.11,0.03,N/A,74.22,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,22.49,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_14_22_R941_HG01784_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_14_22_R941_HG01784_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.374443,s3://human-pangenomics/working/HPRC/HG01784/raw_data/nanopore/guppy_6/09_14_22_R941_HG01784_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,70230.0,Similar,HG01784,HG01784,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG01784,SAMN37797100,,IBS,EUR,YR3 -0.9,0.0,0.21,0.04,0.01,0.0,N/A,7.83,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,2.37,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_27_2022_R941_GM19043_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_27_2022_R941_GM19043_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.570092,s3://human-pangenomics/working/HPRC/NA19043/raw_data/nanopore/guppy_6/09_27_2022_R941_GM19043_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,77107.0,Similar,GM19043,GM19043,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,,,,,, -7.16,0.0,1.38,0.23,0.04,0.01,N/A,70.5,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.36,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_27_2022_R941_GM19043_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_27_2022_R941_GM19043_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.346266,s3://human-pangenomics/working/HPRC/NA19043/raw_data/nanopore/guppy_6/09_27_2022_R941_GM19043_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,71878.0,Similar,GM19043,GM19043,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,,,,,, -7.05,0.0,1.45,0.27,0.06,0.02,N/A,68.75,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.83,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_27_2022_R941_GM19043_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_27_2022_R941_GM19043_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.371248,s3://human-pangenomics/working/HPRC/NA19043/raw_data/nanopore/guppy_6/09_27_2022_R941_GM19043_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,71558.0,Similar,GM19043,GM19043,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,,,,,, -6.71,0.0,1.47,0.26,0.05,0.01,N/A,59.04,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,17.89,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_27_2022_R941_GM19043_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_27_2022_R941_GM19043_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.35535,s3://human-pangenomics/working/HPRC/NA19043/raw_data/nanopore/guppy_6/09_27_2022_R941_GM19043_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,77640.0,Similar,GM19043,GM19043,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,,,,,, -7.71,0.0,1.61,0.26,0.05,0.01,N/A,78.44,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,23.77,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_27_2022_R941_GM20799_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_27_2022_R941_GM20799_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.340489,s3://human-pangenomics/working/HPRC/NA20799/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20799_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,68413.0,Similar,GM20799,GM20799,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,,,,,, -3.8,0.0,0.71,0.11,0.02,0.0,N/A,42.4,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,12.85,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_27_2022_R941_GM20799_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_27_2022_R941_GM20799_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.401567,s3://human-pangenomics/working/HPRC/NA20799/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20799_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,64340.0,Similar,GM20799,GM20799,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,,,,,, -6.75,0.0,1.3,0.2,0.03,0.01,N/A,71.69,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.72,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_27_2022_R941_GM20799_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_27_2022_R941_GM20799_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.368589,s3://human-pangenomics/working/HPRC/NA20799/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20799_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,66914.0,Similar,GM20799,GM20799,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,,,,,, -8.31,0.0,2.42,0.61,0.15,0.05,N/A,70.02,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,21.22,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_27_2022_R941_GM20905_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_27_2022_R941_GM20905_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.318679,s3://human-pangenomics/working/HPRC/NA20905/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20905_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,78145.0,Similar,GM20905,GM20905,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,,,,,, -6.76,0.0,1.84,0.45,0.12,0.03,N/A,63.45,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,19.23,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_27_2022_R941_GM20905_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_27_2022_R941_GM20905_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.349624,s3://human-pangenomics/working/HPRC/NA20905/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20905_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,70923.0,Similar,GM20905,GM20905,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,4.0,,,,,, -6.92,0.0,1.84,0.46,0.12,0.03,N/A,66.35,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,20.1,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,09_27_2022_R941_GM20905_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,09_27_2022_R941_GM20905_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.38176,s3://human-pangenomics/working/HPRC/NA20905/raw_data/nanopore/guppy_6/09_27_2022_R941_GM20905_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,69497.0,Similar,GM20905,GM20905,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,,,,,, -8.14,0.0,2.19,0.48,0.11,0.03,N/A,66.81,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,20.24,,,09_27_2022_R941_HG03742_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,09_27_2022_R941_HG03742_1,,,,,N/A,N/A,N/A,,N/A,0.377766,s3://human-pangenomics/working/HPRC/HG03742/raw_data/nanopore/guppy_6/09_27_2022_R941_HG03742_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,81011.0,Similar,HG03742,HG03742,,N/A,,,N/A,N/A,N/A,N/A,N/A,7.0,HG03742,SAMN37797111,,ITU,SAS,YR3 -7.02,0.0,1.69,0.34,0.07,0.02,N/A,67.34,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,20.4,,,09_27_2022_R941_HG03742_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,09_27_2022_R941_HG03742_2,,,,,N/A,N/A,N/A,,N/A,0.367302,s3://human-pangenomics/working/HPRC/HG03742/raw_data/nanopore/guppy_6/09_27_2022_R941_HG03742_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,71143.0,Similar,HG03742,HG03742,,N/A,,,N/A,N/A,N/A,N/A,N/A,3.0,HG03742,SAMN37797111,,ITU,SAS,YR3 -7.22,0.0,1.86,0.4,0.1,0.03,N/A,63.51,N/A,N/A,N/A,N/A,N/A,N/A,,,,N/A,N/A,N/A,19.25,,,09_27_2022_R941_HG03742_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,,,,09_27_2022_R941_HG03742_3,,,,,N/A,N/A,N/A,,N/A,0.368966,s3://human-pangenomics/working/HPRC/HG03742/raw_data/nanopore/guppy_6/09_27_2022_R941_HG03742_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,,N/A,N/A,N/A,N/A,76240.0,Similar,HG03742,HG03742,,N/A,,,N/A,N/A,N/A,N/A,N/A,8.0,HG03742,SAMN37797111,,ITU,SAS,YR3 -2.67,0.0,0.73,0.14,0.02,0.01,N/A,17.35,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,5.26,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,10_12_21_R941_HG02015_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,10_12_21_R941_HG02015_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.368566,s3://human-pangenomics/working/HPRC/HG02015/raw_data/nanopore/guppy_6/10_12_21_R941_HG02015_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,101497.0,Similar,HG02015,HG02015,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02015,SAMN33621948,VN046,KHV,EAS,YR3 -3.12,0.0,0.83,0.15,0.03,0.01,N/A,20.45,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,6.2,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,10_12_21_R941_HG02015_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,10_12_21_R941_HG02015_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.377167,s3://human-pangenomics/working/HPRC/HG02015/raw_data/nanopore/guppy_6/10_12_21_R941_HG02015_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,100719.0,Similar,HG02015,HG02015,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02015,SAMN33621948,VN046,KHV,EAS,YR3 -7.03,0.0,1.81,0.33,0.06,0.02,N/A,45.31,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,13.73,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,10_12_21_R941_HG02015_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,10_12_21_R941_HG02015_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.331869,s3://human-pangenomics/working/HPRC/HG02015/raw_data/nanopore/guppy_6/10_12_21_R941_HG02015_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,102206.0,Similar,HG02015,HG02015,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02015,SAMN33621948,VN046,KHV,EAS,YR3 -4.39,0.0,1.23,0.25,0.05,0.01,N/A,28.62,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,8.67,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,10_12_21_R941_HG02015_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,10_12_21_R941_HG02015_4,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.362562,s3://human-pangenomics/working/HPRC/HG02015/raw_data/nanopore/guppy_6/10_12_21_R941_HG02015_4_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,101105.0,Similar,HG02015,HG02015,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02015,SAMN33621948,VN046,KHV,EAS,YR3 -6.05,0.0,1.09,0.17,0.04,0.01,N/A,48.23,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,14.62,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,10_12_21_R941_HG02056_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,10_12_21_R941_HG02056_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.359442,s3://human-pangenomics/working/HPRC/HG02056/raw_data/nanopore/guppy_6/10_12_21_R941_HG02056_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,86229.0,Similar,HG02056,HG02056,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 -6.01,0.0,1.14,0.22,0.06,0.02,N/A,52.1,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,15.79,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,10_12_21_R941_HG02056_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,10_12_21_R941_HG02056_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.365471,s3://human-pangenomics/working/HPRC/HG02056/raw_data/nanopore/guppy_6/10_12_21_R941_HG02056_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,79943.0,Similar,HG02056,HG02056,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 -7.42,0.0,1.44,0.27,0.08,0.03,N/A,60.36,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,18.29,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,10_12_21_R941_HG02056_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,10_12_21_R941_HG02056_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.360656,s3://human-pangenomics/working/HPRC/HG02056/raw_data/nanopore/guppy_6/10_12_21_R941_HG02056_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,84411.0,Similar,HG02056,HG02056,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,5.0,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 -5.88,0.0,1.05,0.17,0.04,0.01,N/A,48.56,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,14.72,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,10_12_21_R941_HG02129_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,10_12_21_R941_HG02129_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.342092,s3://human-pangenomics/working/HPRC/HG02129/raw_data/nanopore/guppy_6/10_12_21_R941_HG02129_1_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,83679.0,Similar,HG02129,HG02129,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG02129,SAMN33621950,VN079,KHV,EAS,YR3 -5.2,0.0,0.96,0.17,0.04,0.01,N/A,44.13,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,13.37,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,10_12_21_R941_HG02129_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,10_12_21_R941_HG02129_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.312407,s3://human-pangenomics/working/HPRC/HG02129/raw_data/nanopore/guppy_6/10_12_21_R941_HG02129_2_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,81649.0,Similar,HG02129,HG02129,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG02129,SAMN33621950,VN079,KHV,EAS,YR3 -5.18,0.0,0.89,0.14,0.04,0.01,N/A,45.51,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.5.7,N/A,N/A,N/A,13.79,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,10_12_21_R941_HG02129_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,10_12_21_R941_HG02129_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.350055,s3://human-pangenomics/working/HPRC/HG02129/raw_data/nanopore/guppy_6/10_12_21_R941_HG02129_3_Guppy_6.5.7_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,79677.0,Similar,HG02129,HG02129,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02129,SAMN33621950,VN079,KHV,EAS,YR3 -9.67,0.0,2.55,0.52,0.11,0.04,N/A,69.39,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,21.03,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG00423_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG00423_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.307526,s3://human-pangenomics/working/HPRC/HG00423/raw_data/nanopore/guppy_6/12_08_21_R941_HG00423_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,92363.0,Similar,HG00423,HG00423,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,6.0,HG00423,SAMN26237490,SH007,CHS,EAS,YR2 -8.32,0.0,2.2,0.46,0.11,0.04,N/A,61.42,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,18.61,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG00423_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG00423_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.298268,s3://human-pangenomics/working/HPRC/HG00423/raw_data/nanopore/guppy_6/12_08_21_R941_HG00423_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,89888.0,Similar,HG00423,HG00423,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG00423,SAMN26237490,SH007,CHS,EAS,YR2 -9.52,0.0,2.46,0.47,0.11,0.03,N/A,68.64,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,20.8,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG00423_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG00423_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.301781,s3://human-pangenomics/working/HPRC/HG00423/raw_data/nanopore/guppy_6/12_08_21_R941_HG00423_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,92063.0,Similar,HG00423,HG00423,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,3.0,HG00423,SAMN26237490,SH007,CHS,EAS,YR2 -4.32,0.0,0.54,0.11,0.03,0.01,N/A,56.42,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,17.1,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG02027_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG02027_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.334542,s3://human-pangenomics/working/HPRC/HG02027/raw_data/nanopore/guppy_6/12_08_21_R941_HG02027_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,58363.0,Similar,HG02027,HG02027,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,2.0,HG02027,SAMN26237503,VN050,KHV,EAS,YR2 -6.25,0.0,0.82,0.15,0.05,0.02,N/A,71.62,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,21.7,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG02027_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG02027_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.339873,s3://human-pangenomics/working/HPRC/HG02027/raw_data/nanopore/guppy_6/12_08_21_R941_HG02027_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,64561.0,Similar,HG02027,HG02027,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,5.0,HG02027,SAMN26237503,VN050,KHV,EAS,YR2 -5.7,0.0,0.71,0.13,0.04,0.01,N/A,70.35,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,21.32,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG02027_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG02027_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.327309,s3://human-pangenomics/working/HPRC/HG02027/raw_data/nanopore/guppy_6/12_08_21_R941_HG02027_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,61541.0,Similar,HG02027,HG02027,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,0.0,HG02027,SAMN26237503,VN050,KHV,EAS,YR2 -8.69,0.01,1.41,0.27,0.11,0.06,N/A,82.53,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,25.01,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG02083_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG02083_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.299525,s3://human-pangenomics/working/HPRC/HG02083/raw_data/nanopore/guppy_6/12_08_21_R941_HG02083_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,74924.0,Similar,HG02083,HG02083,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,24.0,HG02083,SAMN26237504,VN069,KHV,EAS,YR2 -8.89,0.01,1.4,0.24,0.08,0.04,N/A,82.33,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,24.95,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG02083_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG02083_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.316949,s3://human-pangenomics/working/HPRC/HG02083/raw_data/nanopore/guppy_6/12_08_21_R941_HG02083_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,76579.0,Similar,HG02083,HG02083,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,24.0,HG02083,SAMN26237504,VN069,KHV,EAS,YR2 -9.27,0.01,1.42,0.23,0.08,0.04,N/A,88.36,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,26.77,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG02083_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG02083_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.280197,s3://human-pangenomics/working/HPRC/HG02083/raw_data/nanopore/guppy_6/12_08_21_R941_HG02083_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,74918.0,Similar,HG02083,HG02083,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,14.0,HG02083,SAMN26237504,VN069,KHV,EAS,YR2 -9.94,0.01,1.47,0.24,0.09,0.04,N/A,95.97,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,29.08,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG02523_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG02523_1,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.331787,s3://human-pangenomics/working/HPRC/HG02523/raw_data/nanopore/guppy_6/12_08_21_R941_HG02523_1_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,73676.0,Similar,HG02523,HG02523,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,15.0,HG02523,SAMN26237506,VN090,KHV,EAS,YR2 -8.82,0.0,1.23,0.2,0.07,0.03,N/A,84.96,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,25.74,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG02523_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG02523_2,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.32545,s3://human-pangenomics/working/HPRC/HG02523/raw_data/nanopore/guppy_6/12_08_21_R941_HG02523_2_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,74782.0,Similar,HG02523,HG02523,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,10.0,HG02523,SAMN26237506,VN090,KHV,EAS,YR2 -7.95,0.0,1.1,0.15,0.04,0.02,N/A,75.24,N/A,N/A,N/A,N/A,N/A,N/A,guppy,dna_r9.4.1_450bps_modbases_5mc_cg_sup_prom.cfg,6.4.6,N/A,N/A,N/A,22.8,unaligned reads with 5mC mods,UL sequencing using ONT-Circulomics method,12_08_21_R941_HG02523_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,bam,iviolich@ucsc.edu,"University of California, Santa Cruz",PromethION,12_08_21_R941_HG02523_3,single,RANDOM,GENOMIC,WGS,N/A,N/A,N/A,,N/A,0.331465,s3://human-pangenomics/working/HPRC/HG02523/raw_data/nanopore/guppy_6/12_08_21_R941_HG02523_3_Guppy_6.4.6_450bps_modbases_5mc_cg_sup_prom_pass.bam,OXFORD_NANOPORE,N/A,N/A,N/A,N/A,75745.0,Similar,HG02523,HG02523,SQK-ULK001,N/A,no shear,no SS,N/A,N/A,N/A,N/A,N/A,1.0,HG02523,SAMN26237506,VN090,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,12065.0,13705.0,16221.0,SRR29483115,N/A,N/A,N/A,N/A,N/A,SAMN17861232,v7.0.0,N/A,unaligned reads,HiFi sequencing of 16kb fractionated gDNA,m84046_230724_203319_s4.hifi_reads.bc2055.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01123.HFSS2_m84046_230724_203319_s4,single,size fractionation,GENOMIC,WGS,47325.0,13826.0,158.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01123/raw_data/PacBio_HiFi/m84046_230724_203319_s4.hifi_reads.bc2055.bam,PACBIO_SMRT,P1,11740.0,13113.0,15274.0,N/A,N/A,N/A,HG01123,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,36.56,36561691313.0,2644354.0,N/A,HG01123,SAMN17861232,CLM02,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15199.0,16694.0,18397.0,SRR13684290,N/A,N/A,N/A,N/A,N/A,SAMN17861232,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 17kb fractionated gDNA,m54329U_200205_002609.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01123_HiFiEx_f2,single,size fractionation,GENOMIC,WGS,40793.0,16543.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01123/raw_data/PacBio_HiFi/m54329U_200205_002609.ccs.bam,PACBIO_SMRT,P2.0,14898.0,16353.0,18007.0,N/A,N/A,N/A,HG01123,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,23.97,23974829242.0,1449219.0,N/A,HG01123,SAMN17861232,CLM02,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15223.0,16722.0,18436.0,SRR13684290,N/A,N/A,N/A,N/A,N/A,SAMN17861232,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 17kb fractionated gDNA,m54329U_200203_181235.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01123_HiFiEx_f2,single,size fractionation,GENOMIC,WGS,39876.0,16577.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01123/raw_data/PacBio_HiFi/m54329U_200203_181235.ccs.bam,PACBIO_SMRT,P2.0,14919.0,16380.0,18039.0,N/A,N/A,N/A,HG01123,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,27.01,27013827793.0,1629549.0,N/A,HG01123,SAMN17861232,CLM02,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15294.0,16821.0,18566.0,SRR13684290,N/A,N/A,N/A,N/A,N/A,SAMN17861232,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 17kb fractionated gDNA,m54329U_200201_051510.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01123_HiFiEx_f2,single,size fractionation,GENOMIC,WGS,43126.0,16675.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01123/raw_data/PacBio_HiFi/m54329U_200201_051510.ccs.bam,PACBIO_SMRT,P2.0,14984.0,16468.0,18160.0,N/A,N/A,N/A,HG01123,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,34.55,34554070679.0,2072143.0,N/A,HG01123,SAMN17861232,CLM02,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15493.0,17025.0,18773.0,SRR13684290,N/A,N/A,N/A,N/A,N/A,SAMN17861232,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 17kb fractionated gDNA,m54329U_200206_215926.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01123_HiFiEx_f2,single,size fractionation,GENOMIC,WGS,48534.0,16901.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01123/raw_data/PacBio_HiFi/m54329U_200206_215926.ccs.bam,PACBIO_SMRT,P2.0,15194.0,16680.0,18370.0,N/A,N/A,N/A,HG01123,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,33.87,33874608465.0,2004290.0,N/A,HG01123,SAMN17861232,CLM02,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,13463.0,15721.0,18586.0,SRR18158598,N/A,N/A,N/A,N/A,N/A,SAMN26267386,6.0.0,N/A,unaligned reads,HiFi sequencing of 17kb fractionated gDNA,m64076_210519_075634.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03927a.HFSS,single,size fractionation,GENOMIC,WGS,47341.0,15444.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03927/raw_data/PacBio_HiFi/m64076_210519_075634.hifi_reads.bam,PACBIO_SMRT,P2.2,12855.0,14899.0,17543.0,N/A,N/A,N/A,HG03927,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,26.14,26139712779.0,1692462.0,N/A,HG03927,SAMN26267386,BD37,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,13538.0,15842.0,18770.0,SRR18158598,N/A,N/A,N/A,N/A,N/A,SAMN26267386,6.0.0,N/A,unaligned reads,HiFi sequencing of 17kb fractionated gDNA,m64076_210514_222349.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03927a.HFSS,single,size fractionation,GENOMIC,WGS,47540.0,15552.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03927/raw_data/PacBio_HiFi/m64076_210514_222349.hifi_reads.bam,PACBIO_SMRT,P2.2,12914.0,14994.0,17697.0,N/A,N/A,N/A,HG03927,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,25.98,25979557175.0,1670468.0,N/A,HG03927,SAMN26267386,BD37,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,13486.0,15821.0,18797.0,SRR18158598,N/A,N/A,N/A,N/A,N/A,SAMN26267386,6.0.0,N/A,unaligned reads,HiFi sequencing of 17kb fractionated gDNA,m64076_210517_210115.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03927a.HFSS,single,size fractionation,GENOMIC,WGS,50275.0,15524.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03927/raw_data/PacBio_HiFi/m64076_210517_210115.hifi_reads.bam,PACBIO_SMRT,P2.2,12851.0,14951.0,17697.0,N/A,N/A,N/A,HG03927,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.01,31012862864.0,1997659.0,N/A,HG03927,SAMN26267386,BD37,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,13984.0,16380.0,19346.0,SRR18158598,N/A,N/A,N/A,N/A,N/A,SAMN26267386,6.0.0,N/A,unaligned reads,HiFi sequencing of 17kb fractionated gDNA,m54329U_210522_083046.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03927a.HFSS,single,size fractionation,GENOMIC,WGS,57003.0,16019.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03927/raw_data/PacBio_HiFi/m54329U_210522_083046.hifi_reads.bam,PACBIO_SMRT,P2.2,13318.0,15506.0,18286.0,N/A,N/A,N/A,HG03927,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.02,31020996084.0,1936424.0,N/A,HG03927,SAMN26267386,BD37,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16675.0,18363.0,20389.0,SRR13684283,N/A,N/A,N/A,N/A,N/A,SAMN17861234,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m64076_200206_215943.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01358_HiFiEx_f1,single,size fractionation,GENOMIC,WGS,49875.0,18215.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m64076_200206_215943.ccs.bam,PACBIO_SMRT,P2.0,16308.0,17946.0,19862.0,N/A,N/A,N/A,HG01358,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,28.27,28270120144.0,1551959.0,N/A,HG01358,SAMN17861234,CLM31,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16749.0,18432.0,20451.0,SRR13684283,N/A,N/A,N/A,N/A,N/A,SAMN17861234,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m64076_200208_041234.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01358_HiFiEx_f1,single,size fractionation,GENOMIC,WGS,45703.0,18304.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m64076_200208_041234.ccs.bam,PACBIO_SMRT,P2.0,16388.0,18026.0,19934.0,N/A,N/A,N/A,HG01358,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,26.04,26036028477.0,1422399.0,N/A,HG01358,SAMN17861234,CLM31,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16771.0,18467.0,20512.0,SRR13684283,N/A,N/A,N/A,N/A,N/A,SAMN17861234,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m64076_200203_181219.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01358_HiFiEx_f1,single,size fractionation,GENOMIC,WGS,49139.0,18338.0,44.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m64076_200203_181219.ccs.bam,PACBIO_SMRT,P2.0,16407.0,18053.0,19983.0,N/A,N/A,N/A,HG01358,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,32.63,32630636515.0,1779397.0,N/A,HG01358,SAMN17861234,CLM31,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17038.0,18766.0,20859.0,SRR13684283,N/A,N/A,N/A,N/A,N/A,SAMN17861234,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m64076_200201_051547.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01358_HiFiEx_f1,single,size fractionation,GENOMIC,WGS,50034.0,18670.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m64076_200201_051547.ccs.bam,PACBIO_SMRT,P2.0,16676.0,18344.0,20318.0,N/A,N/A,N/A,HG01358,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,30.07,30068543676.0,1610516.0,N/A,HG01358,SAMN17861234,CLM31,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,12438.0,14133.0,16723.0,SRR29483175,N/A,N/A,N/A,N/A,N/A,SAMN17861235,v7.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m84046_230724_203319_s4.hifi_reads.bc2056.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01361.HFSS2_m84046_230724_203319_s4,single,size fractionation,GENOMIC,WGS,55368.0,14341.0,195.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01361/raw_data/PacBio_HiFi/m84046_230724_203319_s4.hifi_reads.bc2056.bam,PACBIO_SMRT,P1,12129.0,13541.0,15772.0,N/A,N/A,N/A,HG01361,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,42.05,42045826152.0,2931742.0,N/A,HG01361,SAMN17861235,CLM32,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15711.0,17901.0,20896.0,SRR18158605,N/A,N/A,N/A,N/A,N/A,SAMN26267393,6.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_210713_205453.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01884.HFSS,single,size fractionation,GENOMIC,WGS,53165.0,17927.0,630.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01884/raw_data/PacBio_HiFi/m54329U_210713_205453.hifi_reads.bam,PACBIO_SMRT,P2.2,15277.0,17186.0,19909.0,N/A,N/A,N/A,HG01884,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.57,31572145410.0,1761109.0,N/A,HG01884,SAMN26267393,BB03,ACB,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15891.0,18214.0,21321.0,SRR18158605,N/A,N/A,N/A,N/A,N/A,SAMN26267393,6.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_210716_214728.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01884.HFSS,single,size fractionation,GENOMIC,WGS,59768.0,18187.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01884/raw_data/PacBio_HiFi/m54329U_210716_214728.hifi_reads.bam,PACBIO_SMRT,P2.2,15416.0,17441.0,20292.0,N/A,N/A,N/A,HG01884,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,34.11,34105927543.0,1875249.0,N/A,HG01884,SAMN26267393,BB03,ACB,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15933.0,18283.0,21409.0,SRR18158605,N/A,N/A,N/A,N/A,N/A,SAMN26267393,6.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_210718_084331.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01884.HFSS,single,size fractionation,GENOMIC,WGS,55519.0,18244.0,681.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01884/raw_data/PacBio_HiFi/m54329U_210718_084331.hifi_reads.bam,PACBIO_SMRT,P2.2,15452.0,17497.0,20372.0,N/A,N/A,N/A,HG01884,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.07,39074294250.0,2141718.0,N/A,HG01884,SAMN26267393,BB03,ACB,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15360.0,17295.0,19991.0,SRR29483163,N/A,N/A,N/A,N/A,N/A,SAMN26267393,v7.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m84046_230701_003325_s1.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01884.HFSS_m84046_230701_003325_s1,single,size fractionation,GENOMIC,WGS,58056.0,17381.0,169.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01884/raw_data/PacBio_HiFi/m84046_230701_003325_s1.hifi_reads.default.bam,PACBIO_SMRT,P1,14997.0,16702.0,19146.0,N/A,N/A,N/A,HG01884,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,42.66,42656028040.0,2454075.0,N/A,HG01884,SAMN26267393,BB03,ACB,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15291.0,17180.0,19819.0,SRR29483099,N/A,N/A,N/A,N/A,N/A,SAMN26267393,v7.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m84046_230707_192442_s1.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01884.HFSS_m84046_230707_192442_s1,single,size fractionation,GENOMIC,WGS,48493.0,17266.0,326.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01884/raw_data/PacBio_HiFi/m84046_230707_192442_s1.hifi_reads.default.bam,PACBIO_SMRT,P1,14941.0,16599.0,18996.0,N/A,N/A,N/A,HG01884,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,8.22,8216138148.0,475838.0,N/A,HG01884,SAMN26267393,BB03,ACB,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15438.0,17430.0,20183.0,SRR29483100,N/A,N/A,N/A,N/A,N/A,SAMN26267393,v7.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m84046_230712_231732_s2.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01884.HFSS_m84046_230712_231732_s2,single,size fractionation,GENOMIC,WGS,47627.0,17498.0,421.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01884/raw_data/PacBio_HiFi/m84046_230712_231732_s2.hifi_reads.default.bam,PACBIO_SMRT,P1,15063.0,16809.0,19298.0,N/A,N/A,N/A,HG01884,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,6.39,6389710318.0,365156.0,N/A,HG01884,SAMN26267393,BB03,ACB,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15428.0,17411.0,20136.0,SRR29483164,N/A,N/A,N/A,N/A,N/A,SAMN26267393,v7.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m84046_230718_230843_s2.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01884.HFSS_m84046_230718_230843_s2,single,size fractionation,GENOMIC,WGS,51929.0,17476.0,724.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01884/raw_data/PacBio_HiFi/m84046_230718_230843_s2.hifi_reads.default.bam,PACBIO_SMRT,P1,15052.0,16796.0,19282.0,N/A,N/A,N/A,HG01884,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,9.45,9447051450.0,540542.0,N/A,HG01884,SAMN26267393,BB03,ACB,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15889.0,16994.0,18242.0,SRR13684280,N/A,N/A,N/A,N/A,N/A,SAMN17861236,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_200129_001928.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01891.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,46123.0,16969.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01891/raw_data/PacBio_HiFi/m54329U_200129_001928.ccs.bam,PACBIO_SMRT,P2.0,15741.0,16819.0,18050.0,N/A,N/A,N/A,HG01891,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,30.2,30200500419.0,1779732.0,N/A,HG01891,SAMN17861236,BB05,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15912.0,17016.0,18263.0,SRR13684280,N/A,N/A,N/A,N/A,N/A,SAMN17861236,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_200124_193652.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01891.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,43693.0,16990.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01891/raw_data/PacBio_HiFi/m54329U_200124_193652.ccs.bam,PACBIO_SMRT,P2.0,15765.0,16844.0,18071.0,N/A,N/A,N/A,HG01891,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,27.12,27122049640.0,1596347.0,N/A,HG01891,SAMN17861236,BB05,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15942.0,17054.0,18300.0,SRR13684280,N/A,N/A,N/A,N/A,N/A,SAMN17861236,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_200127_180554.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01891.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,42906.0,17023.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01891/raw_data/PacBio_HiFi/m54329U_200127_180554.ccs.bam,PACBIO_SMRT,P2.0,15793.0,16880.0,18110.0,N/A,N/A,N/A,HG01891,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,29.88,29883779569.0,1755465.0,N/A,HG01891,SAMN17861236,BB05,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15977.0,17094.0,18346.0,SRR13684280,N/A,N/A,N/A,N/A,N/A,SAMN17861236,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_200130_064539.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01891.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,44817.0,17061.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01891/raw_data/PacBio_HiFi/m54329U_200130_064539.ccs.bam,PACBIO_SMRT,P2.0,15828.0,16917.0,18153.0,N/A,N/A,N/A,HG01891,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,27.92,27919782706.0,1636421.0,N/A,HG01891,SAMN17861236,BB05,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16803.0,18321.0,20131.0,SRR13684277,N/A,N/A,N/A,N/A,N/A,SAMN17861238,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_200315_215927.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02486.HiFiEx2_f2,single,size fractionation,GENOMIC,WGS,50334.0,18301.0,48.0,second library prep,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02486/raw_data/PacBio_HiFi/m54329U_200315_215927.ccs.bam,PACBIO_SMRT,P2.0,16539.0,17995.0,19722.0,N/A,N/A,N/A,HG02486,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,27.66,27656723390.0,1511142.0,N/A,HG02486,SAMN17861238,BB55,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16829.0,18345.0,20156.0,SRR13684277,N/A,N/A,N/A,N/A,N/A,SAMN17861238,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_200313_161638.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02486.HiFiEx2_f2,single,size fractionation,GENOMIC,WGS,49122.0,18326.0,47.0,second library prep,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02486/raw_data/PacBio_HiFi/m54329U_200313_161638.ccs.bam,PACBIO_SMRT,P2.0,16560.0,18020.0,19749.0,N/A,N/A,N/A,HG02486,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,26.98,26976692024.0,1472019.0,N/A,HG02486,SAMN17861238,BB55,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16870.0,18381.0,20189.0,SRR13684277,N/A,N/A,N/A,N/A,N/A,SAMN17861238,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_200320_213710.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02486.HiFiEx2_f2,single,size fractionation,GENOMIC,WGS,47614.0,18362.0,45.0,second library prep,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02486/raw_data/PacBio_HiFi/m54329U_200320_213710.ccs.bam,PACBIO_SMRT,P2.0,16604.0,18059.0,19784.0,N/A,N/A,N/A,HG02486,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,26.33,26326389903.0,1433701.0,N/A,HG02486,SAMN17861238,BB55,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16938.0,18464.0,20285.0,SRR13684277,N/A,N/A,N/A,N/A,N/A,SAMN17861238,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_200317_041347.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02486.HiFiEx2_f2,single,size fractionation,GENOMIC,WGS,46613.0,18446.0,48.0,second library prep,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02486/raw_data/PacBio_HiFi/m54329U_200317_041347.ccs.bam,PACBIO_SMRT,P2.0,16669.0,18136.0,19875.0,N/A,N/A,N/A,HG02486,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,23.86,23856827644.0,1293270.0,N/A,HG02486,SAMN17861238,BB55,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15377.0,17242.0,19819.0,SRR18158607,N/A,N/A,N/A,N/A,N/A,SAMN26267385,6.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_210618_202343.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03688.HFSS,single,size fractionation,GENOMIC,WGS,48498.0,17337.0,1008.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03688/raw_data/PacBio_HiFi/m54329U_210618_202343.hifi_reads.bam,PACBIO_SMRT,P2.2,15057.0,16700.0,19071.0,N/A,N/A,N/A,HG03688,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,25.43,25428236196.0,1466700.0,N/A,HG03688,SAMN26267385,ST016,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15385.0,17266.0,19865.0,SRR18158607,N/A,N/A,N/A,N/A,N/A,SAMN26267385,6.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_210611_221457.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03688.HFSS,single,size fractionation,GENOMIC,WGS,50736.0,17355.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03688/raw_data/PacBio_HiFi/m54329U_210611_221457.hifi_reads.bam,PACBIO_SMRT,P2.2,15063.0,16712.0,19103.0,N/A,N/A,N/A,HG03688,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,23.71,23712691290.0,1366300.0,N/A,HG03688,SAMN26267385,ST016,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15700.0,17689.0,20289.0,SRR18158607,N/A,N/A,N/A,N/A,N/A,SAMN26267385,6.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_210608_221930.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03688.HFSS,single,size fractionation,GENOMIC,WGS,51332.0,17694.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03688/raw_data/PacBio_HiFi/m54329U_210608_221930.hifi_reads.bam,PACBIO_SMRT,P2.2,15340.0,17113.0,19552.0,N/A,N/A,N/A,HG03688,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,28.67,28672095909.0,1620373.0,N/A,HG03688,SAMN26267385,ST016,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15910.0,18004.0,20653.0,SRR18158607,N/A,N/A,N/A,N/A,N/A,SAMN26267385,6.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m64076_210610_224207.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03688.HFSS,single,size fractionation,GENOMIC,WGS,49522.0,17945.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03688/raw_data/PacBio_HiFi/m64076_210610_224207.hifi_reads.bam,PACBIO_SMRT,P2.2,15513.0,17393.0,19908.0,N/A,N/A,N/A,HG03688,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,34.6,34597694779.0,1927878.0,N/A,HG03688,SAMN26267385,ST016,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15558.0,17449.0,20094.0,SRR29483118,N/A,N/A,N/A,N/A,N/A,SAMN26267385,v7.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m84046_230707_195504_s2.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03688.HFSS_b2_m84046_230707_195504_s2,single,size fractionation,GENOMIC,WGS,51499.0,17566.0,101.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03688/raw_data/PacBio_HiFi/m84046_230707_195504_s2.hifi_reads.default.bam,PACBIO_SMRT,P1,15240.0,16894.0,19318.0,N/A,N/A,N/A,HG03688,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,60.72,60723310391.0,3456854.0,N/A,HG03688,SAMN26267385,ST016,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15879.0,18028.0,20926.0,SRR18158601,N/A,N/A,N/A,N/A,N/A,SAMN26267387,6.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m54329U_210613_071322.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03942.HFSS,single,size fractionation,GENOMIC,WGS,53889.0,18036.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03942/raw_data/PacBio_HiFi/m54329U_210613_071322.hifi_reads.bam,PACBIO_SMRT,P2.2,15462.0,17352.0,20013.0,N/A,N/A,N/A,HG03942,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,20.2,20199492409.0,1119930.0,N/A,HG03942,SAMN26267387,BD42,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16508.0,18868.0,21799.0,SRR18158601,N/A,N/A,N/A,N/A,N/A,SAMN26267387,6.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m64076_210606_095247.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03942.HFSS,single,size fractionation,GENOMIC,WGS,53969.0,18726.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03942/raw_data/PacBio_HiFi/m64076_210606_095247.hifi_reads.bam,PACBIO_SMRT,P2.2,16013.0,18138.0,20920.0,N/A,N/A,N/A,HG03942,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,30.91,30909041518.0,1650567.0,N/A,HG03942,SAMN26267387,BD42,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16589.0,18952.0,21872.0,SRR18158601,N/A,N/A,N/A,N/A,N/A,SAMN26267387,6.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m64076_210615_181342.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03942.HFSS,single,size fractionation,GENOMIC,WGS,52388.0,18795.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03942/raw_data/PacBio_HiFi/m64076_210615_181342.hifi_reads.bam,PACBIO_SMRT,P2.2,16086.0,18223.0,21004.0,N/A,N/A,N/A,HG03942,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,26.77,26769890045.0,1424240.0,N/A,HG03942,SAMN26267387,BD42,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16954.0,19497.0,22506.0,SRR18158601,N/A,N/A,N/A,N/A,N/A,SAMN26267387,6.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m64076_210612_093800.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03942.HFSS,single,size fractionation,GENOMIC,WGS,57492.0,19228.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03942/raw_data/PacBio_HiFi/m64076_210612_093800.hifi_reads.bam,PACBIO_SMRT,P2.2,16382.0,18701.0,21606.0,N/A,N/A,N/A,HG03942,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,26.76,26760152025.0,1391705.0,N/A,HG03942,SAMN26267387,BD42,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15650.0,17624.0,20339.0,SRR29483090,N/A,N/A,N/A,N/A,N/A,SAMN26267387,v7.0.0,N/A,unaligned reads,HiFi sequencing of 18kb fractionated gDNA,m84046_230711_230656_s2.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03942.HFSS_C_m84046_230711_230656_s2,single,size fractionation,GENOMIC,WGS,52486.0,17688.0,248.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03942/raw_data/PacBio_HiFi/m84046_230711_230656_s2.hifi_reads.default.bam,PACBIO_SMRT,P1,15281.0,17030.0,19512.0,N/A,N/A,N/A,HG03942,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,69.47,69465942701.0,3927195.0,N/A,HG03942,SAMN26267387,BD42,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16260.0,18707.0,20196.0,SRR18158604,N/A,N/A,N/A,N/A,N/A,SAMN26267379,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m64076_210526_105450.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01346_f345,single,size fractionation,GENOMIC,WGS,40848.0,18242.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01346/raw_data/PacBio_HiFi/m64076_210526_105450.hifi_reads.bam,PACBIO_SMRT,P2.2,15827.0,18353.0,19870.0,N/A,N/A,N/A,HG01346,N/A,C2,Megaruptor 3,SageELF,SRP305758,N/A,19.33,19327631225.0,1059488.0,N/A,HG01346,SAMN26267379,CLM27,CLM,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16403.0,18798.0,21865.0,SRR18158592,N/A,N/A,N/A,N/A,N/A,SAMN26267380,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m64076_210607_215041.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02071.HFSS,single,size fractionation,GENOMIC,WGS,52883.0,18716.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02071/raw_data/PacBio_HiFi/m64076_210607_215041.hifi_reads.bam,PACBIO_SMRT,P2.2,15902.0,18032.0,20896.0,N/A,N/A,N/A,HG02071,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,33.31,33308306970.0,1779605.0,N/A,HG02071,SAMN26267380,VN065,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16603.0,19088.0,22195.0,SRR18158592,N/A,N/A,N/A,N/A,N/A,SAMN26267380,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m64076_210604_225751.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02071.HFSS,single,size fractionation,GENOMIC,WGS,54155.0,18948.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02071/raw_data/PacBio_HiFi/m64076_210604_225751.hifi_reads.bam,PACBIO_SMRT,P2.2,16068.0,18290.0,21215.0,N/A,N/A,N/A,HG02071,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,33.63,33629205391.0,1774809.0,N/A,HG02071,SAMN26267380,VN065,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16831.0,19429.0,22604.0,SRR18158592,N/A,N/A,N/A,N/A,N/A,SAMN26267380,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m64076_210609_084637.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02071.HFSS,single,size fractionation,GENOMIC,WGS,57671.0,19220.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02071/raw_data/PacBio_HiFi/m64076_210609_084637.hifi_reads.bam,PACBIO_SMRT,P2.2,16248.0,18590.0,21605.0,N/A,N/A,N/A,HG02071,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,30.15,30150326606.0,1568624.0,N/A,HG02071,SAMN26267380,VN065,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15821.0,17982.0,20929.0,SRR29483200,N/A,N/A,N/A,N/A,N/A,SAMN26267380,v7.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m84046_230712_000908_s4.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02071.HFSS_A_m84046_230712_000908_s4,single,size fractionation,GENOMIC,WGS,61719.0,18039.0,224.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02071/raw_data/PacBio_HiFi/m84046_230712_000908_s4.hifi_reads.default.bam,PACBIO_SMRT,P1,15414.0,17295.0,19985.0,N/A,N/A,N/A,HG02071,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,76.3,76304506746.0,4229810.0,N/A,HG02071,SAMN26267380,VN065,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20111.0,20780.0,21460.0,SRR13684276,N/A,N/A,N/A,N/A,N/A,SAMN17861238,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m64076_200211_192227.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02486.HiFiEx_b6,single,size fractionation,GENOMIC,WGS,30053.0,20506.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02486/raw_data/PacBio_HiFi/m64076_200211_192227.ccs.bam,PACBIO_SMRT,P2.0,20033.0,20719.0,21404.0,N/A,N/A,N/A,HG02486,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,1.03,1028856517.0,50172.0,N/A,HG02486,SAMN17861238,BB55,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14482.0,17259.0,20560.0,SRR18158597,N/A,N/A,N/A,N/A,N/A,SAMN26267383,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m64076_210527_231639.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02647.HFSS,single,size fractionation,GENOMIC,WGS,49665.0,16673.0,625.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02647/raw_data/PacBio_HiFi/m64076_210527_231639.hifi_reads.bam,PACBIO_SMRT,P2.2,13572.0,16159.0,19281.0,N/A,N/A,N/A,HG02647,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,25.95,25947810331.0,1556245.0,N/A,HG02647,SAMN26267383,GB38,GWD,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14805.0,17612.0,20903.0,SRR18158597,N/A,N/A,N/A,N/A,N/A,SAMN26267383,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m64076_210530_192034.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02647.HFSS,single,size fractionation,GENOMIC,WGS,51342.0,16998.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02647/raw_data/PacBio_HiFi/m64076_210530_192034.hifi_reads.bam,PACBIO_SMRT,P2.2,13887.0,16523.0,19663.0,N/A,N/A,N/A,HG02647,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.82,31818795589.0,1871860.0,N/A,HG02647,SAMN26267383,GB38,GWD,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14932.0,17777.0,21104.0,SRR18158597,N/A,N/A,N/A,N/A,N/A,SAMN26267383,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m64076_210601_061523.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02647.HFSS,single,size fractionation,GENOMIC,WGS,55771.0,17141.0,75.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02647/raw_data/PacBio_HiFi/m64076_210601_061523.hifi_reads.bam,PACBIO_SMRT,P2.2,14001.0,16668.0,19853.0,N/A,N/A,N/A,HG02647,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.56,32563750856.0,1899728.0,N/A,HG02647,SAMN26267383,GB38,GWD,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15096.0,17951.0,21256.0,SRR18158597,N/A,N/A,N/A,N/A,N/A,SAMN26267383,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m54329U_210604_200442.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02647.HFSS,single,size fractionation,GENOMIC,WGS,49905.0,17299.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02647/raw_data/PacBio_HiFi/m54329U_210604_200442.hifi_reads.bam,PACBIO_SMRT,P2.2,14162.0,16846.0,20034.0,N/A,N/A,N/A,HG02647,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.89,32887962762.0,1901126.0,N/A,HG02647,SAMN26267383,GB38,GWD,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16280.0,18782.0,22068.0,SRR18158590,N/A,N/A,N/A,N/A,N/A,SAMN26267391,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m54329U_210725_100455.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04228.HFSS,single,size fractionation,GENOMIC,WGS,56969.0,18720.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04228/raw_data/PacBio_HiFi/m54329U_210725_100455.hifi_reads.bam,PACBIO_SMRT,P2.2,15754.0,17931.0,20958.0,N/A,N/A,N/A,HG04228,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,37.36,37362709632.0,1995820.0,N/A,HG04228,SAMN26267391,ST232,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16786.0,19365.0,22577.0,SRR18158590,N/A,N/A,N/A,N/A,N/A,SAMN26267391,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m64076_210618_160639.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04228.HFSS,single,size fractionation,GENOMIC,WGS,54593.0,19192.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04228/raw_data/PacBio_HiFi/m64076_210618_160639.hifi_reads.bam,PACBIO_SMRT,P2.2,16208.0,18517.0,21532.0,N/A,N/A,N/A,HG04228,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,26.36,26359885180.0,1373442.0,N/A,HG04228,SAMN26267391,ST232,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16794.0,19404.0,22637.0,SRR18158590,N/A,N/A,N/A,N/A,N/A,SAMN26267391,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m64076_210617_050849.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04228.HFSS,single,size fractionation,GENOMIC,WGS,55387.0,19223.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04228/raw_data/PacBio_HiFi/m64076_210617_050849.hifi_reads.bam,PACBIO_SMRT,P2.2,16203.0,18541.0,21582.0,N/A,N/A,N/A,HG04228,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.1,32095148856.0,1669607.0,N/A,HG04228,SAMN26267391,ST232,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17339.0,20120.0,23410.0,SRR18158590,N/A,N/A,N/A,N/A,N/A,SAMN26267391,6.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m64076_210620_030428.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04228.HFSS,single,size fractionation,GENOMIC,WGS,57038.0,19812.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04228/raw_data/PacBio_HiFi/m64076_210620_030428.hifi_reads.bam,PACBIO_SMRT,P2.2,16665.0,19203.0,22353.0,N/A,N/A,N/A,HG04228,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,30.58,30579890559.0,1543446.0,N/A,HG04228,SAMN26267391,ST232,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16138.0,18527.0,21669.0,SRR29483062,N/A,N/A,N/A,N/A,N/A,SAMN26267391,v7.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m84046_230617_033126_s1.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG04228.HFSS_D_m84046_230617_033126_s1,single,size fractionation,GENOMIC,WGS,59410.0,18494.0,279.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04228/raw_data/PacBio_HiFi/m84046_230617_033126_s1.hifi_reads.default.bam,PACBIO_SMRT,P1,15649.0,17739.0,20634.0,N/A,N/A,N/A,HG04228,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,47.77,47771626922.0,2583006.0,N/A,HG04228,SAMN26267391,ST232,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15544.0,17534.0,20094.0,SRR29483216,N/A,N/A,N/A,N/A,N/A,SAMN41021689,v7.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m84046_230901_223052_s3.hifi_reads.bc2036.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG04225.HFSS_m84046_230901_223052_s3,single,size fractionation,GENOMIC,WGS,53307.0,17422.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04225/raw_data/PacBio_HiFi/m84046_230901_223052_s3.hifi_reads.bc2036.bam,PACBIO_SMRT,P1,15127.0,16947.0,19354.0,N/A,N/A,N/A,HG04225,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,63.74,63736463295.0,3658213.0,N/A,HG04225,SAMN41021689,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15427.0,17375.0,19912.0,SRR29483215,N/A,N/A,N/A,N/A,N/A,SAMN41021689,v7.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m84046_230901_230230_s4.hifi_reads.bc2036.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG04225.HFSS_m84046_230901_230230_s4,single,size fractionation,GENOMIC,WGS,58413.0,17284.0,146.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04225/raw_data/PacBio_HiFi/m84046_230901_230230_s4.hifi_reads.bc2036.bam,PACBIO_SMRT,P1,15019.0,16801.0,19173.0,N/A,N/A,N/A,HG04225,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,62.63,62627446083.0,3623260.0,N/A,HG04225,SAMN41021689,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15313.0,17212.0,19687.0,SRR29483218,N/A,N/A,N/A,N/A,N/A,SAMN41021689,v7.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m84046_230906_215022_s3.hifi_reads.bc2036.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG04225.HFSS_m84046_230906_215022_s3,single,size fractionation,GENOMIC,WGS,48211.0,17132.0,176.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04225/raw_data/PacBio_HiFi/m84046_230906_215022_s3.hifi_reads.bc2036.bam,PACBIO_SMRT,P1,14918.0,16658.0,18967.0,N/A,N/A,N/A,HG04225,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,36.21,36205086640.0,2113201.0,N/A,HG04225,SAMN41021689,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15501.0,17477.0,20013.0,SRR29483219,N/A,N/A,N/A,N/A,N/A,SAMN41021689,v7.0.0,N/A,unaligned reads,HiFi sequencing of 19kb fractionated gDNA,m84046_230906_222128_s4.hifi_reads.bc2036.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG04225.HFSS_m84046_230906_222128_s4,single,size fractionation,GENOMIC,WGS,53953.0,17368.0,130.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04225/raw_data/PacBio_HiFi/m84046_230906_222128_s4.hifi_reads.bc2036.bam,PACBIO_SMRT,P1,15086.0,16893.0,19281.0,N/A,N/A,N/A,HG04225,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,44.07,44071477955.0,2537506.0,N/A,HG04225,SAMN41021689,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18131.0,19724.0,21738.0,SRR23732295,N/A,N/A,N/A,N/A,N/A,SAMN33621941,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220728_173215-bc1018.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00140_lib1,single,size fractionation,GENOMIC,WGS,53341.0,19783.0,51.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/m64043_220728_173215-bc1018.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17853.0,19373.0,21259.0,N/A,N/A,N/A,HG00140,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,10.23,10233445025.0,517275.0,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19047.0,21631.0,25828.0,SRR23732295,N/A,N/A,N/A,N/A,N/A,SAMN33621941,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220719_122056-bc1018.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00140_lib1,single,size fractionation,GENOMIC,WGS,73370.0,21889.0,137.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/m64136_220719_122056-bc1018.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18518.0,20699.0,24213.0,N/A,N/A,N/A,HG00140,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.87,33866031514.0,1547133.0,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19094.0,21721.0,25959.0,SRR23732295,N/A,N/A,N/A,N/A,N/A,SAMN33621941,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220715_182717-bc1018.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00140_lib1,single,size fractionation,GENOMIC,WGS,72755.0,21967.0,199.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/m64136_220715_182717-bc1018.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18553.0,20771.0,24326.0,N/A,N/A,N/A,HG00140,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.18,32183433807.0,1465069.0,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19100.0,21722.0,25987.0,SRR23732295,N/A,N/A,N/A,N/A,N/A,SAMN33621941,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220717_152248-bc1018.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00140_lib1,single,size fractionation,GENOMIC,WGS,68045.0,21979.0,51.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/m64136_220717_152248-bc1018.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18559.0,20771.0,24336.0,N/A,N/A,N/A,HG00140,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.07,34068521767.0,1550035.0,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17093.0,20339.0,24494.0,SRR29405849,N/A,N/A,N/A,N/A,N/A,SAMN41021667,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230721_141900_s2.hifi_reads.bc1008.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00235_PB1_m84091_230721_141900_s2,single,size fractionation,GENOMIC,WGS,64006.0,19972.0,60.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00235/raw_data/PacBio_HiFi/m84091_230721_141900_s2.hifi_reads.bc1008.bam,PACBIO_SMRT,Revio P1,16198.0,19048.0,22813.0,N/A,N/A,N/A,HG00235,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,90.63,90629295210.0,4537603.0,N/A,HG00235,SAMN41021667,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17561.0,20992.0,25350.0,SRR29405848,N/A,N/A,N/A,N/A,N/A,SAMN41021667,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230724_170222_s4.hifi_reads.bc1008.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00235_PB1_m84091_230724_170222_s4,single,size fractionation,GENOMIC,WGS,63978.0,20525.0,141.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00235/raw_data/PacBio_HiFi/m84091_230724_170222_s4.hifi_reads.bc1008.bam,PACBIO_SMRT,Revio P1,16568.0,19607.0,23582.0,N/A,N/A,N/A,HG00235,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,100.35,100350407151.0,4889018.0,N/A,HG00235,SAMN41021667,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18433.0,22452.0,27372.0,SRR29405837,N/A,N/A,N/A,N/A,N/A,SAMN41021644,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230712_180444_s4.hifi_reads.bc1018.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00243_PB1_m84091_230712_180444_s4,single,size fractionation,GENOMIC,WGS,73045.0,21774.0,93.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00243/raw_data/PacBio_HiFi/m84091_230712_180444_s4.hifi_reads.bc1018.bam,PACBIO_SMRT,Revio P1,17180.0,20708.0,25231.0,N/A,N/A,N/A,HG00243,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,94.32,94319711832.0,4331650.0,N/A,HG00243,SAMN41021644,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18295.0,22278.0,27119.0,SRR29405826,N/A,N/A,N/A,N/A,N/A,SAMN41021644,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230719_162122_s2.hifi_reads.bc1018.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00243_PB1_m84091_230719_162122_s2,single,size fractionation,GENOMIC,WGS,65354.0,21615.0,97.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00243/raw_data/PacBio_HiFi/m84091_230719_162122_s2.hifi_reads.bc1018.bam,PACBIO_SMRT,Revio P1,17075.0,20547.0,25031.0,N/A,N/A,N/A,HG00243,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,91.46,91462784918.0,4231327.0,N/A,HG00243,SAMN41021644,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17382.0,20786.0,25025.0,SRR29405815,N/A,N/A,N/A,N/A,N/A,SAMN41021666,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230721_134835_s1.hifi_reads.bc1003.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00253_PB1_m84091_230721_134835_s1,single,size fractionation,GENOMIC,WGS,62447.0,20277.0,55.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00253/raw_data/PacBio_HiFi/m84091_230721_134835_s1.hifi_reads.bc1003.bam,PACBIO_SMRT,Revio P1,16355.0,19411.0,23287.0,N/A,N/A,N/A,HG00253,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,111.73,111727151213.0,5510036.0,N/A,HG00253,SAMN41021666,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16985.0,20288.0,24409.0,SRR29405807,N/A,N/A,N/A,N/A,N/A,SAMN41021666,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230727_143029_s4.hifi_reads.bc1003.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00253_PB1_m84091_230727_143029_s4,single,size fractionation,GENOMIC,WGS,61986.0,19838.0,129.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00253/raw_data/PacBio_HiFi/m84091_230727_143029_s4.hifi_reads.bc1003.bam,PACBIO_SMRT,Revio P1,16026.0,18955.0,22733.0,N/A,N/A,N/A,HG00253,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,89.52,89522377853.0,4512540.0,N/A,HG00253,SAMN41021666,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16692.0,19270.0,22381.0,SRR23732294,N/A,N/A,N/A,N/A,N/A,SAMN33621942,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220710_175208-bc1016.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00323_lib1,single,size fractionation,GENOMIC,WGS,62063.0,19118.0,52.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/m64136_220710_175208-bc1016.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16209.0,18393.0,21456.0,N/A,N/A,N/A,HG00323,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.94,33941426923.0,1775333.0,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16716.0,19311.0,22414.0,SRR23732294,N/A,N/A,N/A,N/A,N/A,SAMN33621942,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220712_144943-bc1016.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00323_lib1,single,size fractionation,GENOMIC,WGS,59292.0,19145.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/m64136_220712_144943-bc1016.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16227.0,18433.0,21488.0,N/A,N/A,N/A,HG00323,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.72,34715893912.0,1813262.0,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16743.0,19365.0,22473.0,SRR23732294,N/A,N/A,N/A,N/A,N/A,SAMN33621942,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220708_205611-bc1016.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00323_lib1,single,size fractionation,GENOMIC,WGS,61839.0,19187.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/m64136_220708_205611-bc1016.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16250.0,18478.0,21546.0,N/A,N/A,N/A,HG00323,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.48,33478490857.0,1744844.0,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19395.0,21416.0,23864.0,SRR23732294,N/A,N/A,N/A,N/A,N/A,SAMN33621942,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220728_173215-bc1016.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00323_lib1,single,size fractionation,GENOMIC,WGS,51718.0,21318.0,62.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/m64043_220728_173215-bc1016.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18987.0,20930.0,23238.0,N/A,N/A,N/A,HG00323,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,6.74,6741622889.0,316229.0,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19281.0,23397.0,28564.0,SRR29405793,N/A,N/A,N/A,N/A,N/A,SAMN41021646,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230712_173338_s3.hifi_reads.bc1019.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00329_PB1_m84091_230712_173338_s3,single,size fractionation,GENOMIC,WGS,69777.0,22730.0,73.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00329/raw_data/PacBio_HiFi/m84091_230712_173338_s3.hifi_reads.bc1019.bam,PACBIO_SMRT,Revio P1,17994.0,21606.0,26308.0,N/A,N/A,N/A,HG00329,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,106.15,106146859292.0,4669840.0,N/A,HG00329,SAMN41021646,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19371.0,23557.0,28733.0,SRR29405782,N/A,N/A,N/A,N/A,N/A,SAMN41021646,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230719_165228_s3.hifi_reads.bc1019.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00329_PB1_m84091_230719_165228_s3,single,size fractionation,GENOMIC,WGS,67743.0,22844.0,112.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00329/raw_data/PacBio_HiFi/m84091_230719_165228_s3.hifi_reads.bc1019.bam,PACBIO_SMRT,Revio P1,18054.0,21732.0,26465.0,N/A,N/A,N/A,HG00329,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,86.57,86567137663.0,3789333.0,N/A,HG00329,SAMN41021646,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16758.0,18490.0,22251.0,SRR23732283,N/A,N/A,N/A,N/A,N/A,SAMN33621943,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_211111_194404-bc1002.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00408_lib1,single,size fractionation,GENOMIC,WGS,58108.0,19152.0,81.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00408/raw_data/PacBio_HiFi/m64136_211111_194404-bc1002.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16477.0,17924.0,20859.0,N/A,N/A,N/A,HG00408,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.36,38355055565.0,2002652.0,N/A,HG00408,SAMN33621943,SH002,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16770.0,18510.0,22318.0,SRR23732283,N/A,N/A,N/A,N/A,N/A,SAMN33621943,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_211114_164241-bc1002.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00408_lib1,single,size fractionation,GENOMIC,WGS,53377.0,19185.0,139.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00408/raw_data/PacBio_HiFi/m64136_211114_164241-bc1002.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16486.0,17935.0,20910.0,N/A,N/A,N/A,HG00408,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.73,38730219265.0,2018757.0,N/A,HG00408,SAMN33621943,SH002,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16802.0,18580.0,22446.0,SRR23732283,N/A,N/A,N/A,N/A,N/A,SAMN33621943,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_211113_063830-bc1002.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00408_lib1,single,size fractionation,GENOMIC,WGS,59031.0,19250.0,124.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00408/raw_data/PacBio_HiFi/m64136_211113_063830-bc1002.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16510.0,17982.0,21042.0,N/A,N/A,N/A,HG00408,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.66,38660030224.0,2008291.0,N/A,HG00408,SAMN33621943,SH002,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16755.0,18592.0,20554.0,SRR18189665,N/A,N/A,N/A,N/A,N/A,SAMN26237490,9.0.0.92188,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210205_190424.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00423_lib1,single,size fractionation,GENOMIC,WGS,49382.0,18400.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00423/raw_data/PacBio_HiFi/m64043_210205_190424.hifi_reads.bam,PACBIO_SMRT,P2,16334.0,18171.0,20074.0,N/A,N/A,N/A,HG00423,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.52,35517184454.0,1930215.0,N/A,HG00423,SAMN26237490,SH007,CHS,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16768.0,18600.0,20564.0,SRR18189665,N/A,N/A,N/A,N/A,N/A,SAMN26237490,9.0.0.92188,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210209_184051.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00423_lib1,single,size fractionation,GENOMIC,WGS,49891.0,18413.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00423/raw_data/PacBio_HiFi/m64043_210209_184051.hifi_reads.bam,PACBIO_SMRT,P2,16352.0,18180.0,20083.0,N/A,N/A,N/A,HG00423,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.44,38438203547.0,2087485.0,N/A,HG00423,SAMN26237490,SH007,CHS,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16741.0,18600.0,20587.0,SRR18189665,N/A,N/A,N/A,N/A,N/A,SAMN26237490,9.0.0.92188,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210207_011920.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00423_lib1,single,size fractionation,GENOMIC,WGS,50543.0,18410.0,64.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00423/raw_data/PacBio_HiFi/m64043_210207_011920.hifi_reads.bam,PACBIO_SMRT,P2,16320.0,18170.0,20096.0,N/A,N/A,N/A,HG00423,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.62,33618239844.0,1826062.0,N/A,HG00423,SAMN26237490,SH007,CHS,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16807.0,18630.0,20592.0,SRR18189665,N/A,N/A,N/A,N/A,N/A,SAMN26237490,9.0.0.92188,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210211_005516.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00423_lib1,single,size fractionation,GENOMIC,WGS,71983.0,18446.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00423/raw_data/PacBio_HiFi/m64043_210211_005516.hifi_reads.bam,PACBIO_SMRT,P2,16390.0,18214.0,20112.0,N/A,N/A,N/A,HG00423,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,36.88,36879516061.0,1999237.0,N/A,HG00423,SAMN26237490,SH007,CHS,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19889.0,22407.0,26545.0,SRR13684374,N/A,N/A,N/A,N/A,N/A,SAMN17861652,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200711_235708.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00438_lib1,single,size fractionation,GENOMIC,WGS,50025.0,22724.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00438/raw_data/PacBio_HiFi/m64043_200711_235708.ccs.bam,PACBIO_SMRT,,19419.0,21541.0,25057.0,N/A,N/A,N/A,HG00438,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,26.04,26040412682.0,1145913.0,N/A,HG00438,SAMN17861652,SH012,CHS,EAS,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20003.0,22667.0,26976.0,SRR13684374,N/A,N/A,N/A,N/A,N/A,SAMN17861652,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200710_174426.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00438_lib1,single,size fractionation,GENOMIC,WGS,50423.0,22958.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00438/raw_data/PacBio_HiFi/m64043_200710_174426.ccs.bam,PACBIO_SMRT,,19506.0,21728.0,25414.0,N/A,N/A,N/A,HG00438,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,34.9,34896456183.0,1519989.0,N/A,HG00438,SAMN17861652,SH012,CHS,EAS,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20000.0,22668.0,26994.0,SRR13684374,N/A,N/A,N/A,N/A,N/A,SAMN17861652,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200714_124814.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00438_lib1,single,size fractionation,GENOMIC,WGS,50251.0,22954.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00438/raw_data/PacBio_HiFi/m64043_200714_124814.ccs.bam,PACBIO_SMRT,,19500.0,21725.0,25433.0,N/A,N/A,N/A,HG00438,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,33.8,33804474378.0,1472693.0,N/A,HG00438,SAMN17861652,SH012,CHS,EAS,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20012.0,22694.0,27044.0,SRR13684374,N/A,N/A,N/A,N/A,N/A,SAMN17861652,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200713_062240.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00438_lib1,single,size fractionation,GENOMIC,WGS,50287.0,22977.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00438/raw_data/PacBio_HiFi/m64043_200713_062240.ccs.bam,PACBIO_SMRT,,19504.0,21748.0,25474.0,N/A,N/A,N/A,HG00438,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,32.73,32729061997.0,1424368.0,N/A,HG00438,SAMN17861652,SH012,CHS,EAS,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16986.0,18747.0,22249.0,SRR18189653,N/A,N/A,N/A,N/A,N/A,SAMN26237491,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210525_165246.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00544_lib1,single,size fractionation,GENOMIC,WGS,58523.0,19262.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m64136_210525_165246.hifi_reads.bam,PACBIO_SMRT,P2,16723.0,18199.0,21194.0,N/A,N/A,N/A,HG00544,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,19.95,19945672662.0,1035453.0,N/A,HG00544,SAMN26237491,SH042,CHS,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17129.0,19121.0,22825.0,SRR18189653,N/A,N/A,N/A,N/A,N/A,SAMN26237491,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210520_180433.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00544_lib1,single,size fractionation,GENOMIC,WGS,57625.0,19583.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m64136_210520_180433.hifi_reads.bam,PACBIO_SMRT,P2,16825.0,18445.0,21784.0,N/A,N/A,N/A,HG00544,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,29.35,29354505966.0,1498910.0,N/A,HG00544,SAMN26237491,SH042,CHS,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17283.0,19416.0,23091.0,SRR18189653,N/A,N/A,N/A,N/A,N/A,SAMN26237491,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210523_100337.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00544_lib1,single,size fractionation,GENOMIC,WGS,55501.0,19776.0,161.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m64136_210523_100337.hifi_reads.bam,PACBIO_SMRT,P2,16949.0,18670.0,22090.0,N/A,N/A,N/A,HG00544,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,17.39,17391182429.0,879373.0,N/A,HG00544,SAMN26237491,SH042,CHS,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17306.0,19452.0,23104.0,SRR18189653,N/A,N/A,N/A,N/A,N/A,SAMN26237491,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210522_014758.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00544_lib1,single,size fractionation,GENOMIC,WGS,60270.0,19796.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m64136_210522_014758.hifi_reads.bam,PACBIO_SMRT,P2,16970.0,18701.0,22117.0,N/A,N/A,N/A,HG00544,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,18.54,18538580517.0,936445.0,N/A,HG00544,SAMN26237491,SH042,CHS,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17486.0,18717.0,20276.0,SRR18189664,N/A,N/A,N/A,N/A,N/A,SAMN26237491,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210702_183246.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00544_lib2,single,size fractionation,GENOMIC,WGS,44297.0,18853.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00544/raw_data/PacBio_HiFi/m64043_210702_183246.hifi_reads.bam,PACBIO_SMRT,P2,17346.0,18502.0,19998.0,N/A,N/A,N/A,HG00544,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.88,37881441933.0,2009252.0,N/A,HG00544,SAMN26237491,SH042,CHS,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15074.0,15865.0,16687.0,SRR23732280,N/A,N/A,N/A,N/A,N/A,SAMN33621944,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211222_184851-bc1021.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00597_lib1,single,size fractionation,GENOMIC,WGS,38317.0,15831.0,124.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/m64043_211222_184851-bc1021.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15003.0,15777.0,16605.0,N/A,N/A,N/A,HG00597,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,13.46,13455521650.0,849916.0,N/A,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19247.0,20774.0,22899.0,SRR23732280,N/A,N/A,N/A,N/A,N/A,SAMN33621944,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211213_155654-bc1021.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00597_lib1,single,size fractionation,GENOMIC,WGS,54955.0,21006.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/m64043_211213_155654-bc1021.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,19041.0,20445.0,22411.0,N/A,N/A,N/A,HG00597,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.72,32720246548.0,1557646.0,N/A,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19260.0,20789.0,22926.0,SRR23732280,N/A,N/A,N/A,N/A,N/A,SAMN33621944,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211212_045901-bc1021.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00597_lib1,single,size fractionation,GENOMIC,WGS,54098.0,21027.0,62.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/m64043_211212_045901-bc1021.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,19052.0,20458.0,22436.0,N/A,N/A,N/A,HG00597,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.36,33361982455.0,1586624.0,N/A,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19270.0,20815.0,22972.0,SRR23732280,N/A,N/A,N/A,N/A,N/A,SAMN33621944,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211210_180342-bc1021.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00597_lib1,single,size fractionation,GENOMIC,WGS,56238.0,21055.0,406.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/m64043_211210_180342-bc1021.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,19061.0,20477.0,22470.0,N/A,N/A,N/A,HG00597,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.14,34138087985.0,1621355.0,N/A,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17754.0,19801.0,23634.0,SRR18189646,N/A,N/A,N/A,N/A,N/A,SAMN26237492,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210622_163607.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00609_lib1,single,size fractionation,GENOMIC,WGS,60330.0,20295.0,294.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00609/raw_data/PacBio_HiFi/m64136_210622_163607.hifi_reads.bam,PACBIO_SMRT,P2,17422.0,19106.0,22384.0,N/A,N/A,N/A,HG00609,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.2,34196548457.0,1684931.0,N/A,HG00609,SAMN26237492,SH062,CHS,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17820.0,19987.0,23940.0,SRR18189646,N/A,N/A,N/A,N/A,N/A,SAMN26237492,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210624_033152.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00609_lib1,single,size fractionation,GENOMIC,WGS,62855.0,20450.0,520.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00609/raw_data/PacBio_HiFi/m64136_210624_033152.hifi_reads.bam,PACBIO_SMRT,P2,17467.0,19227.0,22670.0,N/A,N/A,N/A,HG00609,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,36.08,36078913516.0,1764223.0,N/A,HG00609,SAMN26237492,SH062,CHS,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17837.0,20016.0,24004.0,SRR18189646,N/A,N/A,N/A,N/A,N/A,SAMN26237492,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210620_054327.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00609_lib1,single,size fractionation,GENOMIC,WGS,59168.0,20480.0,80.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00609/raw_data/PacBio_HiFi/m64136_210620_054327.hifi_reads.bam,PACBIO_SMRT,P2,17480.0,19248.0,22718.0,N/A,N/A,N/A,HG00609,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,36.54,36542655261.0,1784291.0,N/A,HG00609,SAMN26237492,SH062,CHS,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18989.0,21377.0,25738.0,SRR13684373,N/A,N/A,N/A,N/A,N/A,SAMN17861653,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200713_062514.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00621_lib1,single,size fractionation,GENOMIC,WGS,50388.0,21882.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00621/raw_data/PacBio_HiFi/m64136_200713_062514.ccs.bam,PACBIO_SMRT,,18570.0,20524.0,24172.0,N/A,N/A,N/A,HG00621,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,29.1,29099465697.0,1329779.0,N/A,HG00621,SAMN17861653,SH066,CHS,EAS,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19006.0,21436.0,25863.0,SRR13684373,N/A,N/A,N/A,N/A,N/A,SAMN17861653,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200710_174522.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00621_lib1,single,size fractionation,GENOMIC,WGS,50331.0,21942.0,44.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00621/raw_data/PacBio_HiFi/m64136_200710_174522.ccs.bam,PACBIO_SMRT,,18576.0,20551.0,24261.0,N/A,N/A,N/A,HG00621,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,32.31,32312653240.0,1472593.0,N/A,HG00621,SAMN17861653,SH066,CHS,EAS,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19075.0,21579.0,26052.0,SRR13684373,N/A,N/A,N/A,N/A,N/A,SAMN17861653,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200714_125149.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00621_lib1,single,size fractionation,GENOMIC,WGS,50286.0,22050.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00621/raw_data/PacBio_HiFi/m64136_200714_125149.ccs.bam,PACBIO_SMRT,,18632.0,20658.0,24449.0,N/A,N/A,N/A,HG00621,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,31.2,31198267999.0,1414858.0,N/A,HG00621,SAMN17861653,SH066,CHS,EAS,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19103.0,21606.0,26089.0,SRR13684373,N/A,N/A,N/A,N/A,N/A,SAMN17861653,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200711_235843.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00621_lib1,single,size fractionation,GENOMIC,WGS,50165.0,22080.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00621/raw_data/PacBio_HiFi/m64136_200711_235843.ccs.bam,PACBIO_SMRT,,18659.0,20687.0,24482.0,N/A,N/A,N/A,HG00621,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,29.89,29885213340.0,1353445.0,N/A,HG00621,SAMN17861653,SH066,CHS,EAS,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17454.0,20596.0,24763.0,SRR29405774,N/A,N/A,N/A,N/A,N/A,SAMN41021678,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230725_161037_s2.hifi_reads.bc1011.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00662_PB1_m84091_230725_161037_s2,single,size fractionation,GENOMIC,WGS,72343.0,20323.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00662/raw_data/PacBio_HiFi/m84091_230725_161037_s2.hifi_reads.bc1011.bam,PACBIO_SMRT,Revio P1,16608.0,19366.0,23090.0,N/A,N/A,N/A,HG00662,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,106.48,106478216787.0,5239143.0,N/A,HG00662,SAMN41021678,,CHS,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17587.0,20751.0,24962.0,SRR29405763,N/A,N/A,N/A,N/A,N/A,SAMN41021678,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230731_133332_s2.hifi_reads.bc1011.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00662_PB1_m84091_230731_133332_s2,single,size fractionation,GENOMIC,WGS,67484.0,20466.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00662/raw_data/PacBio_HiFi/m84091_230731_133332_s2.hifi_reads.bc1011.bam,PACBIO_SMRT,Revio P1,16722.0,19517.0,23254.0,N/A,N/A,N/A,HG00662,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,78.16,78161532546.0,3819037.0,N/A,HG00662,SAMN41021678,,CHS,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17080.0,20094.0,24019.0,SRR29405847,N/A,N/A,N/A,N/A,N/A,SAMN41021678,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230817_153352_s4.hifi_reads.bc1011.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00662_PB1_m84091_230817_153352_s4,single,size fractionation,GENOMIC,WGS,57887.0,19833.0,695.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00662/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1011.bam,PACBIO_SMRT,Revio P1,16262.0,18952.0,22472.0,N/A,N/A,N/A,HG00662,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,6.34,6343032112.0,319809.0,N/A,HG00662,SAMN41021678,,CHS,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18340.0,20871.0,23876.0,SRR13684382,N/A,N/A,N/A,N/A,N/A,SAMN17861654,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200719_070806.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00673_lib1,single,size fractionation,GENOMIC,WGS,50236.0,20678.0,44.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00673/raw_data/PacBio_HiFi/m64043_200719_070806.ccs.bam,PACBIO_SMRT,,17856.0,20119.0,23071.0,N/A,N/A,N/A,HG00673,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,31.91,31912051817.0,1543254.0,N/A,HG00673,SAMN17861654,SH079,CHS,EAS,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18376.0,20937.0,23944.0,SRR13684382,N/A,N/A,N/A,N/A,N/A,SAMN17861654,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200716_182902.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00673_lib1,single,size fractionation,GENOMIC,WGS,49665.0,20725.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00673/raw_data/PacBio_HiFi/m64043_200716_182902.ccs.bam,PACBIO_SMRT,,17882.0,20173.0,23136.0,N/A,N/A,N/A,HG00673,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,28.92,28919585361.0,1395373.0,N/A,HG00673,SAMN17861654,SH079,CHS,EAS,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18430.0,21022.0,24023.0,SRR13684382,N/A,N/A,N/A,N/A,N/A,SAMN17861654,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200720_133355.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00673_lib1,single,size fractionation,GENOMIC,WGS,49923.0,20791.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00673/raw_data/PacBio_HiFi/m64043_200720_133355.ccs.bam,PACBIO_SMRT,,17929.0,20254.0,23212.0,N/A,N/A,N/A,HG00673,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,30.07,30065709075.0,1446038.0,N/A,HG00673,SAMN17861654,SH079,CHS,EAS,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18473.0,21066.0,24056.0,SRR13684382,N/A,N/A,N/A,N/A,N/A,SAMN17861654,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200718_004213.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00673_lib1,single,size fractionation,GENOMIC,WGS,49661.0,20828.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00673/raw_data/PacBio_HiFi/m64043_200718_004213.ccs.bam,PACBIO_SMRT,,17967.0,20301.0,23260.0,N/A,N/A,N/A,HG00673,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,31.59,31592031668.0,1516755.0,N/A,HG00673,SAMN17861654,SH079,CHS,EAS,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,11109.0,13905.0,18061.0,SRR29405846,N/A,N/A,N/A,N/A,N/A,SAMN41021702,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240311_155513_s4.hifi_reads.bc1011.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00701_PB1_m84091_240311_155513_s4,single,size fractionation,GENOMIC,WGS,70077.0,13566.0,53.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00701/raw_data/PacBio_HiFi/m84091_240311_155513_s4.hifi_reads.bc1011.bam,PACBIO_SMRT,Revio P1,10239.0,12385.0,15772.0,N/A,N/A,N/A,HG00701,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,66.02,66021634362.0,4866441.0,N/A,HG00701,SAMN41021702,,CHS,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,11339.0,14335.0,18745.0,SRR29405845,N/A,N/A,N/A,N/A,N/A,SAMN41021702,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240315_183649_s4.hifi_reads.bc1011.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00701_PB1_m84091_240315_183649_s4,single,size fractionation,GENOMIC,WGS,65349.0,13918.0,76.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00701/raw_data/PacBio_HiFi/m84091_240315_183649_s4.hifi_reads.bc1011.bam,PACBIO_SMRT,Revio P1,10386.0,12667.0,16260.0,N/A,N/A,N/A,HG00701,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,74.68,74683924191.0,5365799.0,N/A,HG00701,SAMN41021702,,CHS,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,11122.0,13936.0,18136.0,SRR29405844,N/A,N/A,N/A,N/A,N/A,SAMN41021702,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240315_190710_s1.hifi_reads.bc1011.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00701_PB1_m84091_240315_190710_s1,single,size fractionation,GENOMIC,WGS,60345.0,13594.0,74.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00701/raw_data/PacBio_HiFi/m84091_240315_190710_s1.hifi_reads.bc1011.bam,PACBIO_SMRT,Revio P1,10238.0,12399.0,15802.0,N/A,N/A,N/A,HG00701,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,64.55,64553821368.0,4748438.0,N/A,HG00701,SAMN41021702,,CHS,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20012.0,22219.0,24914.0,SRR13684381,N/A,N/A,N/A,N/A,N/A,SAMN17861655,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200706_123423.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00735_lib1,single,size fractionation,GENOMIC,WGS,49944.0,22085.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00735/raw_data/PacBio_HiFi/m64043_200706_123423.ccs.bam,PACBIO_SMRT,,19529.0,21653.0,24178.0,N/A,N/A,N/A,HG00735,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,28.0,27999854128.0,1267797.0,N/A,HG00735,SAMN17861655,PR06,PUR,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20073.0,22309.0,25061.0,SRR13684381,N/A,N/A,N/A,N/A,N/A,SAMN17861655,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200705_060840.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00735_lib1,single,size fractionation,GENOMIC,WGS,49904.0,22182.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00735/raw_data/PacBio_HiFi/m64043_200705_060840.ccs.bam,PACBIO_SMRT,,19581.0,21726.0,24304.0,N/A,N/A,N/A,HG00735,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,34.78,34777888798.0,1567779.0,N/A,HG00735,SAMN17861655,PR06,PUR,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20116.0,22356.0,25110.0,SRR13684381,N/A,N/A,N/A,N/A,N/A,SAMN17861655,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200702_173033.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00735_lib1,single,size fractionation,GENOMIC,WGS,49688.0,22227.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00735/raw_data/PacBio_HiFi/m64043_200702_173033.ccs.bam,PACBIO_SMRT,,19624.0,21774.0,24357.0,N/A,N/A,N/A,HG00735,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,36.35,36348091955.0,1635278.0,N/A,HG00735,SAMN17861655,PR06,PUR,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20157.0,22410.0,25197.0,SRR13684381,N/A,N/A,N/A,N/A,N/A,SAMN17861655,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200703_234328.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00735_lib1,single,size fractionation,GENOMIC,WGS,49367.0,22287.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00735/raw_data/PacBio_HiFi/m64043_200703_234328.ccs.bam,PACBIO_SMRT,,19664.0,21820.0,24428.0,N/A,N/A,N/A,HG00735,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,34.37,34369588285.0,1542075.0,N/A,HG00735,SAMN17861655,PR06,PUR,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18878.0,20880.0,25135.0,SRR18189645,N/A,N/A,N/A,N/A,N/A,SAMN26237493,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210530_003337.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00738_lib1,single,size fractionation,GENOMIC,WGS,59307.0,21611.0,345.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00738/raw_data/PacBio_HiFi/m64043_210530_003337.hifi_reads.bam,PACBIO_SMRT,P2,18535.0,20226.0,23527.0,N/A,N/A,N/A,HG00738,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,27.08,27082098409.0,1253128.0,N/A,HG00738,SAMN26237493,PR07,PUR,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18958.0,21025.0,25370.0,SRR18189645,N/A,N/A,N/A,N/A,N/A,SAMN26237493,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210531_080529.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00738_lib1,single,size fractionation,GENOMIC,WGS,60323.0,21734.0,494.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00738/raw_data/PacBio_HiFi/m64043_210531_080529.hifi_reads.bam,PACBIO_SMRT,P2,18598.0,20334.0,23778.0,N/A,N/A,N/A,HG00738,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,28.02,28021544846.0,1289251.0,N/A,HG00738,SAMN26237493,PR07,PUR,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18952.0,21035.0,25464.0,SRR18189645,N/A,N/A,N/A,N/A,N/A,SAMN26237493,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210602_151340.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00738_lib1,single,size fractionation,GENOMIC,WGS,61975.0,21750.0,90.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00738/raw_data/PacBio_HiFi/m64136_210602_151340.hifi_reads.bam,PACBIO_SMRT,P2,18587.0,20331.0,23822.0,N/A,N/A,N/A,HG00738,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,22.11,22112433547.0,1016642.0,N/A,HG00738,SAMN26237493,PR07,PUR,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19095.0,21316.0,25907.0,SRR18189645,N/A,N/A,N/A,N/A,N/A,SAMN26237493,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210601_160048.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00738_lib1,single,size fractionation,GENOMIC,WGS,63840.0,21999.0,266.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00738/raw_data/PacBio_HiFi/m64043_210601_160048.hifi_reads.bam,PACBIO_SMRT,P2,18698.0,20532.0,24274.0,N/A,N/A,N/A,HG00738,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,28.38,28382481489.0,1290160.0,N/A,HG00738,SAMN26237493,PR07,PUR,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,22183.0,24794.0,27976.0,SRR13684380,N/A,N/A,N/A,N/A,N/A,SAMN17861656,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200627_000247.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00741_lib1,single,size fractionation,GENOMIC,WGS,49815.0,24612.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00741/raw_data/PacBio_HiFi/m64136_200627_000247.ccs.bam,PACBIO_SMRT,,21626.0,24097.0,27109.0,N/A,N/A,N/A,HG00741,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,27.11,27112467388.0,1101565.0,N/A,HG00741,SAMN17861656,PR09,PUR,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,22201.0,24812.0,28003.0,SRR13684380,N/A,N/A,N/A,N/A,N/A,SAMN17861656,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200629_125431.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00741_lib1,single,size fractionation,GENOMIC,WGS,50008.0,24630.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00741/raw_data/PacBio_HiFi/m64136_200629_125431.ccs.bam,PACBIO_SMRT,,21639.0,24115.0,27138.0,N/A,N/A,N/A,HG00741,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,29.57,29569718896.0,1200554.0,N/A,HG00741,SAMN17861656,PR09,PUR,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,22246.0,24876.0,28087.0,SRR13684380,N/A,N/A,N/A,N/A,N/A,SAMN17861656,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200625_174949.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00741_lib1,single,size fractionation,GENOMIC,WGS,50089.0,24685.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00741/raw_data/PacBio_HiFi/m64136_200625_174949.ccs.bam,PACBIO_SMRT,,21678.0,24172.0,27208.0,N/A,N/A,N/A,HG00741,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,31.31,31305642912.0,1268202.0,N/A,HG00741,SAMN17861656,PR09,PUR,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,22254.0,24878.0,28094.0,SRR13684380,N/A,N/A,N/A,N/A,N/A,SAMN17861656,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200628_062837.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG00741_lib1,single,size fractionation,GENOMIC,WGS,49813.0,24694.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00741/raw_data/PacBio_HiFi/m64136_200628_062837.ccs.bam,PACBIO_SMRT,,21691.0,24170.0,27217.0,N/A,N/A,N/A,HG00741,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,31.24,31244401269.0,1265235.0,N/A,HG00741,SAMN17861656,PR09,PUR,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19918.0,24532.0,30189.0,SRR29405843,N/A,N/A,N/A,N/A,N/A,SAMN41021616,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230629_184115_s3.hifi_reads.bc1003.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00867_PB1_m84091_230629_184115_s3,single,size fractionation,GENOMIC,WGS,79149.0,23587.0,112.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00867/raw_data/PacBio_HiFi/m84091_230629_184115_s3.hifi_reads.bc1003.bam,PACBIO_SMRT,Revio P1,18315.0,22418.0,27615.0,N/A,N/A,N/A,HG00867,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,85.0,84998026939.0,3603557.0,N/A,HG00867,SAMN41021616,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19684.0,24171.0,29657.0,SRR29405842,N/A,N/A,N/A,N/A,N/A,SAMN41021616,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230703_165220_s2.hifi_reads.bc1003.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00867_PB1_m84091_230703_165220_s2,single,size fractionation,GENOMIC,WGS,68779.0,23285.0,68.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00867/raw_data/PacBio_HiFi/m84091_230703_165220_s2.hifi_reads.bc1003.bam,PACBIO_SMRT,Revio P1,18147.0,22142.0,27181.0,N/A,N/A,N/A,HG00867,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,90.56,90560178081.0,3889058.0,N/A,HG00867,SAMN41021616,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19482.0,23688.0,28873.0,SRR29405841,N/A,N/A,N/A,N/A,N/A,SAMN41021616,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230710_183139_s4.hifi_reads.bc1003.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00867_PB1_m84091_230710_183139_s4,single,size fractionation,GENOMIC,WGS,70002.0,22983.0,522.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00867/raw_data/PacBio_HiFi/m84091_230710_183139_s4.hifi_reads.bc1003.bam,PACBIO_SMRT,Revio P1,18139.0,21864.0,26615.0,N/A,N/A,N/A,HG00867,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,18.06,18059259620.0,785737.0,N/A,HG00867,SAMN41021616,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,23955.0,26878.0,30336.0,SRR13684379,N/A,N/A,N/A,N/A,N/A,SAMN17861657,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200703_234438.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01071_lib1,single,size fractionation,GENOMIC,WGS,50514.0,26588.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01071/raw_data/PacBio_HiFi/m64136_200703_234438.ccs.bam,PACBIO_SMRT,,23300.0,26092.0,29403.0,N/A,N/A,N/A,HG01071,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,25.13,25131192610.0,945196.0,N/A,HG01071,SAMN17861657,PR17,PUR,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,23976.0,26903.0,30359.0,SRR13684379,N/A,N/A,N/A,N/A,N/A,SAMN17861657,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200705_061033.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01071_lib1,single,size fractionation,GENOMIC,WGS,50254.0,26602.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01071/raw_data/PacBio_HiFi/m64136_200705_061033.ccs.bam,PACBIO_SMRT,,23316.0,26114.0,29430.0,N/A,N/A,N/A,HG01071,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,26.99,26986559262.0,1014421.0,N/A,HG01071,SAMN17861657,PR17,PUR,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,24033.0,26957.0,30389.0,SRR13684379,N/A,N/A,N/A,N/A,N/A,SAMN17861657,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200706_123635.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01071_lib1,single,size fractionation,GENOMIC,WGS,50199.0,26652.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01071/raw_data/PacBio_HiFi/m64136_200706_123635.ccs.bam,PACBIO_SMRT,,23382.0,26172.0,29468.0,N/A,N/A,N/A,HG01071,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,27.43,27428056082.0,1029096.0,N/A,HG01071,SAMN17861657,PR17,PUR,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,24027.0,26958.0,30418.0,SRR13684379,N/A,N/A,N/A,N/A,N/A,SAMN17861657,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200702_173125.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01071_lib1,single,size fractionation,GENOMIC,WGS,50496.0,26662.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01071/raw_data/PacBio_HiFi/m64136_200702_173125.ccs.bam,PACBIO_SMRT,,23373.0,26164.0,29483.0,N/A,N/A,N/A,HG01071,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,29.39,29385994806.0,1102142.0,N/A,HG01071,SAMN17861657,PR17,PUR,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16456.0,19125.0,21503.0,SRR18189644,N/A,N/A,N/A,N/A,N/A,SAMN26237494,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210707_032602.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01099_lib1,single,size fractionation,GENOMIC,WGS,49845.0,18787.0,718.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01099/raw_data/PacBio_HiFi/m64043_210707_032602.hifi_reads.bam,PACBIO_SMRT,P2,16037.0,18407.0,20851.0,N/A,N/A,N/A,HG01099,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,25.86,25855870472.0,1376237.0,N/A,HG01099,SAMN26237494,PR31,PUR,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16706.0,19451.0,21851.0,SRR18189644,N/A,N/A,N/A,N/A,N/A,SAMN26237494,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210705_162656.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01099_lib1,single,size fractionation,GENOMIC,WGS,55386.0,19081.0,347.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01099/raw_data/PacBio_HiFi/m64043_210705_162656.hifi_reads.bam,PACBIO_SMRT,P2,16223.0,18786.0,21170.0,N/A,N/A,N/A,HG01099,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.09,38087524710.0,1996032.0,N/A,HG01099,SAMN26237494,PR31,PUR,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16716.0,19458.0,21867.0,SRR18189644,N/A,N/A,N/A,N/A,N/A,SAMN26237494,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210704_052805.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01099_lib1,single,size fractionation,GENOMIC,WGS,56485.0,19094.0,834.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01099/raw_data/PacBio_HiFi/m64043_210704_052805.hifi_reads.bam,PACBIO_SMRT,P2,16230.0,18796.0,21186.0,N/A,N/A,N/A,HG01099,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.45,37446420746.0,1961160.0,N/A,HG01099,SAMN26237494,PR31,PUR,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20357.0,22134.0,24585.0,SRR13684378,N/A,N/A,N/A,N/A,N/A,SAMN17861658,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200628_062711.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01106_lib1,single,size fractionation,GENOMIC,WGS,49297.0,22276.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01106/raw_data/PacBio_HiFi/m64043_200628_062711.ccs.bam,PACBIO_SMRT,,20074.0,21727.0,23990.0,N/A,N/A,N/A,HG01106,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,35.85,35847146199.0,1609195.0,N/A,HG01106,SAMN17861658,PR25,PUR,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20354.0,22145.0,24608.0,SRR13684378,N/A,N/A,N/A,N/A,N/A,SAMN17861658,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200625_174853.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01106_lib1,single,size fractionation,GENOMIC,WGS,50120.0,22282.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01106/raw_data/PacBio_HiFi/m64043_200625_174853.ccs.bam,PACBIO_SMRT,,20072.0,21734.0,24014.0,N/A,N/A,N/A,HG01106,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,38.03,38034918237.0,1706917.0,N/A,HG01106,SAMN17861658,PR25,PUR,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20381.0,22171.0,24626.0,SRR13684378,N/A,N/A,N/A,N/A,N/A,SAMN17861658,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200629_125238.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01106_lib1,single,size fractionation,GENOMIC,WGS,49438.0,22308.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01106/raw_data/PacBio_HiFi/m64043_200629_125238.ccs.bam,PACBIO_SMRT,,20101.0,21762.0,24030.0,N/A,N/A,N/A,HG01106,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,36.77,36771576306.0,1648307.0,N/A,HG01106,SAMN17861658,PR25,PUR,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20403.0,22211.0,24706.0,SRR13684378,N/A,N/A,N/A,N/A,N/A,SAMN17861658,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200627_000137.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01106_lib1,single,size fractionation,GENOMIC,WGS,48433.0,22354.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01106/raw_data/PacBio_HiFi/m64043_200627_000137.ccs.bam,PACBIO_SMRT,,20117.0,21789.0,24100.0,N/A,N/A,N/A,HG01106,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,34.47,34465266970.0,1541756.0,N/A,HG01106,SAMN17861658,PR25,PUR,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17779.0,20606.0,24544.0,SRR29405840,N/A,N/A,N/A,N/A,N/A,SAMN41021679,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230725_164143_s3.hifi_reads.bc1012.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01167_PB1_m84091_230725_164143_s3,single,size fractionation,GENOMIC,WGS,70236.0,20540.0,78.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01167/raw_data/PacBio_HiFi/m84091_230725_164143_s3.hifi_reads.bc1012.bam,PACBIO_SMRT,Revio P1,17135.0,19573.0,23082.0,N/A,N/A,N/A,HG01167,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,105.4,105402106362.0,5131466.0,N/A,HG01167,SAMN41021679,,PUR,AMR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17829.0,20652.0,24569.0,SRR29405839,N/A,N/A,N/A,N/A,N/A,SAMN41021679,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230731_140439_s3.hifi_reads.bc1012.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01167_PB1_m84091_230731_140439_s3,single,size fractionation,GENOMIC,WGS,61397.0,20577.0,63.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01167/raw_data/PacBio_HiFi/m84091_230731_140439_s3.hifi_reads.bc1012.bam,PACBIO_SMRT,Revio P1,17176.0,19633.0,23104.0,N/A,N/A,N/A,HG01167,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,69.66,69660229902.0,3385191.0,N/A,HG01167,SAMN41021679,,PUR,AMR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17361.0,19875.0,23415.0,SRR29405838,N/A,N/A,N/A,N/A,N/A,SAMN41021679,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230817_153352_s4.hifi_reads.bc1012.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01167_PB1_m84091_230817_153352_s4,single,size fractionation,GENOMIC,WGS,53672.0,19896.0,325.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01167/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1012.bam,PACBIO_SMRT,Revio P1,16814.0,19006.0,22140.0,N/A,N/A,N/A,HG01167,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,18.66,18661653900.0,937915.0,N/A,HG01167,SAMN41021679,,PUR,AMR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19577.0,21552.0,24299.0,SRR13684377,N/A,N/A,N/A,N/A,N/A,SAMN17861659,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200621_234442.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01175_lib1,single,size fractionation,GENOMIC,WGS,49779.0,21663.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01175/raw_data/PacBio_HiFi/m64043_200621_234442.ccs.bam,PACBIO_SMRT,,19196.0,21036.0,23514.0,N/A,N/A,N/A,HG01175,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,25.09,25094609545.0,1158408.0,N/A,HG01175,SAMN17861659,PR36,PUR,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19575.0,21558.0,24328.0,SRR13684377,N/A,N/A,N/A,N/A,N/A,SAMN17861659,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200618_201934.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01175_lib1,single,size fractionation,GENOMIC,WGS,49892.0,21676.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01175/raw_data/PacBio_HiFi/m64043_200618_201934.ccs.bam,PACBIO_SMRT,,19197.0,21038.0,23531.0,N/A,N/A,N/A,HG01175,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,27.34,27337960037.0,1261159.0,N/A,HG01175,SAMN17861659,PR36,PUR,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19603.0,21590.0,24349.0,SRR13684377,N/A,N/A,N/A,N/A,N/A,SAMN17861659,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200623_060946.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01175_lib1,single,size fractionation,GENOMIC,WGS,48916.0,21703.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01175/raw_data/PacBio_HiFi/m64043_200623_060946.ccs.bam,PACBIO_SMRT,,19223.0,21069.0,23556.0,N/A,N/A,N/A,HG01175,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,26.2,26195722346.0,1206997.0,N/A,HG01175,SAMN17861659,PR36,PUR,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19663.0,21687.0,24539.0,SRR13684377,N/A,N/A,N/A,N/A,N/A,SAMN17861659,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200620_173220.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01175_lib1,single,size fractionation,GENOMIC,WGS,50465.0,21811.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01175/raw_data/PacBio_HiFi/m64043_200620_173220.ccs.bam,PACBIO_SMRT,,19274.0,21150.0,23708.0,N/A,N/A,N/A,HG01175,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,33.31,33311371824.0,1527212.0,N/A,HG01175,SAMN17861659,PR36,PUR,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18438.0,20412.0,23274.0,SRR23732279,N/A,N/A,N/A,N/A,N/A,SAMN33621945,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211127_171224.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01192_lib1,single,size fractionation,GENOMIC,WGS,52726.0,20560.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01192/raw_data/PacBio_HiFi/m64043_211127_171224.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18058.0,19858.0,22404.0,N/A,N/A,N/A,HG01192,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.85,35850177288.0,1743655.0,N/A,HG01192,SAMN33621945,PR40,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18441.0,20419.0,23268.0,SRR23732279,N/A,N/A,N/A,N/A,N/A,SAMN33621945,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211124_192057.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01192_lib1,single,size fractionation,GENOMIC,WGS,52946.0,20562.0,203.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01192/raw_data/PacBio_HiFi/m64043_211124_192057.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18064.0,19864.0,22408.0,N/A,N/A,N/A,HG01192,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,36.24,36240709779.0,1762460.0,N/A,HG01192,SAMN33621945,PR40,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18452.0,20438.0,23304.0,SRR23732279,N/A,N/A,N/A,N/A,N/A,SAMN33621945,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211126_061537.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01192_lib1,single,size fractionation,GENOMIC,WGS,53478.0,20583.0,153.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01192/raw_data/PacBio_HiFi/m64043_211126_061537.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18074.0,19879.0,22435.0,N/A,N/A,N/A,HG01192,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.68,37677927562.0,1830528.0,N/A,HG01192,SAMN33621945,PR40,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17454.0,20258.0,23821.0,SRR18189643,N/A,N/A,N/A,N/A,N/A,SAMN26237495,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210520_180149.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01255_lib1,single,size fractionation,GENOMIC,WGS,59514.0,20310.0,335.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01255/raw_data/PacBio_HiFi/m64043_210520_180149.hifi_reads.bam,PACBIO_SMRT,P2,17012.0,19180.0,22570.0,N/A,N/A,N/A,HG01255,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.27,33274752433.0,1638272.0,N/A,HG01255,SAMN26237495,CLM15,CLM,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17775.0,20797.0,24380.0,SRR18189643,N/A,N/A,N/A,N/A,N/A,SAMN26237495,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210519_033858.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01255_lib1,single,size fractionation,GENOMIC,WGS,56837.0,20716.0,110.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01255/raw_data/PacBio_HiFi/m64136_210519_033858.hifi_reads.bam,PACBIO_SMRT,P2,17261.0,19739.0,23108.0,N/A,N/A,N/A,HG01255,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.52,32516315973.0,1569564.0,N/A,HG01255,SAMN26237495,CLM15,CLM,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17882.0,20969.0,24579.0,SRR18189643,N/A,N/A,N/A,N/A,N/A,SAMN26237495,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210516_022225.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01255_lib1,single,size fractionation,GENOMIC,WGS,60589.0,20849.0,681.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01255/raw_data/PacBio_HiFi/m64136_210516_022225.hifi_reads.bam,PACBIO_SMRT,P2,17338.0,19917.0,23286.0,N/A,N/A,N/A,HG01255,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.01,35010470276.0,1679236.0,N/A,HG01255,SAMN26237495,CLM15,CLM,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18395.0,20237.0,24263.0,SRR23732278,N/A,N/A,N/A,N/A,N/A,SAMN33621946,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_211105_181124-bc1001.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01261_lib1,single,size fractionation,GENOMIC,WGS,58704.0,20987.0,986.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/m64136_211105_181124-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18104.0,19655.0,22562.0,N/A,N/A,N/A,HG01261,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,30.18,30182743796.0,1438147.0,N/A,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18369.0,20229.0,24356.0,SRR23732278,N/A,N/A,N/A,N/A,N/A,SAMN33621946,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211222_184851-bc1001.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01261_lib1,single,size fractionation,GENOMIC,WGS,67189.0,20999.0,718.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/m64043_211222_184851-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18072.0,19630.0,22593.0,N/A,N/A,N/A,HG01261,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,13.94,13944839852.0,664050.0,N/A,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18429.0,20313.0,24465.0,SRR23732278,N/A,N/A,N/A,N/A,N/A,SAMN33621946,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_211108_160613-bc1001.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01261_lib1,single,size fractionation,GENOMIC,WGS,65223.0,21072.0,204.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/m64136_211108_160613-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18129.0,19707.0,22728.0,N/A,N/A,N/A,HG01261,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.54,32544026126.0,1544394.0,N/A,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18510.0,20474.0,24807.0,SRR23732278,N/A,N/A,N/A,N/A,N/A,SAMN33621946,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_211107_050725-bc1001.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01261_lib1,single,size fractionation,GENOMIC,WGS,64761.0,21233.0,170.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/m64136_211107_050725-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18194.0,19824.0,23063.0,N/A,N/A,N/A,HG01261,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.16,32158315632.0,1514497.0,N/A,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18151.0,19909.0,22098.0,SRR13684282,N/A,N/A,N/A,N/A,N/A,SAMN17861235,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_200308_194417.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01361.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,49129.0,19894.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01361/raw_data/PacBio_HiFi_Swap_Fixed/m54329U_200308_194417.ccs.bam,PACBIO_SMRT,P2.0,17820.0,19497.0,21563.0,N/A,N/A,N/A,HG01361,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,33.24,33241454353.0,1670892.0,N/A,HG01361,SAMN17861235,CLM32,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18270.0,20039.0,22241.0,SRR13684282,N/A,N/A,N/A,N/A,N/A,SAMN17861235,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_200306_185930.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01361.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,49882.0,20024.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01361/raw_data/PacBio_HiFi_Swap_Fixed/m54329U_200306_185930.ccs.bam,PACBIO_SMRT,P2.0,17940.0,19628.0,21705.0,N/A,N/A,N/A,HG01361,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,33.29,33289500589.0,1662447.0,N/A,HG01361,SAMN17861235,CLM32,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18312.0,20101.0,22328.0,SRR13684282,N/A,N/A,N/A,N/A,N/A,SAMN17861235,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_200311_082605.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01361.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,49988.0,20083.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01361/raw_data/PacBio_HiFi_Swap_Fixed/m54329U_200311_082605.ccs.bam,PACBIO_SMRT,P2.0,17979.0,19679.0,21780.0,N/A,N/A,N/A,HG01361,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,28.28,28284738371.0,1408346.0,N/A,HG01361,SAMN17861235,CLM32,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18356.0,20151.0,22393.0,SRR13684282,N/A,N/A,N/A,N/A,N/A,SAMN17861235,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_200310_015838.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01361.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,50060.0,20135.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01361/raw_data/PacBio_HiFi_Swap_Fixed/m54329U_200310_015838.ccs.bam,PACBIO_SMRT,P2.0,18019.0,19727.0,21843.0,N/A,N/A,N/A,HG01361,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,28.42,28418733743.0,1411365.0,N/A,HG01361,SAMN17861235,CLM32,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18562.0,21038.0,24891.0,SRR18189642,N/A,N/A,N/A,N/A,N/A,SAMN26237496,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210610_203618.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01433_lib1,single,size fractionation,GENOMIC,WGS,59803.0,21255.0,509.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01433/raw_data/PacBio_HiFi/m64136_210610_203618.hifi_reads.bam,PACBIO_SMRT,P2,18128.0,20177.0,23639.0,N/A,N/A,N/A,HG01433,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,23.2,23199350663.0,1091451.0,N/A,HG01433,SAMN26237496,CLM43,CLM,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19050.0,21927.0,25849.0,SRR18189642,N/A,N/A,N/A,N/A,N/A,SAMN26237496,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210604_175856.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01433_lib1,single,size fractionation,GENOMIC,WGS,62574.0,21918.0,551.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01433/raw_data/PacBio_HiFi/m64136_210604_175856.hifi_reads.bam,PACBIO_SMRT,P2,18516.0,20897.0,24604.0,N/A,N/A,N/A,HG01433,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.37,33371252434.0,1522531.0,N/A,HG01433,SAMN26237496,CLM43,CLM,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19214.0,22200.0,26119.0,SRR18189642,N/A,N/A,N/A,N/A,N/A,SAMN26237496,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210607_115559.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01433_lib1,single,size fractionation,GENOMIC,WGS,58871.0,22122.0,495.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01433/raw_data/PacBio_HiFi/m64136_210607_115559.hifi_reads.bam,PACBIO_SMRT,P2,18654.0,21131.0,24872.0,N/A,N/A,N/A,HG01433,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,31.12,31122861165.0,1406824.0,N/A,HG01433,SAMN26237496,CLM43,CLM,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19394.0,22509.0,26396.0,SRR18189642,N/A,N/A,N/A,N/A,N/A,SAMN26237496,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210606_025622.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01433_lib1,single,size fractionation,GENOMIC,WGS,57595.0,22335.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01433/raw_data/PacBio_HiFi/m64136_210606_025622.hifi_reads.bam,PACBIO_SMRT,P2,18792.0,21399.0,25166.0,N/A,N/A,N/A,HG01433,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,24.91,24912537616.0,1115383.0,N/A,HG01433,SAMN26237496,CLM43,CLM,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18529.0,22182.0,26634.0,SRR18189641,N/A,N/A,N/A,N/A,N/A,SAMN26237497,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210625_184443.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01496_lib1,single,size fractionation,GENOMIC,WGS,61342.0,21964.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01496/raw_data/PacBio_HiFi/m64043_210625_184443.hifi_reads.bam,PACBIO_SMRT,P2,17892.0,20566.0,24954.0,N/A,N/A,N/A,HG01496,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.03,37026751079.0,1685752.0,N/A,HG01496,SAMN26237497,CLM64,CLM,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18754.0,22563.0,26973.0,SRR18189641,N/A,N/A,N/A,N/A,N/A,SAMN26237497,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210628_151651.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01496_lib1,single,size fractionation,GENOMIC,WGS,64392.0,22230.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01496/raw_data/PacBio_HiFi/m64043_210628_151651.hifi_reads.bam,PACBIO_SMRT,P2,18058.0,20958.0,25307.0,N/A,N/A,N/A,HG01496,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.86,34860559463.0,1568136.0,N/A,HG01496,SAMN26237497,CLM64,CLM,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18805.0,22663.0,27075.0,SRR18189641,N/A,N/A,N/A,N/A,N/A,SAMN26237497,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210627_054642.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01496_lib1,single,size fractionation,GENOMIC,WGS,62635.0,22304.0,90.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01496/raw_data/PacBio_HiFi/m64043_210627_054642.hifi_reads.bam,PACBIO_SMRT,P2,18096.0,21059.0,25411.0,N/A,N/A,N/A,HG01496,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,31.56,31563425462.0,1415116.0,N/A,HG01496,SAMN26237497,CLM64,CLM,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16616.0,18983.0,22408.0,SRR29405836,N/A,N/A,N/A,N/A,N/A,SAMN41708785,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230725_153931_s1.hifi_reads.bc1010.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01626_PB1_m84091_230725_153931_s1,single,size fractionation,GENOMIC,WGS,57714.0,19058.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01626/raw_data/PacBio_HiFi/m84091_230725_153931_s1.hifi_reads.bc1010.bam,PACBIO_SMRT,Revio P1,16153.0,18178.0,21220.0,N/A,N/A,N/A,HG01626,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,107.29,107287914023.0,5629338.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16541.0,18833.0,22147.0,SRR29405835,N/A,N/A,N/A,N/A,N/A,SAMN41708785,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230731_130312_s1.hifi_reads.bc1010.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01626_PB1_m84091_230731_130312_s1,single,size fractionation,GENOMIC,WGS,55270.0,18925.0,80.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01626/raw_data/PacBio_HiFi/m84091_230731_130312_s1.hifi_reads.bc1010.bam,PACBIO_SMRT,Revio P1,16094.0,18068.0,21004.0,N/A,N/A,N/A,HG01626,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,77.66,77655239427.0,4103204.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16362.0,18484.0,21658.0,SRR29405834,N/A,N/A,N/A,N/A,N/A,SAMN41708785,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230817_153352_s4.hifi_reads.bc1010.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01626_PB1_m84091_230817_153352_s4,single,size fractionation,GENOMIC,WGS,52545.0,18641.0,598.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01626/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1010.bam,PACBIO_SMRT,Revio P1,15961.0,17790.0,20571.0,N/A,N/A,N/A,HG01626,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,12.08,12082980291.0,648185.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,21236.0,23521.0,26383.0,SRR13684376,N/A,N/A,N/A,N/A,N/A,SAMN17861660,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200614_191756.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01928_lib1,single,size fractionation,GENOMIC,WGS,50091.0,23447.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01928/raw_data/PacBio_HiFi/m64043_200614_191756.ccs.bam,PACBIO_SMRT,,20789.0,22941.0,25631.0,N/A,N/A,N/A,HG01928,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,27.53,27531809459.0,1174204.0,N/A,HG01928,SAMN17861660,PEL011,PEL,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,21262.0,23565.0,26503.0,SRR13684376,N/A,N/A,N/A,N/A,N/A,SAMN17861660,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200616_013031.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01928_lib1,single,size fractionation,GENOMIC,WGS,50104.0,23498.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01928/raw_data/PacBio_HiFi/m64043_200616_013031.ccs.bam,PACBIO_SMRT,,20804.0,22976.0,25728.0,N/A,N/A,N/A,HG01928,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,25.23,25229115676.0,1073649.0,N/A,HG01928,SAMN17861660,PEL011,PEL,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,21333.0,23667.0,26624.0,SRR13684376,N/A,N/A,N/A,N/A,N/A,SAMN17861660,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200612_200936.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01928_lib1,single,size fractionation,GENOMIC,WGS,50112.0,23596.0,49.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01928/raw_data/PacBio_HiFi/m64043_200612_200936.ccs.bam,PACBIO_SMRT,,20871.0,23063.0,25835.0,N/A,N/A,N/A,HG01928,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,28.48,28477418837.0,1206871.0,N/A,HG01928,SAMN17861660,PEL011,PEL,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,21357.0,23677.0,26630.0,SRR13684376,N/A,N/A,N/A,N/A,N/A,SAMN17861660,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200617_075530.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01928_lib1,single,size fractionation,GENOMIC,WGS,49952.0,23616.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01928/raw_data/PacBio_HiFi/m64043_200617_075530.ccs.bam,PACBIO_SMRT,,20897.0,23083.0,25852.0,N/A,N/A,N/A,HG01928,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,27.66,27663641221.0,1171348.0,N/A,HG01928,SAMN17861660,PEL011,PEL,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17643.0,19834.0,24088.0,SRR18189640,N/A,N/A,N/A,N/A,N/A,SAMN26237498,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210723_184622.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01934_lib1,single,size fractionation,GENOMIC,WGS,55658.0,20392.0,87.0,bc1020 barcoded adapter,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01934/raw_data/PacBio_HiFi/m64136_210723_184622.hifi_reads.bam,PACBIO_SMRT,P2,17294.0,18988.0,22829.0,N/A,N/A,N/A,HG01934,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,23.54,23540899362.0,1154412.0,N/A,HG01934,SAMN26237498,PEL013,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17728.0,20148.0,24392.0,SRR18189640,N/A,N/A,N/A,N/A,N/A,SAMN26237498,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210728_163638.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01934_lib1,single,size fractionation,GENOMIC,WGS,56522.0,20574.0,98.0,bc1020 barcoded adapter,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01934/raw_data/PacBio_HiFi/m64136_210728_163638.hifi_reads.bam,PACBIO_SMRT,P2,17350.0,19145.0,23129.0,N/A,N/A,N/A,HG01934,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,27.15,27145864716.0,1319382.0,N/A,HG01934,SAMN26237498,PEL013,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17745.0,20203.0,24446.0,SRR18189640,N/A,N/A,N/A,N/A,N/A,SAMN26237498,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210725_054129.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01934_lib1,single,size fractionation,GENOMIC,WGS,56329.0,20608.0,113.0,bc1020 barcoded adapter,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01934/raw_data/PacBio_HiFi/m64136_210725_054129.hifi_reads.bam,PACBIO_SMRT,P2,17361.0,19176.0,23178.0,N/A,N/A,N/A,HG01934,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,26.91,26910655595.0,1305820.0,N/A,HG01934,SAMN26237498,PEL013,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17759.0,20243.0,24461.0,SRR18189640,N/A,N/A,N/A,N/A,N/A,SAMN26237498,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210726_163800.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01934_lib1,single,size fractionation,GENOMIC,WGS,56046.0,20623.0,182.0,bc1020 barcoded adapter,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01934/raw_data/PacBio_HiFi/m64136_210726_163800.hifi_reads.bam,PACBIO_SMRT,P2,17375.0,19204.0,23200.0,N/A,N/A,N/A,HG01934,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,21.88,21882737224.0,1061051.0,N/A,HG01934,SAMN26237498,PEL013,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17495.0,18754.0,20298.0,SRR18189663,N/A,N/A,N/A,N/A,N/A,SAMN26237499,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210716_230222.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01943_lib1,single,size fractionation,GENOMIC,WGS,55403.0,18817.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01943/raw_data/PacBio_HiFi/m64043_210716_230222.hifi_reads.bam,PACBIO_SMRT,P2,17322.0,18526.0,20011.0,N/A,N/A,N/A,HG01943,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.26,34264397581.0,1820921.0,N/A,HG01943,SAMN26237499,PEL016,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17516.0,18789.0,20344.0,SRR18189663,N/A,N/A,N/A,N/A,N/A,SAMN26237499,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210718_100009.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01943_lib1,single,size fractionation,GENOMIC,WGS,58783.0,18855.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01943/raw_data/PacBio_HiFi/m64043_210718_100009.hifi_reads.bam,PACBIO_SMRT,P2,17340.0,18558.0,20050.0,N/A,N/A,N/A,HG01943,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,30.88,30875828356.0,1637478.0,N/A,HG01943,SAMN26237499,PEL016,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17522.0,18792.0,20349.0,SRR18189663,N/A,N/A,N/A,N/A,N/A,SAMN26237499,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210719_210019.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01943_lib1,single,size fractionation,GENOMIC,WGS,47136.0,18860.0,68.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01943/raw_data/PacBio_HiFi/m64043_210719_210019.hifi_reads.bam,PACBIO_SMRT,P2,17347.0,18560.0,20056.0,N/A,N/A,N/A,HG01943,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.31,33311278939.0,1766146.0,N/A,HG01943,SAMN26237499,PEL016,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18871.0,21071.0,24461.0,SRR13684375,N/A,N/A,N/A,N/A,N/A,SAMN17861661,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200614_192134.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01952_lib1,single,size fractionation,GENOMIC,WGS,50198.0,21306.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01952/raw_data/PacBio_HiFi/m64136_200614_192134.ccs.bam,PACBIO_SMRT,,18517.0,20403.0,23450.0,N/A,N/A,N/A,HG01952,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,32.65,32648526346.0,1532352.0,N/A,HG01952,SAMN17861661,PEL019,PEL,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18884.0,21101.0,24511.0,SRR13684375,N/A,N/A,N/A,N/A,N/A,SAMN17861661,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200612_201033.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01952_lib1,single,size fractionation,GENOMIC,WGS,49213.0,21335.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01952/raw_data/PacBio_HiFi/m64136_200612_201033.ccs.bam,PACBIO_SMRT,,18527.0,20423.0,23484.0,N/A,N/A,N/A,HG01952,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,31.77,31770292477.0,1489115.0,N/A,HG01952,SAMN17861661,PEL019,PEL,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18887.0,21106.0,24549.0,SRR13684375,N/A,N/A,N/A,N/A,N/A,SAMN17861661,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200616_013426.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01952_lib1,single,size fractionation,GENOMIC,WGS,50070.0,21342.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01952/raw_data/PacBio_HiFi/m64136_200616_013426.ccs.bam,PACBIO_SMRT,,18527.0,20425.0,23508.0,N/A,N/A,N/A,HG01952,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,32.55,32546332886.0,1524936.0,N/A,HG01952,SAMN17861661,PEL019,PEL,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18907.0,21158.0,24613.0,SRR13684375,N/A,N/A,N/A,N/A,N/A,SAMN17861661,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200617_080019.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01952_lib1,single,size fractionation,GENOMIC,WGS,49913.0,21379.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01952/raw_data/PacBio_HiFi/m64136_200617_080019.ccs.bam,PACBIO_SMRT,,18542.0,20462.0,23575.0,N/A,N/A,N/A,HG01952,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,30.89,30885763106.0,1444654.0,N/A,HG01952,SAMN17861661,PEL019,PEL,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17814.0,19237.0,21478.0,SRR23732277,N/A,N/A,N/A,N/A,N/A,SAMN33621947,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211222_184851-bc1003.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01975_lib1,single,size fractionation,GENOMIC,WGS,67517.0,19696.0,811.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/m64043_211222_184851-bc1003.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17631.0,18899.0,20818.0,N/A,N/A,N/A,HG01975,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,5.81,5813671901.0,295158.0,N/A,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17814.0,19250.0,21498.0,SRR23732277,N/A,N/A,N/A,N/A,N/A,SAMN33621947,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211114_112934-bc1003.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01975_lib1,single,size fractionation,GENOMIC,WGS,61049.0,19701.0,142.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/m64043_211114_112934-bc1003.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17627.0,18908.0,20835.0,N/A,N/A,N/A,HG01975,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,36.27,36273475358.0,1841180.0,N/A,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17823.0,19259.0,21526.0,SRR23732277,N/A,N/A,N/A,N/A,N/A,SAMN33621947,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211113_003158-bc1003.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01975_lib1,single,size fractionation,GENOMIC,WGS,58778.0,19715.0,230.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/m64043_211113_003158-bc1003.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17636.0,18916.0,20851.0,N/A,N/A,N/A,HG01975,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.41,37414972875.0,1897742.0,N/A,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17828.0,19276.0,21558.0,SRR23732277,N/A,N/A,N/A,N/A,N/A,SAMN33621947,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211115_222749-bc1003.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01975_lib1,single,size fractionation,GENOMIC,WGS,60746.0,19733.0,818.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/m64043_211115_222749-bc1003.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17640.0,18930.0,20876.0,N/A,N/A,N/A,HG01975,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,29.24,29243979674.0,1481915.0,N/A,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,23294.0,26026.0,29681.0,SRR13684372,N/A,N/A,N/A,N/A,N/A,SAMN17861662,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200530_164818.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01978_lib1,single,size fractionation,GENOMIC,WGS,50175.0,25990.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01978/raw_data/PacBio_HiFi/m64136_200530_164818.ccs.bam,PACBIO_SMRT,,22726.0,25247.0,28603.0,N/A,N/A,N/A,HG01978,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,27.71,27708518732.0,1066105.0,N/A,HG01978,SAMN17861662,PEL26,PEL,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,23423.0,26200.0,29895.0,SRR13684372,N/A,N/A,N/A,N/A,N/A,SAMN17861662,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200605_040848.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01978_lib1,single,size fractionation,GENOMIC,WGS,50262.0,26159.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01978/raw_data/PacBio_HiFi/m64136_200605_040848.ccs.bam,PACBIO_SMRT,,22851.0,25408.0,28812.0,N/A,N/A,N/A,HG01978,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,30.14,30137326069.0,1152070.0,N/A,HG01978,SAMN17861662,PEL26,PEL,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,23425.0,26214.0,29904.0,SRR13684372,N/A,N/A,N/A,N/A,N/A,SAMN17861662,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200603_214308.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01978_lib1,single,size fractionation,GENOMIC,WGS,50353.0,26165.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01978/raw_data/PacBio_HiFi/m64136_200603_214308.ccs.bam,PACBIO_SMRT,,22850.0,25418.0,28828.0,N/A,N/A,N/A,HG01978,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,31.15,31151393453.0,1190563.0,N/A,HG01978,SAMN17861662,PEL26,PEL,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,23557.0,26366.0,30083.0,SRR13684372,N/A,N/A,N/A,N/A,N/A,SAMN17861662,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200602_153012.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01978_lib1,single,size fractionation,GENOMIC,WGS,50181.0,26299.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01978/raw_data/PacBio_HiFi/m64136_200602_153012.ccs.bam,PACBIO_SMRT,,22977.0,25560.0,29003.0,N/A,N/A,N/A,HG01978,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,28.57,28572278581.0,1086428.0,N/A,HG01978,SAMN17861662,PEL26,PEL,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20324.0,22093.0,24616.0,SRR18189662,N/A,N/A,N/A,N/A,N/A,SAMN26237500,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210625_184731.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01981_lib1,single,size fractionation,GENOMIC,WGS,58677.0,22409.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01981/raw_data/PacBio_HiFi/m64136_210625_184731.hifi_reads.bam,PACBIO_SMRT,P2,20057.0,21671.0,23942.0,N/A,N/A,N/A,HG01981,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.56,32558602266.0,1452915.0,N/A,HG01981,SAMN26237500,PEL27,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20321.0,22091.0,24616.0,SRR18189662,N/A,N/A,N/A,N/A,N/A,SAMN26237500,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210627_054246.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01981_lib1,single,size fractionation,GENOMIC,WGS,58483.0,22404.0,109.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01981/raw_data/PacBio_HiFi/m64136_210627_054246.hifi_reads.bam,PACBIO_SMRT,P2,20054.0,21668.0,23950.0,N/A,N/A,N/A,HG01981,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.3,38295698114.0,1709317.0,N/A,HG01981,SAMN26237500,PEL27,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20370.0,22177.0,24752.0,SRR18189662,N/A,N/A,N/A,N/A,N/A,SAMN26237500,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210628_163953.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01981_lib1,single,size fractionation,GENOMIC,WGS,67049.0,22492.0,461.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01981/raw_data/PacBio_HiFi/m64136_210628_163953.hifi_reads.bam,PACBIO_SMRT,P2,20094.0,21740.0,24060.0,N/A,N/A,N/A,HG01981,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.53,34527307027.0,1535065.0,N/A,HG01981,SAMN26237500,PEL27,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18813.0,20513.0,22711.0,SRR18189661,N/A,N/A,N/A,N/A,N/A,SAMN26237501,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210622_163331.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01993_lib1,single,size fractionation,GENOMIC,WGS,55085.0,20587.0,177.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01993/raw_data/PacBio_HiFi/m64043_210622_163331.hifi_reads.bam,PACBIO_SMRT,P2,18534.0,20131.0,22196.0,N/A,N/A,N/A,HG01993,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,39.18,39177895246.0,1903015.0,N/A,HG01993,SAMN26237501,PEL29,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18938.0,20675.0,22909.0,SRR18189661,N/A,N/A,N/A,N/A,N/A,SAMN26237501,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210624_032817.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01993_lib1,single,size fractionation,GENOMIC,WGS,57065.0,20740.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01993/raw_data/PacBio_HiFi/m64043_210624_032817.hifi_reads.bam,PACBIO_SMRT,P2,18649.0,20282.0,22381.0,N/A,N/A,N/A,HG01993,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,30.49,30485595101.0,1469845.0,N/A,HG01993,SAMN26237501,PEL29,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18948.0,20695.0,22942.0,SRR18189661,N/A,N/A,N/A,N/A,N/A,SAMN26237501,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210620_041711.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG01993_lib1,single,size fractionation,GENOMIC,WGS,55937.0,20759.0,90.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01993/raw_data/PacBio_HiFi/m64043_210620_041711.hifi_reads.bam,PACBIO_SMRT,P2,18655.0,20295.0,22409.0,N/A,N/A,N/A,HG01993,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.99,35989302267.0,1733650.0,N/A,HG01993,SAMN26237501,PEL29,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16680.0,19065.0,22279.0,SRR18189660,N/A,N/A,N/A,N/A,N/A,SAMN26237502,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210702_183526.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02004_lib1,single,size fractionation,GENOMIC,WGS,58589.0,19156.0,330.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02004/raw_data/PacBio_HiFi/m64136_210702_183526.hifi_reads.bam,PACBIO_SMRT,P2,16324.0,18153.0,21349.0,N/A,N/A,N/A,HG02004,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.14,33142881457.0,1730130.0,N/A,HG02004,SAMN26237502,PEL33,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16832.0,19431.0,22579.0,SRR18189660,N/A,N/A,N/A,N/A,N/A,SAMN26237502,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210704_053041.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02004_lib1,single,size fractionation,GENOMIC,WGS,55125.0,19374.0,271.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02004/raw_data/PacBio_HiFi/m64136_210704_053041.hifi_reads.bam,PACBIO_SMRT,P2,16441.0,18442.0,21645.0,N/A,N/A,N/A,HG02004,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,22.89,22886582472.0,1181301.0,N/A,HG02004,SAMN26237502,PEL33,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16903.0,19508.0,22598.0,SRR18189660,N/A,N/A,N/A,N/A,N/A,SAMN26237502,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210709_205614.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02004_lib1,single,size fractionation,GENOMIC,WGS,57164.0,19427.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02004/raw_data/PacBio_HiFi/m64043_210709_205614.hifi_reads.bam,PACBIO_SMRT,P2,16509.0,18542.0,21688.0,N/A,N/A,N/A,HG02004,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,31.36,31359670199.0,1614164.0,N/A,HG02004,SAMN26237502,PEL33,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17087.0,19873.0,22910.0,SRR18189660,N/A,N/A,N/A,N/A,N/A,SAMN26237502,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210705_162724.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02004_lib1,single,size fractionation,GENOMIC,WGS,53948.0,19668.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02004/raw_data/PacBio_HiFi/m64136_210705_162724.hifi_reads.bam,PACBIO_SMRT,P2,16651.0,18898.0,22002.0,N/A,N/A,N/A,HG02004,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,28.89,28890588164.0,1468846.0,N/A,HG02004,SAMN26237502,PEL33,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16432.0,18225.0,21552.0,SRR23732276,N/A,N/A,N/A,N/A,N/A,SAMN33621948,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210905_032603-bc1022.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02015_lib1,single,size fractionation,GENOMIC,WGS,48424.0,18655.0,76.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02015/raw_data/PacBio_HiFi/m64043_210905_032603-bc1022.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16173.0,17620.0,20670.0,N/A,N/A,N/A,HG02015,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.83,37828131839.0,2027744.0,N/A,HG02015,SAMN33621948,VN046,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16510.0,18970.0,22812.0,SRR23732276,N/A,N/A,N/A,N/A,N/A,SAMN33621948,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210901_164337-bc1022.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02015_lib1,single,size fractionation,GENOMIC,WGS,373990.0,18903.0,51.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02015/raw_data/PacBio_HiFi/m64043_210901_164337-bc1022.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15928.0,17686.0,21174.0,N/A,N/A,N/A,HG02015,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,58.14,58139125879.0,3075646.0,N/A,HG02015,SAMN33621948,VN046,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16688.0,19402.0,23437.0,SRR23732276,N/A,N/A,N/A,N/A,N/A,SAMN33621948,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210903_163032-bc1022.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02015_lib1,single,size fractionation,GENOMIC,WGS,388970.0,19410.0,51.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02015/raw_data/PacBio_HiFi/m64043_210903_163032-bc1022.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16061.0,17931.0,21538.0,N/A,N/A,N/A,HG02015,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,75.03,75027463744.0,3865204.0,N/A,HG02015,SAMN33621948,VN046,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17344.0,18825.0,21046.0,SRR18189659,N/A,N/A,N/A,N/A,N/A,SAMN26237503,9.0.0.92188,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210209_184241.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02027_lib,single,size fractionation,GENOMIC,WGS,53960.0,19159.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02027/raw_data/PacBio_HiFi/m64136_210209_184241.hifi_reads.bam,PACBIO_SMRT,P2,17101.0,18456.0,20372.0,N/A,N/A,N/A,HG02027,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.39,33394650011.0,1742953.0,N/A,HG02027,SAMN26237503,VN050,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17361.0,18842.0,21069.0,SRR18189659,N/A,N/A,N/A,N/A,N/A,SAMN26237503,9.0.0.92188,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210205_190622.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02027_lib,single,size fractionation,GENOMIC,WGS,59462.0,19181.0,50.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02027/raw_data/PacBio_HiFi/m64136_210205_190622.hifi_reads.bam,PACBIO_SMRT,P2,17116.0,18474.0,20391.0,N/A,N/A,N/A,HG02027,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.46,34463464135.0,1796742.0,N/A,HG02027,SAMN26237503,VN050,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17386.0,18891.0,21167.0,SRR18189659,N/A,N/A,N/A,N/A,N/A,SAMN26237503,9.0.0.92188,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210207_012053.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02027_lib,single,size fractionation,GENOMIC,WGS,55858.0,19231.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02027/raw_data/PacBio_HiFi/m64136_210207_012053.hifi_reads.bam,PACBIO_SMRT,P2,17137.0,18510.0,20467.0,N/A,N/A,N/A,HG02027,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,31.82,31820631982.0,1654569.0,N/A,HG02027,SAMN26237503,VN050,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17577.0,19163.0,21640.0,SRR18189659,N/A,N/A,N/A,N/A,N/A,SAMN26237503,9.0.0.92188,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210211_010151.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02027_lib,single,size fractionation,GENOMIC,WGS,47891.0,19529.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02027/raw_data/PacBio_HiFi/m64136_210211_010151.hifi_reads.bam,PACBIO_SMRT,P2,17310.0,18748.0,20835.0,N/A,N/A,N/A,HG02027,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.98,32977753701.0,1688620.0,N/A,HG02027,SAMN26237503,VN050,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18068.0,19682.0,22217.0,SRR23732275,N/A,N/A,N/A,N/A,N/A,SAMN33621949,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_211120_043838-bc1009.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02056_lib1,single,size fractionation,GENOMIC,WGS,50015.0,19815.0,116.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/m64136_211120_043838-bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17748.0,19225.0,21357.0,N/A,N/A,N/A,HG02056,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,27.14,27141258277.0,1369700.0,N/A,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18083.0,19712.0,22301.0,SRR23732275,N/A,N/A,N/A,N/A,N/A,SAMN33621949,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_211118_185339-bc1009.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02056_lib1,single,size fractionation,GENOMIC,WGS,51507.0,19854.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/m64136_211118_185339-bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17756.0,19247.0,21406.0,N/A,N/A,N/A,HG02056,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,29.16,29158250441.0,1468626.0,N/A,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18090.0,19721.0,22333.0,SRR23732275,N/A,N/A,N/A,N/A,N/A,SAMN33621949,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_211121_153454-bc1009.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02056_lib1,single,size fractionation,GENOMIC,WGS,55264.0,19862.0,199.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/m64136_211121_153454-bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17760.0,19254.0,21430.0,N/A,N/A,N/A,HG02056,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,28.49,28490874747.0,1434407.0,N/A,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18454.0,20670.0,24438.0,SRR23732275,N/A,N/A,N/A,N/A,N/A,SAMN33621949,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220114_181052-bc1009.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02056_lib1,single,size fractionation,GENOMIC,WGS,62255.0,20647.0,276.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/m64043_220114_181052-bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17986.0,19880.0,23140.0,N/A,N/A,N/A,HG02056,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,29.06,29056368441.0,1407236.0,N/A,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15736.0,18325.0,21635.0,SRR18158593,N/A,N/A,N/A,N/A,N/A,SAMN26267381,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_210507_224951-bc1010_BAK8A_OA.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02074a.HFSS,single,size fractionation,GENOMIC,WGS,45596.0,18140.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02074/raw_data/PacBio_HiFi/m54329U_210507_224951-bc1010_BAK8A_OA.hifi_reads.bam,PACBIO_SMRT,P2.2,15121.0,17428.0,20473.0,N/A,N/A,N/A,HG02074,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,3.17,3174472950.0,174993.0,N/A,HG02074,SAMN26267381,VN066,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17499.0,19260.0,23033.0,SRR18189658,N/A,N/A,N/A,N/A,N/A,SAMN26237504,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210321_022417.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02083_lib1,single,size fractionation,GENOMIC,WGS,62376.0,19914.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02083/raw_data/PacBio_HiFi/m64136_210321_022417.hifi_reads.bam,PACBIO_SMRT,P2,17213.0,18705.0,21841.0,N/A,N/A,N/A,HG02083,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,31.27,31271435801.0,1570273.0,N/A,HG02083,SAMN26237504,VN069,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17500.0,19287.0,23123.0,SRR18189658,N/A,N/A,N/A,N/A,N/A,SAMN26237504,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210317_200525.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02083_lib1,single,size fractionation,GENOMIC,WGS,59173.0,19950.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02083/raw_data/PacBio_HiFi/m64136_210317_200525.hifi_reads.bam,PACBIO_SMRT,P2,17206.0,18711.0,21907.0,N/A,N/A,N/A,HG02083,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.79,34788230322.0,1743712.0,N/A,HG02083,SAMN26237504,VN069,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17508.0,19300.0,23147.0,SRR18189658,N/A,N/A,N/A,N/A,N/A,SAMN26237504,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210319_191015.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02083_lib1,single,size fractionation,GENOMIC,WGS,60206.0,19965.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02083/raw_data/PacBio_HiFi/m64136_210319_191015.hifi_reads.bam,PACBIO_SMRT,P2,17216.0,18722.0,21930.0,N/A,N/A,N/A,HG02083,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.15,35152401716.0,1760691.0,N/A,HG02083,SAMN26237504,VN069,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17556.0,19392.0,23264.0,SRR18189658,N/A,N/A,N/A,N/A,N/A,SAMN26237504,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210323_162524.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02083_lib1,single,size fractionation,GENOMIC,WGS,61695.0,20039.0,90.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02083/raw_data/PacBio_HiFi/m64136_210323_162524.hifi_reads.bam,PACBIO_SMRT,P2,17255.0,18792.0,22064.0,N/A,N/A,N/A,HG02083,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.0,33996593694.0,1696465.0,N/A,HG02083,SAMN26237504,VN069,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16939.0,19334.0,21674.0,SRR23732274,N/A,N/A,N/A,N/A,N/A,SAMN33621950,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220422_181133-bc1001.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02129_lib1,single,size fractionation,GENOMIC,WGS,65275.0,19191.0,139.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02129/raw_data/PacBio_HiFi/m64136_220422_181133-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16313.0,18805.0,20933.0,N/A,N/A,N/A,HG02129,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.31,37306593554.0,1943961.0,N/A,HG02129,SAMN33621950,VN079,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16979.0,19358.0,21704.0,SRR23732274,N/A,N/A,N/A,N/A,N/A,SAMN33621950,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220424_050632-bc1001.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02129_lib1,single,size fractionation,GENOMIC,WGS,56783.0,19216.0,95.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02129/raw_data/PacBio_HiFi/m64136_220424_050632-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16330.0,18825.0,20955.0,N/A,N/A,N/A,HG02129,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.06,32061676319.0,1668439.0,N/A,HG02129,SAMN33621950,VN079,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17036.0,19403.0,21791.0,SRR23732274,N/A,N/A,N/A,N/A,N/A,SAMN33621950,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220426_155627-bc1001.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02129_lib1,single,size fractionation,GENOMIC,WGS,61990.0,19272.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02129/raw_data/PacBio_HiFi/m64136_220426_155627-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16361.0,18861.0,21022.0,N/A,N/A,N/A,HG02129,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,42.0,42004596679.0,2179533.0,N/A,HG02129,SAMN33621950,VN079,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15220.0,17751.0,21043.0,SRR18158584,N/A,N/A,N/A,N/A,N/A,SAMN26267392,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_210615_233707-bc1009_BAK8A_OA.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02135a.HFSS,single,size fractionation,GENOMIC,WGS,52606.0,17626.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m54329U_210615_233707-bc1009_BAK8A_OA.hifi_reads.bam,PACBIO_SMRT,P2.2,14644.0,16847.0,19859.0,N/A,N/A,N/A,HG02135,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,20.11,20107735346.0,1140779.0,N/A,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15772.0,18430.0,21760.0,SRR18158584,N/A,N/A,N/A,N/A,N/A,SAMN26267392,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_210507_224951-bc1009_BAK8A_OA.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02135a.HFSS,single,size fractionation,GENOMIC,WGS,48978.0,18196.0,1129.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m54329U_210507_224951-bc1009_BAK8A_OA.hifi_reads.bam,PACBIO_SMRT,P2.2,15126.0,17489.0,20600.0,N/A,N/A,N/A,HG02135,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,2.87,2868292075.0,157627.0,N/A,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15402.0,16790.0,20061.0,SRR13684391,N/A,N/A,N/A,N/A,N/A,SAMN17861663,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200621_234916.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02148_lib1,single,size fractionation,GENOMIC,WGS,48355.0,17407.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02148/raw_data/PacBio_HiFi/m64136_200621_234916.ccs.bam,PACBIO_SMRT,,15211.0,16353.0,18901.0,N/A,N/A,N/A,HG02148,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,24.8,24801869543.0,1424789.0,N/A,HG02148,SAMN17861663,PEL39,PEL,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15454.0,16933.0,20383.0,SRR13684391,N/A,N/A,N/A,N/A,N/A,SAMN17861663,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200623_061529.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02148_lib1,single,size fractionation,GENOMIC,WGS,45232.0,17549.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02148/raw_data/PacBio_HiFi/m64136_200623_061529.ccs.bam,PACBIO_SMRT,,15249.0,16441.0,19221.0,N/A,N/A,N/A,HG02148,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,30.05,30048975399.0,1712199.0,N/A,HG02148,SAMN17861663,PEL39,PEL,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15475.0,16977.0,20453.0,SRR13684391,N/A,N/A,N/A,N/A,N/A,SAMN17861663,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200620_173618.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02148_lib1,single,size fractionation,GENOMIC,WGS,49685.0,17587.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02148/raw_data/PacBio_HiFi/m64136_200620_173618.ccs.bam,PACBIO_SMRT,,15265.0,16476.0,19301.0,N/A,N/A,N/A,HG02148,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,29.59,29586622176.0,1682208.0,N/A,HG02148,SAMN17861663,PEL39,PEL,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15487.0,17027.0,20549.0,SRR13684391,N/A,N/A,N/A,N/A,N/A,SAMN17861663,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_200618_202033.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02148_lib1,single,size fractionation,GENOMIC,WGS,49035.0,17632.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02148/raw_data/PacBio_HiFi/m64136_200618_202033.ccs.bam,PACBIO_SMRT,,15274.0,16505.0,19399.0,N/A,N/A,N/A,HG02148,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,38.81,38806001935.0,2200848.0,N/A,HG02148,SAMN17861663,PEL39,PEL,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17196.0,19308.0,22847.0,SRR23732293,N/A,N/A,N/A,N/A,N/A,SAMN33621951,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220703_150713-bc1012.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02155_lib1,single,size fractionation,GENOMIC,WGS,56609.0,19601.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/m64136_220703_150713-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16826.0,18592.0,21674.0,N/A,N/A,N/A,HG02155,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,31.3,31298698030.0,1596721.0,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17224.0,19369.0,22944.0,SRR23732293,N/A,N/A,N/A,N/A,N/A,SAMN33621951,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220701_181202-bc1012.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02155_lib1,single,size fractionation,GENOMIC,WGS,63056.0,19653.0,69.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/m64136_220701_181202-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16848.0,18635.0,21767.0,N/A,N/A,N/A,HG02155,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.33,34332255688.0,1746882.0,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17269.0,19476.0,23090.0,SRR23732293,N/A,N/A,N/A,N/A,N/A,SAMN33621951,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220705_120453-bc1012.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02155_lib1,single,size fractionation,GENOMIC,WGS,64074.0,19740.0,219.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/m64136_220705_120453-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16881.0,18713.0,21906.0,N/A,N/A,N/A,HG02155,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,31.58,31584932406.0,1599995.0,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17476.0,19953.0,23518.0,SRR23732293,N/A,N/A,N/A,N/A,N/A,SAMN33621951,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220728_173215-bc1012.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02155_lib1,single,size fractionation,GENOMIC,WGS,55945.0,20033.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/m64043_220728_173215-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17036.0,19069.0,22395.0,N/A,N/A,N/A,HG02155,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,12.12,12121610916.0,605059.0,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18266.0,22326.0,27511.0,SRR29405833,N/A,N/A,N/A,N/A,N/A,SAMN41021617,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230629_191221_s4.hifi_reads.bc1008.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02178_PB1_m84091_230629_191221_s4,single,size fractionation,GENOMIC,WGS,72017.0,21716.0,123.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02178/raw_data/PacBio_HiFi/m84091_230629_191221_s4.hifi_reads.bc1008.bam,PACBIO_SMRT,Revio P1,17032.0,20508.0,25157.0,N/A,N/A,N/A,HG02178,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,65.02,65018477593.0,2993899.0,N/A,HG02178,SAMN41021617,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18143.0,22138.0,27182.0,SRR29405832,N/A,N/A,N/A,N/A,N/A,SAMN41021617,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230705_181402_s3.hifi_reads.bc1008.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02178_PB1_m84091_230705_181402_s3,single,size fractionation,GENOMIC,WGS,68719.0,21517.0,115.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02178/raw_data/PacBio_HiFi/m84091_230705_181402_s3.hifi_reads.bc1008.bam,PACBIO_SMRT,Revio P1,16933.0,20355.0,24921.0,N/A,N/A,N/A,HG02178,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,90.3,90298507655.0,4196539.0,N/A,HG02178,SAMN41021617,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17477.0,21327.0,26181.0,SRR29405831,N/A,N/A,N/A,N/A,N/A,SAMN41021617,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230710_180033_s3.hifi_reads.bc1008.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02178_PB1_m84091_230710_180033_s3,single,size fractionation,GENOMIC,WGS,69950.0,20825.0,173.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02178/raw_data/PacBio_HiFi/m84091_230710_180033_s3.hifi_reads.bc1008.bam,PACBIO_SMRT,Revio P1,16351.0,19640.0,24021.0,N/A,N/A,N/A,HG02178,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,40.93,40928479039.0,1965273.0,N/A,HG02178,SAMN41021617,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18894.0,20440.0,22488.0,SRR23732292,N/A,N/A,N/A,N/A,N/A,SAMN33621952,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211220_160211-bc1011.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02258_lib1,single,size fractionation,GENOMIC,WGS,50640.0,20578.0,100.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/m64043_211220_160211-bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18651.0,20107.0,22012.0,N/A,N/A,N/A,HG02258,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,40.09,40089424862.0,1948134.0,N/A,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18916.0,20475.0,22548.0,SRR23732292,N/A,N/A,N/A,N/A,N/A,SAMN33621952,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211219_050421-bc1011.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02258_lib1,single,size fractionation,GENOMIC,WGS,53658.0,20619.0,203.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/m64043_211219_050421-bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18671.0,20138.0,22062.0,N/A,N/A,N/A,HG02258,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,36.01,36007958539.0,1746272.0,N/A,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18935.0,20497.0,22571.0,SRR23732292,N/A,N/A,N/A,N/A,N/A,SAMN33621952,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220114_181052-bc1011.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02258_lib1,single,size fractionation,GENOMIC,WGS,47039.0,20639.0,217.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/m64043_220114_181052-bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18686.0,20163.0,22078.0,N/A,N/A,N/A,HG02258,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,6.88,6878212374.0,333250.0,N/A,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18946.0,20502.0,22571.0,SRR23732292,N/A,N/A,N/A,N/A,N/A,SAMN33621952,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211217_180919-bc1011.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02258_lib1,single,size fractionation,GENOMIC,WGS,53399.0,20643.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/m64043_211217_180919-bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18701.0,20169.0,22088.0,N/A,N/A,N/A,HG02258,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,30.38,30383642106.0,1471798.0,N/A,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17731.0,20899.0,23890.0,SRR23732291,N/A,N/A,N/A,N/A,N/A,SAMN33621953,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220429_171542-bc1002.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02273_lib1,single,size fractionation,GENOMIC,WGS,58982.0,20567.0,139.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02273/raw_data/PacBio_HiFi/m64043_220429_171542-bc1002.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17280.0,20013.0,22954.0,N/A,N/A,N/A,HG02273,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.03,38026194906.0,1848889.0,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17739.0,20923.0,23937.0,SRR23732291,N/A,N/A,N/A,N/A,N/A,SAMN33621953,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220501_041051-bc1002.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02273_lib1,single,size fractionation,GENOMIC,WGS,60518.0,20590.0,139.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02273/raw_data/PacBio_HiFi/m64043_220501_041051-bc1002.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17281.0,20032.0,22984.0,N/A,N/A,N/A,HG02273,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,39.21,39207885275.0,1904184.0,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17766.0,20967.0,23999.0,SRR23732291,N/A,N/A,N/A,N/A,N/A,SAMN33621953,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220503_153752-bc1002.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02273_lib1,single,size fractionation,GENOMIC,WGS,67692.0,20629.0,327.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02273/raw_data/PacBio_HiFi/m64043_220503_153752-bc1002.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17297.0,20076.0,23036.0,N/A,N/A,N/A,HG02273,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,44.37,44366503595.0,2150606.0,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16598.0,19206.0,21600.0,SRR18189657,N/A,N/A,N/A,N/A,N/A,SAMN26237505,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210716_230343.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02280_lib1,single,size fractionation,GENOMIC,WGS,55627.0,18909.0,77.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02280/raw_data/PacBio_HiFi/m64136_210716_230343.hifi_reads.bam,PACBIO_SMRT,P2,16156.0,18541.0,20932.0,N/A,N/A,N/A,HG02280,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.26,32263383149.0,1706223.0,N/A,HG02280,SAMN26237505,BB23,ACB,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16617.0,19228.0,21618.0,SRR18189657,N/A,N/A,N/A,N/A,N/A,SAMN26237505,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210719_201505.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02280_lib1,single,size fractionation,GENOMIC,WGS,58301.0,18928.0,95.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02280/raw_data/PacBio_HiFi/m64136_210719_201505.hifi_reads.bam,PACBIO_SMRT,P2,16172.0,18564.0,20950.0,N/A,N/A,N/A,HG02280,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.72,32722313918.0,1728776.0,N/A,HG02280,SAMN26237505,BB23,ACB,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16622.0,19243.0,21644.0,SRR18189657,N/A,N/A,N/A,N/A,N/A,SAMN26237505,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210718_091611.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02280_lib1,single,size fractionation,GENOMIC,WGS,55386.0,18944.0,747.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02280/raw_data/PacBio_HiFi/m64136_210718_091611.hifi_reads.bam,PACBIO_SMRT,P2,16173.0,18582.0,20967.0,N/A,N/A,N/A,HG02280,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.48,35481365570.0,1872882.0,N/A,HG02280,SAMN26237505,BB23,ACB,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17909.0,21501.0,26127.0,SRR29405830,N/A,N/A,N/A,N/A,N/A,SAMN41021615,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230629_181009_s2.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02392_PB1_m84091_230629_181009_s2,single,size fractionation,GENOMIC,WGS,66424.0,21170.0,77.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02392/raw_data/PacBio_HiFi/m84091_230629_181009_s2.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,16952.0,20015.0,24192.0,N/A,N/A,N/A,HG02392,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,66.2,66196250958.0,3126764.0,N/A,HG02392,SAMN41021615,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17517.0,20915.0,25377.0,SRR29405829,N/A,N/A,N/A,N/A,N/A,SAMN41021615,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230705_171239_s1.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02392_PB1_m84091_230705_171239_s1,single,size fractionation,GENOMIC,WGS,64312.0,20679.0,80.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02392/raw_data/PacBio_HiFi/m84091_230705_171239_s1.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,16660.0,19524.0,23524.0,N/A,N/A,N/A,HG02392,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,70.43,70428529309.0,3405708.0,N/A,HG02392,SAMN41021615,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17383.0,20654.0,24998.0,SRR29405828,N/A,N/A,N/A,N/A,N/A,SAMN41021615,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230710_180033_s3.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02392_PB1_m84091_230710_180033_s3,single,size fractionation,GENOMIC,WGS,69083.0,20509.0,110.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02392/raw_data/PacBio_HiFi/m84091_230710_180033_s3.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,16594.0,19347.0,23221.0,N/A,N/A,N/A,HG02392,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,37.69,37690426700.0,1837746.0,N/A,HG02392,SAMN41021615,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16974.0,19967.0,24015.0,SRR29405827,N/A,N/A,N/A,N/A,N/A,SAMN41021615,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230727_143029_s4.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02392_PB1_m84091_230727_143029_s4,single,size fractionation,GENOMIC,WGS,52237.0,19939.0,448.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02392/raw_data/PacBio_HiFi/m84091_230727_143029_s4.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,16316.0,18819.0,22398.0,N/A,N/A,N/A,HG02392,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,5.03,5031138131.0,252316.0,N/A,HG02392,SAMN41021615,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16304.0,18487.0,21703.0,SRR29405825,N/A,N/A,N/A,N/A,N/A,SAMN41021615,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230817_153352_s4.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02392_PB1_m84091_230817_153352_s4,single,size fractionation,GENOMIC,WGS,53098.0,18520.0,235.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02392/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,15842.0,17738.0,20544.0,N/A,N/A,N/A,HG02392,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,13.18,13184911846.0,711902.0,N/A,HG02392,SAMN41021615,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17952.0,20058.0,24831.0,SRR18189656,N/A,N/A,N/A,N/A,N/A,SAMN26237506,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210508_033135.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02523_lib1,single,size fractionation,GENOMIC,WGS,59221.0,20876.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02523/raw_data/PacBio_HiFi/m64043_210508_033135.hifi_reads.bam,PACBIO_SMRT,P2,17572.0,19266.0,22943.0,N/A,N/A,N/A,HG02523,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.64,32638821684.0,1563454.0,N/A,HG02523,SAMN26237506,VN090,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17964.0,20086.0,24849.0,SRR18189656,N/A,N/A,N/A,N/A,N/A,SAMN26237506,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210509_110105.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02523_lib1,single,size fractionation,GENOMIC,WGS,57156.0,20889.0,562.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02523/raw_data/PacBio_HiFi/m64043_210509_110105.hifi_reads.bam,PACBIO_SMRT,P2,17581.0,19284.0,22978.0,N/A,N/A,N/A,HG02523,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,30.66,30658573852.0,1467650.0,N/A,HG02523,SAMN26237506,VN090,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18057.0,20287.0,25204.0,SRR18189656,N/A,N/A,N/A,N/A,N/A,SAMN26237506,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210506_183430.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02523_lib1,single,size fractionation,GENOMIC,WGS,59606.0,21060.0,694.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02523/raw_data/PacBio_HiFi/m64043_210506_183430.hifi_reads.bam,PACBIO_SMRT,P2,17653.0,19411.0,23289.0,N/A,N/A,N/A,HG02523,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.6,34598182243.0,1642763.0,N/A,HG02523,SAMN26237506,VN090,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19052.0,19960.0,20835.0,SRR13684288,N/A,N/A,N/A,N/A,N/A,SAMN17861239,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_200211_192235.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02559.HiFiEx_b6,single,size fractionation,GENOMIC,WGS,37258.0,19761.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02559/raw_data/PacBio_HiFi/m54329U_200211_192235.ccs.bam,PACBIO_SMRT,P2.0,18953.0,19868.0,20760.0,N/A,N/A,N/A,HG02559,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,6.84,6838204744.0,346033.0,N/A,HG02559,SAMN17861239,BB68,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18610.0,20214.0,22178.0,SRR13684287,N/A,N/A,N/A,N/A,N/A,SAMN17861239,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64076_200215_021919.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02559.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,49430.0,20252.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02559/raw_data/PacBio_HiFi/m64076_200215_021919.ccs.bam,PACBIO_SMRT,P2.0,18340.0,19877.0,21734.0,N/A,N/A,N/A,HG02559,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,26.58,26582700348.0,1312567.0,N/A,HG02559,SAMN17861239,BB68,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18687.0,20318.0,22342.0,SRR13684287,N/A,N/A,N/A,N/A,N/A,SAMN17861239,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_200219_181523.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02559.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,50580.0,20372.0,43.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02559/raw_data/PacBio_HiFi/m54329U_200219_181523.ccs.bam,PACBIO_SMRT,P2.0,18411.0,19968.0,21870.0,N/A,N/A,N/A,HG02559,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,31.28,31278743348.0,1535338.0,N/A,HG02559,SAMN17861239,BB68,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18706.0,20331.0,22336.0,SRR13684287,N/A,N/A,N/A,N/A,N/A,SAMN17861239,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64076_200217_055339.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02559.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,50659.0,20381.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02559/raw_data/PacBio_HiFi/m64076_200217_055339.ccs.bam,PACBIO_SMRT,P2.0,18431.0,19985.0,21877.0,N/A,N/A,N/A,HG02559,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,31.58,31581599812.0,1549488.0,N/A,HG02559,SAMN17861239,BB68,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18769.0,20412.0,22456.0,SRR13684287,N/A,N/A,N/A,N/A,N/A,SAMN17861239,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_200217_055345.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02559.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,50075.0,20473.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02559/raw_data/PacBio_HiFi/m54329U_200217_055345.ccs.bam,PACBIO_SMRT,P2.0,18489.0,20058.0,21980.0,N/A,N/A,N/A,HG02559,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,32.26,32259514307.0,1575697.0,N/A,HG02559,SAMN17861239,BB68,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,13622.0,16734.0,20462.0,SRR29483252,N/A,N/A,N/A,N/A,N/A,SAMN17861240,v7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84046_230711_233802_s3.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02572.HFSS3_m84046_230711_233802_s3,single,size fractionation,GENOMIC,WGS,57097.0,16065.0,119.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02572/raw_data/PacBio_HiFi/m84046_230711_233802_s3.hifi_reads.default.bam,PACBIO_SMRT,P1,12582.0,15327.0,18827.0,N/A,N/A,N/A,HG02572,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,70.16,70160006292.0,4367119.0,N/A,HG02572,SAMN17861240,GB21,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19124.0,23125.0,28327.0,SRR29405824,N/A,N/A,N/A,N/A,N/A,SAMN41021657,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230707_183012_s4.hifi_reads.bc1016.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02583_PB1_m84091_230707_183012_s4,single,size fractionation,GENOMIC,WGS,63871.0,22668.0,62.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02583/raw_data/PacBio_HiFi/m84091_230707_183012_s4.hifi_reads.bc1016.bam,PACBIO_SMRT,Revio P1,17966.0,21407.0,26047.0,N/A,N/A,N/A,HG02583,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,97.56,97558541990.0,4303764.0,N/A,HG02583,SAMN41021657,GB23,GWD,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18888.0,23089.0,28314.0,SRR29405823,N/A,N/A,N/A,N/A,N/A,SAMN41021657,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230714_140949_s3.hifi_reads.bc1016.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02583_PB1_m84091_230714_140949_s3,single,size fractionation,GENOMIC,WGS,74239.0,22446.0,70.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02583/raw_data/PacBio_HiFi/m84091_230714_140949_s3.hifi_reads.bc1016.bam,PACBIO_SMRT,Revio P1,17588.0,21245.0,25972.0,N/A,N/A,N/A,HG02583,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,103.64,103636997807.0,4617113.0,N/A,HG02583,SAMN41021657,GB23,GWD,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17971.0,19605.0,23555.0,SRR18189655,N/A,N/A,N/A,N/A,N/A,SAMN26237507,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210614_223013.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02602_lib1,single,size fractionation,GENOMIC,WGS,53432.0,20425.0,591.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02602/raw_data/PacBio_HiFi/m64043_210614_223013.hifi_reads.bam,PACBIO_SMRT,P2,17717.0,19089.0,22040.0,N/A,N/A,N/A,HG02602,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,19.75,19749338623.0,966914.0,N/A,HG02602,SAMN26237507,PK09,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17974.0,19611.0,23584.0,SRR18189655,N/A,N/A,N/A,N/A,N/A,SAMN26237507,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210613_133026.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02602_lib1,single,size fractionation,GENOMIC,WGS,56871.0,20440.0,395.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02602/raw_data/PacBio_HiFi/m64043_210613_133026.hifi_reads.bam,PACBIO_SMRT,P2,17719.0,19093.0,22051.0,N/A,N/A,N/A,HG02602,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,25.14,25138567629.0,1229861.0,N/A,HG02602,SAMN26237507,PK09,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18012.0,19709.0,23853.0,SRR18189655,N/A,N/A,N/A,N/A,N/A,SAMN26237507,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210612_053030.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02602_lib1,single,size fractionation,GENOMIC,WGS,64694.0,20556.0,242.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02602/raw_data/PacBio_HiFi/m64043_210612_053030.hifi_reads.bam,PACBIO_SMRT,P2,17745.0,19156.0,22281.0,N/A,N/A,N/A,HG02602,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,19.83,19825720983.0,964466.0,N/A,HG02602,SAMN26237507,PK09,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18202.0,20158.0,24673.0,SRR18189655,N/A,N/A,N/A,N/A,N/A,SAMN26237507,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210618_184604.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02602_lib1,single,size fractionation,GENOMIC,WGS,63465.0,20973.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02602/raw_data/PacBio_HiFi/m64043_210618_184604.hifi_reads.bam,PACBIO_SMRT,P2,17893.0,19453.0,23120.0,N/A,N/A,N/A,HG02602,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,36.17,36169981448.0,1724579.0,N/A,HG02602,SAMN26237507,PK09,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16935.0,18925.0,22065.0,SRR18189654,N/A,N/A,N/A,N/A,N/A,SAMN26237508,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210528_171842.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02615_lib1,single,size fractionation,GENOMIC,WGS,57329.0,19166.0,653.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02615/raw_data/PacBio_HiFi/m64136_210528_171842.hifi_reads.bam,PACBIO_SMRT,P2,16621.0,18304.0,21230.0,N/A,N/A,N/A,HG02615,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.77,33766412584.0,1761768.0,N/A,HG02615,SAMN26237508,GB29,GWD,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17180.0,19380.0,22494.0,SRR18189654,N/A,N/A,N/A,N/A,N/A,SAMN26237508,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210531_083342.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02615_lib1,single,size fractionation,GENOMIC,WGS,54872.0,19492.0,418.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02615/raw_data/PacBio_HiFi/m64136_210531_083342.hifi_reads.bam,PACBIO_SMRT,P2,16825.0,18669.0,21697.0,N/A,N/A,N/A,HG02615,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.48,32475308904.0,1666072.0,N/A,HG02615,SAMN26237508,GB29,GWD,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17182.0,19404.0,22518.0,SRR18189654,N/A,N/A,N/A,N/A,N/A,SAMN26237508,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210530_004827.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02615_lib1,single,size fractionation,GENOMIC,WGS,54925.0,19501.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02615/raw_data/PacBio_HiFi/m64136_210530_004827.hifi_reads.bam,PACBIO_SMRT,P2,16824.0,18684.0,21714.0,N/A,N/A,N/A,HG02615,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.74,32739078900.0,1678784.0,N/A,HG02615,SAMN26237508,GB29,GWD,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20731.0,22740.0,25670.0,SRR13684390,N/A,N/A,N/A,N/A,N/A,SAMN17861664,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200603_012738.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02622_lib1,single,size fractionation,GENOMIC,WGS,49813.0,22969.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02622/raw_data/PacBio_HiFi/m64043_200603_012738.ccs.bam,PACBIO_SMRT,,20396.0,22214.0,24844.0,N/A,N/A,N/A,HG02622,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,35.16,35155415627.0,1530497.0,N/A,HG02622,SAMN17861664,GB31,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20764.0,22784.0,25744.0,SRR13684390,N/A,N/A,N/A,N/A,N/A,SAMN17861664,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200604_075218.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02622_lib1,single,size fractionation,GENOMIC,WGS,50214.0,23018.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02622/raw_data/PacBio_HiFi/m64043_200604_075218.ccs.bam,PACBIO_SMRT,,20424.0,22252.0,24909.0,N/A,N/A,N/A,HG02622,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,34.7,34702534691.0,1507617.0,N/A,HG02622,SAMN17861664,GB31,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20811.0,22892.0,25951.0,SRR13684390,N/A,N/A,N/A,N/A,N/A,SAMN17861664,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200530_164723.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02622_lib1,single,size fractionation,GENOMIC,WGS,49910.0,23125.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02622/raw_data/PacBio_HiFi/m64043_200530_164723.ccs.bam,PACBIO_SMRT,,20458.0,22331.0,25075.0,N/A,N/A,N/A,HG02622,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,37.23,37233379263.0,1610050.0,N/A,HG02622,SAMN17861664,GB31,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20958.0,23109.0,26215.0,SRR13684390,N/A,N/A,N/A,N/A,N/A,SAMN17861664,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200601_191521.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02622_lib1,single,size fractionation,GENOMIC,WGS,49954.0,23320.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02622/raw_data/PacBio_HiFi/m64043_200601_191521.ccs.bam,PACBIO_SMRT,,20594.0,22526.0,25327.0,N/A,N/A,N/A,HG02622,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,36.9,36900505572.0,1582321.0,N/A,HG02622,SAMN17861664,GB31,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18152.0,21403.0,25741.0,SRR29405822,N/A,N/A,N/A,N/A,N/A,SAMN41021691,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231106_194835_s4.hifi_reads.bc1001.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02624_PB1_m84091_231106_194835_s4,single,size fractionation,GENOMIC,WGS,61392.0,21215.0,126.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02624/raw_data/PacBio_HiFi/m84091_231106_194835_s4.hifi_reads.bc1001.bam,PACBIO_SMRT,Revio P1,17347.0,20121.0,24002.0,N/A,N/A,N/A,HG02624,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,60.42,60423047644.0,2848011.0,N/A,HG02624,SAMN41021691,,GWD,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18409.0,21808.0,26342.0,SRR29405821,N/A,N/A,N/A,N/A,N/A,SAMN41021691,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231113_162942_s4.hifi_reads.bc1001.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02624_PB1_m84091_231113_162942_s4,single,size fractionation,GENOMIC,WGS,72097.0,21567.0,80.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02624/raw_data/PacBio_HiFi/m84091_231113_162942_s4.hifi_reads.bc1001.bam,PACBIO_SMRT,Revio P1,17534.0,20443.0,24485.0,N/A,N/A,N/A,HG02624,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,72.41,72407932208.0,3357318.0,N/A,HG02624,SAMN41021691,,GWD,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18713.0,22358.0,27192.0,SRR29405820,N/A,N/A,N/A,N/A,N/A,SAMN41021691,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231214_211211_s3.hifi_reads.bc1001.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02624_PB1_m84091_231214_211211_s3,single,size fractionation,GENOMIC,WGS,66338.0,22035.0,146.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02624/raw_data/PacBio_HiFi/m84091_231214_211211_s3.hifi_reads.bc1001.bam,PACBIO_SMRT,Revio P1,17740.0,20852.0,25145.0,N/A,N/A,N/A,HG02624,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,47.93,47928785289.0,2175052.0,N/A,HG02624,SAMN41021691,,GWD,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14319.0,17514.0,21621.0,SRR29405819,N/A,N/A,N/A,N/A,N/A,SAMN41021691,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240221_215958_s3.hifi_reads.bc1001.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02624_PB1_m84091_240221_215958_s3,single,size fractionation,GENOMIC,WGS,51714.0,16859.0,268.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02624/raw_data/PacBio_HiFi/m84091_240221_215958_s3.hifi_reads.bc1001.bam,PACBIO_SMRT,Revio P1,13197.0,16006.0,19706.0,N/A,N/A,N/A,HG02624,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,9.77,9765699517.0,579245.0,N/A,HG02624,SAMN41021691,,GWD,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17152.0,18935.0,21316.0,SRR13684389,N/A,N/A,N/A,N/A,N/A,SAMN17861665,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200501_162248.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02630_lib1,single,size fractionation,GENOMIC,WGS,49817.0,18982.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02630/raw_data/PacBio_HiFi/m64043_200501_162248.ccs.bam,PACBIO_SMRT,,16796.0,18472.0,20639.0,N/A,N/A,N/A,HG02630,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,39.4,39398066325.0,2075445.0,N/A,HG02630,SAMN17861665,GB33,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17331.0,19165.0,21633.0,SRR13684389,N/A,N/A,N/A,N/A,N/A,SAMN17861665,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200505_112554.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02630_lib1,single,size fractionation,GENOMIC,WGS,48960.0,19212.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02630/raw_data/PacBio_HiFi/m64043_200505_112554.ccs.bam,PACBIO_SMRT,,16966.0,18683.0,20926.0,N/A,N/A,N/A,HG02630,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,36.59,36589957988.0,1904474.0,N/A,HG02630,SAMN17861665,GB33,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17403.0,19260.0,21751.0,SRR13684389,N/A,N/A,N/A,N/A,N/A,SAMN17861665,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200504_050026.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02630_lib1,single,size fractionation,GENOMIC,WGS,49274.0,19300.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02630/raw_data/PacBio_HiFi/m64043_200504_050026.ccs.bam,PACBIO_SMRT,,17031.0,18769.0,21036.0,N/A,N/A,N/A,HG02630,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,37.59,37589214946.0,1947611.0,N/A,HG02630,SAMN17861665,GB33,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17527.0,19449.0,22047.0,SRR13684389,N/A,N/A,N/A,N/A,N/A,SAMN17861665,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200502_223511.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02630_lib1,single,size fractionation,GENOMIC,WGS,49229.0,19481.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02630/raw_data/PacBio_HiFi/m64043_200502_223511.ccs.bam,PACBIO_SMRT,,17138.0,18926.0,21293.0,N/A,N/A,N/A,HG02630,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,37.43,37434888190.0,1921608.0,N/A,HG02630,SAMN17861665,GB33,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17462.0,19578.0,23288.0,SRR18189652,N/A,N/A,N/A,N/A,N/A,SAMN26237509,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210517_184202.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02698_lib1,single,size fractionation,GENOMIC,WGS,56902.0,19940.0,633.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02698/raw_data/PacBio_HiFi/m64136_210517_184202.hifi_reads.bam,PACBIO_SMRT,P2,17123.0,18854.0,22222.0,N/A,N/A,N/A,HG02698,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.78,32782437878.0,1644028.0,N/A,HG02698,SAMN26237509,PK21,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17461.0,19577.0,23289.0,SRR18189652,N/A,N/A,N/A,N/A,N/A,SAMN26237509,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210514_184433.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02698_lib1,single,size fractionation,GENOMIC,WGS,57438.0,19944.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02698/raw_data/PacBio_HiFi/m64136_210514_184433.hifi_reads.bam,PACBIO_SMRT,P2,17123.0,18853.0,22227.0,N/A,N/A,N/A,HG02698,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,31.5,31502958375.0,1579519.0,N/A,HG02698,SAMN26237509,PK21,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17554.0,19788.0,23507.0,SRR18189652,N/A,N/A,N/A,N/A,N/A,SAMN26237509,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210519_013026.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02698_lib1,single,size fractionation,GENOMIC,WGS,54640.0,20083.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02698/raw_data/PacBio_HiFi/m64043_210519_013026.hifi_reads.bam,PACBIO_SMRT,P2,17194.0,18998.0,22461.0,N/A,N/A,N/A,HG02698,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.18,33178464571.0,1652007.0,N/A,HG02698,SAMN26237509,PK21,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15108.0,16669.0,19437.0,SRR13684388,N/A,N/A,N/A,N/A,N/A,SAMN17861666,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200403_163826.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02717_lib1,single,size fractionation,GENOMIC,WGS,49781.0,17048.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02717/raw_data/PacBio_HiFi/m64043_200403_163826.ccs.bam,PACBIO_SMRT,,14838.0,16196.0,18413.0,N/A,N/A,N/A,HG02717,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,36.34,36342520970.0,2131662.0,N/A,HG02717,SAMN17861666,GB50,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15160.0,16748.0,19581.0,SRR13684388,N/A,N/A,N/A,N/A,N/A,SAMN17861666,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200408_064651.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02717_lib1,single,size fractionation,GENOMIC,WGS,49936.0,17129.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02717/raw_data/PacBio_HiFi/m64043_200408_064651.ccs.bam,PACBIO_SMRT,,14884.0,16265.0,18536.0,N/A,N/A,N/A,HG02717,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,34.82,34817299277.0,2032542.0,N/A,HG02717,SAMN17861666,GB50,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15188.0,16776.0,19595.0,SRR13684388,N/A,N/A,N/A,N/A,N/A,SAMN17861666,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200405_180950.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02717_lib1,single,size fractionation,GENOMIC,WGS,49958.0,17151.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02717/raw_data/PacBio_HiFi/m64043_200405_180950.ccs.bam,PACBIO_SMRT,,14913.0,16294.0,18565.0,N/A,N/A,N/A,HG02717,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,34.32,34324816343.0,2001329.0,N/A,HG02717,SAMN17861666,GB50,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15201.0,16818.0,19702.0,SRR13684388,N/A,N/A,N/A,N/A,N/A,SAMN17861666,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200407_002219.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02717_lib1,single,size fractionation,GENOMIC,WGS,46041.0,17192.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02717/raw_data/PacBio_HiFi/m64043_200407_002219.ccs.bam,PACBIO_SMRT,,14920.0,16320.0,18637.0,N/A,N/A,N/A,HG02717,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,34.81,34814542915.0,2024928.0,N/A,HG02717,SAMN17861666,GB50,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17476.0,20753.0,24073.0,SRR18189651,N/A,N/A,N/A,N/A,N/A,SAMN26237510,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210723_184340.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02809_lib1,single,size fractionation,GENOMIC,WGS,63434.0,20456.0,111.0,bc1019 barcoded adapter,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02809/raw_data/PacBio_HiFi/m64043_210723_184340.hifi_reads.bam,PACBIO_SMRT,P2,17008.0,19683.0,22941.0,N/A,N/A,N/A,HG02809,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,29.21,29214139102.0,1428112.0,N/A,HG02809,SAMN26237510,GB63,GWD,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18029.0,21588.0,25022.0,SRR18189651,N/A,N/A,N/A,N/A,N/A,SAMN26237510,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210728_163353.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02809_lib1,single,size fractionation,GENOMIC,WGS,60391.0,21178.0,111.0,bc1019 barcoded adapter,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02809/raw_data/PacBio_HiFi/m64043_210728_163353.hifi_reads.bam,PACBIO_SMRT,P2,17406.0,20602.0,23832.0,N/A,N/A,N/A,HG02809,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,31.7,31703994871.0,1496989.0,N/A,HG02809,SAMN26237510,GB63,GWD,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18360.0,21931.0,25380.0,SRR18189651,N/A,N/A,N/A,N/A,N/A,SAMN26237510,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210726_163819.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02809_lib1,single,size fractionation,GENOMIC,WGS,63495.0,21488.0,111.0,bc1019 barcoded adapter,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02809/raw_data/PacBio_HiFi/m64043_210726_163819.hifi_reads.bam,PACBIO_SMRT,P2,17624.0,20956.0,24189.0,N/A,N/A,N/A,HG02809,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,24.56,24556655893.0,1142800.0,N/A,HG02809,SAMN26237510,GB63,GWD,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18342.0,21941.0,25421.0,SRR18189651,N/A,N/A,N/A,N/A,N/A,SAMN26237510,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210725_053930.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02809_lib1,single,size fractionation,GENOMIC,WGS,64323.0,21494.0,187.0,bc1019 barcoded adapter,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02809/raw_data/PacBio_HiFi/m64043_210725_053930.hifi_reads.bam,PACBIO_SMRT,P2,17612.0,20949.0,24207.0,N/A,N/A,N/A,HG02809,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,28.58,28581238388.0,1329702.0,N/A,HG02809,SAMN26237510,GB63,GWD,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15933.0,17391.0,19669.0,SRR13684387,N/A,N/A,N/A,N/A,N/A,SAMN17861667,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200410_214826.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02886_lib1,single,size fractionation,GENOMIC,WGS,50049.0,17675.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02886/raw_data/PacBio_HiFi/m64043_200410_214826.ccs.bam,PACBIO_SMRT,,15688.0,17002.0,18953.0,N/A,N/A,N/A,HG02886,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,34.1,34103394360.0,1929448.0,N/A,HG02886,SAMN17861667,GB89,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16010.0,17504.0,19854.0,SRR13684387,N/A,N/A,N/A,N/A,N/A,SAMN17861667,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200412_040054.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02886_lib1,single,size fractionation,GENOMIC,WGS,48163.0,17797.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02886/raw_data/PacBio_HiFi/m64043_200412_040054.ccs.bam,PACBIO_SMRT,,15758.0,17100.0,19106.0,N/A,N/A,N/A,HG02886,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,35.97,35972927628.0,2021284.0,N/A,HG02886,SAMN17861667,GB89,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16104.0,17657.0,20126.0,SRR13684387,N/A,N/A,N/A,N/A,N/A,SAMN17861667,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200414_165107.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02886_lib1,single,size fractionation,GENOMIC,WGS,50292.0,17954.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02886/raw_data/PacBio_HiFi/m64043_200414_165107.ccs.bam,PACBIO_SMRT,,15840.0,17229.0,19327.0,N/A,N/A,N/A,HG02886,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,33.76,33758955124.0,1880255.0,N/A,HG02886,SAMN17861667,GB89,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16302.0,17984.0,20716.0,SRR13684387,N/A,N/A,N/A,N/A,N/A,SAMN17861667,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200413_102554.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02886_lib1,single,size fractionation,GENOMIC,WGS,48532.0,18277.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02886/raw_data/PacBio_HiFi/m64043_200413_102554.ccs.bam,PACBIO_SMRT,,16011.0,17500.0,19798.0,N/A,N/A,N/A,HG02886,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,33.57,33571543462.0,1836728.0,N/A,HG02886,SAMN17861667,GB89,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18087.0,20257.0,24333.0,SRR23732290,N/A,N/A,N/A,N/A,N/A,SAMN33621954,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220717_152237-bc1017.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02965_lib1,single,size fractionation,GENOMIC,WGS,67060.0,20743.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02965/raw_data/PacBio_HiFi/m64043_220717_152237-bc1017.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17692.0,19502.0,22679.0,N/A,N/A,N/A,HG02965,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,40.12,40119820394.0,1934110.0,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18128.0,20329.0,24489.0,SRR23732290,N/A,N/A,N/A,N/A,N/A,SAMN33621954,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220719_122051-bc1017.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02965_lib1,single,size fractionation,GENOMIC,WGS,66417.0,20820.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02965/raw_data/PacBio_HiFi/m64043_220719_122051-bc1017.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17723.0,19557.0,22800.0,N/A,N/A,N/A,HG02965,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,41.99,41992148990.0,2016822.0,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18203.0,20521.0,24916.0,SRR23732290,N/A,N/A,N/A,N/A,N/A,SAMN33621954,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220715_182700-bc1017.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02965_lib1,single,size fractionation,GENOMIC,WGS,73722.0,20989.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02965/raw_data/PacBio_HiFi/m64043_220715_182700-bc1017.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17769.0,19678.0,23131.0,N/A,N/A,N/A,HG02965,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.65,35646111219.0,1698253.0,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18278.0,19846.0,21842.0,SRR23732289,N/A,N/A,N/A,N/A,N/A,SAMN33621955,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220726_203720-bc1009.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02976_lib1,single,size fractionation,GENOMIC,WGS,57617.0,19914.0,205.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/m64043_220726_203720-bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18011.0,19503.0,21372.0,N/A,N/A,N/A,HG02976,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,15.05,15045982932.0,755542.0,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18311.0,19886.0,21906.0,SRR23732289,N/A,N/A,N/A,N/A,N/A,SAMN33621955,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220621_134351-bc1009.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02976_lib1,single,size fractionation,GENOMIC,WGS,54707.0,19958.0,214.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/m64043_220621_134351-bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18038.0,19542.0,21427.0,N/A,N/A,N/A,HG02976,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,25.12,25120924503.0,1258651.0,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18314.0,19893.0,21915.0,SRR23732289,N/A,N/A,N/A,N/A,N/A,SAMN33621955,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220619_164635-bc1009.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02976_lib1,single,size fractionation,GENOMIC,WGS,69085.0,19961.0,633.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/m64043_220619_164635-bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18043.0,19546.0,21434.0,N/A,N/A,N/A,HG02976,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.29,37286464203.0,1867914.0,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18347.0,19941.0,21988.0,SRR23732289,N/A,N/A,N/A,N/A,N/A,SAMN33621955,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220617_195135-bc1009.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02976_lib1,single,size fractionation,GENOMIC,WGS,53116.0,20017.0,396.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/m64043_220617_195135-bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18072.0,19589.0,21498.0,N/A,N/A,N/A,HG02976,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.33,35330491836.0,1765009.0,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17504.0,20673.0,25130.0,SRR29405818,N/A,N/A,N/A,N/A,N/A,SAMN41021703,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240122_201558_s1.hifi_reads.bc1012.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03072_PB1_m84091_240122_201558_s1,single,size fractionation,GENOMIC,WGS,63436.0,20638.0,114.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03072/raw_data/PacBio_HiFi/m84091_240122_201558_s1.hifi_reads.bc1012.bam,PACBIO_SMRT,Revio P1,16770.0,19387.0,23268.0,N/A,N/A,N/A,HG03072,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,72.76,72760626031.0,3525553.0,N/A,HG03072,SAMN41021703,,MSL,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16266.0,20382.0,25318.0,SRR29405817,N/A,N/A,N/A,N/A,N/A,SAMN41021703,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240311_165640_s2.hifi_reads.bc1012.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03072_PB1_m84091_240311_165640_s2,single,size fractionation,GENOMIC,WGS,77803.0,19233.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03072/raw_data/PacBio_HiFi/m84091_240311_165640_s2.hifi_reads.bc1012.bam,PACBIO_SMRT,Revio P1,14598.0,18306.0,22883.0,N/A,N/A,N/A,HG03072,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,89.67,89666821979.0,4661892.0,N/A,HG03072,SAMN41021703,,MSL,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16627.0,20884.0,25858.0,SRR29405816,N/A,N/A,N/A,N/A,N/A,SAMN41021703,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240315_193817_s2.hifi_reads.bc1012.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03072_PB1_m84091_240315_193817_s2,single,size fractionation,GENOMIC,WGS,57237.0,19655.0,115.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03072/raw_data/PacBio_HiFi/m84091_240315_193817_s2.hifi_reads.bc1012.bam,PACBIO_SMRT,Revio P1,14915.0,18745.0,23432.0,N/A,N/A,N/A,HG03072,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,43.08,43084215319.0,2191963.0,N/A,HG03072,SAMN41021703,,MSL,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18477.0,22138.0,26903.0,SRR29405814,N/A,N/A,N/A,N/A,N/A,SAMN41021694,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231113_170005_s1.hifi_reads.bc1008.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03108_PB1_m84091_231113_170005_s1,single,size fractionation,GENOMIC,WGS,64350.0,21758.0,156.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03108/raw_data/PacBio_HiFi/m84091_231113_170005_s1.hifi_reads.bc1008.bam,PACBIO_SMRT,Revio P1,17455.0,20616.0,24894.0,N/A,N/A,N/A,HG03108,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,49.18,49182307712.0,2260373.0,N/A,HG03108,SAMN41021694,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18635.0,22455.0,27452.0,SRR29405813,N/A,N/A,N/A,N/A,N/A,SAMN41021694,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231214_200959_s1.hifi_reads.bc1008.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03108_PB1_m84091_231214_200959_s1,single,size fractionation,GENOMIC,WGS,65917.0,22030.0,163.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03108/raw_data/PacBio_HiFi/m84091_231214_200959_s1.hifi_reads.bc1008.bam,PACBIO_SMRT,Revio P1,17551.0,20828.0,25292.0,N/A,N/A,N/A,HG03108,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,61.87,61873183479.0,2808537.0,N/A,HG03108,SAMN41021694,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15702.0,19375.0,23712.0,SRR29405812,N/A,N/A,N/A,N/A,N/A,SAMN41021694,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240308_215845_s3.hifi_reads.bc1008.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03108_PB1_m84091_240308_215845_s3,single,size fractionation,GENOMIC,WGS,59387.0,18325.0,138.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03108/raw_data/PacBio_HiFi/m84091_240308_215845_s3.hifi_reads.bc1008.bam,PACBIO_SMRT,Revio P1,14205.0,17621.0,21682.0,N/A,N/A,N/A,HG03108,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,85.74,85735358906.0,4678487.0,N/A,HG03108,SAMN41021694,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17895.0,20471.0,24342.0,SRR23732288,N/A,N/A,N/A,N/A,N/A,SAMN33621956,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220619_164654-bc1010.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03195_lib1,single,size fractionation,GENOMIC,WGS,64535.0,20666.0,52.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/m64136_220619_164654-bc1010.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17464.0,19472.0,23096.0,N/A,N/A,N/A,HG03195,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.9,34900743310.0,1688750.0,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17921.0,20557.0,24463.0,SRR23732288,N/A,N/A,N/A,N/A,N/A,SAMN33621956,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220617_195203-bc1010.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03195_lib1,single,size fractionation,GENOMIC,WGS,68687.0,20729.0,54.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/m64136_220617_195203-bc1010.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17481.0,19529.0,23196.0,N/A,N/A,N/A,HG03195,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.39,38391026616.0,1851955.0,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18042.0,20781.0,24628.0,SRR23732288,N/A,N/A,N/A,N/A,N/A,SAMN33621956,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220621_134558-bc1010.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03195_lib1,single,size fractionation,GENOMIC,WGS,69884.0,20880.0,139.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/m64136_220621_134558-bc1010.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17587.0,19710.0,23384.0,N/A,N/A,N/A,HG03195,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.83,32834403528.0,1572497.0,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,21539.0,23799.0,26818.0,SRR23732288,N/A,N/A,N/A,N/A,N/A,SAMN33621956,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220726_203720-bc1010.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03195_lib1,single,size fractionation,GENOMIC,WGS,57429.0,23841.0,894.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/m64043_220726_203720-bc1010.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,21102.0,23205.0,25986.0,N/A,N/A,N/A,HG03195,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,2.81,2810055296.0,117862.0,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18363.0,20023.0,22169.0,SRR23732287,N/A,N/A,N/A,N/A,N/A,SAMN33621957,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220726_203720-bc1008.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03225_lib1,single,size fractionation,GENOMIC,WGS,59173.0,20095.0,521.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03225/raw_data/PacBio_HiFi/m64043_220726_203720-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18057.0,19643.0,21619.0,N/A,N/A,N/A,HG03225,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,23.86,23862784465.0,1187476.0,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19029.0,21243.0,24403.0,SRR23732287,N/A,N/A,N/A,N/A,N/A,SAMN33621957,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220516_150157-bc1008.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03225_lib1,single,size fractionation,GENOMIC,WGS,56783.0,21296.0,83.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03225/raw_data/PacBio_HiFi/m64043_220516_150157-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18584.0,20581.0,23437.0,N/A,N/A,N/A,HG03225,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,28.64,28643913675.0,1344981.0,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19060.0,21306.0,24500.0,SRR23732287,N/A,N/A,N/A,N/A,N/A,SAMN33621957,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220518_120044-bc1008.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03225_lib1,single,size fractionation,GENOMIC,WGS,64236.0,21357.0,188.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03225/raw_data/PacBio_HiFi/m64043_220518_120044-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18611.0,20634.0,23516.0,N/A,N/A,N/A,HG03225,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.73,32725639816.0,1532258.0,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19083.0,21321.0,24508.0,SRR23732287,N/A,N/A,N/A,N/A,N/A,SAMN33621957,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220518_004520-bc1008.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03225_lib1,single,size fractionation,GENOMIC,WGS,56904.0,21381.0,83.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03225/raw_data/PacBio_HiFi/m64136_220518_004520-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18637.0,20656.0,23529.0,N/A,N/A,N/A,HG03225,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,26.98,26980532443.0,1261872.0,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17041.0,19750.0,23558.0,SRR29405811,N/A,N/A,N/A,N/A,N/A,SAMN41021631,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230707_175906_s3.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03270_PB1_m84091_230707_175906_s3,single,size fractionation,GENOMIC,WGS,62381.0,19740.0,75.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03270/raw_data/PacBio_HiFi/m84091_230707_175906_s3.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,16442.0,18758.0,22106.0,N/A,N/A,N/A,HG03270,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,112.11,112105606405.0,5678941.0,N/A,HG03270,SAMN41021631,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17028.0,19751.0,23619.0,SRR29405810,N/A,N/A,N/A,N/A,N/A,SAMN41021631,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230710_183139_s4.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03270_PB1_m84091_230710_183139_s4,single,size fractionation,GENOMIC,WGS,63760.0,19750.0,102.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03270/raw_data/PacBio_HiFi/m84091_230710_183139_s4.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,16426.0,18741.0,22134.0,N/A,N/A,N/A,HG03270,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,87.91,87910720528.0,4451148.0,N/A,HG03270,SAMN41021631,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16681.0,19722.0,23552.0,SRR29405802,N/A,N/A,N/A,N/A,N/A,SAMN41021668,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230721_145006_s3.hifi_reads.bc1009.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03369_PB1_m84091_230721_145006_s3,single,size fractionation,GENOMIC,WGS,62946.0,19379.0,109.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03369/raw_data/PacBio_HiFi/m84091_230721_145006_s3.hifi_reads.bc1009.bam,PACBIO_SMRT,Revio P1,15812.0,18566.0,22028.0,N/A,N/A,N/A,HG03369,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,91.7,91700590557.0,4731803.0,N/A,HG03369,SAMN41021668,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16806.0,19695.0,23620.0,SRR29405803,N/A,N/A,N/A,N/A,N/A,SAMN41021668,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230727_135923_s3.hifi_reads.bc1009.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03369_PB1_m84091_230727_135923_s3,single,size fractionation,GENOMIC,WGS,62797.0,19550.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03369/raw_data/PacBio_HiFi/m84091_230727_135923_s3.hifi_reads.bc1009.bam,PACBIO_SMRT,Revio P1,16081.0,18597.0,22062.0,N/A,N/A,N/A,HG03369,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,99.03,99031742869.0,5065533.0,N/A,HG03369,SAMN41021668,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17280.0,19956.0,23721.0,SRR29405804,N/A,N/A,N/A,N/A,N/A,SAMN41021693,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231106_201855_s1.hifi_reads.bc1003.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03372_PB1_m84091_231106_201855_s1,single,size fractionation,GENOMIC,WGS,61686.0,20025.0,124.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03372/raw_data/PacBio_HiFi/m84091_231106_201855_s1.hifi_reads.bc1003.bam,PACBIO_SMRT,Revio P1,16723.0,18985.0,22321.0,N/A,N/A,N/A,HG03372,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,82.65,82654306669.0,4127489.0,N/A,HG03372,SAMN41021693,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17441.0,20290.0,24317.0,SRR29405805,N/A,N/A,N/A,N/A,N/A,SAMN41021693,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231214_204105_s2.hifi_reads.bc1003.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03372_PB1_m84091_231214_204105_s2,single,size fractionation,GENOMIC,WGS,56430.0,20339.0,163.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03372/raw_data/PacBio_HiFi/m84091_231214_204105_s2.hifi_reads.bc1003.bam,PACBIO_SMRT,Revio P1,16831.0,19214.0,22762.0,N/A,N/A,N/A,HG03372,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,36.64,36636856565.0,1801269.0,N/A,HG03372,SAMN41021693,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18701.0,24138.0,30172.0,SRR29405806,N/A,N/A,N/A,N/A,N/A,SAMN41021693,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240308_212739_s2.hifi_reads.bc1003.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03372_PB1_m84091_240308_212739_s2,single,size fractionation,GENOMIC,WGS,68454.0,21771.0,54.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03372/raw_data/PacBio_HiFi/m84091_240308_212739_s2.hifi_reads.bc1003.bam,PACBIO_SMRT,Revio P1,15590.0,20986.0,26861.0,N/A,N/A,N/A,HG03372,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,85.79,85787605612.0,3940309.0,N/A,HG03372,SAMN41021693,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17553.0,21018.0,25786.0,SRR29405808,N/A,N/A,N/A,N/A,N/A,SAMN41021704,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240110_204947_s3.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03445_PB1_m84091_240110_204947_s3,single,size fractionation,GENOMIC,WGS,67580.0,20874.0,87.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03445/raw_data/PacBio_HiFi/m84091_240110_204947_s3.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,16709.0,19547.0,23723.0,N/A,N/A,N/A,HG03445,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,65.1,65097127516.0,3118474.0,N/A,HG03445,SAMN41021704,,MSL,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14791.0,18152.0,22221.0,SRR29405809,N/A,N/A,N/A,N/A,N/A,SAMN41021704,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240311_162534_s1.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03445_PB1_m84091_240311_162534_s1,single,size fractionation,GENOMIC,WGS,50409.0,17376.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03445/raw_data/PacBio_HiFi/m84091_240311_162534_s1.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,13606.0,16599.0,20388.0,N/A,N/A,N/A,HG03445,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,85.92,85916791479.0,4944409.0,N/A,HG03445,SAMN41021704,,MSL,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14916.0,18324.0,22466.0,SRR29405785,N/A,N/A,N/A,N/A,N/A,SAMN41021704,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240315_193817_s2.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03445_PB1_m84091_240315_193817_s2,single,size fractionation,GENOMIC,WGS,54186.0,17544.0,394.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03445/raw_data/PacBio_HiFi/m84091_240315_193817_s2.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,13717.0,16738.0,20594.0,N/A,N/A,N/A,HG03445,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,45.31,45311493139.0,2582676.0,N/A,HG03445,SAMN41021704,,MSL,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18033.0,19810.0,22523.0,SRR13684386,N/A,N/A,N/A,N/A,N/A,SAMN17861668,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200511_060458.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03453_lib1,single,size fractionation,GENOMIC,WGS,48820.0,20066.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03453/raw_data/PacBio_HiFi/m64043_200511_060458.ccs.bam,PACBIO_SMRT,,17726.0,19328.0,21710.0,N/A,N/A,N/A,HG03453,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,39.53,39526964195.0,1969769.0,N/A,HG03453,SAMN17861668,SL50,MSL,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18055.0,19851.0,22597.0,SRR13684386,N/A,N/A,N/A,N/A,N/A,SAMN17861668,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200508_172634.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03453_lib1,single,size fractionation,GENOMIC,WGS,49546.0,20105.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03453/raw_data/PacBio_HiFi/m64043_200508_172634.ccs.bam,PACBIO_SMRT,,17748.0,19359.0,21770.0,N/A,N/A,N/A,HG03453,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,40.65,40647101711.0,2021670.0,N/A,HG03453,SAMN17861668,SL50,MSL,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18068.0,19864.0,22610.0,SRR13684386,N/A,N/A,N/A,N/A,N/A,SAMN17861668,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200509_233929.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03453_lib1,single,size fractionation,GENOMIC,WGS,49421.0,20117.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03453/raw_data/PacBio_HiFi/m64043_200509_233929.ccs.bam,PACBIO_SMRT,,17757.0,19373.0,21782.0,N/A,N/A,N/A,HG03453,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,41.59,41586898493.0,2067165.0,N/A,HG03453,SAMN17861668,SL50,MSL,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18171.0,20011.0,22800.0,SRR13684386,N/A,N/A,N/A,N/A,N/A,SAMN17861668,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200512_123035.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03453_lib1,single,size fractionation,GENOMIC,WGS,49779.0,20253.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03453/raw_data/PacBio_HiFi/m64043_200512_123035.ccs.bam,PACBIO_SMRT,,17855.0,19506.0,21962.0,N/A,N/A,N/A,HG03453,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,38.49,38494019627.0,1900582.0,N/A,HG03453,SAMN17861668,SL50,MSL,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17163.0,19140.0,22070.0,SRR13684385,N/A,N/A,N/A,N/A,N/A,SAMN17861669,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200606_175618.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03471_lib1,single,size fractionation,GENOMIC,WGS,50100.0,19241.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03471/raw_data/PacBio_HiFi/m64043_200606_175618.ccs.bam,PACBIO_SMRT,,16785.0,18546.0,21161.0,N/A,N/A,N/A,HG03471,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,40.47,40465702550.0,2102995.0,N/A,HG03471,SAMN17861669,SL56i,MSL,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17226.0,19219.0,22152.0,SRR13684385,N/A,N/A,N/A,N/A,N/A,SAMN17861669,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200611_073649.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03471_lib1,single,size fractionation,GENOMIC,WGS,49235.0,19314.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03471/raw_data/PacBio_HiFi/m64043_200611_073649.ccs.bam,PACBIO_SMRT,,16846.0,18626.0,21244.0,N/A,N/A,N/A,HG03471,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,37.35,37350112108.0,1933742.0,N/A,HG03471,SAMN17861669,SL56i,MSL,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17230.0,19223.0,22153.0,SRR13684385,N/A,N/A,N/A,N/A,N/A,SAMN17861669,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200608_185843.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03471_lib1,single,size fractionation,GENOMIC,WGS,49844.0,19316.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03471/raw_data/PacBio_HiFi/m64043_200608_185843.ccs.bam,PACBIO_SMRT,,16854.0,18631.0,21249.0,N/A,N/A,N/A,HG03471,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,39.51,39510858680.0,2045451.0,N/A,HG03471,SAMN17861669,SL56i,MSL,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17258.0,19270.0,22213.0,SRR13684385,N/A,N/A,N/A,N/A,N/A,SAMN17861669,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200610_011156.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03471_lib1,single,size fractionation,GENOMIC,WGS,49263.0,19357.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03471/raw_data/PacBio_HiFi/m64043_200610_011156.ccs.bam,PACBIO_SMRT,,16876.0,18668.0,21304.0,N/A,N/A,N/A,HG03471,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,39.85,39846677634.0,2058511.0,N/A,HG03471,SAMN17861669,SL56i,MSL,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16807.0,18511.0,20742.0,SRR13684285,N/A,N/A,N/A,N/A,N/A,SAMN17861241,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_200610_234222.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03516_HiFiEx_mix,single,size fractionation,GENOMIC,WGS,50324.0,18582.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03516/raw_data/PacBio_HiFi/m54329U_200610_234222.ccs.bam,PACBIO_SMRT,P2.0,16469.0,18063.0,20094.0,N/A,N/A,N/A,HG03516,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,33.01,33007183462.0,1776238.0,N/A,HG03516,SAMN17861241,NG107,ESN,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16845.0,18537.0,20735.0,SRR13684285,N/A,N/A,N/A,N/A,N/A,SAMN17861241,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_200615_084313.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03516_HiFiEx_mix,single,size fractionation,GENOMIC,WGS,50179.0,18595.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03516/raw_data/PacBio_HiFi/m54329U_200615_084313.ccs.bam,PACBIO_SMRT,P2.0,16514.0,18100.0,20110.0,N/A,N/A,N/A,HG03516,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,23.95,23954636179.0,1288191.0,N/A,HG03516,SAMN17861241,NG107,ESN,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16949.0,18686.0,20974.0,SRR13684285,N/A,N/A,N/A,N/A,N/A,SAMN17861241,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_200612_200443.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03516_HiFiEx_mix,single,size fractionation,GENOMIC,WGS,50430.0,18775.0,49.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03516/raw_data/PacBio_HiFi/m54329U_200612_200443.ccs.bam,PACBIO_SMRT,P2.0,16605.0,18226.0,20301.0,N/A,N/A,N/A,HG03516,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,32.63,32626020099.0,1737663.0,N/A,HG03516,SAMN17861241,NG107,ESN,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17213.0,19030.0,21427.0,SRR13684285,N/A,N/A,N/A,N/A,N/A,SAMN17861241,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_200614_021746.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03516_HiFiEx_mix,single,size fractionation,GENOMIC,WGS,50513.0,19116.0,49.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03516/raw_data/PacBio_HiFi/m54329U_200614_021746.ccs.bam,PACBIO_SMRT,P2.0,16849.0,18544.0,20706.0,N/A,N/A,N/A,HG03516,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,20.66,20658278395.0,1080637.0,N/A,HG03516,SAMN17861241,NG107,ESN,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18596.0,20429.0,23160.0,SRR13684384,N/A,N/A,N/A,N/A,N/A,SAMN17861670,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200522_232930.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03540_lib1,single,size fractionation,GENOMIC,WGS,49881.0,20684.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03540/raw_data/PacBio_HiFi/m64043_200522_232930.ccs.bam,PACBIO_SMRT,,18291.0,19937.0,22355.0,N/A,N/A,N/A,HG03540,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,38.06,38058368349.0,1839904.0,N/A,HG03540,SAMN17861670,GB125,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18612.0,20457.0,23197.0,SRR13684384,N/A,N/A,N/A,N/A,N/A,SAMN17861670,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200521_171703.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03540_lib1,single,size fractionation,GENOMIC,WGS,49707.0,20711.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03540/raw_data/PacBio_HiFi/m64043_200521_171703.ccs.bam,PACBIO_SMRT,,18299.0,19960.0,22387.0,N/A,N/A,N/A,HG03540,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,39.3,39298150274.0,1897441.0,N/A,HG03540,SAMN17861670,GB125,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18658.0,20527.0,23305.0,SRR13684384,N/A,N/A,N/A,N/A,N/A,SAMN17861670,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200524_055430.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03540_lib1,single,size fractionation,GENOMIC,WGS,49994.0,20781.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03540/raw_data/PacBio_HiFi/m64043_200524_055430.ccs.bam,PACBIO_SMRT,,18344.0,20019.0,22480.0,N/A,N/A,N/A,HG03540,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,38.6,38599915696.0,1857442.0,N/A,HG03540,SAMN17861670,GB125,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18772.0,20701.0,23544.0,SRR13684384,N/A,N/A,N/A,N/A,N/A,SAMN17861670,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200525_121851.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03540_lib1,single,size fractionation,GENOMIC,WGS,50154.0,20937.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03540/raw_data/PacBio_HiFi/m64043_200525_121851.ccs.bam,PACBIO_SMRT,,18442.0,20175.0,22698.0,N/A,N/A,N/A,HG03540,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,37.45,37451931637.0,1788752.0,N/A,HG03540,SAMN17861670,GB125,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17501.0,19337.0,21963.0,SRR13684383,N/A,N/A,N/A,N/A,N/A,SAMN17861671,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200518_053124.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03579_lib1,single,size fractionation,GENOMIC,WGS,49746.0,19480.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03579/raw_data/PacBio_HiFi/m64043_200518_053124.ccs.bam,PACBIO_SMRT,,17136.0,18826.0,21141.0,N/A,N/A,N/A,HG03579,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,39.17,39165319090.0,2010535.0,N/A,HG03579,SAMN17861671,SL72,MSL,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17516.0,19348.0,21959.0,SRR13684383,N/A,N/A,N/A,N/A,N/A,SAMN17861671,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200519_115622.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03579_lib1,single,size fractionation,GENOMIC,WGS,49406.0,19492.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03579/raw_data/PacBio_HiFi/m64043_200519_115622.ccs.bam,PACBIO_SMRT,,17156.0,18841.0,21146.0,N/A,N/A,N/A,HG03579,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,38.22,38217075483.0,1960652.0,N/A,HG03579,SAMN17861671,SL72,MSL,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17578.0,19426.0,22029.0,SRR13684383,N/A,N/A,N/A,N/A,N/A,SAMN17861671,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200515_165406.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03579_lib1,single,size fractionation,GENOMIC,WGS,48582.0,19543.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03579/raw_data/PacBio_HiFi/m64043_200515_165406.ccs.bam,PACBIO_SMRT,,17216.0,18917.0,21227.0,N/A,N/A,N/A,HG03579,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,33.33,33330044108.0,1705389.0,N/A,HG03579,SAMN17861671,SL72,MSL,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17647.0,19522.0,22212.0,SRR13684383,N/A,N/A,N/A,N/A,N/A,SAMN17861671,8.0.0.80529,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_200516_230634.ccs.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03579_lib1,single,size fractionation,GENOMIC,WGS,49804.0,19671.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03579/raw_data/PacBio_HiFi/m64043_200516_230634.ccs.bam,PACBIO_SMRT,,17279.0,18999.0,21365.0,N/A,N/A,N/A,HG03579,N/A,,Megaruptor 1,SageELF,SRP305758,N/A,39.28,39277340010.0,1996694.0,N/A,HG03579,SAMN17861671,SL72,MSL,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19013.0,23261.0,28516.0,SRR29405786,N/A,N/A,N/A,N/A,N/A,SAMN41021645,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230712_170232_s2.hifi_reads.bc1020.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03583_PB1_m84091_230712_170232_s2,single,size fractionation,GENOMIC,WGS,66232.0,22547.0,53.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03583/raw_data/PacBio_HiFi/m84091_230712_170232_s2.hifi_reads.bc1020.bam,PACBIO_SMRT,Revio P1,17663.0,21381.0,26167.0,N/A,N/A,N/A,HG03583,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,89.6,89601336260.0,3973911.0,N/A,HG03583,SAMN41021645,SL73,MSL,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,2251.0,2798.0,3414.0,SRR29405787,N/A,N/A,N/A,N/A,N/A,SAMN41021645,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230719_172335_s4.hifi_reads.bc1020.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03583_PB1_m84091_230719_172335_s4,single,size fractionation,GENOMIC,WGS,4840.0,2542.0,129.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03583/raw_data/PacBio_HiFi/m84091_230719_172335_s4.hifi_reads.bc1020.bam,PACBIO_SMRT,Revio P1,1974.0,2512.0,3146.0,N/A,N/A,N/A,HG03583,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,0.0,617846.0,243.0,N/A,HG03583,SAMN41021645,SL73,MSL,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18957.0,23160.0,28344.0,SRR29405788,N/A,N/A,N/A,N/A,N/A,SAMN41021645,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230727_132817_s2.hifi_reads.bc1020.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03583_PB1_m84091_230727_132817_s2,single,size fractionation,GENOMIC,WGS,63881.0,22468.0,70.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03583/raw_data/PacBio_HiFi/m84091_230727_132817_s2.hifi_reads.bc1020.bam,PACBIO_SMRT,Revio P1,17637.0,21312.0,26030.0,N/A,N/A,N/A,HG03583,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,73.59,73592673188.0,3275414.0,N/A,HG03583,SAMN41021645,SL73,MSL,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17589.0,21310.0,26145.0,SRR29405789,N/A,N/A,N/A,N/A,N/A,SAMN41021645,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230817_153352_s4.hifi_reads.bc1020.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03583_PB1_m84091_230817_153352_s4,single,size fractionation,GENOMIC,WGS,58773.0,20982.0,374.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03583/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1020.bam,PACBIO_SMRT,Revio P1,16579.0,19701.0,24014.0,N/A,N/A,N/A,HG03583,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,13.82,13823052723.0,658801.0,N/A,HG03583,SAMN41021645,SL73,MSL,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16400.0,18463.0,21660.0,SRR18189650,N/A,N/A,N/A,N/A,N/A,SAMN26237511,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210522_023949.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03654_lib1,single,size fractionation,GENOMIC,WGS,54542.0,18706.0,527.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03654/raw_data/PacBio_HiFi/m64043_210522_023949.hifi_reads.bam,PACBIO_SMRT,P2,16104.0,17719.0,20827.0,N/A,N/A,N/A,HG03654,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,26.32,26324187893.0,1407194.0,N/A,HG03654,SAMN26237511,PK53,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16591.0,18881.0,22010.0,SRR18189650,N/A,N/A,N/A,N/A,N/A,SAMN26237511,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210528_171552.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03654_lib1,single,size fractionation,GENOMIC,WGS,50438.0,18974.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03654/raw_data/PacBio_HiFi/m64043_210528_171552.hifi_reads.bam,PACBIO_SMRT,P2,16266.0,18022.0,21176.0,N/A,N/A,N/A,HG03654,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,21.29,21288110123.0,1121956.0,N/A,HG03654,SAMN26237511,PK53,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16575.0,18943.0,22091.0,SRR18189650,N/A,N/A,N/A,N/A,N/A,SAMN26237511,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210524_174752.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03654_lib1,single,size fractionation,GENOMIC,WGS,65226.0,19002.0,531.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03654/raw_data/PacBio_HiFi/m64043_210524_174752.hifi_reads.bam,PACBIO_SMRT,P2,16238.0,18030.0,21236.0,N/A,N/A,N/A,HG03654,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.31,32313779561.0,1700544.0,N/A,HG03654,SAMN26237511,PK53,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16568.0,18939.0,22101.0,SRR18189650,N/A,N/A,N/A,N/A,N/A,SAMN26237511,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210523_101851.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03654_lib1,single,size fractionation,GENOMIC,WGS,60353.0,18996.0,90.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03654/raw_data/PacBio_HiFi/m64043_210523_101851.hifi_reads.bam,PACBIO_SMRT,P2,16229.0,18023.0,21237.0,N/A,N/A,N/A,HG03654,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.13,34126728073.0,1796437.0,N/A,HG03654,SAMN26237511,PK53,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17495.0,19855.0,21956.0,SRR18189649,N/A,N/A,N/A,N/A,N/A,SAMN26237512,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210610_203329.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03669_lib1,single,size fractionation,GENOMIC,WGS,54502.0,19359.0,205.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03669/raw_data/PacBio_HiFi/m64043_210610_203329.hifi_reads.bam,PACBIO_SMRT,P2,16737.0,19354.0,21419.0,N/A,N/A,N/A,HG03669,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,24.9,24900003751.0,1286203.0,N/A,HG03669,SAMN26237512,PK58,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18112.0,20210.0,22305.0,SRR18189649,N/A,N/A,N/A,N/A,N/A,SAMN26237512,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210607_090252.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03669_lib1,single,size fractionation,GENOMIC,WGS,56463.0,19746.0,128.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03669/raw_data/PacBio_HiFi/m64043_210607_090252.hifi_reads.bam,PACBIO_SMRT,P2,17364.0,19742.0,21779.0,N/A,N/A,N/A,HG03669,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,22.27,22267350582.0,1127654.0,N/A,HG03669,SAMN26237512,PK58,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18247.0,20290.0,22400.0,SRR18189649,N/A,N/A,N/A,N/A,N/A,SAMN26237512,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210604_175624.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03669_lib1,single,size fractionation,GENOMIC,WGS,56876.0,19858.0,648.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03669/raw_data/PacBio_HiFi/m64043_210604_175624.hifi_reads.bam,PACBIO_SMRT,P2,17539.0,19825.0,21872.0,N/A,N/A,N/A,HG03669,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.22,33224375908.0,1673096.0,N/A,HG03669,SAMN26237512,PK58,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18480.0,20459.0,22587.0,SRR18189649,N/A,N/A,N/A,N/A,N/A,SAMN26237512,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210606_013256.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03669_lib1,single,size fractionation,GENOMIC,WGS,53173.0,20045.0,620.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03669/raw_data/PacBio_HiFi/m64043_210606_013256.hifi_reads.bam,PACBIO_SMRT,P2,17833.0,19999.0,22059.0,N/A,N/A,N/A,HG03669,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.95,32948988442.0,1643693.0,N/A,HG03669,SAMN26237512,PK58,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17783.0,20616.0,24485.0,SRR29405790,N/A,N/A,N/A,N/A,N/A,SAMN41021692,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231106_212107_s3.hifi_reads.bc1021.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03672_PB1_m84091_231106_212107_s3,single,size fractionation,GENOMIC,WGS,65187.0,20604.0,66.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03672/raw_data/PacBio_HiFi/m84091_231106_212107_s3.hifi_reads.bc1021.bam,PACBIO_SMRT,Revio P1,17161.0,19586.0,23056.0,N/A,N/A,N/A,HG03672,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,74.69,74693823037.0,3625163.0,N/A,HG03672,SAMN41021692,,STU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17592.0,20281.0,23965.0,SRR29405791,N/A,N/A,N/A,N/A,N/A,SAMN41021692,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231113_173111_s2.hifi_reads.bc1021.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03672_PB1_m84091_231113_173111_s2,single,size fractionation,GENOMIC,WGS,54675.0,20297.0,55.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03672/raw_data/PacBio_HiFi/m84091_231113_173111_s2.hifi_reads.bc1021.bam,PACBIO_SMRT,Revio P1,17020.0,19332.0,22627.0,N/A,N/A,N/A,HG03672,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,69.52,69517456229.0,3424955.0,N/A,HG03672,SAMN41021692,,STU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,13591.0,16630.0,20613.0,SRR29405792,N/A,N/A,N/A,N/A,N/A,SAMN41021692,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240221_215958_s3.hifi_reads.bc1021.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03672_PB1_m84091_240221_215958_s3,single,size fractionation,GENOMIC,WGS,54296.0,16009.0,123.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03672/raw_data/PacBio_HiFi/m84091_240221_215958_s3.hifi_reads.bc1021.bam,PACBIO_SMRT,Revio P1,12485.0,15175.0,18679.0,N/A,N/A,N/A,HG03672,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,55.14,55137884001.0,3444164.0,N/A,HG03672,SAMN41021692,,STU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17585.0,19797.0,24006.0,SRR18189648,N/A,N/A,N/A,N/A,N/A,SAMN26237513,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210514_184131.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03710_lib1,single,size fractionation,GENOMIC,WGS,59530.0,20384.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03710/raw_data/PacBio_HiFi/m64043_210514_184131.hifi_reads.bam,PACBIO_SMRT,P2,17210.0,18949.0,22578.0,N/A,N/A,N/A,HG03710,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.92,32918659468.0,1614922.0,N/A,HG03710,SAMN26237513,PK62,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17782.0,20332.0,24670.0,SRR18189648,N/A,N/A,N/A,N/A,N/A,SAMN26237513,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210516_020821.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03710_lib1,single,size fractionation,GENOMIC,WGS,61709.0,20760.0,549.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03710/raw_data/PacBio_HiFi/m64043_210516_020821.hifi_reads.bam,PACBIO_SMRT,P2,17357.0,19260.0,23148.0,N/A,N/A,N/A,HG03710,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.21,35214602226.0,1696236.0,N/A,HG03710,SAMN26237513,PK62,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17796.0,20381.0,24696.0,SRR18189648,N/A,N/A,N/A,N/A,N/A,SAMN26237513,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_210517_175123.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03710_lib1,single,size fractionation,GENOMIC,WGS,61973.0,20781.0,108.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03710/raw_data/PacBio_HiFi/m64043_210517_175123.hifi_reads.bam,PACBIO_SMRT,P2,17364.0,19286.0,23189.0,N/A,N/A,N/A,HG03710,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.42,33421412427.0,1608247.0,N/A,HG03710,SAMN26237513,PK62,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19731.0,21450.0,23911.0,SRR18189647,N/A,N/A,N/A,N/A,N/A,SAMN26237514,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210614_204240.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03831_lib1,single,size fractionation,GENOMIC,WGS,54835.0,21688.0,402.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03831/raw_data/PacBio_HiFi/m64136_210614_204240.hifi_reads.bam,PACBIO_SMRT,P2,19447.0,21037.0,23248.0,N/A,N/A,N/A,HG03831,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,18.67,18666458074.0,860681.0,N/A,HG03831,SAMN26237514,BD27,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19746.0,21472.0,23951.0,SRR18189647,N/A,N/A,N/A,N/A,N/A,SAMN26237514,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210613_130744.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03831_lib1,single,size fractionation,GENOMIC,WGS,56331.0,21716.0,385.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03831/raw_data/PacBio_HiFi/m64136_210613_130744.hifi_reads.bam,PACBIO_SMRT,P2,19461.0,21056.0,23284.0,N/A,N/A,N/A,HG03831,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,19.37,19374660094.0,892173.0,N/A,HG03831,SAMN26237514,BD27,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19766.0,21495.0,23983.0,SRR18189647,N/A,N/A,N/A,N/A,N/A,SAMN26237514,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210612_053350.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03831_lib1,single,size fractionation,GENOMIC,WGS,55969.0,21743.0,641.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03831/raw_data/PacBio_HiFi/m64136_210612_053350.hifi_reads.bam,PACBIO_SMRT,P2,19481.0,21077.0,23313.0,N/A,N/A,N/A,HG03831,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,19.14,19144027234.0,880429.0,N/A,HG03831,SAMN26237514,BD27,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19790.0,21555.0,24089.0,SRR18189647,N/A,N/A,N/A,N/A,N/A,SAMN26237514,10.1.0.115913,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_210618_184849.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03831_lib1,single,size fractionation,GENOMIC,WGS,61821.0,21813.0,90.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03831/raw_data/PacBio_HiFi/m64136_210618_184849.hifi_reads.bam,PACBIO_SMRT,P2,19499.0,21123.0,23395.0,N/A,N/A,N/A,HG03831,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.5,38500629563.0,1764977.0,N/A,HG03831,SAMN26237514,BD27,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19071.0,20638.0,22829.0,SRR23732286,N/A,N/A,N/A,N/A,N/A,SAMN33621958,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220110_170603-bc1012.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03834_lib1,single,size fractionation,GENOMIC,WGS,62573.0,20862.0,124.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03834/raw_data/PacBio_HiFi/m64043_220110_170603-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18833.0,20288.0,22289.0,N/A,N/A,N/A,HG03834,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.42,38424503061.0,1841790.0,N/A,HG03834,SAMN33621958,BD28,BEB,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19083.0,20657.0,22877.0,SRR23732286,N/A,N/A,N/A,N/A,N/A,SAMN33621958,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220109_060731-bc1012.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03834_lib1,single,size fractionation,GENOMIC,WGS,58988.0,20886.0,365.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03834/raw_data/PacBio_HiFi/m64043_220109_060731-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18844.0,20303.0,22326.0,N/A,N/A,N/A,HG03834,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,40.25,40253924320.0,1927254.0,N/A,HG03834,SAMN33621958,BD28,BEB,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19092.0,20668.0,22878.0,SRR23732286,N/A,N/A,N/A,N/A,N/A,SAMN33621958,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220107_191226-bc1012.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03834_lib1,single,size fractionation,GENOMIC,WGS,62493.0,20891.0,123.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03834/raw_data/PacBio_HiFi/m64043_220107_191226-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18853.0,20313.0,22331.0,N/A,N/A,N/A,HG03834,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.21,38210943876.0,1829039.0,N/A,HG03834,SAMN33621958,BD28,BEB,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19059.0,23308.0,28475.0,SRR29405794,N/A,N/A,N/A,N/A,N/A,SAMN41021625,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230712_163213_s1.hifi_reads.bc1012.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03874_PB1_m84091_230712_163213_s1,single,size fractionation,GENOMIC,WGS,70251.0,22538.0,52.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03874/raw_data/PacBio_HiFi/m84091_230712_163213_s1.hifi_reads.bc1012.bam,PACBIO_SMRT,Revio P1,17686.0,21435.0,26186.0,N/A,N/A,N/A,HG03874,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,77.94,77942454192.0,3458255.0,N/A,HG03874,SAMN41021625,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16431.0,19069.0,22707.0,SRR29405795,N/A,N/A,N/A,N/A,N/A,SAMN41021625,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230719_155016_s1.hifi_reads.bc1012.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03874_PB1_m84091_230719_155016_s1,single,size fractionation,GENOMIC,WGS,64161.0,18984.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03874/raw_data/PacBio_HiFi/m84091_230719_155016_s1.hifi_reads.bc1012.bam,PACBIO_SMRT,Revio P1,15819.0,18096.0,21335.0,N/A,N/A,N/A,HG03874,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,101.16,101158627114.0,5328539.0,N/A,HG03874,SAMN41021625,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18900.0,23025.0,28033.0,SRR29405796,N/A,N/A,N/A,N/A,N/A,SAMN41021625,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230731_130312_s1.hifi_reads.bc1012.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03874_PB1_m84091_230731_130312_s1,single,size fractionation,GENOMIC,WGS,57091.0,22295.0,148.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03874/raw_data/PacBio_HiFi/m84091_230731_130312_s1.hifi_reads.bc1012.bam,PACBIO_SMRT,Revio P1,17588.0,21233.0,25872.0,N/A,N/A,N/A,HG03874,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,12.02,12022114455.0,539213.0,N/A,HG03874,SAMN41021625,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15865.0,18364.0,21770.0,SRR29405797,N/A,N/A,N/A,N/A,N/A,SAMN41021681,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230727_125753_s1.hifi_reads.bc1016.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG04153_PB1_m84091_230727_125753_s1,single,size fractionation,GENOMIC,WGS,53122.0,18296.0,118.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04153/raw_data/PacBio_HiFi/m84091_230727_125753_s1.hifi_reads.bc1016.bam,PACBIO_SMRT,Revio P1,15297.0,17477.0,20533.0,N/A,N/A,N/A,HG04153,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,99.68,99682975843.0,5448151.0,N/A,HG04153,SAMN41021681,,BEB,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15734.0,18167.0,21488.0,SRR29405798,N/A,N/A,N/A,N/A,N/A,SAMN41021681,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230802_170158_s1.hifi_reads.bc1016.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG04153_PB1_m84091_230802_170158_s1,single,size fractionation,GENOMIC,WGS,57640.0,18123.0,58.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04153/raw_data/PacBio_HiFi/m84091_230802_170158_s1.hifi_reads.bc1016.bam,PACBIO_SMRT,Revio P1,15190.0,17310.0,20283.0,N/A,N/A,N/A,HG04153,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,104.9,104895724944.0,5787787.0,N/A,HG04153,SAMN41021681,,BEB,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16162.0,18521.0,21691.0,SRR18158589,N/A,N/A,N/A,N/A,N/A,SAMN26267397,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64076_210709_232529.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04184.HFSS,single,size fractionation,GENOMIC,WGS,51996.0,18490.0,202.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m64076_210709_232529.hifi_reads.bam,PACBIO_SMRT,P2.2,15669.0,17739.0,20632.0,N/A,N/A,N/A,HG04184,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,26.83,26834639179.0,1451248.0,N/A,HG04184,SAMN26267397,BD61,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16173.0,18541.0,21710.0,SRR18158589,N/A,N/A,N/A,N/A,N/A,SAMN26267397,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64076_210708_084125.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04184.HFSS,single,size fractionation,GENOMIC,WGS,49905.0,18509.0,486.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m64076_210708_084125.hifi_reads.bam,PACBIO_SMRT,P2.2,15682.0,17759.0,20652.0,N/A,N/A,N/A,HG04184,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,27.88,27875629860.0,1505987.0,N/A,HG04184,SAMN26267397,BD61,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16270.0,18693.0,21906.0,SRR18158589,N/A,N/A,N/A,N/A,N/A,SAMN26267397,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64076_210712_194121.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04184.HFSS,single,size fractionation,GENOMIC,WGS,55878.0,18636.0,224.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m64076_210712_194121.hifi_reads.bam,PACBIO_SMRT,P2.2,15762.0,17888.0,20832.0,N/A,N/A,N/A,HG04184,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,29.88,29878843321.0,1603266.0,N/A,HG04184,SAMN26267397,BD61,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17407.0,20137.0,23399.0,SRR18158589,N/A,N/A,N/A,N/A,N/A,SAMN26267397,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64076_210701_234028.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04184.HFSS,single,size fractionation,GENOMIC,WGS,53036.0,19821.0,87.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m64076_210701_234028.hifi_reads.bam,PACBIO_SMRT,P2.2,16754.0,19248.0,22379.0,N/A,N/A,N/A,HG04184,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,23.72,23721206724.0,1196723.0,N/A,HG04184,SAMN26267397,BD61,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16174.0,18546.0,21687.0,SRR29483256,N/A,N/A,N/A,N/A,N/A,SAMN26267397,v7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84046_230523_001708_s3.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG04184.HFSS_m84046_230523_001708_s3,single,size fractionation,GENOMIC,WGS,52393.0,18495.0,281.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m84046_230523_001708_s3.hifi_reads.default.bam,PACBIO_SMRT,P1,15678.0,17765.0,20650.0,N/A,N/A,N/A,HG04184,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,44.68,44684878979.0,2415981.0,N/A,HG04184,SAMN26267397,BD61,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16162.0,18517.0,21641.0,SRR29483255,N/A,N/A,N/A,N/A,N/A,SAMN26267397,v7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84046_230602_213334_s2.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG04184.HFSS_m84046_230602_213334_s2,single,size fractionation,GENOMIC,WGS,51573.0,18472.0,167.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04184/raw_data/PacBio_HiFi/m84046_230602_213334_s2.hifi_reads.default.bam,PACBIO_SMRT,P1,15669.0,17747.0,20619.0,N/A,N/A,N/A,HG04184,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,16.63,16633605568.0,900456.0,N/A,HG04184,SAMN26267397,BD61,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17498.0,19545.0,21937.0,SRR23732285,N/A,N/A,N/A,N/A,N/A,SAMN33621959,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211121_164646-bc1008.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,MGISTL_PAN027_HG06807_lib1,single,size fractionation,GENOMIC,WGS,54067.0,19403.0,611.0,,N/A,N/A,s3://human-pangenomics/working/HPRC_PLUS/HG06807/raw_data/PacBio_HiFi/m64043_211121_164646-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16950.0,19031.0,21242.0,N/A,N/A,N/A,MGISTL_PAN027_HG06807,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.24,34242835423.0,1764732.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17558.0,19607.0,22015.0,SRR23732285,N/A,N/A,N/A,N/A,N/A,SAMN33621959,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211118_185250-bc1008.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,MGISTL_PAN027_HG06807_lib1,single,size fractionation,GENOMIC,WGS,54058.0,19464.0,53.0,,N/A,N/A,s3://human-pangenomics/working/HPRC_PLUS/HG06807/raw_data/PacBio_HiFi/m64043_211118_185250-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17014.0,19094.0,21311.0,N/A,N/A,N/A,MGISTL_PAN027_HG06807,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.38,35381492742.0,1817775.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17552.0,19611.0,22035.0,SRR23732285,N/A,N/A,N/A,N/A,N/A,SAMN33621959,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211120_054831-bc1008.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,MGISTL_PAN027_HG06807_lib1,single,size fractionation,GENOMIC,WGS,61992.0,19472.0,777.0,,N/A,N/A,s3://human-pangenomics/working/HPRC_PLUS/HG06807/raw_data/PacBio_HiFi/m64043_211120_054831-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17006.0,19086.0,21325.0,N/A,N/A,N/A,MGISTL_PAN027_HG06807,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.74,35737691389.0,1835294.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18577.0,20065.0,22049.0,SRR23732285,N/A,N/A,N/A,N/A,N/A,SAMN33621959,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_211222_184851-bc1008.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,MGISTL_PAN027_HG06807_lib1,single,size fractionation,GENOMIC,WGS,49585.0,20200.0,473.0,,N/A,N/A,s3://human-pangenomics/working/HPRC_PLUS/HG06807/raw_data/PacBio_HiFi/m64043_211222_184851-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18352.0,19757.0,21611.0,N/A,N/A,N/A,MGISTL_PAN027_HG06807,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,4.7,4703143471.0,232821.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16866.0,19935.0,23961.0,SRR29405799,N/A,N/A,N/A,N/A,N/A,SAMN41021643,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230718_154039_s1.hifi_reads.bc1021.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA18505_PB1_m84091_230718_154039_s1,single,size fractionation,GENOMIC,WGS,64859.0,19688.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18505/raw_data/PacBio_HiFi/m84091_230718_154039_s1.hifi_reads.bc1021.bam,PACBIO_SMRT,Revio P1,16070.0,18745.0,22367.0,N/A,N/A,N/A,NA18505,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,92.32,92320421358.0,4689114.0,N/A,NA18505,SAMN41021643,Y005,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16725.0,19706.0,23620.0,SRR29405800,N/A,N/A,N/A,N/A,N/A,SAMN41021643,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230721_152112_s4.hifi_reads.bc1021.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA18505_PB1_m84091_230721_152112_s4,single,size fractionation,GENOMIC,WGS,69044.0,19493.0,69.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18505/raw_data/PacBio_HiFi/m84091_230721_152112_s4.hifi_reads.bc1021.bam,PACBIO_SMRT,Revio P1,15964.0,18567.0,22079.0,N/A,N/A,N/A,NA18505,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,92.34,92337453249.0,4736916.0,N/A,NA18505,SAMN41021643,Y005,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16949.0,20034.0,24033.0,SRR29405801,N/A,N/A,N/A,N/A,N/A,SAMN41021643,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230724_152950_s1.hifi_reads.bc1021.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA18505_PB1_m84091_230724_152950_s1,single,size fractionation,GENOMIC,WGS,49844.0,19765.0,751.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18505/raw_data/PacBio_HiFi/m84091_230724_152950_s1.hifi_reads.bc1021.bam,PACBIO_SMRT,Revio P1,16137.0,18838.0,22460.0,N/A,N/A,N/A,NA18505,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,5.7,5696115693.0,288191.0,N/A,NA18505,SAMN41021643,Y005,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17070.0,18873.0,21719.0,SRR23732284,N/A,N/A,N/A,N/A,N/A,SAMN33621960,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220712_145025-bc1015.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18612_lib1,single,size fractionation,GENOMIC,WGS,55884.0,19109.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/m64043_220712_145025-bc1015.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16729.0,18347.0,20782.0,N/A,N/A,N/A,NA18612,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.31,37307640683.0,1952320.0,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17131.0,18974.0,21901.0,SRR23732284,N/A,N/A,N/A,N/A,N/A,SAMN33621960,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220708_205637-bc1015.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18612_lib1,single,size fractionation,GENOMIC,WGS,70458.0,19211.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/m64043_220708_205637-bc1015.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16783.0,18429.0,20931.0,N/A,N/A,N/A,NA18612,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.57,35568838553.0,1851400.0,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17163.0,19020.0,21964.0,SRR23732284,N/A,N/A,N/A,N/A,N/A,SAMN33621960,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220710_175250-bc1015.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18612_lib1,single,size fractionation,GENOMIC,WGS,56913.0,19256.0,62.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/m64043_220710_175250-bc1015.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16812.0,18470.0,20993.0,N/A,N/A,N/A,NA18612,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,39.24,39242478493.0,2037867.0,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16997.0,19747.0,23461.0,SRR29405784,N/A,N/A,N/A,N/A,N/A,SAMN41021618,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230703_172326_s3.hifi_reads.bc1009.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA18620_PB1_m84091_230703_172326_s3,single,size fractionation,GENOMIC,WGS,58609.0,19652.0,104.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18620/raw_data/PacBio_HiFi/m84091_230703_172326_s3.hifi_reads.bc1009.bam,PACBIO_SMRT,Revio P1,16365.0,18763.0,22098.0,N/A,N/A,N/A,NA18620,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,105.14,105136485130.0,5349692.0,N/A,NA18620,SAMN41021618,,CHB,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16863.0,19517.0,23110.0,SRR29405783,N/A,N/A,N/A,N/A,N/A,SAMN41021618,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230707_165735_s1.hifi_reads.bc1009.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA18620_PB1_m84091_230707_165735_s1,single,size fractionation,GENOMIC,WGS,58414.0,19457.0,156.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18620/raw_data/PacBio_HiFi/m84091_230707_165735_s1.hifi_reads.bc1009.bam,PACBIO_SMRT,Revio P1,16264.0,18586.0,21805.0,N/A,N/A,N/A,NA18620,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,106.35,106349153661.0,5465594.0,N/A,NA18620,SAMN41021618,,CHB,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14925.0,16155.0,17514.0,SRR23732282,N/A,N/A,N/A,N/A,N/A,SAMN33621961,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220728_173215-bc1011.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18971_lib1,single,size fractionation,GENOMIC,WGS,41182.0,16065.0,123.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/m64043_220728_173215-bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,14712.0,15923.0,17251.0,N/A,N/A,N/A,NA18971,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,12.34,12335160946.0,767828.0,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18541.0,20882.0,23733.0,SRR23732282,N/A,N/A,N/A,N/A,N/A,SAMN33621961,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220703_150718-bc1011.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18971_lib1,single,size fractionation,GENOMIC,WGS,65993.0,20667.0,62.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/m64043_220703_150718-bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17974.0,20210.0,22885.0,N/A,N/A,N/A,NA18971,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,31.82,31815106412.0,1539349.0,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18582.0,20932.0,23785.0,SRR23732282,N/A,N/A,N/A,N/A,N/A,SAMN33621961,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220701_181144-bc1011.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18971_lib1,single,size fractionation,GENOMIC,WGS,62433.0,20716.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/m64043_220701_181144-bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18018.0,20255.0,22941.0,N/A,N/A,N/A,NA18971,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.03,34029092180.0,1642606.0,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18634.0,21002.0,23888.0,SRR23732282,N/A,N/A,N/A,N/A,N/A,SAMN33621961,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64043_220705_120954-bc1011.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18971_lib1,single,size fractionation,GENOMIC,WGS,65996.0,20793.0,249.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/m64043_220705_120954-bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18069.0,20318.0,23028.0,N/A,N/A,N/A,NA18971,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,34.59,34591963353.0,1663617.0,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15476.0,17676.0,20775.0,SRR29405781,N/A,N/A,N/A,N/A,N/A,SAMN41021642,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230718_161058_s2.hifi_reads.bc1022.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19036_PB1_m84091_230718_161058_s2,single,size fractionation,GENOMIC,WGS,56042.0,17697.0,74.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19036/raw_data/PacBio_HiFi/m84091_230718_161058_s2.hifi_reads.bc1022.bam,PACBIO_SMRT,Revio P1,15044.0,16944.0,19750.0,N/A,N/A,N/A,NA19036,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,99.31,99306434215.0,5611450.0,N/A,NA19036,SAMN41021642,,LWK,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15488.0,17695.0,20781.0,SRR29405780,N/A,N/A,N/A,N/A,N/A,SAMN41021642,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230724_152950_s1.hifi_reads.bc1022.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19036_PB1_m84091_230724_152950_s1,single,size fractionation,GENOMIC,WGS,53891.0,17706.0,71.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19036/raw_data/PacBio_HiFi/m84091_230724_152950_s1.hifi_reads.bc1022.bam,PACBIO_SMRT,Revio P1,15053.0,16960.0,19764.0,N/A,N/A,N/A,NA19036,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,100.14,100139779782.0,5655541.0,N/A,NA19036,SAMN41021642,,LWK,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16758.0,20587.0,25172.0,SRR29405760,N/A,N/A,N/A,N/A,N/A,SAMN41021701,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240221_202725_s4.hifi_reads.bc1022.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19042_PB1_m84091_240221_202725_s4,single,size fractionation,GENOMIC,WGS,61590.0,19663.0,99.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19042/raw_data/PacBio_HiFi/m84091_240221_202725_s4.hifi_reads.bc1022.bam,PACBIO_SMRT,Revio P1,15372.0,18829.0,23120.0,N/A,N/A,N/A,NA19042,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,65.47,65471433956.0,3329518.0,N/A,NA19042,SAMN41021701,,LWK,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16368.0,20090.0,24633.0,SRR29405759,N/A,N/A,N/A,N/A,N/A,SAMN41021701,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240308_202615_s4.hifi_reads.bc1022.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19042_PB1_m84091_240308_202615_s4,single,size fractionation,GENOMIC,WGS,52948.0,19242.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19042/raw_data/PacBio_HiFi/m84091_240308_202615_s4.hifi_reads.bc1022.bam,PACBIO_SMRT,Revio P1,15049.0,18376.0,22578.0,N/A,N/A,N/A,NA19042,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,61.44,61435006452.0,3192672.0,N/A,NA19042,SAMN41021701,,LWK,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16683.0,20488.0,25062.0,SRR29405758,N/A,N/A,N/A,N/A,N/A,SAMN41021701,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240308_205633_s1.hifi_reads.bc1022.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19042_PB1_m84091_240308_205633_s1,single,size fractionation,GENOMIC,WGS,54725.0,19574.0,104.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19042/raw_data/PacBio_HiFi/m84091_240308_205633_s1.hifi_reads.bc1022.bam,PACBIO_SMRT,Revio P1,15313.0,18745.0,23017.0,N/A,N/A,N/A,NA19042,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,60.62,60615596022.0,3096650.0,N/A,NA19042,SAMN41021701,,LWK,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17956.0,20781.0,24644.0,SRR29405779,N/A,N/A,N/A,N/A,N/A,SAMN41021680,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230725_171249_s4.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19131_PB1_m84091_230725_171249_s4,single,size fractionation,GENOMIC,WGS,63090.0,20690.0,66.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19131/raw_data/PacBio_HiFi/m84091_230725_171249_s4.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,17305.0,19769.0,23236.0,N/A,N/A,N/A,NA19131,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,107.95,107950313295.0,5217376.0,N/A,NA19131,SAMN41021680,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17920.0,20683.0,24467.0,SRR29405778,N/A,N/A,N/A,N/A,N/A,SAMN41021680,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230731_143545_s4.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19131_PB1_m84091_230731_143545_s4,single,size fractionation,GENOMIC,WGS,57669.0,20603.0,255.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19131/raw_data/PacBio_HiFi/m84091_230731_143545_s4.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,17281.0,19706.0,23082.0,N/A,N/A,N/A,NA19131,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,73.61,73614424293.0,3572878.0,N/A,NA19131,SAMN41021680,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17570.0,20107.0,23620.0,SRR29405777,N/A,N/A,N/A,N/A,N/A,SAMN41021680,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230817_153352_s4.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19131_PB1_m84091_230817_153352_s4,single,size fractionation,GENOMIC,WGS,52957.0,20090.0,375.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19131/raw_data/PacBio_HiFi/m84091_230817_153352_s4.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,17010.0,19238.0,22376.0,N/A,N/A,N/A,NA19131,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,18.03,18028708953.0,897397.0,N/A,NA19131,SAMN41021680,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16141.0,18884.0,22668.0,SRR29405776,N/A,N/A,N/A,N/A,N/A,SAMN41021614,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230629_173950_s1.hifi_reads.bc1001.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19175_PB1_m84091_230629_173950_s1,single,size fractionation,GENOMIC,WGS,56686.0,18886.0,98.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19175/raw_data/PacBio_HiFi/m84091_230629_173950_s1.hifi_reads.bc1001.bam,PACBIO_SMRT,Revio P1,15551.0,17839.0,21210.0,N/A,N/A,N/A,NA19175,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,105.32,105324853613.0,5576589.0,N/A,NA19175,SAMN41021614,Y044,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15949.0,18550.0,22189.0,SRR29405775,N/A,N/A,N/A,N/A,N/A,SAMN41021614,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230703_162202_s1.hifi_reads.bc1001.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19175_PB1_m84091_230703_162202_s1,single,size fractionation,GENOMIC,WGS,58473.0,18590.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19175/raw_data/PacBio_HiFi/m84091_230703_162202_s1.hifi_reads.bc1001.bam,PACBIO_SMRT,Revio P1,15406.0,17576.0,20814.0,N/A,N/A,N/A,NA19175,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,99.93,99934802464.0,5375516.0,N/A,NA19175,SAMN41021614,Y044,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16989.0,19863.0,23633.0,SRR29405773,N/A,N/A,N/A,N/A,N/A,SAMN41708786,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230718_171310_s4.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19377_PB1_m84091_230718_171310_s4,single,size fractionation,GENOMIC,WGS,58261.0,19679.0,66.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19377/raw_data/PacBio_HiFi/m84091_230718_171310_s4.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,16274.0,18797.0,22194.0,N/A,N/A,N/A,NA19377,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,85.18,85178574461.0,4328336.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17125.0,20052.0,23882.0,SRR29405772,N/A,N/A,N/A,N/A,N/A,SAMN41708786,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230724_163116_s3.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19377_PB1_m84091_230724_163116_s3,single,size fractionation,GENOMIC,WGS,58231.0,19846.0,257.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19377/raw_data/PacBio_HiFi/m84091_230724_163116_s3.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,16384.0,18965.0,22411.0,N/A,N/A,N/A,NA19377,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,88.84,88839158485.0,4476331.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17022.0,19919.0,23714.0,SRR29405771,N/A,N/A,N/A,N/A,N/A,SAMN41708786,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230731_143545_s4.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19377_PB1_m84091_230731_143545_s4,single,size fractionation,GENOMIC,WGS,63370.0,19726.0,548.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19377/raw_data/PacBio_HiFi/m84091_230731_143545_s4.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,16297.0,18847.0,22264.0,N/A,N/A,N/A,NA19377,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,15.29,15291250872.0,775152.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15451.0,18436.0,22422.0,SRR29405770,N/A,N/A,N/A,N/A,N/A,SAMN41021695,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231110_171321_s4.hifi_reads.bc1009.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19703_PB1_m84091_231110_171321_s4,single,size fractionation,GENOMIC,WGS,53725.0,18247.0,113.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19703/raw_data/PacBio_HiFi/m84091_231110_171321_s4.hifi_reads.bc1009.bam,PACBIO_SMRT,Revio P1,14716.0,17191.0,20771.0,N/A,N/A,N/A,NA19703,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,59.93,59926767647.0,3284143.0,N/A,NA19703,SAMN41021695,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15784.0,19072.0,23370.0,SRR29405769,N/A,N/A,N/A,N/A,N/A,SAMN41021695,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231113_180217_s3.hifi_reads.bc1009.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19703_PB1_m84091_231113_180217_s3,single,size fractionation,GENOMIC,WGS,62382.0,18767.0,114.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19703/raw_data/PacBio_HiFi/m84091_231113_180217_s3.hifi_reads.bc1009.bam,PACBIO_SMRT,Revio P1,14929.0,17642.0,21523.0,N/A,N/A,N/A,NA19703,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,79.31,79305068847.0,4225622.0,N/A,NA19703,SAMN41021695,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15307.0,19455.0,24562.0,SRR29405768,N/A,N/A,N/A,N/A,N/A,SAMN41021695,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240221_212852_s2.hifi_reads.bc1009.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19703_PB1_m84091_240221_212852_s2,single,size fractionation,GENOMIC,WGS,58776.0,18286.0,91.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19703/raw_data/PacBio_HiFi/m84091_240221_212852_s2.hifi_reads.bc1009.bam,PACBIO_SMRT,Revio P1,13621.0,17233.0,21908.0,N/A,N/A,N/A,NA19703,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,53.77,53768952232.0,2940298.0,N/A,NA19703,SAMN41021695,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17029.0,19741.0,23447.0,SRR29405767,N/A,N/A,N/A,N/A,N/A,SAMN41021665,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230718_164204_s3.hifi_reads.bc1001.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19835_PB1_m84091_230718_164204_s3,single,size fractionation,GENOMIC,WGS,63615.0,19675.0,137.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19835/raw_data/PacBio_HiFi/m84091_230718_164204_s3.hifi_reads.bc1001.bam,PACBIO_SMRT,Revio P1,16408.0,18760.0,22062.0,N/A,N/A,N/A,NA19835,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,90.08,90080817427.0,4578439.0,N/A,NA19835,SAMN41021665,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17053.0,19779.0,23499.0,SRR29405766,N/A,N/A,N/A,N/A,N/A,SAMN41021665,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230724_160010_s2.hifi_reads.bc1001.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19835_PB1_m84091_230724_160010_s2,single,size fractionation,GENOMIC,WGS,66428.0,19704.0,66.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19835/raw_data/PacBio_HiFi/m84091_230724_160010_s2.hifi_reads.bc1001.bam,PACBIO_SMRT,Revio P1,16425.0,18793.0,22106.0,N/A,N/A,N/A,NA19835,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,95.5,95502198267.0,4846730.0,N/A,NA19835,SAMN41021665,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17085.0,19828.0,23581.0,SRR29405765,N/A,N/A,N/A,N/A,N/A,SAMN41021665,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230731_133332_s2.hifi_reads.bc1001.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19835_PB1_m84091_230731_133332_s2,single,size fractionation,GENOMIC,WGS,60316.0,19748.0,699.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19835/raw_data/PacBio_HiFi/m84091_230731_133332_s2.hifi_reads.bc1001.bam,PACBIO_SMRT,Revio P1,16451.0,18820.0,22170.0,N/A,N/A,N/A,NA19835,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,7.8,7796745438.0,394796.0,N/A,NA19835,SAMN41021665,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19469.0,23728.0,29119.0,SRR29405764,N/A,N/A,N/A,N/A,N/A,SAMN41021658,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230710_172927_s2.hifi_reads.bc1017.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA20287_PB1_m84091_230710_172927_s2,single,size fractionation,GENOMIC,WGS,74258.0,23076.0,57.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20287/raw_data/PacBio_HiFi/m84091_230710_172927_s2.hifi_reads.bc1017.bam,PACBIO_SMRT,Revio P1,18152.0,21843.0,26717.0,N/A,N/A,N/A,NA20287,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,88.13,88125973925.0,3818829.0,N/A,NA20287,SAMN41021658,2470,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19009.0,23557.0,29066.0,SRR29405762,N/A,N/A,N/A,N/A,N/A,SAMN41021658,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230714_130822_s1.hifi_reads.bc1017.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA20287_PB1_m84091_230714_130822_s1,single,size fractionation,GENOMIC,WGS,67766.0,22598.0,56.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20287/raw_data/PacBio_HiFi/m84091_230714_130822_s1.hifi_reads.bc1017.bam,PACBIO_SMRT,Revio P1,17419.0,21447.0,26500.0,N/A,N/A,N/A,NA20287,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,98.11,98106485796.0,4341325.0,N/A,NA20287,SAMN41021658,2470,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19189.0,20755.0,22563.0,SRR23732281,N/A,N/A,N/A,N/A,N/A,SAMN33621962,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220726_203708-bc1020.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA20805_lib1,single,size fractionation,GENOMIC,WGS,66827.0,20660.0,133.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/m64136_220726_203708-bc1020.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18923.0,20455.0,22209.0,N/A,N/A,N/A,NA20805,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.97,37967752313.0,1837659.0,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19203.0,20770.0,22581.0,SRR23732281,N/A,N/A,N/A,N/A,N/A,SAMN33621962,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220730_113921-bc1020.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA20805_lib1,single,size fractionation,GENOMIC,WGS,72987.0,20683.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/m64136_220730_113921-bc1020.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18939.0,20471.0,22226.0,N/A,N/A,N/A,NA20805,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,41.08,41078853991.0,1986077.0,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19207.0,20776.0,22588.0,SRR23732281,N/A,N/A,N/A,N/A,N/A,SAMN33621962,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64136_220728_160902-bc1020.5mc.hifi_reads.bam,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA20805_lib1,single,size fractionation,GENOMIC,WGS,69098.0,20686.0,139.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/m64136_220728_160902-bc1020.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,18940.0,20477.0,22231.0,N/A,N/A,N/A,NA20805,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,41.33,41329526305.0,1997924.0,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14523.0,16416.0,18966.0,SRR29405761,N/A,N/A,N/A,N/A,N/A,SAMN41021623,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230703_175432_s4.hifi_reads.bc1010.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA20870_PB1_m84091_230703_175432_s4,single,size fractionation,GENOMIC,WGS,47805.0,16457.0,96.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20870/raw_data/PacBio_HiFi/m84091_230703_175432_s4.hifi_reads.bc1010.bam,PACBIO_SMRT,Revio P1,14186.0,15844.0,18207.0,N/A,N/A,N/A,NA20870,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,110.64,110641518883.0,6722715.0,N/A,NA20870,SAMN41021623,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14491.0,16353.0,18869.0,SRR29405756,N/A,N/A,N/A,N/A,N/A,SAMN41021623,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230707_172800_s2.hifi_reads.bc1010.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA20870_PB1_m84091_230707_172800_s2,single,size fractionation,GENOMIC,WGS,50922.0,16401.0,64.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20870/raw_data/PacBio_HiFi/m84091_230707_172800_s2.hifi_reads.bc1010.bam,PACBIO_SMRT,Revio P1,14159.0,15795.0,18128.0,N/A,N/A,N/A,NA20870,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,107.23,107230122262.0,6537864.0,N/A,NA20870,SAMN41021623,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19235.0,23562.0,28989.0,SRR29405755,N/A,N/A,N/A,N/A,N/A,SAMN41021624,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230710_165908_s1.hifi_reads.bc1011.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA21110_PB1_m84091_230710_165908_s1,single,size fractionation,GENOMIC,WGS,69776.0,22741.0,80.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21110/raw_data/PacBio_HiFi/m84091_230710_165908_s1.hifi_reads.bc1011.bam,PACBIO_SMRT,Revio P1,17833.0,21576.0,26520.0,N/A,N/A,N/A,NA21110,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,89.31,89314005933.0,3927286.0,N/A,NA21110,SAMN41021624,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19169.0,23455.0,28779.0,SRR29405754,N/A,N/A,N/A,N/A,N/A,SAMN41021624,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230714_133843_s2.hifi_reads.bc1011.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA21110_PB1_m84091_230714_133843_s2,single,size fractionation,GENOMIC,WGS,70255.0,22684.0,105.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21110/raw_data/PacBio_HiFi/m84091_230714_133843_s2.hifi_reads.bc1011.bam,PACBIO_SMRT,Revio P1,17806.0,21529.0,26390.0,N/A,N/A,N/A,NA21110,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,88.29,88288802421.0,3892054.0,N/A,NA21110,SAMN41021624,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19023.0,23287.0,28673.0,SRR29405757,N/A,N/A,N/A,N/A,N/A,SAMN41021624,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230719_165228_s3.hifi_reads.bc1011.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA21110_PB1_m84091_230719_165228_s3,single,size fractionation,GENOMIC,WGS,72474.0,22503.0,396.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21110/raw_data/PacBio_HiFi/m84091_230719_165228_s3.hifi_reads.bc1011.bam,PACBIO_SMRT,Revio P1,17661.0,21320.0,26182.0,N/A,N/A,N/A,NA21110,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,14.4,14404999640.0,640120.0,N/A,NA21110,SAMN41021624,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18329.0,20991.0,24424.0,SRR23922670,N/A,N/A,N/A,N/A,N/A,SAMN33758778,6.3.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54329U_220825_174247-bc2012.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00099_1.HFSS,single,RANDOM,GENOMIC,WGS,64390.0,20844.0,87.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00099/raw_data/PacBio_HiFi/m54329U_220825_174247-bc2012.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17755.0,20124.0,23333.0,N/A,N/A,N/A,HG00099,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,47.68,47677590021.0,2287312.0,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17300.0,19273.0,22021.0,SRR29483172,N/A,N/A,N/A,N/A,N/A,SAMN41021653,v7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84046_230715_060901_s1.hifi_reads.bc2083.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00344.HFSS2_m84046_230715_060901_s1,single,size fractionation,GENOMIC,WGS,56374.0,19344.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00344/raw_data/PacBio_HiFi/m84046_230715_060901_s1.hifi_reads.bc2083.bam,PACBIO_SMRT,P1,16957.0,18716.0,21258.0,N/A,N/A,N/A,HG00344,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,60.69,60692182063.0,3137497.0,N/A,HG00344,SAMN41021653,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17374.0,19401.0,22208.0,SRR29483173,N/A,N/A,N/A,N/A,N/A,SAMN41021653,v7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84046_230715_064007_s2.hifi_reads.bc2083.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00344.HFSS2_m84046_230715_064007_s2,single,size fractionation,GENOMIC,WGS,56033.0,19456.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00344/raw_data/PacBio_HiFi/m84046_230715_064007_s2.hifi_reads.bc2083.bam,PACBIO_SMRT,P1,17020.0,18821.0,21429.0,N/A,N/A,N/A,HG00344,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,63.87,63874723531.0,3282883.0,N/A,HG00344,SAMN41021653,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17342.0,19345.0,22120.0,SRR29483171,N/A,N/A,N/A,N/A,N/A,SAMN41021653,v7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84046_230718_233949_s3.hifi_reads.bc2083.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00344.HFSS2_m84046_230718_233949_s3,single,size fractionation,GENOMIC,WGS,60663.0,19406.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00344/raw_data/PacBio_HiFi/m84046_230718_233949_s3.hifi_reads.bc2083.bam,PACBIO_SMRT,P1,16994.0,18777.0,21349.0,N/A,N/A,N/A,HG00344,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,77.94,77941329750.0,4016176.0,N/A,HG00344,SAMN41021653,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14949.0,17641.0,21083.0,SRR29483064,N/A,N/A,N/A,N/A,N/A,SAMN41021690,v7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84046_230901_223052_s3.hifi_reads.bc2037.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19012.HFSS_m84046_230901_223052_s3,single,size fractionation,GENOMIC,WGS,52097.0,17279.0,93.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19012/raw_data/PacBio_HiFi/m84046_230901_223052_s3.hifi_reads.bc2037.bam,PACBIO_SMRT,P1,14168.0,16610.0,19754.0,N/A,N/A,N/A,NA19012,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,59.69,59685857099.0,3454109.0,N/A,NA19012,SAMN41021690,,JPT,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14729.0,17363.0,20769.0,SRR29483065,N/A,N/A,N/A,N/A,N/A,SAMN41021690,v7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84046_230901_230230_s4.hifi_reads.bc2037.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19012.HFSS_m84046_230901_230230_s4,single,size fractionation,GENOMIC,WGS,59026.0,17041.0,259.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19012/raw_data/PacBio_HiFi/m84046_230901_230230_s4.hifi_reads.bc2037.bam,PACBIO_SMRT,P1,13973.0,16354.0,19436.0,N/A,N/A,N/A,NA19012,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,58.89,58892224761.0,3455827.0,N/A,NA19012,SAMN41021690,,JPT,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14509.0,17066.0,20350.0,SRR29483063,N/A,N/A,N/A,N/A,N/A,SAMN41021690,v7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84046_230906_215022_s3.hifi_reads.bc2037.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19012.HFSS_m84046_230906_215022_s3,single,size fractionation,GENOMIC,WGS,58421.0,16774.0,115.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19012/raw_data/PacBio_HiFi/m84046_230906_215022_s3.hifi_reads.bc2037.bam,PACBIO_SMRT,P1,13779.0,16104.0,19070.0,N/A,N/A,N/A,NA19012,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,75.46,75460808834.0,4498538.0,N/A,NA19012,SAMN41021690,,JPT,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18143.0,19752.0,21783.0,SRR26545346,N/A,N/A,N/A,N/A,N/A,SAMN33621941,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00140.m64043_220728_173215.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00140_lib1_dc,single,size fractionation,GENOMIC,WGS,55287.0,19810.0,117.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00140.m64043_220728_173215.dc.q20.fastq.gz,PACBIO_SMRT,P2,17863.0,19392.0,21297.0,N/A,N/A,N/A,HG00140,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,11.35,11345594738.0,572695.0,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,19082.0,21705.0,25964.0,SRR26545346,N/A,N/A,N/A,N/A,N/A,SAMN33621941,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00140.m64136_220719_122056.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00140_lib1_dc,single,size fractionation,GENOMIC,WGS,74729.0,21960.0,279.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00140.m64136_220719_122056.dc.q20.fastq.gz,PACBIO_SMRT,P2,18543.0,20750.0,24315.0,N/A,N/A,N/A,HG00140,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.15,39151198475.0,1782816.0,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,19133.0,21796.0,26100.0,SRR26545346,N/A,N/A,N/A,N/A,N/A,SAMN33621941,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00140.m64136_220715_182717.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00140_lib1_dc,single,size fractionation,GENOMIC,WGS,72795.0,22040.0,400.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00140.m64136_220715_182717.dc.q20.fastq.gz,PACBIO_SMRT,P2,18583.0,20827.0,24430.0,N/A,N/A,N/A,HG00140,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,36.92,36918329655.0,1674999.0,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,19136.0,21799.0,26138.0,SRR26545346,N/A,N/A,N/A,N/A,N/A,SAMN33621941,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00140.m64136_220717_152248.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00140_lib1_dc,single,size fractionation,GENOMIC,WGS,68287.0,22054.0,294.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00140/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00140.m64136_220717_152248.dc.q20.fastq.gz,PACBIO_SMRT,P2,18584.0,20825.0,24451.0,N/A,N/A,N/A,HG00140,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.2,39196212009.0,1777227.0,N/A,HG00140,SAMN33621941,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16728.0,19335.0,22440.0,SRR26545324,N/A,N/A,N/A,N/A,N/A,SAMN33621942,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00323.m64136_220710_175208.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00323_lib1_dc,single,size fractionation,GENOMIC,WGS,62819.0,19162.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00323.m64136_220710_175208.dc.q20.fastq.gz,PACBIO_SMRT,P2,16236.0,18450.0,21516.0,N/A,N/A,N/A,HG00323,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,37.74,37738047851.0,1969371.0,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16746.0,19368.0,22466.0,SRR26545324,N/A,N/A,N/A,N/A,N/A,SAMN33621942,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00323.m64136_220712_144943.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00323_lib1_dc,single,size fractionation,GENOMIC,WGS,59330.0,19184.0,158.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00323.m64136_220712_144943.dc.q20.fastq.gz,PACBIO_SMRT,P2,16250.0,18482.0,21540.0,N/A,N/A,N/A,HG00323,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,38.12,38117507590.0,1986891.0,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16772.0,19416.0,22514.0,SRR26545324,N/A,N/A,N/A,N/A,N/A,SAMN33621942,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00323.m64136_220708_205611.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00323_lib1_dc,single,size fractionation,GENOMIC,WGS,62093.0,19221.0,228.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00323.m64136_220708_205611.dc.q20.fastq.gz,PACBIO_SMRT,P2,16271.0,18525.0,21588.0,N/A,N/A,N/A,HG00323,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,36.65,36647858804.0,1906575.0,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,19422.0,21456.0,23918.0,SRR26545324,N/A,N/A,N/A,N/A,N/A,SAMN33621942,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00323.m64043_220728_173215.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00323_lib1_dc,single,size fractionation,GENOMIC,WGS,57489.0,21356.0,1028.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00323/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00323.m64043_220728_173215.dc.q20.fastq.gz,PACBIO_SMRT,P2,19009.0,20965.0,23289.0,N/A,N/A,N/A,HG00323,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,7.52,7524316582.0,352327.0,N/A,HG00323,SAMN33621942,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16774.0,18540.0,22353.0,SRR26545313,N/A,N/A,N/A,N/A,N/A,SAMN33621943,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00408.m64136_211111_194404.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00408_lib1_dc,single,size fractionation,GENOMIC,WGS,61297.0,19200.0,83.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00408/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00408.m64136_211111_194404.dc.q20.fastq.gz,PACBIO_SMRT,P2,16485.0,17955.0,20955.0,N/A,N/A,N/A,HG00408,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,44.81,44812028504.0,2333870.0,N/A,HG00408,SAMN33621943,SH002,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16792.0,18566.0,22425.0,SRR26545313,N/A,N/A,N/A,N/A,N/A,SAMN33621943,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00408.m64136_211114_164241.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00408_lib1_dc,single,size fractionation,GENOMIC,WGS,70538.0,19238.0,299.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00408/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00408.m64136_211114_164241.dc.q20.fastq.gz,PACBIO_SMRT,P2,16500.0,17973.0,21009.0,N/A,N/A,N/A,HG00408,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,45.27,45267854968.0,2352957.0,N/A,HG00408,SAMN33621943,SH002,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16821.0,18626.0,22516.0,SRR26545313,N/A,N/A,N/A,N/A,N/A,SAMN33621943,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00408.m64136_211113_063830.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00408_lib1_dc,single,size fractionation,GENOMIC,WGS,59303.0,19290.0,808.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00408/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00408.m64136_211113_063830.dc.q20.fastq.gz,PACBIO_SMRT,P2,16522.0,18015.0,21113.0,N/A,N/A,N/A,HG00408,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,44.37,44370139003.0,2300157.0,N/A,HG00408,SAMN33621943,SH002,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17778.0,21564.0,26256.0,SRR26545306,N/A,N/A,N/A,N/A,N/A,SAMN33758780,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00558.m64076_220216_013707.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00558.HFSS_dc,single,size fractionation,GENOMIC,WGS,61101.0,20924.0,772.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00558.m64076_220216_013707.dc.q20.fastq.gz,PACBIO_SMRT,P2,16550.0,19930.0,24233.0,N/A,N/A,N/A,HG00558,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,2.7,2702910493.0,129174.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17972.0,21908.0,26673.0,SRR26545306,N/A,N/A,N/A,N/A,N/A,SAMN33758780,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00558.m54329U_220116_013607.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00558.HFSS_dc,single,size fractionation,GENOMIC,WGS,70144.0,21174.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00558.m54329U_220116_013607.dc.q20.fastq.gz,PACBIO_SMRT,P2,16697.0,20193.0,24635.0,N/A,N/A,N/A,HG00558,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,41.71,41711456205.0,1969873.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17954.0,21883.0,26674.0,SRR26545306,N/A,N/A,N/A,N/A,N/A,SAMN33758780,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00558.m54329U_220107_233847.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00558.HFSS_dc,single,size fractionation,GENOMIC,WGS,86842.0,21160.0,72.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00558.m54329U_220107_233847.dc.q20.fastq.gz,PACBIO_SMRT,P2,16689.0,20169.0,24635.0,N/A,N/A,N/A,HG00558,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.59,39592932418.0,1871072.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17999.0,21930.0,26711.0,SRR26545306,N/A,N/A,N/A,N/A,N/A,SAMN33758780,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00558.m54329U_220114_143904.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00558.HFSS_dc,single,size fractionation,GENOMIC,WGS,67567.0,21201.0,208.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00558.m54329U_220114_143904.dc.q20.fastq.gz,PACBIO_SMRT,P2,16721.0,20221.0,24665.0,N/A,N/A,N/A,HG00558,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,41.47,41469474397.0,1955960.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,15067.0,15857.0,16679.0,SRR26545305,N/A,N/A,N/A,N/A,N/A,SAMN33621944,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00597.m64043_211222_184851.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00597_lib1_dc,single,size fractionation,GENOMIC,WGS,38352.0,15822.0,430.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00597.m64043_211222_184851.dc.q20.fastq.gz,PACBIO_SMRT,P2,14996.0,15769.0,16597.0,N/A,N/A,N/A,HG00597,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,15.0,14997092202.0,947828.0,N/A,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,19260.0,20815.0,22980.0,SRR26545305,N/A,N/A,N/A,N/A,N/A,SAMN33621944,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00597.m64043_211213_155654.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00597_lib1_dc,single,size fractionation,GENOMIC,WGS,67603.0,21050.0,660.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00597.m64043_211213_155654.dc.q20.fastq.gz,PACBIO_SMRT,P2,19047.0,20475.0,22479.0,N/A,N/A,N/A,HG00597,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,40.12,40116560377.0,1905736.0,N/A,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,19271.0,20829.0,23004.0,SRR26545305,N/A,N/A,N/A,N/A,N/A,SAMN33621944,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00597.m64043_211212_045901.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00597_lib1_dc,single,size fractionation,GENOMIC,WGS,63970.0,21067.0,505.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00597.m64043_211212_045901.dc.q20.fastq.gz,PACBIO_SMRT,P2,19057.0,20487.0,22500.0,N/A,N/A,N/A,HG00597,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,40.3,40302307968.0,1913042.0,N/A,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,19281.0,20850.0,23032.0,SRR26545305,N/A,N/A,N/A,N/A,N/A,SAMN33621944,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00597.m64043_211210_180342.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00597_lib1_dc,single,size fractionation,GENOMIC,WGS,56567.0,21088.0,435.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00597/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00597.m64043_211210_180342.dc.q20.fastq.gz,PACBIO_SMRT,P2,19066.0,20503.0,22523.0,N/A,N/A,N/A,HG00597,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,40.77,40772332453.0,1933384.0,N/A,HG00597,SAMN33621944,SH058,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17034.0,20677.0,25214.0,SRR26545304,N/A,N/A,N/A,N/A,N/A,SAMN33758781,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00639.m54329U_211222_104516.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00639.HFSS_dc,single,size fractionation,GENOMIC,WGS,66199.0,19917.0,141.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00639.m54329U_211222_104516.dc.q20.fastq.gz,PACBIO_SMRT,P2,15827.0,19042.0,23213.0,N/A,N/A,N/A,HG00639,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,38.55,38547156714.0,1935344.0,N/A,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17171.0,20832.0,25354.0,SRR26545304,N/A,N/A,N/A,N/A,N/A,SAMN33758781,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00639.m54329U_211230_014258.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00639.HFSS_dc,single,size fractionation,GENOMIC,WGS,72780.0,20089.0,125.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00639.m54329U_211230_014258.dc.q20.fastq.gz,PACBIO_SMRT,P2,15963.0,19219.0,23402.0,N/A,N/A,N/A,HG00639,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.94,39936124440.0,1987877.0,N/A,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17181.0,20872.0,25393.0,SRR26545304,N/A,N/A,N/A,N/A,N/A,SAMN33758781,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00639.m64076_220216_013707.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00639.HFSS_dc,single,size fractionation,GENOMIC,WGS,62936.0,20085.0,265.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00639.m64076_220216_013707.dc.q20.fastq.gz,PACBIO_SMRT,P2,15944.0,19227.0,23406.0,N/A,N/A,N/A,HG00639,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,6.79,6788386147.0,337976.0,N/A,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17281.0,21010.0,25605.0,SRR26545304,N/A,N/A,N/A,N/A,N/A,SAMN33758781,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00639.m54329U_211231_123903.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00639.HFSS_dc,single,size fractionation,GENOMIC,WGS,66087.0,20259.0,156.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00639.m54329U_211231_123903.dc.q20.fastq.gz,PACBIO_SMRT,P2,16048.0,19356.0,23609.0,N/A,N/A,N/A,HG00639,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,44.55,44552146515.0,2199043.0,N/A,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16494.0,19325.0,23013.0,SRR26545303,N/A,N/A,N/A,N/A,N/A,SAMN33758782,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01074.m54329U_211208_005551.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01074.HFSS2_dc,single,size fractionation,GENOMIC,WGS,63840.0,19133.0,281.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01074.m54329U_211208_005551.dc.q20.fastq.gz,PACBIO_SMRT,P2,15825.0,18284.0,21660.0,N/A,N/A,N/A,HG01074,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,40.21,40209647823.0,2101481.0,N/A,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16548.0,19395.0,23125.0,SRR26545303,N/A,N/A,N/A,N/A,N/A,SAMN33758782,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01074.m54329U_211211_014820.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01074.HFSS2_dc,single,size fractionation,GENOMIC,WGS,62020.0,19202.0,730.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01074.m54329U_211211_014820.dc.q20.fastq.gz,PACBIO_SMRT,P2,15864.0,18339.0,21742.0,N/A,N/A,N/A,HG01074,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,42.04,42043092402.0,2189425.0,N/A,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16592.0,19457.0,23203.0,SRR26545303,N/A,N/A,N/A,N/A,N/A,SAMN33758782,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01074.m54329U_211212_111219.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01074.HFSS2_dc,single,size fractionation,GENOMIC,WGS,59550.0,19257.0,374.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01074.m54329U_211212_111219.dc.q20.fastq.gz,PACBIO_SMRT,P2,15898.0,18396.0,21811.0,N/A,N/A,N/A,HG01074,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,41.99,41993964579.0,2180708.0,N/A,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18194.0,21114.0,25068.0,SRR26545303,N/A,N/A,N/A,N/A,N/A,SAMN33758782,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01074.m54329U_211110_112322.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01074_SRE.HFSS_dc,single,size fractionation,GENOMIC,WGS,74720.0,21084.0,418.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01074.m54329U_211110_112322.dc.q20.fastq.gz,PACBIO_SMRT,P2,17558.0,20064.0,23620.0,N/A,N/A,N/A,HG01074,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,19.46,19456910571.0,922809.0,N/A,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16682.0,20603.0,25265.0,SRR26545302,N/A,N/A,N/A,N/A,N/A,SAMN33758783,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01081.m54329U_211223_214216.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01081.HFSS_dc,single,size fractionation,GENOMIC,WGS,68446.0,19543.0,259.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01081.m54329U_211223_214216.dc.q20.fastq.gz,PACBIO_SMRT,P2,15202.0,18735.0,23108.0,N/A,N/A,N/A,HG01081,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,42.24,42242556204.0,2161506.0,N/A,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16828.0,20813.0,25499.0,SRR26545302,N/A,N/A,N/A,N/A,N/A,SAMN33758783,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01081.m54329U_220101_220852.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01081.HFSS_dc,single,size fractionation,GENOMIC,WGS,79823.0,19740.0,202.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01081.m54329U_220101_220852.dc.q20.fastq.gz,PACBIO_SMRT,P2,15335.0,18931.0,23356.0,N/A,N/A,N/A,HG01081,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,45.58,45580077040.0,2308966.0,N/A,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16856.0,20831.0,25540.0,SRR26545302,N/A,N/A,N/A,N/A,N/A,SAMN33758783,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01081.m54329U_220103_072943.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01081.HFSS_dc,single,size fractionation,GENOMIC,WGS,70904.0,19765.0,376.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01081.m54329U_220103_072943.dc.q20.fastq.gz,PACBIO_SMRT,P2,15348.0,18956.0,23392.0,N/A,N/A,N/A,HG01081,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,43.27,43269138445.0,2189086.0,N/A,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18481.0,20508.0,23454.0,SRR26545345,N/A,N/A,N/A,N/A,N/A,SAMN33621945,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01192.m64043_211127_171224.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01192_lib1_dc,single,size fractionation,GENOMIC,WGS,57633.0,20651.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01192/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01192.m64043_211127_171224.dc.q20.fastq.gz,PACBIO_SMRT,P2,18091.0,19926.0,22550.0,N/A,N/A,N/A,HG01192,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,45.13,45126773490.0,2185151.0,N/A,HG01192,SAMN33621945,PR40,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18484.0,20515.0,23451.0,SRR26545345,N/A,N/A,N/A,N/A,N/A,SAMN33621945,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01192.m64043_211124_192057.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01192_lib1_dc,single,size fractionation,GENOMIC,WGS,65995.0,20656.0,198.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01192/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01192.m64043_211124_192057.dc.q20.fastq.gz,PACBIO_SMRT,P2,18096.0,19934.0,22553.0,N/A,N/A,N/A,HG01192,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,45.84,45839976333.0,2219197.0,N/A,HG01192,SAMN33621945,PR40,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18491.0,20524.0,23468.0,SRR26545345,N/A,N/A,N/A,N/A,N/A,SAMN33621945,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01192.m64043_211126_061537.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01192_lib1_dc,single,size fractionation,GENOMIC,WGS,60586.0,20666.0,238.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01192/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01192.m64043_211126_061537.dc.q20.fastq.gz,PACBIO_SMRT,P2,18104.0,19942.0,22564.0,N/A,N/A,N/A,HG01192,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,46.58,46575985623.0,2253699.0,N/A,HG01192,SAMN33621945,PR40,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18396.0,20306.0,24573.0,SRR26545344,N/A,N/A,N/A,N/A,N/A,SAMN33621946,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01261.m64043_211222_184851.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01261_lib1_dc,single,size fractionation,GENOMIC,WGS,72765.0,21088.0,724.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01261.m64043_211222_184851.dc.q20.fastq.gz,PACBIO_SMRT,P2,18087.0,19676.0,22781.0,N/A,N/A,N/A,HG01261,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,16.05,16053597328.0,761247.0,N/A,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18426.0,20343.0,24646.0,SRR26545344,N/A,N/A,N/A,N/A,N/A,SAMN33621946,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01261.m64136_211105_181124.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01261_lib1_dc,single,size fractionation,GENOMIC,WGS,71125.0,21141.0,1050.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01261.m64136_211105_181124.dc.q20.fastq.gz,PACBIO_SMRT,P2,18117.0,19708.0,22830.0,N/A,N/A,N/A,HG01261,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,38.23,38227743168.0,1808184.0,N/A,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18448.0,20373.0,24675.0,SRR26545344,N/A,N/A,N/A,N/A,N/A,SAMN33621946,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01261.m64136_211108_160613.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01261_lib1_dc,single,size fractionation,GENOMIC,WGS,75334.0,21164.0,426.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01261.m64136_211108_160613.dc.q20.fastq.gz,PACBIO_SMRT,P2,18136.0,19737.0,22882.0,N/A,N/A,N/A,HG01261,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,38.91,38910766182.0,1838503.0,N/A,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18534.0,20558.0,25081.0,SRR26545344,N/A,N/A,N/A,N/A,N/A,SAMN33621946,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01261.m64136_211107_050725.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01261_lib1_dc,single,size fractionation,GENOMIC,WGS,70912.0,21356.0,365.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01261/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01261.m64136_211107_050725.dc.q20.fastq.gz,PACBIO_SMRT,P2,18201.0,19866.0,23276.0,N/A,N/A,N/A,HG01261,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.58,39578341050.0,1853207.0,N/A,HG01261,SAMN33621946,CLM17,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17820.0,19262.0,21564.0,SRR26545343,N/A,N/A,N/A,N/A,N/A,SAMN33621947,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01975.m64043_211222_184851.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01975_lib1_dc,single,size fractionation,GENOMIC,WGS,67416.0,19726.0,975.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01975.m64043_211222_184851.dc.q20.fastq.gz,PACBIO_SMRT,P2,17632.0,18915.0,20867.0,N/A,N/A,N/A,HG01975,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,6.64,6637856253.0,336489.0,N/A,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17825.0,19274.0,21562.0,SRR26545343,N/A,N/A,N/A,N/A,N/A,SAMN33621947,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01975.m64043_211114_112934.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01975_lib1_dc,single,size fractionation,GENOMIC,WGS,61098.0,19729.0,189.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01975.m64043_211114_112934.dc.q20.fastq.gz,PACBIO_SMRT,P2,17636.0,18926.0,20878.0,N/A,N/A,N/A,HG01975,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,40.3,40296908772.0,2042426.0,N/A,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17835.0,19287.0,21600.0,SRR26545343,N/A,N/A,N/A,N/A,N/A,SAMN33621947,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01975.m64043_211113_003158.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01975_lib1_dc,single,size fractionation,GENOMIC,WGS,62559.0,19748.0,559.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01975.m64043_211113_003158.dc.q20.fastq.gz,PACBIO_SMRT,P2,17645.0,18937.0,20899.0,N/A,N/A,N/A,HG01975,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,41.92,41924253993.0,2122924.0,N/A,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17837.0,19297.0,21624.0,SRR26545343,N/A,N/A,N/A,N/A,N/A,SAMN33621947,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG01975.m64043_211115_222749.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01975_lib1_dc,single,size fractionation,GENOMIC,WGS,62458.0,19760.0,226.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01975/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG01975.m64043_211115_222749.dc.q20.fastq.gz,PACBIO_SMRT,P2,17647.0,18944.0,20918.0,N/A,N/A,N/A,HG01975,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.56,32558601172.0,1647701.0,N/A,HG01975,SAMN33621947,PEL25,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16417.0,18273.0,21630.0,SRR26545342,N/A,N/A,N/A,N/A,N/A,SAMN33621948,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02015.m64043_210905_032603.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02015_lib1_dc,single,size fractionation,GENOMIC,WGS,57848.0,18677.0,201.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02015/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02015.m64043_210905_032603.dc.q20.fastq.gz,PACBIO_SMRT,P2,16149.0,17631.0,20738.0,N/A,N/A,N/A,HG02015,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,44.51,44513001720.0,2383211.0,N/A,HG02015,SAMN33621948,VN046,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16445.0,18353.0,21723.0,SRR26545342,N/A,N/A,N/A,N/A,N/A,SAMN33621948,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02015.m64043_210903_163032.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02015_lib1_dc,single,size fractionation,GENOMIC,WGS,63165.0,18732.0,78.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02015/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02015.m64043_210903_163032.dc.q20.fastq.gz,PACBIO_SMRT,P2,16168.0,17681.0,20825.0,N/A,N/A,N/A,HG02015,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,44.32,44319574571.0,2365972.0,N/A,HG02015,SAMN33621948,VN046,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16461.0,18414.0,21805.0,SRR26545342,N/A,N/A,N/A,N/A,N/A,SAMN33621948,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02015.m64043_210901_164337.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02015_lib1_dc,single,size fractionation,GENOMIC,WGS,69761.0,18776.0,277.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02015/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02015.m64043_210901_164337.dc.q20.fastq.gz,PACBIO_SMRT,P2,16180.0,17715.0,20903.0,N/A,N/A,N/A,HG02015,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,37.04,37043142999.0,1972837.0,N/A,HG02015,SAMN33621948,VN046,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18068.0,20710.0,24222.0,SRR26545341,N/A,N/A,N/A,N/A,N/A,SAMN33758784,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02040.m64076_220908_204946.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02040.HFSS2_dc,single,size fractionation,GENOMIC,WGS,65424.0,20407.0,131.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02040/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02040.m64076_220908_204946.dc.q20.fastq.gz,PACBIO_SMRT,P2,17440.0,19777.0,23026.0,N/A,N/A,N/A,HG02040,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,48.0,48000009407.0,2352028.0,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18415.0,21201.0,24764.0,SRR26545341,N/A,N/A,N/A,N/A,N/A,SAMN33758784,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02040.m64076_220910_174812.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02040.HFSS2_dc,single,size fractionation,GENOMIC,WGS,72616.0,20976.0,225.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02040/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02040.m64076_220910_174812.dc.q20.fastq.gz,PACBIO_SMRT,P2,17791.0,20259.0,23601.0,N/A,N/A,N/A,HG02040,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,52.91,52914762699.0,2522601.0,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18567.0,21402.0,24986.0,SRR26545341,N/A,N/A,N/A,N/A,N/A,SAMN33758784,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02040.m64076_220912_140850.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02040.HFSS2_dc,single,size fractionation,GENOMIC,WGS,73774.0,21164.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02040/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02040.m64076_220912_140850.dc.q20.fastq.gz,PACBIO_SMRT,P2,17925.0,20450.0,23831.0,N/A,N/A,N/A,HG02040,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,52.13,52129277237.0,2463054.0,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18096.0,19740.0,22405.0,SRR26545340,N/A,N/A,N/A,N/A,N/A,SAMN33621949,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02056.m64136_211120_043838.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02056_lib1_dc,single,size fractionation,GENOMIC,WGS,57533.0,19928.0,616.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02056.m64136_211120_043838.dc.q20.fastq.gz,PACBIO_SMRT,P2,17773.0,19268.0,21471.0,N/A,N/A,N/A,HG02056,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,35.02,35024314025.0,1757465.0,N/A,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18103.0,19757.0,22444.0,SRR26545340,N/A,N/A,N/A,N/A,N/A,SAMN33621949,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02056.m64136_211118_185339.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02056_lib1_dc,single,size fractionation,GENOMIC,WGS,60285.0,19943.0,112.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02056.m64136_211118_185339.dc.q20.fastq.gz,PACBIO_SMRT,P2,17777.0,19281.0,21492.0,N/A,N/A,N/A,HG02056,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,36.22,36223085229.0,1816326.0,N/A,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18106.0,19762.0,22461.0,SRR26545340,N/A,N/A,N/A,N/A,N/A,SAMN33621949,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02056.m64136_211121_153454.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02056_lib1_dc,single,size fractionation,GENOMIC,WGS,65568.0,19942.0,360.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02056.m64136_211121_153454.dc.q20.fastq.gz,PACBIO_SMRT,P2,17778.0,19283.0,21507.0,N/A,N/A,N/A,HG02056,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,34.86,34863233613.0,1748194.0,N/A,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18493.0,20750.0,24547.0,SRR26545340,N/A,N/A,N/A,N/A,N/A,SAMN33621949,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02056.m64043_220114_181052.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02056_lib1_dc,single,size fractionation,GENOMIC,WGS,62265.0,20730.0,375.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02056/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02056.m64043_220114_181052.dc.q20.fastq.gz,PACBIO_SMRT,P2,18019.0,19942.0,23257.0,N/A,N/A,N/A,HG02056,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.52,32515302036.0,1568503.0,N/A,HG02056,SAMN33621949,VN060,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17001.0,19376.0,21740.0,SRR26545339,N/A,N/A,N/A,N/A,N/A,SAMN33621950,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02129.m64136_220422_181133.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02129_lib1_dc,single,size fractionation,GENOMIC,WGS,65309.0,19239.0,470.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02129/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02129.m64136_220422_181133.dc.q20.fastq.gz,PACBIO_SMRT,P2,16342.0,18840.0,20985.0,N/A,N/A,N/A,HG02129,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,43.32,43316522487.0,2251471.0,N/A,HG02129,SAMN33621950,VN079,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17051.0,19406.0,21783.0,SRR26545339,N/A,N/A,N/A,N/A,N/A,SAMN33621950,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02129.m64136_220424_050632.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02129_lib1_dc,single,size fractionation,GENOMIC,WGS,78568.0,19272.0,843.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02129/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02129.m64136_220424_050632.dc.q20.fastq.gz,PACBIO_SMRT,P2,16366.0,18867.0,21016.0,N/A,N/A,N/A,HG02129,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,36.92,36918341105.0,1915557.0,N/A,HG02129,SAMN33621950,VN079,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17079.0,19434.0,21832.0,SRR26545339,N/A,N/A,N/A,N/A,N/A,SAMN33621950,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02129.m64136_220426_155627.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02129_lib1_dc,single,size fractionation,GENOMIC,WGS,70709.0,19303.0,187.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02129/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02129.m64136_220426_155627.dc.q20.fastq.gz,PACBIO_SMRT,P2,16383.0,18887.0,21056.0,N/A,N/A,N/A,HG02129,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,46.52,46516822262.0,2409807.0,N/A,HG02129,SAMN33621950,VN079,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17221.0,19381.0,22939.0,SRR26545338,N/A,N/A,N/A,N/A,N/A,SAMN33621951,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02155.m64136_220703_150713.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02155_lib1_dc,single,size fractionation,GENOMIC,WGS,64885.0,19652.0,178.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02155.m64136_220703_150713.dc.q20.fastq.gz,PACBIO_SMRT,P2,16840.0,18642.0,21765.0,N/A,N/A,N/A,HG02155,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.24,37242055909.0,1895027.0,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17249.0,19439.0,23038.0,SRR26545338,N/A,N/A,N/A,N/A,N/A,SAMN33621951,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02155.m64136_220701_181202.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02155_lib1_dc,single,size fractionation,GENOMIC,WGS,72144.0,19703.0,229.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02155.m64136_220701_181202.dc.q20.fastq.gz,PACBIO_SMRT,P2,16863.0,18685.0,21857.0,N/A,N/A,N/A,HG02155,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,40.37,40366945019.0,2048692.0,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17289.0,19526.0,23149.0,SRR26545338,N/A,N/A,N/A,N/A,N/A,SAMN33621951,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02155.m64136_220705_120453.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02155_lib1_dc,single,size fractionation,GENOMIC,WGS,64142.0,19775.0,219.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02155.m64136_220705_120453.dc.q20.fastq.gz,PACBIO_SMRT,P2,16896.0,18748.0,21962.0,N/A,N/A,N/A,HG02155,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.02,35024792210.0,1771124.0,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17510.0,20033.0,23617.0,SRR26545338,N/A,N/A,N/A,N/A,N/A,SAMN33621951,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02155.m64043_220728_173215.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02155_lib1_dc,single,size fractionation,GENOMIC,WGS,59148.0,20091.0,822.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02155/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02155.m64043_220728_173215.dc.q20.fastq.gz,PACBIO_SMRT,P2,17056.0,19127.0,22493.0,N/A,N/A,N/A,HG02155,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,13.5,13495209735.0,671675.0,N/A,HG02155,SAMN33621951,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18911.0,20472.0,22541.0,SRR26545336,N/A,N/A,N/A,N/A,N/A,SAMN33621952,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02258.m64043_211220_160211.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02258_lib1_dc,single,size fractionation,GENOMIC,WGS,61976.0,20610.0,229.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02258.m64043_211220_160211.dc.q20.fastq.gz,PACBIO_SMRT,P2,18663.0,20133.0,22058.0,N/A,N/A,N/A,HG02258,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,45.99,45993388076.0,2231524.0,N/A,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18932.0,20509.0,22610.0,SRR26545336,N/A,N/A,N/A,N/A,N/A,SAMN33621952,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02258.m64043_211219_050421.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02258_lib1_dc,single,size fractionation,GENOMIC,WGS,58301.0,20655.0,495.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02258.m64043_211219_050421.dc.q20.fastq.gz,PACBIO_SMRT,P2,18682.0,20164.0,22112.0,N/A,N/A,N/A,HG02258,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,42.26,42256822964.0,2045789.0,N/A,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18955.0,20528.0,22619.0,SRR26545336,N/A,N/A,N/A,N/A,N/A,SAMN33621952,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02258.m64043_220114_181052.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02258_lib1_dc,single,size fractionation,GENOMIC,WGS,49260.0,20673.0,274.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02258.m64043_220114_181052.dc.q20.fastq.gz,PACBIO_SMRT,P2,18706.0,20189.0,22122.0,N/A,N/A,N/A,HG02258,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,7.63,7632808242.0,369211.0,N/A,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18961.0,20539.0,22637.0,SRR26545336,N/A,N/A,N/A,N/A,N/A,SAMN33621952,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02258.m64043_211217_180919.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02258_lib1_dc,single,size fractionation,GENOMIC,WGS,73646.0,20682.0,202.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02258/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02258.m64043_211217_180919.dc.q20.fastq.gz,PACBIO_SMRT,P2,18711.0,20196.0,22143.0,N/A,N/A,N/A,HG02258,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.17,37170220107.0,1797149.0,N/A,HG02258,SAMN33621952,BB22,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17771.0,20972.0,23971.0,SRR26545334,N/A,N/A,N/A,N/A,N/A,SAMN33621953,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02273.m64043_220429_171542.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02273_lib1_dc,single,size fractionation,GENOMIC,WGS,75856.0,20625.0,613.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02273/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02273.m64043_220429_171542.dc.q20.fastq.gz,PACBIO_SMRT,P2,17302.0,20091.0,23028.0,N/A,N/A,N/A,HG02273,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,43.67,43671247680.0,2117371.0,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17775.0,20986.0,24007.0,SRR26545334,N/A,N/A,N/A,N/A,N/A,SAMN33621953,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02273.m64043_220501_041051.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02273_lib1_dc,single,size fractionation,GENOMIC,WGS,60495.0,20639.0,407.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02273/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02273.m64043_220501_041051.dc.q20.fastq.gz,PACBIO_SMRT,P2,17301.0,20100.0,23051.0,N/A,N/A,N/A,HG02273,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,44.27,44267577714.0,2144747.0,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17794.0,21012.0,24055.0,SRR26545334,N/A,N/A,N/A,N/A,N/A,SAMN33621953,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02273.m64043_220503_153752.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02273_lib1_dc,single,size fractionation,GENOMIC,WGS,70622.0,20668.0,326.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02273/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02273.m64043_220503_153752.dc.q20.fastq.gz,PACBIO_SMRT,P2,17312.0,20126.0,23083.0,N/A,N/A,N/A,HG02273,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,49.94,49941655334.0,2416355.0,N/A,HG02273,SAMN33621953,PEL46,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,15198.0,17410.0,20356.0,SRR26545333,N/A,N/A,N/A,N/A,N/A,SAMN33758786,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02451.m64076_211212_112351.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02451.HFSS2_dc,single,size fractionation,GENOMIC,WGS,56146.0,17354.0,632.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02451.m64076_211212_112351.dc.q20.fastq.gz,PACBIO_SMRT,P2,14753.0,16683.0,19407.0,N/A,N/A,N/A,HG02451,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,43.55,43552791329.0,2509604.0,N/A,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,15201.0,17416.0,20370.0,SRR26545333,N/A,N/A,N/A,N/A,N/A,SAMN33758786,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02451.m64076_211208_005550.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02451.HFSS2_dc,single,size fractionation,GENOMIC,WGS,54765.0,17360.0,481.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02451.m64076_211208_005550.dc.q20.fastq.gz,PACBIO_SMRT,P2,14755.0,16686.0,19418.0,N/A,N/A,N/A,HG02451,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,42.95,42951419076.0,2474076.0,N/A,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,15266.0,17521.0,20482.0,SRR26545333,N/A,N/A,N/A,N/A,N/A,SAMN33758786,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02451.m64076_211211_014755.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02451.HFSS2_dc,single,size fractionation,GENOMIC,WGS,54121.0,17441.0,300.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02451.m64076_211211_014755.dc.q20.fastq.gz,PACBIO_SMRT,P2,14809.0,16779.0,19535.0,N/A,N/A,N/A,HG02451,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,44.77,44774853633.0,2567205.0,N/A,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18448.0,21322.0,25182.0,SRR26545333,N/A,N/A,N/A,N/A,N/A,SAMN33758786,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02451.m64076_211109_232223.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02451_SRE.HFSS_dc,single,size fractionation,GENOMIC,WGS,72499.0,21296.0,376.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02451.m64076_211109_232223.dc.q20.fastq.gz,PACBIO_SMRT,P2,17834.0,20313.0,23792.0,N/A,N/A,N/A,HG02451,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,15.65,15649416004.0,734852.0,N/A,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16977.0,19733.0,23358.0,SRR26545332,N/A,N/A,N/A,N/A,N/A,SAMN33758787,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02735.m54329U_211204_121716.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02735.HFSS2_dc,single,size fractionation,GENOMIC,WGS,81176.0,19577.0,109.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02735.m54329U_211204_121716.dc.q20.fastq.gz,PACBIO_SMRT,P2,16339.0,18751.0,22072.0,N/A,N/A,N/A,HG02735,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.35,37351669566.0,1907854.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17063.0,19859.0,23529.0,SRR26545332,N/A,N/A,N/A,N/A,N/A,SAMN33758787,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02735.m54329U_211209_115915.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02735.HFSS2_dc,single,size fractionation,GENOMIC,WGS,65741.0,19685.0,54.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02735.m54329U_211209_115915.dc.q20.fastq.gz,PACBIO_SMRT,P2,16409.0,18859.0,22220.0,N/A,N/A,N/A,HG02735,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,35.94,35935850006.0,1825458.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17107.0,19932.0,23590.0,SRR26545332,N/A,N/A,N/A,N/A,N/A,SAMN33758787,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02735.m64076_211209_102926.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02735.HFSS2_dc,single,size fractionation,GENOMIC,WGS,59931.0,19735.0,60.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02735.m64076_211209_102926.dc.q20.fastq.gz,PACBIO_SMRT,P2,16443.0,18920.0,22293.0,N/A,N/A,N/A,HG02735,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,41.1,41100663518.0,2082621.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16826.0,19345.0,22827.0,SRR26545332,N/A,N/A,N/A,N/A,N/A,SAMN33758787,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02735.m54329U_211109_002533.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02735_SRE.HFSS_dc,single,size fractionation,GENOMIC,WGS,57727.0,19378.0,77.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02735.m54329U_211109_002533.dc.q20.fastq.gz,PACBIO_SMRT,P2,16307.0,18470.0,21589.0,N/A,N/A,N/A,HG02735,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,14.58,14578158120.0,752277.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18112.0,20332.0,24504.0,SRR26545330,N/A,N/A,N/A,N/A,N/A,SAMN33621954,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02965.m64043_220717_152237.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02965_lib1_dc,single,size fractionation,GENOMIC,WGS,66908.0,20812.0,68.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02965/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02965.m64043_220717_152237.dc.q20.fastq.gz,PACBIO_SMRT,P2,17707.0,19550.0,22811.0,N/A,N/A,N/A,HG02965,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,46.68,46683138443.0,2243056.0,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18154.0,20401.0,24644.0,SRR26545330,N/A,N/A,N/A,N/A,N/A,SAMN33621954,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02965.m64043_220719_122051.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02965_lib1_dc,single,size fractionation,GENOMIC,WGS,68079.0,20886.0,214.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02965/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02965.m64043_220719_122051.dc.q20.fastq.gz,PACBIO_SMRT,P2,17739.0,19602.0,22926.0,N/A,N/A,N/A,HG02965,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,47.37,47372964069.0,2268061.0,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18230.0,20581.0,25009.0,SRR26545330,N/A,N/A,N/A,N/A,N/A,SAMN33621954,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02965.m64043_220715_182700.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02965_lib1_dc,single,size fractionation,GENOMIC,WGS,69454.0,21039.0,98.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02965/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02965.m64043_220715_182700.dc.q20.fastq.gz,PACBIO_SMRT,P2,17790.0,19721.0,23220.0,N/A,N/A,N/A,HG02965,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.86,38863922809.0,1847158.0,N/A,HG02965,SAMN33621954,NG20,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18290.0,19866.0,21878.0,SRR26545329,N/A,N/A,N/A,N/A,N/A,SAMN33621955,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02976.m64043_220726_203720.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02976_lib1_dc,single,size fractionation,GENOMIC,WGS,57493.0,19935.0,207.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02976.m64043_220726_203720.dc.q20.fastq.gz,PACBIO_SMRT,P2,18020.0,19519.0,21402.0,N/A,N/A,N/A,HG02976,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,16.7,16699847865.0,837705.0,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18319.0,19907.0,21946.0,SRR26545329,N/A,N/A,N/A,N/A,N/A,SAMN33621955,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02976.m64043_220621_134351.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02976_lib1_dc,single,size fractionation,GENOMIC,WGS,63493.0,19977.0,214.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02976.m64043_220621_134351.dc.q20.fastq.gz,PACBIO_SMRT,P2,18045.0,19557.0,21461.0,N/A,N/A,N/A,HG02976,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,28.11,28110128830.0,1407070.0,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18324.0,19913.0,21949.0,SRR26545329,N/A,N/A,N/A,N/A,N/A,SAMN33621955,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02976.m64043_220619_164635.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02976_lib1_dc,single,size fractionation,GENOMIC,WGS,69184.0,19980.0,634.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02976.m64043_220619_164635.dc.q20.fastq.gz,PACBIO_SMRT,P2,18051.0,19562.0,21464.0,N/A,N/A,N/A,HG02976,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,41.12,41124467587.0,2058252.0,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18359.0,19964.0,22026.0,SRR26545329,N/A,N/A,N/A,N/A,N/A,SAMN33621955,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02976.m64043_220617_195135.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG02976_lib1_dc,single,size fractionation,GENOMIC,WGS,62051.0,20039.0,471.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02976/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02976.m64043_220617_195135.dc.q20.fastq.gz,PACBIO_SMRT,P2,18082.0,19607.0,21531.0,N/A,N/A,N/A,HG02976,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.79,38792124643.0,1935736.0,N/A,HG02976,SAMN33621955,NG24,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16693.0,20345.0,24860.0,SRR26545328,N/A,N/A,N/A,N/A,N/A,SAMN33758789,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03017.m54329U_211225_070909.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03017.HFSS_dc,single,size fractionation,GENOMIC,WGS,68758.0,19601.0,321.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03017.m54329U_211225_070909.dc.q20.fastq.gz,PACBIO_SMRT,P2,15489.0,18704.0,22864.0,N/A,N/A,N/A,HG03017,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,41.38,41376262119.0,2110857.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16791.0,20513.0,25020.0,SRR26545328,N/A,N/A,N/A,N/A,N/A,SAMN33758789,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03017.m64076_220216_013707.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03017.HFSS_dc,single,size fractionation,GENOMIC,WGS,67208.0,19728.0,363.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03017.m64076_220216_013707.dc.q20.fastq.gz,PACBIO_SMRT,P2,15571.0,18842.0,23033.0,N/A,N/A,N/A,HG03017,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,9.67,9669883547.0,490160.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17061.0,20909.0,25532.0,SRR26545328,N/A,N/A,N/A,N/A,N/A,SAMN33758789,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03017.m54329U_220117_123334.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03017.HFSS_dc,single,size fractionation,GENOMIC,WGS,67584.0,20089.0,497.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03017.m54329U_220117_123334.dc.q20.fastq.gz,PACBIO_SMRT,P2,15784.0,19179.0,23513.0,N/A,N/A,N/A,HG03017,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,33.94,33944353640.0,1689695.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17072.0,20922.0,25581.0,SRR26545328,N/A,N/A,N/A,N/A,N/A,SAMN33758789,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03017.m54329U_220109_103416.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03017.HFSS_dc,single,size fractionation,GENOMIC,WGS,61843.0,20110.0,502.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03017.m54329U_220109_103416.dc.q20.fastq.gz,PACBIO_SMRT,P2,15801.0,19189.0,23539.0,N/A,N/A,N/A,HG03017,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,36.33,36331570532.0,1806558.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18227.0,22011.0,26361.0,SRR26545328,N/A,N/A,N/A,N/A,N/A,SAMN33758789,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03017.m64076_221001_041132.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03017.HFSS_dc,single,size fractionation,GENOMIC,WGS,75864.0,21174.0,398.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03017.m64076_221001_041132.dc.q20.fastq.gz,PACBIO_SMRT,P2,16931.0,20457.0,24597.0,N/A,N/A,N/A,HG03017,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,17.18,17181739490.0,811437.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16646.0,19670.0,23521.0,SRR26545327,N/A,N/A,N/A,N/A,N/A,SAMN33758790,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03041.m54329U_211214_012740.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03041.HFSS_dc,single,size fractionation,GENOMIC,WGS,70885.0,19356.0,351.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03041.m54329U_211214_012740.dc.q20.fastq.gz,PACBIO_SMRT,P2,15860.0,18511.0,22051.0,N/A,N/A,N/A,HG03041,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,44.9,44900731287.0,2319689.0,N/A,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16683.0,19719.0,23595.0,SRR26545327,N/A,N/A,N/A,N/A,N/A,SAMN33758790,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03041.m54329U_211217_080751.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03041.HFSS_dc,single,size fractionation,GENOMIC,WGS,59152.0,19405.0,198.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03041.m54329U_211217_080751.dc.q20.fastq.gz,PACBIO_SMRT,P2,15891.0,18557.0,22115.0,N/A,N/A,N/A,HG03041,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,44.1,44098173911.0,2272419.0,N/A,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16767.0,19836.0,23713.0,SRR26545327,N/A,N/A,N/A,N/A,N/A,SAMN33758790,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03041.m54329U_211215_225017.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03041.HFSS_dc,single,size fractionation,GENOMIC,WGS,64920.0,19498.0,254.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03041.m54329U_211215_225017.dc.q20.fastq.gz,PACBIO_SMRT,P2,15959.0,18664.0,22242.0,N/A,N/A,N/A,HG03041,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,43.17,43166262097.0,2213796.0,N/A,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16875.0,19909.0,23693.0,SRR26545326,N/A,N/A,N/A,N/A,N/A,SAMN33758791,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03130.m64076_220513_215716.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03130.HFSS_dc,single,size fractionation,GENOMIC,WGS,60703.0,19584.0,63.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03130/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03130.m64076_220513_215716.dc.q20.fastq.gz,PACBIO_SMRT,P2,16095.0,18774.0,22299.0,N/A,N/A,N/A,HG03130,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,46.1,46104697209.0,2354099.0,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16980.0,20014.0,23780.0,SRR26545326,N/A,N/A,N/A,N/A,N/A,SAMN33758791,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03130.m64076_220516_221911.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03130.HFSS_dc,single,size fractionation,GENOMIC,WGS,63752.0,19679.0,124.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03130/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03130.m64076_220516_221911.dc.q20.fastq.gz,PACBIO_SMRT,P2,16195.0,18890.0,22402.0,N/A,N/A,N/A,HG03130,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,46.6,46597144395.0,2367798.0,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17060.0,20133.0,23920.0,SRR26545326,N/A,N/A,N/A,N/A,N/A,SAMN33758791,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03130.m64076_220518_191414.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03130.HFSS_dc,single,size fractionation,GENOMIC,WGS,63755.0,19773.0,78.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03130/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03130.m64076_220518_191414.dc.q20.fastq.gz,PACBIO_SMRT,P2,16256.0,18989.0,22531.0,N/A,N/A,N/A,HG03130,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,46.73,46730487013.0,2363321.0,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18354.0,21822.0,26099.0,SRR26545325,N/A,N/A,N/A,N/A,N/A,SAMN33758792,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03139.m54329U_220519_225150.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03139.HFSS_dc,single,size fractionation,GENOMIC,WGS,69097.0,21363.0,165.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03139.m54329U_220519_225150.dc.q20.fastq.gz,PACBIO_SMRT,P2,17402.0,20479.0,24480.0,N/A,N/A,N/A,HG03139,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,47.86,47864327154.0,2240511.0,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18543.0,22080.0,26347.0,SRR26545325,N/A,N/A,N/A,N/A,N/A,SAMN33758792,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03139.m54329U_220525_111437.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03139.HFSS_dc,single,size fractionation,GENOMIC,WGS,82601.0,21561.0,1.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03139.m54329U_220525_111437.dc.q20.fastq.gz,PACBIO_SMRT,P2,17553.0,20712.0,24749.0,N/A,N/A,N/A,HG03139,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,51.39,51390716180.0,2383395.0,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18562.0,22108.0,26385.0,SRR26545325,N/A,N/A,N/A,N/A,N/A,SAMN33758792,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03139.m54329U_220523_155616.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03139.HFSS_dc,single,size fractionation,GENOMIC,WGS,73240.0,21586.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03139.m54329U_220523_155616.dc.q20.fastq.gz,PACBIO_SMRT,P2,17571.0,20733.0,24777.0,N/A,N/A,N/A,HG03139,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,52.55,52553906159.0,2434546.0,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17918.0,20538.0,24414.0,SRR26545323,N/A,N/A,N/A,N/A,N/A,SAMN33621956,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03195.m64136_220619_164654.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03195_lib1_dc,single,size fractionation,GENOMIC,WGS,64377.0,20710.0,51.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03195.m64136_220619_164654.dc.q20.fastq.gz,PACBIO_SMRT,P2,17478.0,19520.0,23158.0,N/A,N/A,N/A,HG03195,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,39.97,39969011098.0,1929937.0,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17945.0,20614.0,24524.0,SRR26545323,N/A,N/A,N/A,N/A,N/A,SAMN33621956,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03195.m64136_220617_195203.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03195_lib1_dc,single,size fractionation,GENOMIC,WGS,68832.0,20768.0,80.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03195.m64136_220617_195203.dc.q20.fastq.gz,PACBIO_SMRT,P2,17496.0,19570.0,23249.0,N/A,N/A,N/A,HG03195,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,42.65,42653820245.0,2053775.0,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18071.0,20856.0,24697.0,SRR26545323,N/A,N/A,N/A,N/A,N/A,SAMN33621956,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03195.m64136_220621_134558.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03195_lib1_dc,single,size fractionation,GENOMIC,WGS,69709.0,20925.0,94.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03195.m64136_220621_134558.dc.q20.fastq.gz,PACBIO_SMRT,P2,17605.0,19766.0,23449.0,N/A,N/A,N/A,HG03195,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.45,37451919420.0,1789777.0,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,21569.0,23831.0,26876.0,SRR26545323,N/A,N/A,N/A,N/A,N/A,SAMN33621956,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03195.m64043_220726_203720.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03195_lib1_dc,single,size fractionation,GENOMIC,WGS,57539.0,23879.0,896.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03195/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03195.m64043_220726_203720.dc.q20.fastq.gz,PACBIO_SMRT,P2,21130.0,23231.0,26031.0,N/A,N/A,N/A,HG03195,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,3.17,3165970127.0,132583.0,N/A,HG03195,SAMN33621956,NG58,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16120.0,18479.0,21643.0,SRR26545322,N/A,N/A,N/A,N/A,N/A,SAMN33758793,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03209.m64076_220526_115049.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03209.HFSS_dc,single,size fractionation,GENOMIC,WGS,55651.0,18422.0,404.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03209.m64076_220526_115049.dc.q20.fastq.gz,PACBIO_SMRT,P2,15627.0,17694.0,20594.0,N/A,N/A,N/A,HG03209,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,30.61,30608231679.0,1661495.0,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16349.0,18849.0,22134.0,SRR26545322,N/A,N/A,N/A,N/A,N/A,SAMN33758793,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03209.m64076_220524_161808.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03209.HFSS_dc,single,size fractionation,GENOMIC,WGS,66291.0,18729.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03209.m64076_220524_161808.dc.q20.fastq.gz,PACBIO_SMRT,P2,15806.0,18002.0,21042.0,N/A,N/A,N/A,HG03209,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,46.15,46147554036.0,2463835.0,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16398.0,18922.0,22221.0,SRR26545322,N/A,N/A,N/A,N/A,N/A,SAMN33758793,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03209.m64076_220520_234906.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03209.HFSS_dc,single,size fractionation,GENOMIC,WGS,75246.0,18788.0,234.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03209.m64076_220520_234906.dc.q20.fastq.gz,PACBIO_SMRT,P2,15845.0,18066.0,21122.0,N/A,N/A,N/A,HG03209,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,48.14,48135688091.0,2561922.0,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,16913.0,19576.0,22842.0,SRR26545322,N/A,N/A,N/A,N/A,N/A,SAMN33758793,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03209.m64076_221001_041132.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03209.HFSS_dc,single,size fractionation,GENOMIC,WGS,56120.0,19312.0,187.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03209.m64076_221001_041132.dc.q20.fastq.gz,PACBIO_SMRT,P2,16296.0,18693.0,21804.0,N/A,N/A,N/A,HG03209,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,15.73,15733637619.0,814679.0,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18378.0,20047.0,22207.0,SRR26545321,N/A,N/A,N/A,N/A,N/A,SAMN33621957,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03225.m64043_220726_203720.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03225_lib1_dc,single,size fractionation,GENOMIC,WGS,59071.0,20119.0,523.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03225/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03225.m64043_220726_203720.dc.q20.fastq.gz,PACBIO_SMRT,P2,18069.0,19662.0,21652.0,N/A,N/A,N/A,HG03225,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,26.5,26502031981.0,1317249.0,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,19115.0,21372.0,24582.0,SRR26545321,N/A,N/A,N/A,N/A,N/A,SAMN33621957,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03225.m64136_220518_004520.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03225_lib1_dc,single,size fractionation,GENOMIC,WGS,56883.0,21426.0,756.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03225/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03225.m64136_220518_004520.dc.q20.fastq.gz,PACBIO_SMRT,P2,18661.0,20697.0,23594.0,N/A,N/A,N/A,HG03225,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,31.58,31575236912.0,1473634.0,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,19088.0,21368.0,24585.0,SRR26545321,N/A,N/A,N/A,N/A,N/A,SAMN33621957,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03225.m64043_220518_120044.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03225_lib1_dc,single,size fractionation,GENOMIC,WGS,66440.0,21407.0,201.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03225/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03225.m64043_220518_120044.dc.q20.fastq.gz,PACBIO_SMRT,P2,18631.0,20682.0,23597.0,N/A,N/A,N/A,HG03225,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.08,38075046543.0,1778562.0,N/A,HG03225,SAMN33621957,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17306.0,20650.0,24758.0,SRR26545320,N/A,N/A,N/A,N/A,N/A,SAMN33758794,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03239.m64076_220108_100904.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03239.HFSS_dc,single,size fractionation,GENOMIC,WGS,69474.0,20149.0,407.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03239.m64076_220108_100904.dc.q20.fastq.gz,PACBIO_SMRT,P2,16361.0,19318.0,23154.0,N/A,N/A,N/A,HG03239,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,44.38,44377708664.0,2202415.0,N/A,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17333.0,20696.0,24861.0,SRR26545320,N/A,N/A,N/A,N/A,N/A,SAMN33758794,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03239.m54329U_220105_011819.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03239.HFSS_dc,single,size fractionation,GENOMIC,WGS,66504.0,20189.0,349.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03239.m54329U_220105_011819.dc.q20.fastq.gz,PACBIO_SMRT,P2,16384.0,19344.0,23230.0,N/A,N/A,N/A,HG03239,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,42.6,42601512093.0,2110106.0,N/A,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17478.0,20872.0,25011.0,SRR26545320,N/A,N/A,N/A,N/A,N/A,SAMN33758794,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03239.m64076_220106_231243.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03239.HFSS_dc,single,size fractionation,GENOMIC,WGS,67583.0,20365.0,51.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03239.m64076_220106_231243.dc.q20.fastq.gz,PACBIO_SMRT,P2,16518.0,19525.0,23407.0,N/A,N/A,N/A,HG03239,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,45.07,45069093757.0,2213029.0,N/A,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17007.0,20201.0,24261.0,SRR26545319,N/A,N/A,N/A,N/A,N/A,SAMN33758795,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03704.m54329U_220203_054640.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03704.HFSS3_dc,single,size fractionation,GENOMIC,WGS,64291.0,19907.0,211.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03704.m54329U_220203_054640.dc.q20.fastq.gz,PACBIO_SMRT,P2,16175.0,18958.0,22692.0,N/A,N/A,N/A,HG03704,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,19.38,19378076147.0,973408.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17074.0,20313.0,24414.0,SRR26545319,N/A,N/A,N/A,N/A,N/A,SAMN33758795,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03704.m54329U_220207_224702.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03704.HFSS3_dc,single,size fractionation,GENOMIC,WGS,68385.0,20001.0,78.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03704.m54329U_220207_224702.dc.q20.fastq.gz,PACBIO_SMRT,P2,16230.0,19048.0,22815.0,N/A,N/A,N/A,HG03704,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,32.73,32728988289.0,1636299.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17100.0,20362.0,24491.0,SRR26545319,N/A,N/A,N/A,N/A,N/A,SAMN33758795,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03704.m64076_220216_013707.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03704.HFSS3_dc,single,size fractionation,GENOMIC,WGS,65949.0,20042.0,55.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03704.m64076_220216_013707.dc.q20.fastq.gz,PACBIO_SMRT,P2,16242.0,19083.0,22868.0,N/A,N/A,N/A,HG03704,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,14.73,14731492664.0,735009.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17924.0,20800.0,24645.0,SRR26545319,N/A,N/A,N/A,N/A,N/A,SAMN33758795,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03704.m54329U_211111_222027.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03704_SRE.HFSS_dc,single,size fractionation,GENOMIC,WGS,67019.0,20762.0,633.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03704.m54329U_211111_222027.dc.q20.fastq.gz,PACBIO_SMRT,P2,17300.0,19779.0,23266.0,N/A,N/A,N/A,HG03704,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,24.06,24057997215.0,1158701.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17963.0,20863.0,24755.0,SRR26545319,N/A,N/A,N/A,N/A,N/A,SAMN33758795,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03704.m54329U_211105_213234.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03704_SRE.HFSS_dc,single,size fractionation,GENOMIC,WGS,61092.0,20821.0,494.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03704.m54329U_211105_213234.dc.q20.fastq.gz,PACBIO_SMRT,P2,17330.0,19833.0,23351.0,N/A,N/A,N/A,HG03704,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,28.27,28272672004.0,1357879.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,19086.0,20669.0,22889.0,SRR26545318,N/A,N/A,N/A,N/A,N/A,SAMN33621958,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03834.m64043_220110_170603.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03834_lib1_dc,single,size fractionation,GENOMIC,WGS,68202.0,20894.0,218.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03834/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03834.m64043_220110_170603.dc.q20.fastq.gz,PACBIO_SMRT,P2,18845.0,20311.0,22338.0,N/A,N/A,N/A,HG03834,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,43.31,43314020799.0,2072948.0,N/A,HG03834,SAMN33621958,BD28,BEB,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,19099.0,20689.0,22932.0,SRR26545318,N/A,N/A,N/A,N/A,N/A,SAMN33621958,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03834.m64043_220109_060731.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03834_lib1_dc,single,size fractionation,GENOMIC,WGS,59137.0,20918.0,633.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03834/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03834.m64043_220109_060731.dc.q20.fastq.gz,PACBIO_SMRT,P2,18857.0,20329.0,22373.0,N/A,N/A,N/A,HG03834,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,44.86,44856751278.0,2144359.0,N/A,HG03834,SAMN33621958,BD28,BEB,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,19105.0,20700.0,22939.0,SRR26545318,N/A,N/A,N/A,N/A,N/A,SAMN33621958,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG03834.m64043_220107_191226.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,HG03834_lib1_dc,single,size fractionation,GENOMIC,WGS,62360.0,20924.0,150.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03834/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG03834.m64043_220107_191226.dc.q20.fastq.gz,PACBIO_SMRT,P2,18862.0,20336.0,22383.0,N/A,N/A,N/A,HG03834,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,44.25,44246676139.0,2114567.0,N/A,HG03834,SAMN33621958,BD28,BEB,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17541.0,19598.0,22033.0,SRR26545317,N/A,N/A,N/A,N/A,N/A,SAMN33621959,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG06807.m64043_211121_164646.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,MGISTL_PAN027_HG06807_lib1_dc,single,size fractionation,GENOMIC,WGS,59863.0,19462.0,392.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG06807/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG06807.m64043_211121_164646.dc.q20.fastq.gz,PACBIO_SMRT,P2,16991.0,19074.0,21318.0,N/A,N/A,N/A,HG06807,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,39.8,39801221379.0,2045015.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17596.0,19651.0,22091.0,SRR26545317,N/A,N/A,N/A,N/A,N/A,SAMN33621959,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG06807.m64043_211118_185250.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,MGISTL_PAN027_HG06807_lib1_dc,single,size fractionation,GENOMIC,WGS,60970.0,19511.0,54.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG06807/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG06807.m64043_211118_185250.dc.q20.fastq.gz,PACBIO_SMRT,P2,17050.0,19130.0,21375.0,N/A,N/A,N/A,HG06807,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,40.49,40486148287.0,2074968.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17588.0,19657.0,22115.0,SRR26545317,N/A,N/A,N/A,N/A,N/A,SAMN33621959,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG06807.m64043_211120_054831.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,MGISTL_PAN027_HG06807_lib1_dc,single,size fractionation,GENOMIC,WGS,61974.0,19521.0,778.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG06807/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG06807.m64043_211120_054831.dc.q20.fastq.gz,PACBIO_SMRT,P2,17039.0,19124.0,21389.0,N/A,N/A,N/A,HG06807,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,40.96,40956155223.0,2097981.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18587.0,20089.0,22096.0,SRR26545317,N/A,N/A,N/A,N/A,N/A,SAMN33621959,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG06807.m64043_211222_184851.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,MGISTL_PAN027_HG06807_lib1_dc,single,size fractionation,GENOMIC,WGS,50882.0,20223.0,471.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG06807/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG06807.m64043_211222_184851.dc.q20.fastq.gz,PACBIO_SMRT,P2,18360.0,19777.0,21651.0,N/A,N/A,N/A,HG06807,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,5.38,5380961739.0,266071.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17515.0,20503.0,24336.0,SRR26545316,N/A,N/A,N/A,N/A,N/A,SAMN33758796,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18522.m54329U_220607_194753.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18522.HFSS_dc,single,size fractionation,GENOMIC,WGS,68821.0,20245.0,151.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18522.m54329U_220607_194753.dc.q20.fastq.gz,PACBIO_SMRT,P2,16787.0,19423.0,22963.0,N/A,N/A,N/A,NA18522,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,52.78,52778863034.0,2606914.0,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17687.0,20710.0,24542.0,SRR26545316,N/A,N/A,N/A,N/A,N/A,SAMN33758796,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18522.m54329U_220605_194957.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18522.HFSS_dc,single,size fractionation,GENOMIC,WGS,63653.0,20418.0,258.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18522.m54329U_220605_194957.dc.q20.fastq.gz,PACBIO_SMRT,P2,16944.0,19621.0,23198.0,N/A,N/A,N/A,NA18522,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,48.38,48379025716.0,2369316.0,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17726.0,20761.0,24609.0,SRR26545316,N/A,N/A,N/A,N/A,N/A,SAMN33758796,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18522.m54329U_220604_002013.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18522.HFSS_dc,single,size fractionation,GENOMIC,WGS,62626.0,20463.0,171.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18522.m54329U_220604_002013.dc.q20.fastq.gz,PACBIO_SMRT,P2,16975.0,19663.0,23257.0,N/A,N/A,N/A,NA18522,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,47.37,47365852194.0,2314654.0,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17086.0,18910.0,21802.0,SRR26545315,N/A,N/A,N/A,N/A,N/A,SAMN33621960,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18612.m64043_220712_145025.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18612_lib1_dc,single,size fractionation,GENOMIC,WGS,55792.0,19144.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18612.m64043_220712_145025.dc.q20.fastq.gz,PACBIO_SMRT,P2,16740.0,18371.0,20844.0,N/A,N/A,N/A,NA18612,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,42.03,42026657293.0,2195233.0,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17142.0,19004.0,21971.0,SRR26545315,N/A,N/A,N/A,N/A,N/A,SAMN33621960,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18612.m64043_220708_205637.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18612_lib1_dc,single,size fractionation,GENOMIC,WGS,69844.0,19241.0,216.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18612.m64043_220708_205637.dc.q20.fastq.gz,PACBIO_SMRT,P2,16790.0,18449.0,20987.0,N/A,N/A,N/A,NA18612,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,40.18,40178243656.0,2088141.0,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17177.0,19055.0,22042.0,SRR26545315,N/A,N/A,N/A,N/A,N/A,SAMN33621960,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18612.m64043_220710_175250.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18612_lib1_dc,single,size fractionation,GENOMIC,WGS,62025.0,19289.0,94.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18612/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18612.m64043_220710_175250.dc.q20.fastq.gz,PACBIO_SMRT,P2,16821.0,18492.0,21053.0,N/A,N/A,N/A,NA18612,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,43.92,43921276073.0,2276997.0,N/A,NA18612,SAMN33621960,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,14930.0,16162.0,17526.0,SRR26545312,N/A,N/A,N/A,N/A,N/A,SAMN33621961,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18971.m64043_220728_173215.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18971_lib1_dc,single,size fractionation,GENOMIC,WGS,41507.0,16074.0,852.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18971.m64043_220728_173215.dc.q20.fastq.gz,PACBIO_SMRT,P2,14717.0,15930.0,17261.0,N/A,N/A,N/A,NA18971,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,13.42,13417983575.0,834762.0,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18584.0,20950.0,23829.0,SRR26545312,N/A,N/A,N/A,N/A,N/A,SAMN33621961,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18971.m64043_220703_150718.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18971_lib1_dc,single,size fractionation,GENOMIC,WGS,66060.0,20730.0,268.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18971.m64043_220703_150718.dc.q20.fastq.gz,PACBIO_SMRT,P2,18009.0,20266.0,22971.0,N/A,N/A,N/A,NA18971,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,37.51,37513233912.0,1809594.0,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18626.0,20996.0,23871.0,SRR26545312,N/A,N/A,N/A,N/A,N/A,SAMN33621961,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18971.m64043_220701_181144.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18971_lib1_dc,single,size fractionation,GENOMIC,WGS,67714.0,20775.0,71.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18971.m64043_220701_181144.dc.q20.fastq.gz,PACBIO_SMRT,P2,18056.0,20311.0,23018.0,N/A,N/A,N/A,NA18971,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,39.1,39097735609.0,1881896.0,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18670.0,21059.0,23954.0,SRR26545312,N/A,N/A,N/A,N/A,N/A,SAMN33621961,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18971.m64043_220705_120954.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA18971_lib1_dc,single,size fractionation,GENOMIC,WGS,68021.0,20840.0,249.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18971/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18971.m64043_220705_120954.dc.q20.fastq.gz,PACBIO_SMRT,P2,18099.0,20367.0,23095.0,N/A,N/A,N/A,NA18971,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.15,38145066508.0,1830361.0,N/A,NA18971,SAMN33621961,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,19193.0,20760.0,22574.0,SRR26545308,N/A,N/A,N/A,N/A,N/A,SAMN33621962,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA20805.m64136_220726_203708.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA20805_lib1_dc,single,size fractionation,GENOMIC,WGS,66651.0,20668.0,203.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20805.m64136_220726_203708.dc.q20.fastq.gz,PACBIO_SMRT,P2,18927.0,20459.0,22216.0,N/A,N/A,N/A,NA20805,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,43.47,43466891933.0,2103074.0,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,19214.0,20782.0,22595.0,SRR26545308,N/A,N/A,N/A,N/A,N/A,SAMN33621962,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA20805.m64136_220730_113921.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA20805_lib1_dc,single,size fractionation,GENOMIC,WGS,73183.0,20694.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20805.m64136_220730_113921.dc.q20.fastq.gz,PACBIO_SMRT,P2,18948.0,20482.0,22238.0,N/A,N/A,N/A,NA20805,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,45.8,45800547928.0,2213142.0,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,19217.0,20787.0,22600.0,SRR26545308,N/A,N/A,N/A,N/A,N/A,SAMN33621962,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA20805.m64136_220728_160902.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,NA20805_lib1_dc,single,size fractionation,GENOMIC,WGS,69125.0,20696.0,41.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20805/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20805.m64136_220728_160902.dc.q20.fastq.gz,PACBIO_SMRT,P2,18948.0,20486.0,22243.0,N/A,N/A,N/A,NA20805,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,45.91,45913998332.0,2218413.0,N/A,NA20805,SAMN33621962,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18348.0,21041.0,24496.0,SRR26545347,N/A,N/A,N/A,N/A,N/A,SAMN33758778,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00099.m54329U_220825_174247.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00099_1.HFSS_dc,single,size fractionation,GENOMIC,WGS,64413.0,20874.0,107.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00099/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00099.m54329U_220825_174247.dc.q20.fastq.gz,PACBIO_SMRT,P2,17762.0,20158.0,23398.0,N/A,N/A,N/A,HG00099,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,56.1,56102007798.0,2687625.0,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17731.0,20061.0,23169.0,SRR26545347,N/A,N/A,N/A,N/A,N/A,SAMN33758778,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00099.m54329U_220827_143814.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00099_2.HFSS_dc,single,size fractionation,GENOMIC,WGS,62341.0,20020.0,345.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00099/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00099.m54329U_220827_143814.dc.q20.fastq.gz,PACBIO_SMRT,P2,17277.0,19348.0,22242.0,N/A,N/A,N/A,HG00099,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,52.92,52918724515.0,2643186.0,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17772.0,20126.0,23248.0,SRR26545347,N/A,N/A,N/A,N/A,N/A,SAMN33758778,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00099.m54329U_220829_095708.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00099_2.HFSS_dc,single,size fractionation,GENOMIC,WGS,59992.0,20070.0,138.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00099/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00099.m54329U_220829_095708.dc.q20.fastq.gz,PACBIO_SMRT,P2,17309.0,19403.0,22315.0,N/A,N/A,N/A,HG00099,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,57.54,57539149577.0,2866917.0,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17476.0,19949.0,23253.0,SRR26545335,N/A,N/A,N/A,N/A,N/A,SAMN33758779,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00280.m54329U_220901_221341.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00280.HFSS_dc,single,size fractionation,GENOMIC,WGS,66666.0,19922.0,91.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00280/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00280.m54329U_220901_221341.dc.q20.fastq.gz,PACBIO_SMRT,P2,16987.0,19159.0,22208.0,N/A,N/A,N/A,HG00280,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,55.1,55104620054.0,2766007.0,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17549.0,20043.0,23323.0,SRR26545335,N/A,N/A,N/A,N/A,N/A,SAMN33758779,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00280.m64076_220831_191646.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00280.HFSS_dc,single,size fractionation,GENOMIC,WGS,63656.0,19988.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00280/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00280.m64076_220831_191646.dc.q20.fastq.gz,PACBIO_SMRT,P2,17049.0,19244.0,22305.0,N/A,N/A,N/A,HG00280,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,42.32,42317282570.0,2117048.0,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18112.0,20808.0,24128.0,SRR26545335,N/A,N/A,N/A,N/A,N/A,SAMN33758779,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG00280.m64457e_220825_195635.dc.q20.fastq.gz,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00280.HFSS_dc,single,size fractionation,GENOMIC,WGS,63894.0,20606.0,112.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00280/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG00280.m64457e_220825_195635.dc.q20.fastq.gz,PACBIO_SMRT,P2,17533.0,19955.0,23125.0,N/A,N/A,N/A,HG00280,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,54.14,54142441428.0,2627493.0,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17838.0,20307.0,23473.0,SRR26545337,N/A,N/A,N/A,N/A,N/A,SAMN33758785,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02165.m64076_220906_083112.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG02165.HFSS2_dc,single,size fractionation,GENOMIC,WGS,87882.0,20188.0,87.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02165/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02165.m64076_220906_083112.dc.q20.fastq.gz,PACBIO_SMRT,P2,17336.0,19537.0,22524.0,N/A,N/A,N/A,HG02165,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,52.17,52170777564.0,2584216.0,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17979.0,20487.0,23651.0,SRR26545337,N/A,N/A,N/A,N/A,N/A,SAMN33758785,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02165.m64076_220904_113359.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG02165.HFSS2_dc,single,size fractionation,GENOMIC,WGS,72650.0,20338.0,130.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02165/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02165.m64076_220904_113359.dc.q20.fastq.gz,PACBIO_SMRT,P2,17463.0,19709.0,22708.0,N/A,N/A,N/A,HG02165,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,50.23,50229787137.0,2469674.0,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18516.0,21244.0,24474.0,SRR26545337,N/A,N/A,N/A,N/A,N/A,SAMN33758785,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02165.m64076_220902_143723.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG02165.HFSS2_dc,single,size fractionation,GENOMIC,WGS,66734.0,20961.0,99.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02165/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02165.m64076_220902_143723.dc.q20.fastq.gz,PACBIO_SMRT,P2,17922.0,20399.0,23533.0,N/A,N/A,N/A,HG02165,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,55.04,55037083639.0,2625582.0,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,19019.0,22638.0,27067.0,SRR26545331,N/A,N/A,N/A,N/A,N/A,SAMN33758788,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02922.m54329U_220903_190900.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG02922.HFSS2_dc,single,size fractionation,GENOMIC,WGS,79382.0,22101.0,94.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02922.m54329U_220903_190900.dc.q20.fastq.gz,PACBIO_SMRT,P2,17997.0,21224.0,25387.0,N/A,N/A,N/A,HG02922,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,50.85,50853098058.0,2300856.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,19088.0,22733.0,27136.0,SRR26545331,N/A,N/A,N/A,N/A,N/A,SAMN33758788,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02922.m54329U_220905_144015.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG02922.HFSS2_dc,single,size fractionation,GENOMIC,WGS,70046.0,22169.0,106.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02922.m54329U_220905_144015.dc.q20.fastq.gz,PACBIO_SMRT,P2,18053.0,21313.0,25468.0,N/A,N/A,N/A,HG02922,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,52.66,52662515153.0,2375491.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,19097.0,22742.0,27144.0,SRR26545331,N/A,N/A,N/A,N/A,N/A,SAMN33758788,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02922.m54329U_220907_100858.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG02922.HFSS2_dc,single,size fractionation,GENOMIC,WGS,79336.0,22179.0,62.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02922.m54329U_220907_100858.dc.q20.fastq.gz,PACBIO_SMRT,P2,18063.0,21326.0,25482.0,N/A,N/A,N/A,HG02922,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,51.41,51413282571.0,2318045.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,15993.0,18290.0,21372.0,SRR26545331,N/A,N/A,N/A,N/A,N/A,SAMN33758788,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,HG02922.m54329U_220816_182601.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG02922.HFSS_dc,single,size fractionation,GENOMIC,WGS,53624.0,18249.0,177.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/deepconsensus/v1pt2/HG02922.m54329U_220816_182601.dc.q20.fastq.gz,PACBIO_SMRT,P2,15503.0,17530.0,20338.0,N/A,N/A,N/A,HG02922,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,22.69,22686605933.0,1243109.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17784.0,20210.0,23363.0,SRR26545314,N/A,N/A,N/A,N/A,N/A,SAMN33758797,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18747.m54329U_220823_191353.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG18747_1.HFSS_dc,single,size fractionation,GENOMIC,WGS,79549.0,20088.0,33.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18747.m54329U_220823_191353.dc.q20.fastq.gz,PACBIO_SMRT,P2,17275.0,19456.0,22407.0,N/A,N/A,N/A,NA18747,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,52.25,52249233160.0,2600981.0,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18240.0,20845.0,24034.0,SRR26545314,N/A,N/A,N/A,N/A,N/A,SAMN33758797,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18747.m64076_221001_041132.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG18747_1.HFSS_dc,single,size fractionation,GENOMIC,WGS,56150.0,20608.0,261.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18747.m64076_221001_041132.dc.q20.fastq.gz,PACBIO_SMRT,P2,17679.0,20046.0,23100.0,N/A,N/A,N/A,NA18747,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,11.05,11045353698.0,535967.0,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18304.0,21151.0,24660.0,SRR26545314,N/A,N/A,N/A,N/A,N/A,SAMN33758797,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18747.m64076_220828_113336.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG18747_2.HFSS_dc,single,size fractionation,GENOMIC,WGS,100381.0,20895.0,310.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18747.m64076_220828_113336.dc.q20.fastq.gz,PACBIO_SMRT,P2,17663.0,20204.0,23537.0,N/A,N/A,N/A,NA18747,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,38.27,38267150734.0,1831328.0,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18579.0,21490.0,24994.0,SRR26545314,N/A,N/A,N/A,N/A,N/A,SAMN33758797,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18747.m64076_220826_143529.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG18747_2.HFSS_dc,single,size fractionation,GENOMIC,WGS,94866.0,21184.0,79.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18747.m64076_220826_143529.dc.q20.fastq.gz,PACBIO_SMRT,P2,17908.0,20530.0,23895.0,N/A,N/A,N/A,NA18747,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,36.38,36384789825.0,1717517.0,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18402.0,21142.0,24541.0,SRR26545311,N/A,N/A,N/A,N/A,N/A,SAMN33758798,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18983.m64457e_220906_104717.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG18983.HFSS2_dc,single,size fractionation,GENOMIC,WGS,67640.0,20919.0,93.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18983.m64457e_220906_104717.dc.q20.fastq.gz,PACBIO_SMRT,P2,17801.0,20258.0,23491.0,N/A,N/A,N/A,NA18983,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,50.45,50447860405.0,2411520.0,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18627.0,21417.0,24804.0,SRR26545311,N/A,N/A,N/A,N/A,N/A,SAMN33758798,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18983.m64457e_220902_165459.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG18983.HFSS2_dc,single,size fractionation,GENOMIC,WGS,76258.0,21146.0,34.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18983.m64457e_220902_165459.dc.q20.fastq.gz,PACBIO_SMRT,P2,18005.0,20525.0,23772.0,N/A,N/A,N/A,NA18983,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,51.19,51186272600.0,2420594.0,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18810.0,21684.0,25111.0,SRR26545311,N/A,N/A,N/A,N/A,N/A,SAMN33758798,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA18983.m64457e_220904_135104.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG18983.HFSS2_dc,single,size fractionation,GENOMIC,WGS,81056.0,21361.0,306.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA18983.m64457e_220904_135104.dc.q20.fastq.gz,PACBIO_SMRT,P2,18152.0,20764.0,24069.0,N/A,N/A,N/A,NA18983,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,49.33,49331386607.0,2309378.0,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18330.0,21301.0,25103.0,SRR26545310,N/A,N/A,N/A,N/A,N/A,SAMN33758799,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA19043.m54329U_220918_114340.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG19043.HFSS_dc,single,size fractionation,GENOMIC,WGS,69418.0,21029.0,91.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA19043.m54329U_220918_114340.dc.q20.fastq.gz,PACBIO_SMRT,P2,17607.0,20246.0,23775.0,N/A,N/A,N/A,NA19043,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,48.71,48707102911.0,2316125.0,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18394.0,21404.0,25224.0,SRR26545310,N/A,N/A,N/A,N/A,N/A,SAMN33758799,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA19043.m54329U_220920_065703.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG19043.HFSS_dc,single,size fractionation,GENOMIC,WGS,87309.0,21115.0,210.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA19043.m54329U_220920_065703.dc.q20.fastq.gz,PACBIO_SMRT,P2,17664.0,20329.0,23894.0,N/A,N/A,N/A,NA19043,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,50.49,50490598694.0,2391163.0,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18574.0,21618.0,25465.0,SRR26545310,N/A,N/A,N/A,N/A,N/A,SAMN33758799,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA19043.m54329U_220916_162216.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG19043.HFSS_dc,single,size fractionation,GENOMIC,WGS,69336.0,21310.0,87.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA19043.m54329U_220916_162216.dc.q20.fastq.gz,PACBIO_SMRT,P2,17826.0,20542.0,24138.0,N/A,N/A,N/A,NA19043,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,50.93,50925680464.0,2389655.0,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18425.0,21166.0,24637.0,SRR26545309,N/A,N/A,N/A,N/A,N/A,SAMN33758800,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA20752.m64457e_220831_195843.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG20752.HFSS_dc,single,size fractionation,GENOMIC,WGS,62925.0,20984.0,93.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20752.m64457e_220831_195843.dc.q20.fastq.gz,PACBIO_SMRT,P2,17824.0,20273.0,23534.0,N/A,N/A,N/A,NA20752,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,50.58,50576730141.0,2410165.0,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18481.0,21288.0,24835.0,SRR26545309,N/A,N/A,N/A,N/A,N/A,SAMN33758800,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA20752.m64457e_220829_104034.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG20752.HFSS_dc,single,size fractionation,GENOMIC,WGS,65854.0,21088.0,217.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20752.m64457e_220829_104034.dc.q20.fastq.gz,PACBIO_SMRT,P2,17863.0,20364.0,23707.0,N/A,N/A,N/A,NA20752,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,55.42,55420791871.0,2628030.0,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,18658.0,21535.0,25099.0,SRR26545309,N/A,N/A,N/A,N/A,N/A,SAMN33758800,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA20752.m64457e_220827_152226.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG20752.HFSS_dc,single,size fractionation,GENOMIC,WGS,69060.0,21285.0,118.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20752.m64457e_220827_152226.dc.q20.fastq.gz,PACBIO_SMRT,P2,18014.0,20585.0,23973.0,N/A,N/A,N/A,NA20752,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,56.5,56497537713.0,2654227.0,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17218.0,20086.0,23663.0,SRR26545307,N/A,N/A,N/A,N/A,N/A,SAMN33758801,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA20905.m64076_220916_183810.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG20905.HFSS_dc,single,size fractionation,GENOMIC,WGS,65430.0,19788.0,31.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20905.m64076_220916_183810.dc.q20.fastq.gz,PACBIO_SMRT,P2,16519.0,19074.0,22434.0,N/A,N/A,N/A,NA20905,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,50.14,50138285736.0,2533646.0,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17251.0,20134.0,23719.0,SRR26545307,N/A,N/A,N/A,N/A,N/A,SAMN33758801,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA20905.m64076_220918_143117.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG20905.HFSS_dc,single,size fractionation,GENOMIC,WGS,69147.0,19826.0,76.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20905.m64076_220918_143117.dc.q20.fastq.gz,PACBIO_SMRT,P2,16544.0,19114.0,22486.0,N/A,N/A,N/A,NA20905,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,50.75,50753646069.0,2559946.0,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,1.2,N/A,False,17882.0,20905.0,24496.0,SRR26545307,N/A,N/A,N/A,N/A,N/A,SAMN33758801,,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA rebasecalled using DeepConsensus,NA20905.m64076_220914_214248.dc.q20.fastq.gz,N/A,tgraves@wustl.edu,Washington University,PacBio Sequel II,PG20905.HFSS_dc,single,size fractionation,GENOMIC,WGS,70280.0,20480.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/deepconsensus/v1pt2/NA20905.m64076_220914_214248.dc.q20.fastq.gz,PACBIO_SMRT,P2,17106.0,19854.0,23313.0,N/A,N/A,N/A,NA20905,N/A,C2,Megaruptor 1,SageELF,SRP305758,N/A,51.05,51048888164.0,2492570.0,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16660.0,19398.0,22815.0,SRR18158610,N/A,N/A,N/A,N/A,N/A,SAMN26267378,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_210516_091844.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00642.HFSS,single,size fractionation,GENOMIC,WGS,49254.0,19195.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00642/raw_data/PacBio_HiFi/m64076_210516_091844.hifi_reads.bam,PACBIO_SMRT,P2.2,16014.0,18446.0,21636.0,N/A,N/A,N/A,HG00642,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,27.53,27532337755.0,1434335.0,N/A,HG00642,SAMN26267378,PR04,PUR,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17312.0,20226.0,23731.0,SRR18158610,N/A,N/A,N/A,N/A,N/A,SAMN26267378,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m54329U_210524_174516.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00642.HFSS,single,size fractionation,GENOMIC,WGS,58561.0,19897.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00642/raw_data/PacBio_HiFi/m54329U_210524_174516.hifi_reads.bam,PACBIO_SMRT,P2.2,16571.0,19217.0,22526.0,N/A,N/A,N/A,HG00642,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,37.25,37253071882.0,1872206.0,N/A,HG00642,SAMN26267378,PR04,PUR,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17342.0,20270.0,23768.0,SRR18158610,N/A,N/A,N/A,N/A,N/A,SAMN26267378,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_210520_213355.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00642.HFSS,single,size fractionation,GENOMIC,WGS,55280.0,19929.0,73.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00642/raw_data/PacBio_HiFi/m64076_210520_213355.hifi_reads.bam,PACBIO_SMRT,P2.2,16590.0,19252.0,22571.0,N/A,N/A,N/A,HG00642,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.58,31582049533.0,1584710.0,N/A,HG00642,SAMN26267378,PR04,PUR,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17338.0,20311.0,23867.0,SRR18158610,N/A,N/A,N/A,N/A,N/A,SAMN26267378,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_210522_082905.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00642.HFSS,single,size fractionation,GENOMIC,WGS,51866.0,19954.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00642/raw_data/PacBio_HiFi/m64076_210522_082905.hifi_reads.bam,PACBIO_SMRT,P2.2,16572.0,19271.0,22642.0,N/A,N/A,N/A,HG00642,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.4,31397468252.0,1573487.0,N/A,HG00642,SAMN26267378,PR04,PUR,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16264.0,18927.0,22328.0,SRR29483231,N/A,N/A,N/A,N/A,N/A,SAMN26267378,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230531_221339_s3.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG00642.HFSS_m84046_230531_221339_s3,single,size fractionation,GENOMIC,WGS,53665.0,18760.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00642/raw_data/PacBio_HiFi/m84046_230531_221339_s3.hifi_reads.default.bam,PACBIO_SMRT,P1,15656.0,17984.0,21135.0,N/A,N/A,N/A,HG00642,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,52.61,52609914284.0,2804349.0,N/A,HG00642,SAMN26267378,PR04,PUR,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17398.0,19748.0,22588.0,SRR13684289,N/A,N/A,N/A,N/A,N/A,SAMN17861233,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200306_185917.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01258.HiFiEx_f1,single,size fractionation,GENOMIC,WGS,49803.0,19234.0,44.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01258/raw_data/PacBio_HiFi_Swap_Fixed/m64076_200306_185917.ccs.bam,PACBIO_SMRT,P2.0,16739.0,18969.0,21696.0,N/A,N/A,N/A,HG01258,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,26.04,26041896578.0,1353905.0,N/A,HG01258,SAMN17861233,CLM16,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17945.0,20385.0,23250.0,SRR13684289,N/A,N/A,N/A,N/A,N/A,SAMN17861233,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200311_082315.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01258.HiFiEx_f1,single,size fractionation,GENOMIC,WGS,50257.0,20032.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01258/raw_data/PacBio_HiFi_Swap_Fixed/m64076_200311_082315.ccs.bam,PACBIO_SMRT,P2.0,17344.0,19636.0,22397.0,N/A,N/A,N/A,HG01258,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,29.29,29289007356.0,1462110.0,N/A,HG01258,SAMN17861233,CLM16,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18072.0,20520.0,23388.0,SRR13684289,N/A,N/A,N/A,N/A,N/A,SAMN17861233,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200310_015720.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01258.HiFiEx_f1,single,size fractionation,GENOMIC,WGS,50256.0,20164.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01258/raw_data/PacBio_HiFi_Swap_Fixed/m64076_200310_015720.ccs.bam,PACBIO_SMRT,P2.0,17467.0,19772.0,22536.0,N/A,N/A,N/A,HG01258,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,26.51,26506907662.0,1314550.0,N/A,HG01258,SAMN17861233,CLM16,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18172.0,20670.0,23557.0,SRR13684289,N/A,N/A,N/A,N/A,N/A,SAMN17861233,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200308_194406.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01258.HiFiEx_f1,single,size fractionation,GENOMIC,WGS,49891.0,20258.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01258/raw_data/PacBio_HiFi_Swap_Fixed/m64076_200308_194406.ccs.bam,PACBIO_SMRT,P2.0,17537.0,19892.0,22696.0,N/A,N/A,N/A,HG01258,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,29.31,29310691456.0,1446864.0,N/A,HG01258,SAMN17861233,CLM16,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15796.0,18026.0,21068.0,SRR29483239,N/A,N/A,N/A,N/A,N/A,SAMN26267379,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230720_182350_s1.hifi_reads.bc2005.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01346.HFSS2_m84046_230720_182350_s1,single,size fractionation,GENOMIC,WGS,68536.0,17967.0,76.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01346/raw_data/PacBio_HiFi/m84046_230720_182350_s1.hifi_reads.bc2005.bam,PACBIO_SMRT,P1,15338.0,17299.0,20105.0,N/A,N/A,N/A,HG01346,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,67.03,67031281657.0,3730708.0,N/A,HG01346,SAMN26267379,CLM27,CLM,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18952.0,19881.0,20718.0,SRR13684281,N/A,N/A,N/A,N/A,N/A,SAMN17861235,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200221_234426.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01361.HiFiEx_f6,single,size fractionation,GENOMIC,WGS,42847.0,19178.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01361/raw_data/PacBio_HiFi_Swap_Fixed/m64076_200221_234426.ccs.bam,PACBIO_SMRT,P2.0,18750.0,19745.0,20615.0,N/A,N/A,N/A,HG01361,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,6.76,6760635369.0,352516.0,N/A,HG01361,SAMN17861235,CLM32,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16577.0,19409.0,21507.0,SRR18158596,N/A,N/A,N/A,N/A,N/A,SAMN26267382,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_210525_000003.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02132_f345,single,size fractionation,GENOMIC,WGS,54229.0,18891.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02132/raw_data/PacBio_HiFi/m64076_210525_000003.hifi_reads.bam,PACBIO_SMRT,P2.2,16238.0,18343.0,21069.0,N/A,N/A,N/A,HG02132,N/A,C2,Megaruptor 3,SageELF,SRP305758,N/A,18.99,18987492433.0,1005090.0,N/A,HG02132,SAMN26267382,VN080,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14802.0,17468.0,20662.0,SRR18158606,N/A,N/A,N/A,N/A,N/A,SAMN26267392,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_210529_081414.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02135.HFSS,single,size fractionation,GENOMIC,WGS,52020.0,17020.0,488.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m64076_210529_081414.hifi_reads.bam,PACBIO_SMRT,P2.2,14014.0,16473.0,19483.0,N/A,N/A,N/A,HG02135,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,13.47,13469495739.0,791363.0,N/A,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15234.0,17968.0,21144.0,SRR18158606,N/A,N/A,N/A,N/A,N/A,SAMN26267392,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_210602_215048.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02135.HFSS,single,size fractionation,GENOMIC,WGS,49107.0,17440.0,90.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m64076_210602_215048.hifi_reads.bam,PACBIO_SMRT,P2.2,14407.0,16959.0,20003.0,N/A,N/A,N/A,HG02135,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,16.38,16375648923.0,938959.0,N/A,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17578.0,19101.0,20919.0,SRR13684279,N/A,N/A,N/A,N/A,N/A,SAMN17861237,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200125_231256.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02257.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,49634.0,19086.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02257/raw_data/PacBio_HiFi/m64076_200125_231256.ccs.bam,PACBIO_SMRT,P2.0,17321.0,18791.0,20528.0,N/A,N/A,N/A,HG02257,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,19.71,19712196692.0,1032799.0,N/A,HG02257,SAMN17861237,BB21,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17658.0,19206.0,21077.0,SRR13684279,N/A,N/A,N/A,N/A,N/A,SAMN17861237,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200127_180545.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02257.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,50471.0,19202.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02257/raw_data/PacBio_HiFi/m64076_200127_180545.ccs.bam,PACBIO_SMRT,P2.0,17393.0,18884.0,20665.0,N/A,N/A,N/A,HG02257,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,31.79,31789384503.0,1655490.0,N/A,HG02257,SAMN17861237,BB21,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17733.0,19284.0,21154.0,SRR13684279,N/A,N/A,N/A,N/A,N/A,SAMN17861237,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200130_064345.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02257.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,49612.0,19284.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02257/raw_data/PacBio_HiFi/m64076_200130_064345.ccs.bam,PACBIO_SMRT,P2.0,17469.0,18965.0,20743.0,N/A,N/A,N/A,HG02257,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,28.67,28667205005.0,1486566.0,N/A,HG02257,SAMN17861237,BB21,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17785.0,19348.0,21236.0,SRR13684279,N/A,N/A,N/A,N/A,N/A,SAMN17861237,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200129_001835.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02257.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,48893.0,19352.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02257/raw_data/PacBio_HiFi/m64076_200129_001835.ccs.bam,PACBIO_SMRT,P2.0,17518.0,19022.0,20817.0,N/A,N/A,N/A,HG02257,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,30.47,30466253940.0,1574258.0,N/A,HG02257,SAMN17861237,BB21,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15230.0,17807.0,21124.0,SRR18158586,N/A,N/A,N/A,N/A,N/A,SAMN26267395,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m54329U_210711_215946.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02300.HFSS,single,size fractionation,GENOMIC,WGS,51252.0,17584.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02300/raw_data/PacBio_HiFi/m54329U_210711_215946.hifi_reads.bam,PACBIO_SMRT,P2.2,14590.0,16868.0,19910.0,N/A,N/A,N/A,HG02300,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,29.06,29062980186.0,1652728.0,N/A,HG02300,SAMN26267395,PEL52,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15321.0,17949.0,21313.0,SRR18158586,N/A,N/A,N/A,N/A,N/A,SAMN26267395,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m54329U_210710_123004.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02300.HFSS,single,size fractionation,GENOMIC,WGS,53464.0,17705.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02300/raw_data/PacBio_HiFi/m54329U_210710_123004.hifi_reads.bam,PACBIO_SMRT,P2.2,14658.0,16983.0,20073.0,N/A,N/A,N/A,HG02300,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,33.8,33800067777.0,1909050.0,N/A,HG02300,SAMN26267395,PEL52,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15347.0,17975.0,21331.0,SRR18158586,N/A,N/A,N/A,N/A,N/A,SAMN26267395,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m54329U_210702_182525.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02300.HFSS,single,size fractionation,GENOMIC,WGS,54870.0,17744.0,408.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02300/raw_data/PacBio_HiFi/m54329U_210702_182525.hifi_reads.bam,PACBIO_SMRT,P2.2,14692.0,17017.0,20106.0,N/A,N/A,N/A,HG02300,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,30.36,30358671051.0,1710846.0,N/A,HG02300,SAMN26267395,PEL52,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15297.0,17906.0,21212.0,SRR29483139,N/A,N/A,N/A,N/A,N/A,SAMN26267395,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230519_231055_s2.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02300.HFSS_m84046_230519_231055_s2,single,size fractionation,GENOMIC,WGS,53764.0,17649.0,175.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02300/raw_data/PacBio_HiFi/m84046_230519_231055_s2.hifi_reads.default.bam,PACBIO_SMRT,P1,14640.0,16956.0,20011.0,N/A,N/A,N/A,HG02300,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,39.7,39698841965.0,2249313.0,N/A,HG02300,SAMN26267395,PEL52,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15145.0,17663.0,20886.0,SRR29483187,N/A,N/A,N/A,N/A,N/A,SAMN26267395,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230617_040148_s2.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02300.HFSS_m84046_230617_040148_s2,single,size fractionation,GENOMIC,WGS,50401.0,17448.0,181.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02300/raw_data/PacBio_HiFi/m84046_230617_040148_s2.hifi_reads.default.bam,PACBIO_SMRT,P1,14524.0,16754.0,19719.0,N/A,N/A,N/A,HG02300,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,32.05,32052364911.0,1837009.0,N/A,HG02300,SAMN26267395,PEL52,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15155.0,17676.0,20913.0,SRR29483188,N/A,N/A,N/A,N/A,N/A,SAMN26267395,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230628_210130_s1.default--default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02300.HFSS_m84046_230628_210130_s1,single,size fractionation,GENOMIC,WGS,52469.0,17467.0,381.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02300/raw_data/PacBio_HiFi/m84046_230628_210130_s1.default--default.bam,PACBIO_SMRT,P1,14533.0,16767.0,19744.0,N/A,N/A,N/A,HG02300,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,17.1,17104030297.0,979167.0,N/A,HG02300,SAMN26267395,PEL52,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15169.0,17361.0,20287.0,SRR23922667,N/A,N/A,N/A,N/A,N/A,SAMN33758786,6.2.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_211212_112351-bc1003.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02451.HFSS2,single,RANDOM,GENOMIC,WGS,56001.0,17314.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/m64076_211212_112351-bc1003.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,14730.0,16643.0,19345.0,N/A,N/A,N/A,HG02451,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.44,39439776523.0,2277851.0,N/A,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15174.0,17364.0,20294.0,SRR23922667,N/A,N/A,N/A,N/A,N/A,SAMN33758786,6.2.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_211208_005550-bc1003.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02451.HFSS2,single,RANDOM,GENOMIC,WGS,50248.0,17319.0,424.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/m64076_211208_005550-bc1003.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,14736.0,16646.0,19353.0,N/A,N/A,N/A,HG02451,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,38.49,38494025289.0,2222540.0,N/A,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15239.0,17471.0,20411.0,SRR23922667,N/A,N/A,N/A,N/A,N/A,SAMN33758786,6.2.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_211211_014755-bc1003.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02451.HFSS2,single,RANDOM,GENOMIC,WGS,51805.0,17401.0,199.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/m64076_211211_014755-bc1003.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,14790.0,16739.0,19472.0,N/A,N/A,N/A,HG02451,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,40.52,40519515849.0,2328484.0,N/A,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18097.0,19841.0,22009.0,SRR13684286,N/A,N/A,N/A,N/A,N/A,SAMN17861240,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200313_161705.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02572.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,50071.0,19789.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02572/raw_data/PacBio_HiFi/m64076_200313_161705.ccs.bam,PACBIO_SMRT,P2.0,17766.0,19421.0,21472.0,N/A,N/A,N/A,HG02572,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,26.95,26950290432.0,1361865.0,N/A,HG02572,SAMN17861240,GB21,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18177.0,19971.0,22212.0,SRR13684286,N/A,N/A,N/A,N/A,N/A,SAMN17861240,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200317_041201.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02572.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,49941.0,19929.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02572/raw_data/PacBio_HiFi/m64076_200317_041201.ccs.bam,PACBIO_SMRT,P2.0,17833.0,19531.0,21639.0,N/A,N/A,N/A,HG02572,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,21.41,21411661479.0,1074359.0,N/A,HG02572,SAMN17861240,GB21,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18223.0,20011.0,22232.0,SRR13684286,N/A,N/A,N/A,N/A,N/A,SAMN17861240,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_200318_103811.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02572.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,49965.0,19965.0,45.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02572/raw_data/PacBio_HiFi/m64076_200318_103811.ccs.bam,PACBIO_SMRT,P2.0,17882.0,19577.0,21677.0,N/A,N/A,N/A,HG02572,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,21.93,21934534323.0,1098595.0,N/A,HG02572,SAMN17861240,GB21,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18307.0,20106.0,22336.0,SRR13684286,N/A,N/A,N/A,N/A,N/A,SAMN17861240,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m54329U_200319_002813.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02572.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,50301.0,20082.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02572/raw_data/PacBio_HiFi/m54329U_200319_002813.ccs.bam,PACBIO_SMRT,P2.0,17971.0,19670.0,21779.0,N/A,N/A,N/A,HG02572,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,25.59,25594226013.0,1274460.0,N/A,HG02572,SAMN17861240,GB21,GWD,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16285.0,18752.0,22039.0,SRR18158608,N/A,N/A,N/A,N/A,N/A,SAMN26267384,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_210703_103644.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02683.HFSS,single,size fractionation,GENOMIC,WGS,56433.0,18648.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02683/raw_data/PacBio_HiFi/m64076_210703_103644.hifi_reads.bam,PACBIO_SMRT,P2.2,15744.0,17909.0,20918.0,N/A,N/A,N/A,HG02683,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,34.53,34531266097.0,1851700.0,N/A,HG02683,SAMN26267384,PK16,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16290.0,18769.0,22049.0,SRR18158608,N/A,N/A,N/A,N/A,N/A,SAMN26267384,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m54329U_210709_030038.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02683.HFSS,single,size fractionation,GENOMIC,WGS,50152.0,18660.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02683/raw_data/PacBio_HiFi/m54329U_210709_030038.hifi_reads.bam,PACBIO_SMRT,P2.2,15748.0,17919.0,20929.0,N/A,N/A,N/A,HG02683,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.5,32502589310.0,1741784.0,N/A,HG02683,SAMN26267384,PK16,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16332.0,18828.0,22147.0,SRR18158608,N/A,N/A,N/A,N/A,N/A,SAMN26267384,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m54329U_210707_171722.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02683.HFSS,single,size fractionation,GENOMIC,WGS,57006.0,18713.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02683/raw_data/PacBio_HiFi/m54329U_210707_171722.hifi_reads.bam,PACBIO_SMRT,P2.2,15779.0,17970.0,21007.0,N/A,N/A,N/A,HG02683,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,33.92,33923407547.0,1812777.0,N/A,HG02683,SAMN26267384,PK16,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16242.0,18658.0,21835.0,SRR29483140,N/A,N/A,N/A,N/A,N/A,SAMN26267384,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230522_234602_s2.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02683.HFSS_m84046_230522_234602_s2,single,size fractionation,GENOMIC,WGS,52194.0,18549.0,181.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02683/raw_data/PacBio_HiFi/m84046_230522_234602_s2.hifi_reads.default.bam,PACBIO_SMRT,P1,15716.0,17848.0,20774.0,N/A,N/A,N/A,HG02683,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,83.44,83440743489.0,4498174.0,N/A,HG02683,SAMN26267384,PK16,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16140.0,18528.0,21716.0,SRR29483241,N/A,N/A,N/A,N/A,N/A,SAMN33758790,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230720_182350_s1.hifi_reads.bc2003.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03041.HFSS2_m84046_230720_182350_s1,single,size fractionation,GENOMIC,WGS,52881.0,18511.0,126.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m84046_230720_182350_s1.hifi_reads.bc2003.bam,PACBIO_SMRT,P1,15640.0,17728.0,20626.0,N/A,N/A,N/A,HG03041,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,10.94,10936928289.0,590816.0,N/A,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17301.0,20000.0,23516.0,SRR18158599,N/A,N/A,N/A,N/A,N/A,SAMN26267387,6.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m54329U_210507_224951-bc1017_BAK8B_OA.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03942a.HFSS,single,size fractionation,GENOMIC,WGS,45692.0,19872.0,142.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03942/raw_data/PacBio_HiFi/m54329U_210507_224951-bc1017_BAK8B_OA.hifi_reads.bam,PACBIO_SMRT,P2.2,16690.0,19090.0,22312.0,N/A,N/A,N/A,HG03942,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,2.94,2941012697.0,147995.0,N/A,HG03942,SAMN26267387,BD42,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15407.0,17139.0,19609.0,SRR29483091,N/A,N/A,N/A,N/A,N/A,SAMN41021641,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230630_233157_s3.bc2069--bc2069.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00128.HFSS2_m84046_230630_233157_s3,single,size fractionation,GENOMIC,WGS,51374.0,17276.0,120.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00128/raw_data/PacBio_HiFi/m84046_230630_233157_s3.bc2069--bc2069.bam,PACBIO_SMRT,P1,15138.0,16658.0,18930.0,N/A,N/A,N/A,HG00128,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,82.23,82225293457.0,4759375.0,N/A,HG00128,SAMN41021641,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17354.0,18894.0,20960.0,SRR29483093,N/A,N/A,N/A,N/A,N/A,SAMN41021641,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230602_203207_s4.hifi_reads.bc2044.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00128.HFSS_m84046_230602_203207_s4,single,size fractionation,GENOMIC,WGS,56094.0,18972.0,146.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00128/raw_data/PacBio_HiFi/m84046_230602_203207_s4.hifi_reads.bc2044.bam,PACBIO_SMRT,P1,17118.0,18544.0,20490.0,N/A,N/A,N/A,HG00128,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,33.23,33229202038.0,1751436.0,N/A,HG00128,SAMN41021641,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17205.0,18656.0,20611.0,SRR29483094,N/A,N/A,N/A,N/A,N/A,SAMN41021641,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230617_043254_s3.hifi_reads.bc2044.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00128.HFSS_m84046_230617_043254_s3,single,size fractionation,GENOMIC,WGS,54809.0,18733.0,124.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00128/raw_data/PacBio_HiFi/m84046_230617_043254_s3.hifi_reads.bc2044.bam,PACBIO_SMRT,P1,16984.0,18337.0,20173.0,N/A,N/A,N/A,HG00128,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,43.12,43116301374.0,2301584.0,N/A,HG00128,SAMN41021641,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17223.0,18688.0,20659.0,SRR29483092,N/A,N/A,N/A,N/A,N/A,SAMN41021641,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230617_050400_s4.hifi_reads.bc2044.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00128.HFSS_m84046_230617_050400_s4,single,size fractionation,GENOMIC,WGS,55452.0,18766.0,67.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00128/raw_data/PacBio_HiFi/m84046_230617_050400_s4.hifi_reads.bc2044.bam,PACBIO_SMRT,P1,17002.0,18364.0,20215.0,N/A,N/A,N/A,HG00128,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,46.97,46970020324.0,2502838.0,N/A,HG00128,SAMN41021641,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17829.0,20270.0,23418.0,SRR23922648,N/A,N/A,N/A,N/A,N/A,SAMN33758785,6.3.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_220906_083112-bc2054.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG02165.HFSS2,single,RANDOM,GENOMIC,WGS,57739.0,20170.0,87.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02165/raw_data/PacBio_HiFi/m64076_220906_083112-bc2054.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17338.0,19513.0,22476.0,N/A,N/A,N/A,HG02165,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,44.24,44241695516.0,2193354.0,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17970.0,20447.0,23596.0,SRR23922648,N/A,N/A,N/A,N/A,N/A,SAMN33758785,6.3.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_220904_113359-bc2054.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG02165.HFSS2,single,RANDOM,GENOMIC,WGS,61252.0,20321.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02165/raw_data/PacBio_HiFi/m64076_220904_113359-bc2054.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17465.0,19685.0,22659.0,N/A,N/A,N/A,HG02165,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,42.08,42083036071.0,2070860.0,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18503.0,21207.0,24441.0,SRR23922648,N/A,N/A,N/A,N/A,N/A,SAMN33758785,6.3.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m64076_220902_143723-bc2054.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG02165.HFSS2,single,RANDOM,GENOMIC,WGS,66727.0,20945.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02165/raw_data/PacBio_HiFi/m64076_220902_143723-bc2054.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17918.0,20372.0,23498.0,N/A,N/A,N/A,HG02165,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,48.39,48389996564.0,2310300.0,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17301.0,19484.0,22463.0,SRR29483247,N/A,N/A,N/A,N/A,N/A,SAMN33758785,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230617_040148_s2.hifi_reads.bc2054.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG02165.HFSS2_m84046_230617_040148_s2,single,size fractionation,GENOMIC,WGS,54140.0,19386.0,279.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02165/raw_data/PacBio_HiFi/m84046_230617_040148_s2.hifi_reads.bc2054.bam,PACBIO_SMRT,P1,16852.0,18792.0,21539.0,N/A,N/A,N/A,HG02165,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,45.38,45376049257.0,2340645.0,N/A,HG02165,SAMN33758785,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16267.0,18439.0,21420.0,SRR29483127,N/A,N/A,N/A,N/A,N/A,SAMN41021686,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230831_231439_s1.hifi_reads.bc2033.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03103.HFSS_m84046_230831_231439_s1,single,size fractionation,GENOMIC,WGS,58234.0,18443.0,64.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03103/raw_data/PacBio_HiFi/m84046_230831_231439_s1.hifi_reads.bc2033.bam,PACBIO_SMRT,P1,15834.0,17755.0,20472.0,N/A,N/A,N/A,HG03103,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,63.89,63888430038.0,3464099.0,N/A,HG03103,SAMN41021686,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16387.0,18611.0,21617.0,SRR29483124,N/A,N/A,N/A,N/A,N/A,SAMN41021686,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230831_234545_s2.hifi_reads.bc2033.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03103.HFSS_m84046_230831_234545_s2,single,size fractionation,GENOMIC,WGS,56378.0,18585.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03103/raw_data/PacBio_HiFi/m84046_230831_234545_s2.hifi_reads.bc2033.bam,PACBIO_SMRT,P1,15937.0,17907.0,20668.0,N/A,N/A,N/A,HG03103,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,62.6,62604382554.0,3368424.0,N/A,HG03103,SAMN41021686,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16105.0,18160.0,21031.0,SRR29483125,N/A,N/A,N/A,N/A,N/A,SAMN41021686,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230905_231311_s2.hifi_reads.bc2033.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03103.HFSS_m84046_230905_231311_s2,single,size fractionation,GENOMIC,WGS,55667.0,18204.0,94.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03103/raw_data/PacBio_HiFi/m84046_230905_231311_s2.hifi_reads.bc2033.bam,PACBIO_SMRT,P1,15703.0,17521.0,20126.0,N/A,N/A,N/A,HG03103,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,59.5,59498338298.0,3268313.0,N/A,HG03103,SAMN41021686,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16386.0,18383.0,20842.0,SRR29483136,N/A,N/A,N/A,N/A,N/A,SAMN41021677,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230721_192545_s2.hifi_reads.bc2080.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03136.HFSS_m84046_230721_192545_s2,single,size fractionation,GENOMIC,WGS,50586.0,18206.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03136/raw_data/PacBio_HiFi/m84046_230721_192545_s2.hifi_reads.bc2080.bam,PACBIO_SMRT,P1,15959.0,17828.0,20169.0,N/A,N/A,N/A,HG03136,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,61.28,61280281634.0,3365913.0,N/A,HG03136,SAMN41021677,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16433.0,18442.0,20924.0,SRR29483206,N/A,N/A,N/A,N/A,N/A,SAMN41021677,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230722_180255_s3.hifi_reads.bc2080.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03136.HFSS_m84046_230722_180255_s3,single,size fractionation,GENOMIC,WGS,49504.0,18263.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03136/raw_data/PacBio_HiFi/m84046_230722_180255_s3.hifi_reads.bc2080.bam,PACBIO_SMRT,P1,15999.0,17881.0,20244.0,N/A,N/A,N/A,HG03136,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,64.4,64399312194.0,3526179.0,N/A,HG03136,SAMN41021677,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16357.0,18349.0,20811.0,SRR29483217,N/A,N/A,N/A,N/A,N/A,SAMN41021677,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230722_183401_s4.hifi_reads.bc2080.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03136.HFSS_m84046_230722_183401_s4,single,size fractionation,GENOMIC,WGS,50197.0,18172.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03136/raw_data/PacBio_HiFi/m84046_230722_183401_s4.hifi_reads.bc2080.bam,PACBIO_SMRT,P1,15927.0,17794.0,20134.0,N/A,N/A,N/A,HG03136,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,67.42,67421766467.0,3710029.0,N/A,HG03136,SAMN41021677,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15957.0,17779.0,20153.0,SRR29483169,N/A,N/A,N/A,N/A,N/A,SAMN41021663,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230721_175304_s3.hifi_reads.bc2091.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18871.HFSS_m84046_230721_175304_s3,single,size fractionation,GENOMIC,WGS,47945.0,17734.0,69.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18871/raw_data/PacBio_HiFi/m84046_230721_175304_s3.hifi_reads.bc2091.bam,PACBIO_SMRT,P1,15615.0,17288.0,19526.0,N/A,N/A,N/A,NA18871,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,66.88,66877137813.0,3770954.0,N/A,NA18871,SAMN41021663,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15981.0,17809.0,20188.0,SRR29483170,N/A,N/A,N/A,N/A,N/A,SAMN41021663,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230721_182333_s4.hifi_reads.bc2091.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18871.HFSS_m84046_230721_182333_s4,single,size fractionation,GENOMIC,WGS,49600.0,17760.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18871/raw_data/PacBio_HiFi/m84046_230721_182333_s4.hifi_reads.bc2091.bam,PACBIO_SMRT,P1,15636.0,17317.0,19561.0,N/A,N/A,N/A,NA18871,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,63.93,63934526697.0,3599850.0,N/A,NA18871,SAMN41021663,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15902.0,17694.0,20041.0,SRR29483168,N/A,N/A,N/A,N/A,N/A,SAMN41021663,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230721_185439_s1.hifi_reads.bc2091.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18871.HFSS_m84046_230721_185439_s1,single,size fractionation,GENOMIC,WGS,56615.0,17659.0,83.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18871/raw_data/PacBio_HiFi/m84046_230721_185439_s1.hifi_reads.bc2091.bam,PACBIO_SMRT,P1,15566.0,17216.0,19420.0,N/A,N/A,N/A,NA18871,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,59.5,59501427505.0,3369453.0,N/A,NA18871,SAMN41021663,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15949.0,18213.0,21280.0,SRR29483245,N/A,N/A,N/A,N/A,N/A,SAMN41021610,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230513_215634_s1.hifi_reads.bc2014.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19776.HFSS_m84046_230513_215634_s1,single,size fractionation,GENOMIC,WGS,53733.0,18152.0,92.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19776/raw_data/PacBio_HiFi/m84046_230513_215634_s1.hifi_reads.bc2014.bam,PACBIO_SMRT,P1,15498.0,17471.0,20321.0,N/A,N/A,N/A,NA19776,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,64.58,64583935206.0,3557844.0,N/A,NA19776,SAMN41021610,,MXL,AMR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15856.0,18070.0,21108.0,SRR29483246,N/A,N/A,N/A,N/A,N/A,SAMN41021610,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230516_205603_s2.hifi_reads.bc2014.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19776.HFSS_m84046_230516_205603_s2,single,size fractionation,GENOMIC,WGS,51132.0,18033.0,351.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19776/raw_data/PacBio_HiFi/m84046_230516_205603_s2.hifi_reads.bc2014.bam,PACBIO_SMRT,P1,15421.0,17346.0,20151.0,N/A,N/A,N/A,NA19776,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,64.39,64385618990.0,3570399.0,N/A,NA19776,SAMN41021610,,MXL,AMR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15860.0,18087.0,21145.0,SRR29483265,N/A,N/A,N/A,N/A,N/A,SAMN41021610,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230516_212709_s3.hifi_reads.bc2014.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19776.HFSS_m84046_230516_212709_s3,single,size fractionation,GENOMIC,WGS,49787.0,18046.0,108.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19776/raw_data/PacBio_HiFi/m84046_230516_212709_s3.hifi_reads.bc2014.bam,PACBIO_SMRT,P1,15422.0,17354.0,20179.0,N/A,N/A,N/A,NA19776,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,64.58,64584192632.0,3578712.0,N/A,NA19776,SAMN41021610,,MXL,AMR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16530.0,18391.0,20858.0,SRR29483085,N/A,N/A,N/A,N/A,N/A,SAMN41021664,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230721_175304_s3.hifi_reads.bc2092.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG20850.HFSS_m84046_230721_175304_s3,single,size fractionation,GENOMIC,WGS,50125.0,18382.0,91.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20850/raw_data/PacBio_HiFi/m84046_230721_175304_s3.hifi_reads.bc2092.bam,PACBIO_SMRT,P1,16194.0,17892.0,20208.0,N/A,N/A,N/A,NA20850,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,66.23,66234086448.0,3603056.0,N/A,NA20850,SAMN41021664,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16550.0,18414.0,20877.0,SRR29483088,N/A,N/A,N/A,N/A,N/A,SAMN41021664,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230721_182333_s4.hifi_reads.bc2092.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG20850.HFSS_m84046_230721_182333_s4,single,size fractionation,GENOMIC,WGS,54426.0,18401.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20850/raw_data/PacBio_HiFi/m84046_230721_182333_s4.hifi_reads.bc2092.bam,PACBIO_SMRT,P1,16213.0,17914.0,20230.0,N/A,N/A,N/A,NA20850,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,63.33,63327918484.0,3441545.0,N/A,NA20850,SAMN41021664,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16467.0,18296.0,20733.0,SRR29483086,N/A,N/A,N/A,N/A,N/A,SAMN41021664,v7.0.0,N/A,unaligned reads,HiFi sequencing of 21kb fractionated gDNA,m84046_230721_185439_s1.hifi_reads.bc2092.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG20850.HFSS_m84046_230721_185439_s1,single,size fractionation,GENOMIC,WGS,49617.0,18297.0,118.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20850/raw_data/PacBio_HiFi/m84046_230721_185439_s1.hifi_reads.bc2092.bam,PACBIO_SMRT,P1,16140.0,17808.0,20093.0,N/A,N/A,N/A,NA20850,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,58.42,58421144215.0,3192817.0,N/A,NA20850,SAMN41021664,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18052.0,20662.0,24153.0,SRR23922646,N/A,N/A,N/A,N/A,N/A,SAMN33758784,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_220908_204946-bc2056.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02040.HFSS2,single,RANDOM,GENOMIC,WGS,63774.0,20362.0,72.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02040/raw_data/PacBio_HiFi/m64076_220908_204946-bc2056.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17430.0,19743.0,22962.0,N/A,N/A,N/A,HG02040,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,40.98,40975751860.0,2012274.0,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18390.0,21140.0,24689.0,SRR23922646,N/A,N/A,N/A,N/A,N/A,SAMN33758784,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_220910_174812-bc2056.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02040.HFSS2,single,RANDOM,GENOMIC,WGS,72682.0,20935.0,106.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02040/raw_data/PacBio_HiFi/m64076_220910_174812-bc2056.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17777.0,20216.0,23524.0,N/A,N/A,N/A,HG02040,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,44.56,44556381201.0,2128239.0,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18550.0,21351.0,24919.0,SRR23922646,N/A,N/A,N/A,N/A,N/A,SAMN33758784,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_220912_140850-bc2056.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02040.HFSS2,single,RANDOM,GENOMIC,WGS,56457.0,21135.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02040/raw_data/PacBio_HiFi/m64076_220912_140850-bc2056.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17919.0,20417.0,23768.0,N/A,N/A,N/A,HG02040,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,44.37,44365842122.0,2099134.0,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17858.0,20494.0,23946.0,SRR18158591,N/A,N/A,N/A,N/A,N/A,SAMN26267380,6.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m54329U_210507_224951-bc1011_BAK8A_OA.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02071a.HFSS,single,size fractionation,GENOMIC,WGS,42220.0,20459.0,769.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02071/raw_data/PacBio_HiFi/m54329U_210507_224951-bc1011_BAK8A_OA.hifi_reads.bam,PACBIO_SMRT,P2.2,17306.0,19625.0,22805.0,N/A,N/A,N/A,HG02071,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,3.03,3026195060.0,147915.0,N/A,HG02071,SAMN26267380,VN065,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17339.0,19332.0,22074.0,SRR29483131,N/A,N/A,N/A,N/A,N/A,SAMN17861237,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230628_182559_s4.hifi_reads.bc2064.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02257.HFSS_m84046_230628_182559_s4,single,size fractionation,GENOMIC,WGS,63975.0,19265.0,77.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02257/raw_data/PacBio_HiFi/m84046_230628_182559_s4.hifi_reads.bc2064.bam,PACBIO_SMRT,P1,16922.0,18740.0,21259.0,N/A,N/A,N/A,HG02257,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,76.47,76465650128.0,3968964.0,N/A,HG02257,SAMN17861237,BB21,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18400.0,19709.0,21393.0,SRR13684278,N/A,N/A,N/A,N/A,N/A,SAMN17861238,ccs 4.0.0 (commit SL-release-8.0.0),N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m54329U_200215_021808.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02486.HiFiEx_f2,single,size fractionation,GENOMIC,WGS,49591.0,19809.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02486/raw_data/PacBio_HiFi/m54329U_200215_021808.ccs.bam,PACBIO_SMRT,P2.0,18232.0,19469.0,21079.0,N/A,N/A,N/A,HG02486,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,18.06,18059386105.0,911631.0,N/A,HG02486,SAMN17861238,BB55,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16283.0,18766.0,22057.0,SRR18158588,N/A,N/A,N/A,N/A,N/A,SAMN26267396,6.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_210718_085619.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02738.HFSS,single,size fractionation,GENOMIC,WGS,51144.0,18666.0,696.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m64076_210718_085619.hifi_reads.bam,PACBIO_SMRT,P2.2,15727.0,17909.0,20907.0,N/A,N/A,N/A,HG02738,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,23.08,23081037343.0,1236481.0,N/A,HG02738,SAMN26267396,PK27,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16403.0,18981.0,22357.0,SRR18158588,N/A,N/A,N/A,N/A,N/A,SAMN26267396,6.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_210711_102225.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02738.HFSS,single,size fractionation,GENOMIC,WGS,52901.0,18849.0,135.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m64076_210711_102225.hifi_reads.bam,PACBIO_SMRT,P2.2,15824.0,18082.0,21176.0,N/A,N/A,N/A,HG02738,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,24.96,24958517767.0,1324061.0,N/A,HG02738,SAMN26267396,PK27,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16413.0,18995.0,22389.0,SRR18158588,N/A,N/A,N/A,N/A,N/A,SAMN26267396,6.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_210706_214544.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02738.HFSS,single,size fractionation,GENOMIC,WGS,56090.0,18869.0,159.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m64076_210706_214544.hifi_reads.bam,PACBIO_SMRT,P2.2,15831.0,18094.0,21198.0,N/A,N/A,N/A,HG02738,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,22.46,22457209908.0,1190157.0,N/A,HG02738,SAMN26267396,PK27,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16478.0,19100.0,22533.0,SRR18158588,N/A,N/A,N/A,N/A,N/A,SAMN26267396,6.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_210714_200553.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02738.HFSS,single,size fractionation,GENOMIC,WGS,62028.0,18960.0,256.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m64076_210714_200553.hifi_reads.bam,PACBIO_SMRT,P2.2,15879.0,18180.0,21325.0,N/A,N/A,N/A,HG02738,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,24.17,24174029510.0,1274956.0,N/A,HG02738,SAMN26267396,PK27,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16217.0,18680.0,21920.0,SRR29483190,N/A,N/A,N/A,N/A,N/A,SAMN26267396,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230623_213746_s2.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02738.HFSS_m84046_230623_213746_s2,single,size fractionation,GENOMIC,WGS,57240.0,18574.0,217.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m84046_230623_213746_s2.hifi_reads.default.bam,PACBIO_SMRT,P1,15671.0,17839.0,20803.0,N/A,N/A,N/A,HG02738,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,49.06,49064316698.0,2641558.0,N/A,HG02738,SAMN26267396,PK27,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16333.0,18868.0,22206.0,SRR29483189,N/A,N/A,N/A,N/A,N/A,SAMN26267396,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230628_182559_s4.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02738.HFSS_m84046_230628_182559_s4,single,size fractionation,GENOMIC,WGS,53905.0,18746.0,267.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02738/raw_data/PacBio_HiFi/m84046_230628_182559_s4.hifi_reads.default.bam,PACBIO_SMRT,P1,15759.0,17990.0,21044.0,N/A,N/A,N/A,HG02738,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,36.78,36782838182.0,1962110.0,N/A,HG02738,SAMN26267396,PK27,PJL,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16848.0,19851.0,23622.0,SRR23922660,N/A,N/A,N/A,N/A,N/A,SAMN33758791,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_220513_215716-bc2018.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03130.HFSS,single,RANDOM,GENOMIC,WGS,54183.0,19549.0,63.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03130/raw_data/PacBio_HiFi/m64076_220513_215716-bc2018.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16080.0,18732.0,22231.0,N/A,N/A,N/A,HG03130,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.69,39686464232.0,2030081.0,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16938.0,19932.0,23673.0,SRR23922660,N/A,N/A,N/A,N/A,N/A,SAMN33758791,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_220516_221911-bc2018.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03130.HFSS,single,RANDOM,GENOMIC,WGS,63690.0,19623.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03130/raw_data/PacBio_HiFi/m64076_220516_221911-bc2018.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16170.0,18830.0,22304.0,N/A,N/A,N/A,HG03130,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.14,39141478923.0,1994630.0,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17005.0,20034.0,23797.0,SRR23922660,N/A,N/A,N/A,N/A,N/A,SAMN33758791,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_220518_191414-bc2018.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03130.HFSS,single,RANDOM,GENOMIC,WGS,55594.0,19705.0,78.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03130/raw_data/PacBio_HiFi/m64076_220518_191414-bc2018.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16222.0,18912.0,22419.0,N/A,N/A,N/A,HG03130,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,38.6,38602098340.0,1958959.0,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16444.0,19248.0,22814.0,SRR29483150,N/A,N/A,N/A,N/A,N/A,SAMN33758791,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230602_213334_s2.hifi_reads.bc2018.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03130.HFSS_m84046_230602_213334_s2,single,size fractionation,GENOMIC,WGS,47072.0,19024.0,227.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03130/raw_data/PacBio_HiFi/m84046_230602_213334_s2.hifi_reads.bc2018.bam,PACBIO_SMRT,P1,15757.0,18235.0,21520.0,N/A,N/A,N/A,HG03130,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,59.15,59153812312.0,3109314.0,N/A,HG03130,SAMN33758791,NG36,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16050.0,18337.0,21412.0,SRR23922657,N/A,N/A,N/A,N/A,N/A,SAMN33758793,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_220526_115049-bc2020.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03209.HFSS,single,RANDOM,GENOMIC,WGS,53890.0,18307.0,91.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/m64076_220526_115049-bc2020.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,15577.0,17588.0,20402.0,N/A,N/A,N/A,HG03209,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,21.78,21783182095.0,1189873.0,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16331.0,18799.0,22046.0,SRR23922657,N/A,N/A,N/A,N/A,N/A,SAMN33758793,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_220524_161808-bc2020.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03209.HFSS,single,RANDOM,GENOMIC,WGS,52802.0,18697.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/m64076_220524_161808-bc2020.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,15799.0,17970.0,20972.0,N/A,N/A,N/A,HG03209,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.04,39036651192.0,2087855.0,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16387.0,18885.0,22158.0,SRR23922657,N/A,N/A,N/A,N/A,N/A,SAMN33758793,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_220520_234906-bc2020.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03209.HFSS,single,RANDOM,GENOMIC,WGS,59822.0,18766.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/m64076_220520_234906-bc2020.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,15843.0,18042.0,21068.0,N/A,N/A,N/A,HG03209,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,41.41,41408759487.0,2206531.0,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16905.0,19552.0,22812.0,SRR23922657,N/A,N/A,N/A,N/A,N/A,SAMN33758793,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_221001_041132-bc2020.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03209.HFSS,single,RANDOM,GENOMIC,WGS,56747.0,19301.0,1106.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/m64076_221001_041132-bc2020.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16295.0,18678.0,21777.0,N/A,N/A,N/A,HG03209,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,14.06,14062564475.0,728559.0,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15993.0,18281.0,21360.0,SRR29483244,N/A,N/A,N/A,N/A,N/A,SAMN33758793,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230617_033126_s1.hifi_reads.bc2020.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03209.HFSS_m84046_230617_033126_s1,single,size fractionation,GENOMIC,WGS,53665.0,18251.0,171.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03209/raw_data/PacBio_HiFi/m84046_230617_033126_s1.hifi_reads.bc2020.bam,PACBIO_SMRT,P1,15518.0,17532.0,20352.0,N/A,N/A,N/A,HG03209,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,54.84,54844107587.0,3004908.0,N/A,HG03209,SAMN33758793,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15849.0,18248.0,21503.0,SRR29483076,N/A,N/A,N/A,N/A,N/A,SAMN17861241,v8.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_231202_110908_s4.hifi_reads.bc2056.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03516.HFSS_m84046_231202_110908_s4,single,size fractionation,GENOMIC,WGS,68453.0,18230.0,72.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03516/raw_data/PacBio_HiFi/m84046_231202_110908_s4.hifi_reads.bc2056.bam,PACBIO_SMRT,P1,15348.0,17425.0,20374.0,N/A,N/A,N/A,HG03516,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,69.9,69896055959.0,3833995.0,N/A,HG03516,SAMN17861241,NG107,ESN,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16352.0,18744.0,21771.0,SRR29483177,N/A,N/A,N/A,N/A,N/A,SAMN26267386,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230628_213236_s2.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03927.HFSS_m84046_230628_213236_s2,single,size fractionation,GENOMIC,WGS,49598.0,18609.0,155.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03927/raw_data/PacBio_HiFi/m84046_230628_213236_s2.hifi_reads.default.bam,PACBIO_SMRT,P1,15901.0,17968.0,20842.0,N/A,N/A,N/A,HG03927,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,49.65,49648184579.0,2667914.0,N/A,HG03927,SAMN26267386,BD37,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15301.0,18468.0,22367.0,SRR18158602,N/A,N/A,N/A,N/A,N/A,SAMN26267389,6.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m54329U_210620_071842.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04199.HFSS,single,size fractionation,GENOMIC,WGS,52167.0,17909.0,638.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04199/raw_data/PacBio_HiFi/m54329U_210620_071842.hifi_reads.bam,PACBIO_SMRT,P2.2,14288.0,17132.0,20712.0,N/A,N/A,N/A,HG04199,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,24.65,24653293607.0,1376549.0,N/A,HG04199,SAMN26267389,ST203,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15348.0,18545.0,22493.0,SRR18158602,N/A,N/A,N/A,N/A,N/A,SAMN26267389,6.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m54329U_210614_155303.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04199.HFSS,single,size fractionation,GENOMIC,WGS,63500.0,17981.0,790.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04199/raw_data/PacBio_HiFi/m54329U_210614_155303.hifi_reads.bam,PACBIO_SMRT,P2.2,14323.0,17188.0,20808.0,N/A,N/A,N/A,HG04199,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,21.31,21311089314.0,1185147.0,N/A,HG04199,SAMN26267389,ST203,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15607.0,18877.0,22900.0,SRR18158602,N/A,N/A,N/A,N/A,N/A,SAMN26267389,6.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m54329U_210621_233920.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04199.HFSS,single,size fractionation,GENOMIC,WGS,62576.0,18283.0,351.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04199/raw_data/PacBio_HiFi/m54329U_210621_233920.hifi_reads.bam,PACBIO_SMRT,P2.2,14542.0,17491.0,21190.0,N/A,N/A,N/A,HG04199,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,21.51,21512850335.0,1176633.0,N/A,HG04199,SAMN26267389,ST203,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17491.0,20902.0,24822.0,SRR18158602,N/A,N/A,N/A,N/A,N/A,SAMN26267389,6.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_210613_183806.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04199.HFSS,single,size fractionation,GENOMIC,WGS,60720.0,20095.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04199/raw_data/PacBio_HiFi/m64076_210613_183806.hifi_reads.bam,PACBIO_SMRT,P2.2,16326.0,19542.0,23310.0,N/A,N/A,N/A,HG04199,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.56,31564451397.0,1570687.0,N/A,HG04199,SAMN26267389,ST203,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15156.0,18235.0,21988.0,SRR29483253,N/A,N/A,N/A,N/A,N/A,SAMN26267389,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230703_225306_s4.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG04199.HFSS_m84046_230703_225306_s4,single,size fractionation,GENOMIC,WGS,64393.0,17690.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04199/raw_data/PacBio_HiFi/m84046_230703_225306_s4.hifi_reads.default.bam,PACBIO_SMRT,P1,14184.0,16954.0,20428.0,N/A,N/A,N/A,HG04199,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,93.32,93321357983.0,5275176.0,N/A,HG04199,SAMN26267389,ST203,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17720.0,20026.0,23102.0,SRR23922669,N/A,N/A,N/A,N/A,N/A,SAMN33758778,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m54329U_220827_143814-bc2050.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00099_2.HFSS,single,RANDOM,GENOMIC,WGS,54052.0,19996.0,52.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00099/raw_data/PacBio_HiFi/m54329U_220827_143814-bc2050.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17274.0,19325.0,22189.0,N/A,N/A,N/A,HG00099,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,45.53,45528316868.0,2276772.0,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17765.0,20098.0,23193.0,SRR23922669,N/A,N/A,N/A,N/A,N/A,SAMN33758778,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m54329U_220829_095708-bc2050.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00099_2.HFSS,single,RANDOM,GENOMIC,WGS,59908.0,20052.0,138.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00099/raw_data/PacBio_HiFi/m54329U_220829_095708-bc2050.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17309.0,19387.0,22273.0,N/A,N/A,N/A,HG00099,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,50.76,50762698477.0,2531476.0,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16729.0,18691.0,21293.0,SRR29483180,N/A,N/A,N/A,N/A,N/A,SAMN41021676,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230724_190043_s1.hifi_reads.bc2096.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00258.HFSS_m84046_230724_190043_s1,single,size fractionation,GENOMIC,WGS,55371.0,18645.0,148.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00258/raw_data/PacBio_HiFi/m84046_230724_190043_s1.hifi_reads.bc2096.bam,PACBIO_SMRT,P1,16344.0,18140.0,20558.0,N/A,N/A,N/A,HG00258,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,51.43,51428204939.0,2758278.0,N/A,HG00258,SAMN41021676,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16744.0,18719.0,21334.0,SRR29483179,N/A,N/A,N/A,N/A,N/A,SAMN41021676,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230724_193107_s2.hifi_reads.bc2096.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00258.HFSS_m84046_230724_193107_s2,single,size fractionation,GENOMIC,WGS,60525.0,18670.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00258/raw_data/PacBio_HiFi/m84046_230724_193107_s2.hifi_reads.bc2096.bam,PACBIO_SMRT,P1,16353.0,18163.0,20593.0,N/A,N/A,N/A,HG00258,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,53.79,53789021399.0,2881022.0,N/A,HG00258,SAMN41021676,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16693.0,18637.0,21211.0,SRR29483178,N/A,N/A,N/A,N/A,N/A,SAMN41021676,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230724_200213_s3.hifi_reads.bc2096.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00258.HFSS_m84046_230724_200213_s3,single,size fractionation,GENOMIC,WGS,52749.0,18592.0,127.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00258/raw_data/PacBio_HiFi/m84046_230724_200213_s3.hifi_reads.bc2096.bam,PACBIO_SMRT,P1,16308.0,18093.0,20489.0,N/A,N/A,N/A,HG00258,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,50.28,50277136375.0,2704234.0,N/A,HG00258,SAMN41021676,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16692.0,18633.0,21200.0,SRR29483181,N/A,N/A,N/A,N/A,N/A,SAMN41021676,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230728_232723_s1.hifi_reads.bc2096.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00258.HFSS_m84046_230728_232723_s1,single,size fractionation,GENOMIC,WGS,56068.0,18590.0,135.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00258/raw_data/PacBio_HiFi/m84046_230728_232723_s1.hifi_reads.bc2096.bam,PACBIO_SMRT,P1,16311.0,18091.0,20477.0,N/A,N/A,N/A,HG00258,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,50.38,50381614416.0,2710084.0,N/A,HG00258,SAMN41021676,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17461.0,19906.0,23180.0,SRR23922658,N/A,N/A,N/A,N/A,N/A,SAMN33758779,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m54329U_220901_221341-bc2051.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00280.HFSS,single,RANDOM,GENOMIC,WGS,57069.0,19893.0,87.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00280/raw_data/PacBio_HiFi/m54329U_220901_221341-bc2051.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16982.0,19131.0,22147.0,N/A,N/A,N/A,HG00280,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,47.18,47176915770.0,2371461.0,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17534.0,19996.0,23256.0,SRR23922658,N/A,N/A,N/A,N/A,N/A,SAMN33758779,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64076_220831_191646-bc2051.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00280.HFSS,single,RANDOM,GENOMIC,WGS,56326.0,19962.0,83.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00280/raw_data/PacBio_HiFi/m64076_220831_191646-bc2051.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17046.0,19212.0,22241.0,N/A,N/A,N/A,HG00280,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,35.34,35342284205.0,1770422.0,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18089.0,20753.0,24064.0,SRR23922658,N/A,N/A,N/A,N/A,N/A,SAMN33758779,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64457e_220825_195635-bc2051.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG00280.HFSS,single,RANDOM,GENOMIC,WGS,60934.0,20575.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00280/raw_data/PacBio_HiFi/m64457e_220825_195635-bc2051.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17523.0,19914.0,23058.0,N/A,N/A,N/A,HG00280,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,45.9,45904022245.0,2231036.0,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17352.0,19722.0,22899.0,SRR29483120,N/A,N/A,N/A,N/A,N/A,SAMN33758779,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230628_213236_s2.hifi_reads.bc2051.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00280.HFSS_m84046_230628_213236_s2,single,size fractionation,GENOMIC,WGS,54674.0,19728.0,165.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00280/raw_data/PacBio_HiFi/m84046_230628_213236_s2.hifi_reads.bc2051.bam,PACBIO_SMRT,P1,16892.0,18978.0,21911.0,N/A,N/A,N/A,HG00280,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,55.58,55575840201.0,2816967.0,N/A,HG00280,SAMN33758779,,FIN,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16087.0,18236.0,21243.0,SRR29483126,N/A,N/A,N/A,N/A,N/A,SAMN41021654,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230701_000218_s4.hifi_reads.bc2048.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00350.HFSS_m84046_230701_000218_s4,single,size fractionation,GENOMIC,WGS,66787.0,18297.0,78.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00350/raw_data/PacBio_HiFi/m84046_230701_000218_s4.hifi_reads.bc2048.bam,PACBIO_SMRT,P1,15669.0,17546.0,20257.0,N/A,N/A,N/A,HG00350,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,65.98,65979378041.0,3605979.0,N/A,HG00350,SAMN41021654,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16096.0,18257.0,21259.0,SRR29483185,N/A,N/A,N/A,N/A,N/A,SAMN41021654,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230703_222200_s3.hifi_reads.bc2048.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00350.HFSS_m84046_230703_222200_s3,single,size fractionation,GENOMIC,WGS,54183.0,18308.0,101.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00350/raw_data/PacBio_HiFi/m84046_230703_222200_s3.hifi_reads.bc2048.bam,PACBIO_SMRT,P1,15675.0,17565.0,20287.0,N/A,N/A,N/A,HG00350,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,117.05,117048570883.0,6393106.0,N/A,HG00350,SAMN41021654,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16260.0,18532.0,21668.0,SRR29483197,N/A,N/A,N/A,N/A,N/A,SAMN41021654,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230712_231732_s2.hifi_reads.bc2048.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00350.HFSS_m84046_230712_231732_s2,single,size fractionation,GENOMIC,WGS,52872.0,18551.0,102.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00350/raw_data/PacBio_HiFi/m84046_230712_231732_s2.hifi_reads.bc2048.bam,PACBIO_SMRT,P1,15806.0,17792.0,20634.0,N/A,N/A,N/A,HG00350,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,20.63,20631179910.0,1112115.0,N/A,HG00350,SAMN41021654,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15849.0,17793.0,20438.0,SRR29483214,N/A,N/A,N/A,N/A,N/A,SAMN41021674,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230724_190043_s1.hifi_reads.bc2094.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01028.HFSS_m84046_230724_190043_s1,single,size fractionation,GENOMIC,WGS,49266.0,17784.0,97.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01028/raw_data/PacBio_HiFi/m84046_230724_190043_s1.hifi_reads.bc2094.bam,PACBIO_SMRT,P1,15464.0,17217.0,19649.0,N/A,N/A,N/A,HG01028,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,58.3,58299850347.0,3278083.0,N/A,HG01028,SAMN41021674,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15861.0,17819.0,20475.0,SRR29483211,N/A,N/A,N/A,N/A,N/A,SAMN41021674,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230724_193107_s2.hifi_reads.bc2094.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01028.HFSS_m84046_230724_193107_s2,single,size fractionation,GENOMIC,WGS,51678.0,17807.0,83.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01028/raw_data/PacBio_HiFi/m84046_230724_193107_s2.hifi_reads.bc2094.bam,PACBIO_SMRT,P1,15475.0,17236.0,19684.0,N/A,N/A,N/A,HG01028,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,60.86,60855170041.0,3417421.0,N/A,HG01028,SAMN41021674,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15814.0,17739.0,20361.0,SRR29483212,N/A,N/A,N/A,N/A,N/A,SAMN41021674,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230724_200213_s3.hifi_reads.bc2094.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01028.HFSS_m84046_230724_200213_s3,single,size fractionation,GENOMIC,WGS,49951.0,17733.0,129.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01028/raw_data/PacBio_HiFi/m84046_230724_200213_s3.hifi_reads.bc2094.bam,PACBIO_SMRT,P1,15432.0,17171.0,19582.0,N/A,N/A,N/A,HG01028,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,57.21,57205768778.0,3225797.0,N/A,HG01028,SAMN41021674,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15818.0,17739.0,20357.0,SRR29483213,N/A,N/A,N/A,N/A,N/A,SAMN41021674,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230728_232723_s1.hifi_reads.bc2094.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01028.HFSS_m84046_230728_232723_s1,single,size fractionation,GENOMIC,WGS,51477.0,17735.0,147.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01028/raw_data/PacBio_HiFi/m84046_230728_232723_s1.hifi_reads.bc2094.bam,PACBIO_SMRT,P1,15438.0,17171.0,19579.0,N/A,N/A,N/A,HG01028,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,28.97,28974810104.0,1633726.0,N/A,HG01028,SAMN41021674,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17282.0,19417.0,22331.0,SRR29483155,N/A,N/A,N/A,N/A,N/A,SAMN41021662,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230721_192545_s2.hifi_reads.bc2090.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01766.HFSS_m84046_230721_192545_s2,single,size fractionation,GENOMIC,WGS,57480.0,19432.0,181.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01766/raw_data/PacBio_HiFi/m84046_230721_192545_s2.hifi_reads.bc2090.bam,PACBIO_SMRT,P1,16868.0,18775.0,21454.0,N/A,N/A,N/A,HG01766,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,53.1,53097306006.0,2732398.0,N/A,HG01766,SAMN41021662,,IBS,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17338.0,19506.0,22474.0,SRR29483158,N/A,N/A,N/A,N/A,N/A,SAMN41021662,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230722_180255_s3.hifi_reads.bc2090.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01766.HFSS_m84046_230722_180255_s3,single,size fractionation,GENOMIC,WGS,61514.0,19516.0,222.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01766/raw_data/PacBio_HiFi/m84046_230722_180255_s3.hifi_reads.bc2090.bam,PACBIO_SMRT,P1,16913.0,18846.0,21569.0,N/A,N/A,N/A,HG01766,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,56.31,56312489585.0,2885411.0,N/A,HG01766,SAMN41021662,,IBS,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17264.0,19392.0,22330.0,SRR29483156,N/A,N/A,N/A,N/A,N/A,SAMN41021662,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230722_183401_s4.hifi_reads.bc2090.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01766.HFSS_m84046_230722_183401_s4,single,size fractionation,GENOMIC,WGS,55690.0,19412.0,138.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01766/raw_data/PacBio_HiFi/m84046_230722_183401_s4.hifi_reads.bc2090.bam,PACBIO_SMRT,P1,16847.0,18747.0,21431.0,N/A,N/A,N/A,HG01766,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,58.35,58353964607.0,3005966.0,N/A,HG01766,SAMN41021662,,IBS,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17225.0,19299.0,22149.0,SRR29483157,N/A,N/A,N/A,N/A,N/A,SAMN41021662,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230728_232723_s1.hifi_reads.bc2090.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01766.HFSS_m84046_230728_232723_s1,single,size fractionation,GENOMIC,WGS,52137.0,19323.0,64.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01766/raw_data/PacBio_HiFi/m84046_230728_232723_s1.hifi_reads.bc2090.bam,PACBIO_SMRT,P1,16820.0,18682.0,21289.0,N/A,N/A,N/A,HG01766,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,27.49,27492756899.0,1422746.0,N/A,HG01766,SAMN41021662,,IBS,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18188.0,20858.0,24325.0,SRR29483167,N/A,N/A,N/A,N/A,N/A,SAMN33758784,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230531_221339_s3.hifi_reads.bc2056.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG02040.HFSS2_m84046_230531_221339_s3,single,size fractionation,GENOMIC,WGS,58406.0,20593.0,310.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02040/raw_data/PacBio_HiFi/m84046_230531_221339_s3.hifi_reads.bc2056.bam,PACBIO_SMRT,P1,17572.0,19939.0,23175.0,N/A,N/A,N/A,HG02040,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,46.89,46891446851.0,2277007.0,N/A,HG02040,SAMN33758784,,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16558.0,18440.0,20733.0,SRR29483263,N/A,N/A,N/A,N/A,N/A,SAMN41021675,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230727_225904_s1.hifi_reads.bc2095.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03778.HFSS_m84046_230727_225904_s1,single,size fractionation,GENOMIC,WGS,53059.0,18327.0,91.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03778/raw_data/PacBio_HiFi/m84046_230727_225904_s1.hifi_reads.bc2095.bam,PACBIO_SMRT,P1,16201.0,17959.0,20169.0,N/A,N/A,N/A,HG03778,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,41.85,41851544501.0,2283495.0,N/A,HG03778,SAMN41021675,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16551.0,18435.0,20725.0,SRR29483262,N/A,N/A,N/A,N/A,N/A,SAMN41021675,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230728_195023_s2.hifi_reads.bc2095.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03778.HFSS_m84046_230728_195023_s2,single,size fractionation,GENOMIC,WGS,53357.0,18321.0,67.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03778/raw_data/PacBio_HiFi/m84046_230728_195023_s2.hifi_reads.bc2095.bam,PACBIO_SMRT,P1,16194.0,17951.0,20165.0,N/A,N/A,N/A,HG03778,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,41.21,41213430190.0,2249399.0,N/A,HG03778,SAMN41021675,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16373.0,18184.0,20428.0,SRR29483243,N/A,N/A,N/A,N/A,N/A,SAMN41021675,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230728_202047_s3.hifi_reads.bc2095.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03778.HFSS_m84046_230728_202047_s3,single,size fractionation,GENOMIC,WGS,53713.0,18101.0,106.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03778/raw_data/PacBio_HiFi/m84046_230728_202047_s3.hifi_reads.bc2095.bam,PACBIO_SMRT,P1,16034.0,17726.0,19871.0,N/A,N/A,N/A,HG03778,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,42.36,42363322281.0,2340299.0,N/A,HG03778,SAMN41021675,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16342.0,18145.0,20384.0,SRR29483261,N/A,N/A,N/A,N/A,N/A,SAMN41021675,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230728_205153_s4.hifi_reads.bc2095.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03778.HFSS_m84046_230728_205153_s4,single,size fractionation,GENOMIC,WGS,58389.0,18065.0,163.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03778/raw_data/PacBio_HiFi/m84046_230728_205153_s4.hifi_reads.bc2095.bam,PACBIO_SMRT,P1,16005.0,17688.0,19830.0,N/A,N/A,N/A,HG03778,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,42.16,42162842373.0,2333827.0,N/A,HG03778,SAMN41021675,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16321.0,18116.0,20351.0,SRR29483242,N/A,N/A,N/A,N/A,N/A,SAMN41021675,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230731_200859_s2.hifi_reads.bc2095.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03778.HFSS_m84046_230731_200859_s2,single,size fractionation,GENOMIC,WGS,48971.0,18038.0,332.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03778/raw_data/PacBio_HiFi/m84046_230731_200859_s2.hifi_reads.bc2095.bam,PACBIO_SMRT,P1,15986.0,17660.0,19802.0,N/A,N/A,N/A,HG03778,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,7.49,7492283139.0,415348.0,N/A,HG03778,SAMN41021675,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17158.0,19275.0,22219.0,SRR29483209,N/A,N/A,N/A,N/A,N/A,SAMN41021661,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230727_225904_s1.hifi_reads.bc2089.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18879.HFSS_m84046_230727_225904_s1,single,size fractionation,GENOMIC,WGS,53615.0,19311.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18879/raw_data/PacBio_HiFi/m84046_230727_225904_s1.hifi_reads.bc2089.bam,PACBIO_SMRT,P1,16771.0,18638.0,21350.0,N/A,N/A,N/A,NA18879,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,35.95,35952728466.0,1861755.0,N/A,NA18879,SAMN41021661,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17146.0,19254.0,22189.0,SRR29483138,N/A,N/A,N/A,N/A,N/A,SAMN41021661,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230728_195023_s2.hifi_reads.bc2089.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18879.HFSS_m84046_230728_195023_s2,single,size fractionation,GENOMIC,WGS,55640.0,19295.0,105.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18879/raw_data/PacBio_HiFi/m84046_230728_195023_s2.hifi_reads.bc2089.bam,PACBIO_SMRT,P1,16762.0,18623.0,21322.0,N/A,N/A,N/A,NA18879,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,35.23,35231680700.0,1825888.0,N/A,NA18879,SAMN41021661,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16954.0,18930.0,21749.0,SRR29483137,N/A,N/A,N/A,N/A,N/A,SAMN41021661,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230728_202047_s3.hifi_reads.bc2089.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18879.HFSS_m84046_230728_202047_s3,single,size fractionation,GENOMIC,WGS,59168.0,19012.0,120.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18879/raw_data/PacBio_HiFi/m84046_230728_202047_s3.hifi_reads.bc2089.bam,PACBIO_SMRT,P1,16597.0,18348.0,20912.0,N/A,N/A,N/A,NA18879,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,33.95,33948783319.0,1785585.0,N/A,NA18879,SAMN41021661,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16927.0,18885.0,21715.0,SRR29483210,N/A,N/A,N/A,N/A,N/A,SAMN41021661,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230728_205153_s4.hifi_reads.bc2089.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18879.HFSS_m84046_230728_205153_s4,single,size fractionation,GENOMIC,WGS,53708.0,18979.0,213.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18879/raw_data/PacBio_HiFi/m84046_230728_205153_s4.hifi_reads.bc2089.bam,PACBIO_SMRT,P1,16571.0,18309.0,20873.0,N/A,N/A,N/A,NA18879,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,33.67,33673965830.0,1774191.0,N/A,NA18879,SAMN41021661,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16912.0,18864.0,21657.0,SRR29483205,N/A,N/A,N/A,N/A,N/A,SAMN41021661,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230731_200859_s2.hifi_reads.bc2089.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18879.HFSS_m84046_230731_200859_s2,single,size fractionation,GENOMIC,WGS,55809.0,18948.0,72.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18879/raw_data/PacBio_HiFi/m84046_230731_200859_s2.hifi_reads.bc2089.bam,PACBIO_SMRT,P1,16560.0,18291.0,20831.0,N/A,N/A,N/A,NA18879,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,58.57,58568710214.0,3090957.0,N/A,NA18879,SAMN41021661,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14632.0,18402.0,22221.0,SRR23922649,N/A,N/A,N/A,N/A,N/A,SAMN33758798,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m54329U_220903_190900-bc2055.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG18983.HFSS2,single,RANDOM,GENOMIC,WGS,33909.0,15264.0,1468.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m54329U_220903_190900-bc2055.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,10464.0,15809.0,19988.0,N/A,N/A,N/A,NA18983,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,0.07,72199804.0,4730.0,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14885.0,18612.0,22626.0,SRR23922649,N/A,N/A,N/A,N/A,N/A,SAMN33758798,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m54329U_220905_144015-bc2055.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG18983.HFSS2,single,RANDOM,GENOMIC,WGS,34905.0,15906.0,1528.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m54329U_220905_144015-bc2055.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,11550.0,16246.0,20407.0,N/A,N/A,N/A,NA18983,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,0.08,77255780.0,4857.0,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14998.0,18874.0,22950.0,SRR23922649,N/A,N/A,N/A,N/A,N/A,SAMN33758798,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m54329U_220907_100858-bc2055.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG18983.HFSS2,single,RANDOM,GENOMIC,WGS,35951.0,16025.0,1389.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m54329U_220907_100858-bc2055.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,11779.0,16362.0,20701.0,N/A,N/A,N/A,NA18983,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,0.07,73078048.0,4560.0,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18385.0,21100.0,24496.0,SRR23922649,N/A,N/A,N/A,N/A,N/A,SAMN33758798,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64457e_220906_104717-bc2055.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG18983.HFSS2,single,RANDOM,GENOMIC,WGS,58895.0,20897.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m64457e_220906_104717-bc2055.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17794.0,20225.0,23449.0,N/A,N/A,N/A,NA18983,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,42.79,42794312016.0,2047793.0,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18608.0,21371.0,24756.0,SRR23922649,N/A,N/A,N/A,N/A,N/A,SAMN33758798,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64457e_220902_165459-bc2055.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG18983.HFSS2,single,RANDOM,GENOMIC,WGS,76383.0,21122.0,79.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m64457e_220902_165459-bc2055.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17996.0,20489.0,23724.0,N/A,N/A,N/A,NA18983,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,43.05,43050138465.0,2038086.0,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18786.0,21640.0,25068.0,SRR23922649,N/A,N/A,N/A,N/A,N/A,SAMN33758798,6.3.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m64457e_220904_135104-bc2055.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG18983.HFSS2,single,RANDOM,GENOMIC,WGS,66528.0,21337.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m64457e_220904_135104-bc2055.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,18140.0,20727.0,24026.0,N/A,N/A,N/A,NA18983,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,42.15,42152212914.0,1975484.0,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17522.0,19854.0,23031.0,SRR29483151,N/A,N/A,N/A,N/A,N/A,SAMN33758798,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230623_210640_s1.hifi_reads.bc2055.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18983.HFSS2_m84046_230623_210640_s1,single,size fractionation,GENOMIC,WGS,57247.0,19849.0,91.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18983/raw_data/PacBio_HiFi/m84046_230623_210640_s1.hifi_reads.bc2055.bam,PACBIO_SMRT,P1,17052.0,19115.0,22023.0,N/A,N/A,N/A,NA18983,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,54.17,54169299224.0,2729065.0,N/A,NA18983,SAMN33758798,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17537.0,19855.0,22896.0,SRR29483235,N/A,N/A,N/A,N/A,N/A,SAMN41021613,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230501_151821_s4.hifi_reads.bc2092.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19390.HFSS_m84046_230501_151821_s4,single,size fractionation,GENOMIC,WGS,56423.0,19784.0,68.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19390/raw_data/PacBio_HiFi/m84046_230501_151821_s4.hifi_reads.bc2092.bam,PACBIO_SMRT,P1,17066.0,19145.0,21977.0,N/A,N/A,N/A,NA19390,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,53.64,53643124518.0,2711404.0,N/A,NA19390,SAMN41021613,,LWK,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17278.0,19458.0,22398.0,SRR29483234,N/A,N/A,N/A,N/A,N/A,SAMN41021613,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230504_205453_s3.hifi_reads.bc2092.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19390.HFSS_m84046_230504_205453_s3,single,size fractionation,GENOMIC,WGS,53621.0,19446.0,102.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19390/raw_data/PacBio_HiFi/m84046_230504_205453_s3.hifi_reads.bc2092.bam,PACBIO_SMRT,P1,16842.0,18801.0,21507.0,N/A,N/A,N/A,NA19390,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,55.57,55572902869.0,2857712.0,N/A,NA19390,SAMN41021613,,LWK,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17341.0,19551.0,22514.0,SRR29483232,N/A,N/A,N/A,N/A,N/A,SAMN41021613,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230504_212559_s4.hifi_reads.bc2092.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19390.HFSS_m84046_230504_212559_s4,single,size fractionation,GENOMIC,WGS,54239.0,19527.0,150.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19390/raw_data/PacBio_HiFi/m84046_230504_212559_s4.hifi_reads.bc2092.bam,PACBIO_SMRT,P1,16899.0,18884.0,21620.0,N/A,N/A,N/A,NA19390,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,55.0,55002385545.0,2816659.0,N/A,NA19390,SAMN41021613,,LWK,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17357.0,19579.0,22543.0,SRR29483233,N/A,N/A,N/A,N/A,N/A,SAMN41021613,v7.0.0,N/A,unaligned reads,HiFi sequencing of 22kb fractionated gDNA,m84046_230508_200815_s4.hifi_reads.bc2092.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19390.HFSS_m84046_230508_200815_s4,single,size fractionation,GENOMIC,WGS,53448.0,19547.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19390/raw_data/PacBio_HiFi/m84046_230508_200815_s4.hifi_reads.bc2092.bam,PACBIO_SMRT,P1,16911.0,18907.0,21651.0,N/A,N/A,N/A,NA19390,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,32.76,32758719626.0,1675885.0,N/A,NA19390,SAMN41021613,,LWK,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16931.0,20504.0,24966.0,SRR23922643,N/A,N/A,N/A,N/A,N/A,SAMN33758781,6.2.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_211222_104516-bc1010.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00639.HFSS,single,RANDOM,GENOMIC,WGS,64002.0,19762.0,79.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/m54329U_211222_104516-bc1010.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15750.0,18909.0,22999.0,N/A,N/A,N/A,HG00639,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,30.16,30157424611.0,1525960.0,N/A,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17062.0,20664.0,25118.0,SRR23922643,N/A,N/A,N/A,N/A,N/A,SAMN33758781,6.2.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_211230_014258-bc1010.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00639.HFSS,single,RANDOM,GENOMIC,WGS,56516.0,19943.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/m54329U_211230_014258-bc1010.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15883.0,19084.0,23193.0,N/A,N/A,N/A,HG00639,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.78,32778391595.0,1643577.0,N/A,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17104.0,20746.0,25246.0,SRR23922643,N/A,N/A,N/A,N/A,N/A,SAMN33758781,6.2.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64076_220216_013707-bc1010.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00639.HFSS,single,RANDOM,GENOMIC,WGS,52534.0,19981.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/m64076_220216_013707-bc1010.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15886.0,19132.0,23275.0,N/A,N/A,N/A,HG00639,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,5.69,5693715374.0,284943.0,N/A,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17196.0,20876.0,25416.0,SRR23922643,N/A,N/A,N/A,N/A,N/A,SAMN33758781,6.2.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_211231_123903-bc1010.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00639.HFSS,single,RANDOM,GENOMIC,WGS,61767.0,20150.0,118.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/m54329U_211231_123903-bc1010.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15989.0,19255.0,23451.0,N/A,N/A,N/A,HG00639,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,37.54,37535814568.0,1862777.0,N/A,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16436.0,19215.0,22858.0,SRR23922645,N/A,N/A,N/A,N/A,N/A,SAMN33758782,6.2.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_211208_005551-bc1008.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01074.HFSS2,single,RANDOM,GENOMIC,WGS,53902.0,19049.0,200.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m54329U_211208_005551-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15785.0,18197.0,21525.0,N/A,N/A,N/A,HG01074,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,34.93,34933587178.0,1833869.0,N/A,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16493.0,19304.0,22988.0,SRR23922645,N/A,N/A,N/A,N/A,N/A,SAMN33758782,6.2.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_211211_014820-bc1008.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01074.HFSS2,single,RANDOM,GENOMIC,WGS,61840.0,19128.0,139.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m54329U_211211_014820-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15826.0,18266.0,21628.0,N/A,N/A,N/A,HG01074,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,37.48,37481785263.0,1959425.0,N/A,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16537.0,19364.0,23063.0,SRR23922645,N/A,N/A,N/A,N/A,N/A,SAMN33758782,6.2.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_211212_111219-bc1008.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01074.HFSS2,single,RANDOM,GENOMIC,WGS,57471.0,19180.0,112.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m54329U_211212_111219-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15858.0,18322.0,21695.0,N/A,N/A,N/A,HG01074,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,37.56,37561501658.0,1958351.0,N/A,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16545.0,18768.0,21880.0,SRR29483195,N/A,N/A,N/A,N/A,N/A,SAMN33758786,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230720_185410_s2.hifi_reads.bc2006.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02451.HFSS3_m84046_230720_185410_s2,single,size fractionation,GENOMIC,WGS,49086.0,18780.0,175.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/m84046_230720_185410_s2.hifi_reads.bc2006.bam,PACBIO_SMRT,P1,16117.0,18053.0,20895.0,N/A,N/A,N/A,HG02451,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,49.77,49774606276.0,2650321.0,N/A,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17505.0,19487.0,22369.0,SRR29483162,N/A,N/A,N/A,N/A,N/A,SAMN26267383,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230707_202610_s3.hifi_reads.bc2060.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02647.HFSS_m84046_230707_202610_s3,single,size fractionation,GENOMIC,WGS,55836.0,19602.0,150.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02647/raw_data/PacBio_HiFi/m84046_230707_202610_s3.hifi_reads.bc2060.bam,PACBIO_SMRT,P1,17151.0,18903.0,21502.0,N/A,N/A,N/A,HG02647,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,46.23,46225303347.0,2358113.0,N/A,HG02647,SAMN26267383,GB38,GWD,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16796.0,19279.0,22705.0,SRR23922666,N/A,N/A,N/A,N/A,N/A,SAMN33758787,6.2.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_211109_002533-bc1002.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02735_SRE.HFSS,single,RANDOM,GENOMIC,WGS,55937.0,19329.0,120.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m54329U_211109_002533-bc1002.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16296.0,18426.0,21500.0,N/A,N/A,N/A,HG02735,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,11.82,11815933021.0,611305.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17225.0,20513.0,24597.0,SRR23922656,N/A,N/A,N/A,N/A,N/A,SAMN33758794,6.2.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64076_220108_100904-bc1015.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03239.HFSS,single,RANDOM,GENOMIC,WGS,57608.0,20045.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/m64076_220108_100904-bc1015.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16305.0,19208.0,23004.0,N/A,N/A,N/A,HG03239,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,35.95,35954386623.0,1793658.0,N/A,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17274.0,20592.0,24716.0,SRR23922656,N/A,N/A,N/A,N/A,N/A,SAMN33758794,6.2.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_220105_011819-bc1015.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03239.HFSS,single,RANDOM,GENOMIC,WGS,62749.0,20108.0,136.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/m54329U_220105_011819-bc1015.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16345.0,19264.0,23104.0,N/A,N/A,N/A,HG03239,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,35.76,35760461752.0,1778411.0,N/A,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17390.0,20721.0,24825.0,SRR23922656,N/A,N/A,N/A,N/A,N/A,SAMN33758794,6.2.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64076_220106_231243-bc1015.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03239.HFSS,single,RANDOM,GENOMIC,WGS,67645.0,20251.0,77.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/m64076_220106_231243-bc1015.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16457.0,19407.0,23235.0,N/A,N/A,N/A,HG03239,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,36.35,36349648567.0,1794879.0,N/A,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17337.0,20717.0,24742.0,SRR18158600,N/A,N/A,N/A,N/A,N/A,SAMN26267388,6.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64076_210623_104349.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04115.HFSS,single,size fractionation,GENOMIC,WGS,56102.0,20047.0,739.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04115/raw_data/PacBio_HiFi/m64076_210623_104349.hifi_reads.bam,PACBIO_SMRT,P2.2,16228.0,19366.0,23149.0,N/A,N/A,N/A,HG04115,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.88,32878572833.0,1640056.0,N/A,HG04115,SAMN26267388,ST111,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18543.0,22203.0,26421.0,SRR18158600,N/A,N/A,N/A,N/A,N/A,SAMN26267388,6.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64076_210627_085544.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04115.HFSS,single,size fractionation,GENOMIC,WGS,61232.0,21316.0,108.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04115/raw_data/PacBio_HiFi/m64076_210627_085544.hifi_reads.bam,PACBIO_SMRT,P2.2,17276.0,20735.0,24789.0,N/A,N/A,N/A,HG04115,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.54,31539555547.0,1479605.0,N/A,HG04115,SAMN26267388,ST111,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18743.0,22340.0,26476.0,SRR18158600,N/A,N/A,N/A,N/A,N/A,SAMN26267388,6.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64076_210625_220013.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04115.HFSS,single,size fractionation,GENOMIC,WGS,58397.0,21493.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04115/raw_data/PacBio_HiFi/m64076_210625_220013.hifi_reads.bam,PACBIO_SMRT,P2.2,17533.0,20925.0,24919.0,N/A,N/A,N/A,HG04115,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,30.35,30350204611.0,1412094.0,N/A,HG04115,SAMN26267388,ST111,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17488.0,20454.0,24255.0,SRR23922652,N/A,N/A,N/A,N/A,N/A,SAMN33758796,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_220607_194753-bc2021.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,NA18522.HFSS,single,RANDOM,GENOMIC,WGS,69031.0,20210.0,69.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/m54329U_220607_194753-bc2021.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16774.0,19386.0,22898.0,N/A,N/A,N/A,NA18522,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,46.37,46372792364.0,2294482.0,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17666.0,20663.0,24465.0,SRR23922652,N/A,N/A,N/A,N/A,N/A,SAMN33758796,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_220605_194957-bc2021.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,NA18522.HFSS,single,RANDOM,GENOMIC,WGS,57002.0,20386.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/m54329U_220605_194957-bc2021.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16934.0,19589.0,23129.0,N/A,N/A,N/A,NA18522,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,42.51,42511152283.0,2085214.0,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17705.0,20717.0,24537.0,SRR23922652,N/A,N/A,N/A,N/A,N/A,SAMN33758796,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_220604_002013-bc2021.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,NA18522.HFSS,single,RANDOM,GENOMIC,WGS,62801.0,20434.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/m54329U_220604_002013-bc2021.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16965.0,19634.0,23192.0,N/A,N/A,N/A,NA18522,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,41.71,41706367952.0,2040973.0,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17082.0,19795.0,23308.0,SRR29483174,N/A,N/A,N/A,N/A,N/A,SAMN33758796,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230531_214232_s2.hifi_reads.bc2021.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,NA18522.HFSS_m84046_230531_214232_s2,single,size fractionation,GENOMIC,WGS,47307.0,19649.0,262.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/m84046_230531_214232_s2.hifi_reads.bc2021.bam,PACBIO_SMRT,P1,16462.0,18854.0,22075.0,N/A,N/A,N/A,NA18522,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,32.01,32010595867.0,1629099.0,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17035.0,19715.0,23227.0,SRR29483104,N/A,N/A,N/A,N/A,N/A,SAMN33758796,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230603_204152_s4.hifi_reads.bc2021.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,NA18522.HFSS_m84046_230603_204152_s4,single,size fractionation,GENOMIC,WGS,54099.0,19590.0,544.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18522/raw_data/PacBio_HiFi/m84046_230603_204152_s4.hifi_reads.bc2021.bam,PACBIO_SMRT,P1,16418.0,18792.0,22005.0,N/A,N/A,N/A,NA18522,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,26.51,26512228758.0,1353337.0,N/A,NA18522,SAMN33758796,Y016,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18875.0,20054.0,21609.0,SRR13684284,N/A,N/A,N/A,N/A,N/A,SAMN17861242,ccs 4.2.0 (commit v4.2.0-1-g450908e4),N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64076_201013_225902.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,NA24385_HG002.f4.f3,single,size fractionation,GENOMIC,WGS,57023.0,20390.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC_PLUS/HG002/raw_data/PacBio_HiFi/UW_supplement/m64076_201013_225902.ccs.bam,PACBIO_SMRT,P2.0,18712.0,19835.0,21255.0,N/A,N/A,N/A,HG002,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,17.33,17328670239.0,849857.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19081.0,20444.0,22636.0,SRR13684284,N/A,N/A,N/A,N/A,N/A,SAMN17861242,ccs 4.2.0 (commit v4.2.0-1-g450908e4),N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64076_201016_191536.ccs.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,NA24385_HG002.f4.f3,single,size fractionation,GENOMIC,WGS,59678.0,21020.0,46.0,,N/A,N/A,s3://human-pangenomics/working/HPRC_PLUS/HG002/raw_data/PacBio_HiFi/UW_supplement/m64076_201016_191536.ccs.bam,PACBIO_SMRT,P2.0,18875.0,20128.0,21934.0,N/A,N/A,N/A,HG002,N/A,C2.0,g-TUBE,SageELF,SRP305758,N/A,19.2,19201161177.0,913451.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18153.0,20772.0,24191.0,SRR29483176,N/A,N/A,N/A,N/A,N/A,SAMN33758778,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230517_211630_s4.hifi_reads.bc2012.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00099_1.HFSS_m84046_230517_211630_s4,single,size fractionation,GENOMIC,WGS,54368.0,20651.0,331.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00099/raw_data/PacBio_HiFi/m84046_230517_211630_s4.hifi_reads.bc2012.bam,PACBIO_SMRT,P1,17597.0,19914.0,23094.0,N/A,N/A,N/A,HG00099,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,61.48,61484744616.0,2977212.0,N/A,HG00099,SAMN33758778,,GBR,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17227.0,19817.0,23257.0,SRR29483229,N/A,N/A,N/A,N/A,N/A,SAMN41021687,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230831_231439_s1.hifi_reads.bc2034.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01048.HFSS_m84046_230831_231439_s1,single,size fractionation,GENOMIC,WGS,60075.0,19703.0,112.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01048/raw_data/PacBio_HiFi/m84046_230831_231439_s1.hifi_reads.bc2034.bam,PACBIO_SMRT,P1,16642.0,18931.0,22072.0,N/A,N/A,N/A,HG01048,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,56.29,56294891530.0,2857155.0,N/A,HG01048,SAMN41021687,,PUR,AMR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17360.0,19992.0,23444.0,SRR29483230,N/A,N/A,N/A,N/A,N/A,SAMN41021687,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230831_234545_s2.hifi_reads.bc2034.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01048.HFSS_m84046_230831_234545_s2,single,size fractionation,GENOMIC,WGS,59663.0,19854.0,128.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01048/raw_data/PacBio_HiFi/m84046_230831_234545_s2.hifi_reads.bc2034.bam,PACBIO_SMRT,P1,16761.0,19095.0,22264.0,N/A,N/A,N/A,HG01048,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,56.02,56024496861.0,2821770.0,N/A,HG01048,SAMN41021687,,PUR,AMR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17002.0,19452.0,22752.0,SRR29483228,N/A,N/A,N/A,N/A,N/A,SAMN41021687,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230905_231311_s2.hifi_reads.bc2034.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01048.HFSS_m84046_230905_231311_s2,single,size fractionation,GENOMIC,WGS,58044.0,19385.0,164.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01048/raw_data/PacBio_HiFi/m84046_230905_231311_s2.hifi_reads.bc2034.bam,PACBIO_SMRT,P1,16464.0,18631.0,21631.0,N/A,N/A,N/A,HG01048,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,39.58,39578673831.0,2041679.0,N/A,HG01048,SAMN41021687,,PUR,AMR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17468.0,20142.0,23647.0,SRR29483266,N/A,N/A,N/A,N/A,N/A,SAMN41021687,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230906_222128_s4.hifi_reads.bc2034.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG01048.HFSS_m84046_230906_222128_s4,single,size fractionation,GENOMIC,WGS,63360.0,19991.0,359.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01048/raw_data/PacBio_HiFi/m84046_230906_222128_s4.hifi_reads.bc2034.bam,PACBIO_SMRT,P1,16853.0,19228.0,22437.0,N/A,N/A,N/A,HG01048,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,61.82,61822391486.0,3092444.0,N/A,HG01048,SAMN41021687,,PUR,AMR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15986.0,18264.0,21324.0,SRR23922664,N/A,N/A,N/A,N/A,N/A,SAMN33758788,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_220816_182601-bc2045.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG02922.HFSS,single,RANDOM,GENOMIC,WGS,48799.0,18233.0,141.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m54329U_220816_182601-bc2045.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,15504.0,17513.0,20303.0,N/A,N/A,N/A,HG02922,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,19.94,19937213389.0,1093416.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18159.0,22312.0,26640.0,SRR23922663,N/A,N/A,N/A,N/A,N/A,SAMN33758788,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64457e_220906_104717-bc2053.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG02922.HFSS2,single,RANDOM,GENOMIC,WGS,42061.0,19880.0,1321.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m64457e_220906_104717-bc2053.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,15374.0,20075.0,24486.0,N/A,N/A,N/A,HG02922,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,0.2,200809444.0,10101.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18780.0,22731.0,27224.0,SRR23922663,N/A,N/A,N/A,N/A,N/A,SAMN33758788,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64457e_220902_165459-bc2053.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG02922.HFSS2,single,RANDOM,GENOMIC,WGS,41854.0,20570.0,1212.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m64457e_220902_165459-bc2053.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16402.0,20700.0,25116.0,N/A,N/A,N/A,HG02922,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,0.2,195361726.0,9497.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18975.0,22556.0,26969.0,SRR23922663,N/A,N/A,N/A,N/A,N/A,SAMN33758788,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_220903_190900-bc2053.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG02922.HFSS2,single,RANDOM,GENOMIC,WGS,76923.0,22047.0,110.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m54329U_220903_190900-bc2053.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17970.0,21163.0,25288.0,N/A,N/A,N/A,HG02922,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,43.9,43896414378.0,1990977.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19046.0,22651.0,27039.0,SRR23922663,N/A,N/A,N/A,N/A,N/A,SAMN33758788,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_220907_100858-bc2053.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG02922.HFSS2,single,RANDOM,GENOMIC,WGS,79328.0,22118.0,62.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m54329U_220907_100858-bc2053.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,18032.0,21258.0,25381.0,N/A,N/A,N/A,HG02922,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,44.48,44475348827.0,2010767.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19050.0,22658.0,27045.0,SRR23922663,N/A,N/A,N/A,N/A,N/A,SAMN33758788,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_220905_144015-bc2053.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG02922.HFSS2,single,RANDOM,GENOMIC,WGS,68274.0,22119.0,106.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m54329U_220905_144015-bc2053.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,18030.0,21258.0,25382.0,N/A,N/A,N/A,HG02922,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,46.38,46375666417.0,2096626.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19118.0,23139.0,27684.0,SRR23922663,N/A,N/A,N/A,N/A,N/A,SAMN33758788,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64457e_220904_135104-bc2053.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG02922.HFSS2,single,RANDOM,GENOMIC,WGS,43604.0,21152.0,1163.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m64457e_220904_135104-bc2053.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16859.0,21228.0,25652.0,N/A,N/A,N/A,HG02922,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,0.19,194353188.0,9188.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18042.0,21259.0,25330.0,SRR29483121,N/A,N/A,N/A,N/A,N/A,SAMN33758788,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230617_040148_s2.hifi_reads.bc2053.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG02922.HFSS2_m84046_230617_040148_s2,single,size fractionation,GENOMIC,WGS,57502.0,20935.0,172.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02922/raw_data/PacBio_HiFi/m84046_230617_040148_s2.hifi_reads.bc2053.bam,PACBIO_SMRT,P1,17209.0,20041.0,23790.0,N/A,N/A,N/A,HG02922,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,20.21,20206254963.0,965182.0,N/A,HG02922,SAMN33758788,NG06,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18408.0,20518.0,23530.0,SRR29483259,N/A,N/A,N/A,N/A,N/A,SAMN41021651,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230715_060901_s1.hifi_reads.bc2084.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03521.HFSS2_m84046_230715_060901_s1,single,size fractionation,GENOMIC,WGS,58005.0,20640.0,66.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03521/raw_data/PacBio_HiFi/m84046_230715_060901_s1.hifi_reads.bc2084.bam,PACBIO_SMRT,P1,18025.0,19908.0,22635.0,N/A,N/A,N/A,HG03521,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,52.35,52350380501.0,2536343.0,N/A,HG03521,SAMN41021651,NG109,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18499.0,20676.0,23771.0,SRR29483257,N/A,N/A,N/A,N/A,N/A,SAMN41021651,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230715_064007_s2.hifi_reads.bc2084.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03521.HFSS2_m84046_230715_064007_s2,single,size fractionation,GENOMIC,WGS,57192.0,20784.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03521/raw_data/PacBio_HiFi/m84046_230715_064007_s2.hifi_reads.bc2084.bam,PACBIO_SMRT,P1,18099.0,20036.0,22840.0,N/A,N/A,N/A,HG03521,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,56.04,56036523269.0,2696081.0,N/A,HG03521,SAMN41021651,NG109,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18419.0,20551.0,23601.0,SRR29483260,N/A,N/A,N/A,N/A,N/A,SAMN41021651,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230718_230843_s2.hifi_reads.bc2084.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03521.HFSS2_m84046_230718_230843_s2,single,size fractionation,GENOMIC,WGS,63166.0,20671.0,96.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03521/raw_data/PacBio_HiFi/m84046_230718_230843_s2.hifi_reads.bc2084.bam,PACBIO_SMRT,P1,18030.0,19928.0,22685.0,N/A,N/A,N/A,HG03521,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,100.26,100261536810.0,4850185.0,N/A,HG03521,SAMN41021651,NG109,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17771.0,20172.0,23299.0,SRR23922651,N/A,N/A,N/A,N/A,N/A,SAMN33758797,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m54329U_220823_191353-bc2011.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG18747_1.HFSS,single,RANDOM,GENOMIC,WGS,62402.0,20063.0,53.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/m54329U_220823_191353-bc2011.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17271.0,19431.0,22353.0,N/A,N/A,N/A,NA18747,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,44.48,44479802984.0,2216924.0,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18231.0,20819.0,24016.0,SRR23922651,N/A,N/A,N/A,N/A,N/A,SAMN33758797,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64076_221001_041132-bc2011.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG18747_1.HFSS,single,RANDOM,GENOMIC,WGS,53613.0,20597.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/m64076_221001_041132-bc2011.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17677.0,20028.0,23080.0,N/A,N/A,N/A,NA18747,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,9.85,9845535652.0,477989.0,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17420.0,19695.0,22725.0,SRR29483196,N/A,N/A,N/A,N/A,N/A,SAMN33758797,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230531_214232_s2.hifi_reads.bc2011.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18747_1.HFSS_m84046_230531_214232_s2,single,size fractionation,GENOMIC,WGS,50521.0,19634.0,342.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/m84046_230531_214232_s2.hifi_reads.bc2011.bam,PACBIO_SMRT,P1,16951.0,18998.0,21798.0,N/A,N/A,N/A,NA18747,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,53.0,53004210316.0,2699589.0,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18289.0,21114.0,24619.0,SRR23922650,N/A,N/A,N/A,N/A,N/A,SAMN33758797,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64076_220828_113336-bc2049.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG18747_2.HFSS,single,RANDOM,GENOMIC,WGS,85977.0,20876.0,158.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/m64076_220828_113336-bc2049.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17657.0,20179.0,23497.0,N/A,N/A,N/A,NA18747,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,33.24,33237414229.0,1592112.0,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18567.0,21454.0,24961.0,SRR23922650,N/A,N/A,N/A,N/A,N/A,SAMN33758797,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64076_220826_143529-bc2049.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG18747_2.HFSS,single,RANDOM,GENOMIC,WGS,86286.0,21168.0,95.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18747/raw_data/PacBio_HiFi/m64076_220826_143529-bc2049.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17906.0,20506.0,23861.0,N/A,N/A,N/A,NA18747,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.67,31669760595.0,1496050.0,N/A,NA18747,SAMN33758797,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18403.0,21119.0,24581.0,SRR23922641,N/A,N/A,N/A,N/A,N/A,SAMN33758800,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64457e_220831_195843-bc2052.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG20752.HFSS,single,RANDOM,GENOMIC,WGS,59695.0,20957.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/m64457e_220831_195843-bc2052.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17815.0,20236.0,23481.0,N/A,N/A,N/A,NA20752,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,42.15,42154577403.0,2011426.0,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18457.0,21225.0,24757.0,SRR23922641,N/A,N/A,N/A,N/A,N/A,SAMN33758800,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64457e_220829_104034-bc2052.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG20752.HFSS,single,RANDOM,GENOMIC,WGS,62512.0,21051.0,71.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/m64457e_220829_104034-bc2052.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17851.0,20320.0,23631.0,N/A,N/A,N/A,NA20752,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,46.94,46944843952.0,2229963.0,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18633.0,21476.0,25034.0,SRR23922641,N/A,N/A,N/A,N/A,N/A,SAMN33758800,6.3.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m64457e_220827_152226-bc2052.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG20752.HFSS,single,RANDOM,GENOMIC,WGS,57993.0,21252.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/m64457e_220827_152226-bc2052.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,18001.0,20542.0,23905.0,N/A,N/A,N/A,NA20752,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,48.19,48188048219.0,2267416.0,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18178.0,20893.0,24415.0,SRR29483087,N/A,N/A,N/A,N/A,N/A,SAMN33758800,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230517_211630_s4.hifi_reads.bc2052.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG20752.HFSS_m84046_230517_211630_s4,single,size fractionation,GENOMIC,WGS,59161.0,20759.0,295.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20752/raw_data/PacBio_HiFi/m84046_230517_211630_s4.hifi_reads.bc2052.bam,PACBIO_SMRT,P1,17598.0,19991.0,23277.0,N/A,N/A,N/A,NA20752,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,66.15,66145642174.0,3186209.0,N/A,NA20752,SAMN33758800,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17858.0,20434.0,23892.0,SRR29483079,N/A,N/A,N/A,N/A,N/A,SAMN41021629,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230501_151821_s4.hifi_reads.bc2089.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG21106.HFSS_m84046_230501_151821_s4,single,size fractionation,GENOMIC,WGS,61270.0,20353.0,160.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21106/raw_data/PacBio_HiFi/m84046_230501_151821_s4.hifi_reads.bc2089.bam,PACBIO_SMRT,P1,17335.0,19580.0,22772.0,N/A,N/A,N/A,NA21106,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,62.99,62992755287.0,3094861.0,N/A,NA21106,SAMN41021629,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17581.0,19979.0,23306.0,SRR29483080,N/A,N/A,N/A,N/A,N/A,SAMN41021629,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230504_205453_s3.hifi_reads.bc2089.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG21106.HFSS_m84046_230504_205453_s3,single,size fractionation,GENOMIC,WGS,62176.0,19950.0,120.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21106/raw_data/PacBio_HiFi/m84046_230504_205453_s3.hifi_reads.bc2089.bam,PACBIO_SMRT,P1,17104.0,19191.0,22218.0,N/A,N/A,N/A,NA21106,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,59.25,59248862130.0,2969815.0,N/A,NA21106,SAMN41021629,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17651.0,20094.0,23456.0,SRR29483078,N/A,N/A,N/A,N/A,N/A,SAMN41021629,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230504_212559_s4.hifi_reads.bc2089.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG21106.HFSS_m84046_230504_212559_s4,single,size fractionation,GENOMIC,WGS,64740.0,20063.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21106/raw_data/PacBio_HiFi/m84046_230504_212559_s4.hifi_reads.bc2089.bam,PACBIO_SMRT,P1,17166.0,19289.0,22361.0,N/A,N/A,N/A,NA21106,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,58.75,58748127302.0,2928042.0,N/A,NA21106,SAMN41021629,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17670.0,20133.0,23491.0,SRR29483081,N/A,N/A,N/A,N/A,N/A,SAMN41021629,v7.0.0,N/A,unaligned reads,HiFi sequencing of 23kb fractionated gDNA,m84046_230508_200815_s4.hifi_reads.bc2089.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG21106.HFSS_m84046_230508_200815_s4,single,size fractionation,GENOMIC,WGS,49086.0,20088.0,96.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21106/raw_data/PacBio_HiFi/m84046_230508_200815_s4.hifi_reads.bc2089.bam,PACBIO_SMRT,P1,17180.0,19327.0,22403.0,N/A,N/A,N/A,NA21106,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,14.31,14313923906.0,712531.0,N/A,NA21106,SAMN41021629,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17676.0,21415.0,26110.0,SRR23922640,N/A,N/A,N/A,N/A,N/A,SAMN33758780,6.2.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m64076_220216_013707-bc1016.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00558.HFSS,single,RANDOM,GENOMIC,WGS,61233.0,20813.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m64076_220216_013707-bc1016.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16484.0,19802.0,24088.0,N/A,N/A,N/A,HG00558,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,2.27,2266821485.0,108911.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17832.0,21688.0,26407.0,SRR23922640,N/A,N/A,N/A,N/A,N/A,SAMN33758780,6.2.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_220116_013607-bc1016.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00558.HFSS,single,RANDOM,GENOMIC,WGS,56168.0,21008.0,60.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m54329U_220116_013607-bc1016.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16605.0,20020.0,24384.0,N/A,N/A,N/A,HG00558,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,33.95,33954147643.0,1616247.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17870.0,21746.0,26503.0,SRR23922640,N/A,N/A,N/A,N/A,N/A,SAMN33758780,6.2.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_220107_233847-bc1016.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00558.HFSS,single,RANDOM,GENOMIC,WGS,60416.0,21059.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m54329U_220107_233847-bc1016.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16632.0,20068.0,24477.0,N/A,N/A,N/A,HG00558,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,33.82,33821381595.0,1605959.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17911.0,21795.0,26553.0,SRR23922640,N/A,N/A,N/A,N/A,N/A,SAMN33758780,6.2.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_220114_143904-bc1016.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG00558.HFSS,single,RANDOM,GENOMIC,WGS,67560.0,21101.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m54329U_220114_143904-bc1016.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16663.0,20114.0,24516.0,N/A,N/A,N/A,HG00558,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,35.32,35323811810.0,1673999.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17480.0,21094.0,25469.0,SRR29483184,N/A,N/A,N/A,N/A,N/A,SAMN33758780,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230519_231055_s2.hifi_reads.bc1016.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG00558.HFSS_m84046_230519_231055_s2,single,size fractionation,GENOMIC,WGS,55399.0,20498.0,142.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m84046_230519_231055_s2.hifi_reads.bc1016.bam,PACBIO_SMRT,P1,16361.0,19597.0,23660.0,N/A,N/A,N/A,HG00558,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,25.49,25488070000.0,1243430.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17264.0,20787.0,25096.0,SRR29483117,N/A,N/A,N/A,N/A,N/A,SAMN33758780,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230602_213334_s2.hifi_reads.bc1016.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG00558.HFSS_m84046_230602_213334_s2,single,size fractionation,GENOMIC,WGS,51616.0,20238.0,293.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m84046_230602_213334_s2.hifi_reads.bc1016.bam,PACBIO_SMRT,P1,16196.0,19339.0,23325.0,N/A,N/A,N/A,HG00558,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,12.4,12401182090.0,612757.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17054.0,20519.0,24782.0,SRR29483183,N/A,N/A,N/A,N/A,N/A,SAMN33758780,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230623_210640_s1.hifi_reads.bc1016.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG00558.HFSS_m84046_230623_210640_s1,single,size fractionation,GENOMIC,WGS,60697.0,20024.0,257.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m84046_230623_210640_s1.hifi_reads.bc1016.bam,PACBIO_SMRT,P1,16028.0,19093.0,23018.0,N/A,N/A,N/A,HG00558,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,8.82,8815084955.0,440223.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16066.0,18348.0,21458.0,SRR18158609,N/A,N/A,N/A,N/A,N/A,SAMN26267379,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210629_024631.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01346.HFSS,single,size fractionation,GENOMIC,WGS,65910.0,18354.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01346/raw_data/PacBio_HiFi/m54329U_210629_024631.hifi_reads.bam,PACBIO_SMRT,P2.2,15619.0,17606.0,20451.0,N/A,N/A,N/A,HG01346,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,36.16,36156051049.0,1969921.0,N/A,HG01346,SAMN26267379,CLM27,CLM,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16112.0,18422.0,21555.0,SRR18158609,N/A,N/A,N/A,N/A,N/A,SAMN26267379,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210624_221223.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01346.HFSS,single,size fractionation,GENOMIC,WGS,58600.0,18413.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01346/raw_data/PacBio_HiFi/m54329U_210624_221223.hifi_reads.bam,PACBIO_SMRT,P2.2,15656.0,17669.0,20534.0,N/A,N/A,N/A,HG01346,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,36.3,36295801919.0,1971103.0,N/A,HG01346,SAMN26267379,CLM27,CLM,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17106.0,19771.0,22965.0,SRR18158609,N/A,N/A,N/A,N/A,N/A,SAMN26267379,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m64076_210621_234241.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01346.HFSS,single,size fractionation,GENOMIC,WGS,54400.0,19491.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01346/raw_data/PacBio_HiFi/m64076_210621_234241.hifi_reads.bam,PACBIO_SMRT,P2.2,16500.0,18914.0,21989.0,N/A,N/A,N/A,HG01346,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,35.23,35233616251.0,1807614.0,N/A,HG01346,SAMN26267379,CLM27,CLM,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15417.0,17702.0,20896.0,SRR29483159,N/A,N/A,N/A,N/A,N/A,SAMN17861236,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230712_224626_s1.hifi_reads.bc2066.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01891.HFSS_m84046_230712_224626_s1,single,size fractionation,GENOMIC,WGS,59862.0,17719.0,96.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01891/raw_data/PacBio_HiFi/m84046_230712_224626_s1.hifi_reads.bc2066.bam,PACBIO_SMRT,P1,14944.0,16897.0,19756.0,N/A,N/A,N/A,HG01891,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,65.72,65719771205.0,3708847.0,N/A,HG01891,SAMN17861236,BB05,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17041.0,19031.0,21910.0,SRR18158594,N/A,N/A,N/A,N/A,N/A,SAMN26267381,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210630_194237.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02074.HFSS,single,size fractionation,GENOMIC,WGS,55439.0,19211.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02074/raw_data/PacBio_HiFi/m54329U_210630_194237.hifi_reads.bam,PACBIO_SMRT,P2.2,16722.0,18451.0,21057.0,N/A,N/A,N/A,HG02074,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,27.52,27521697583.0,1432559.0,N/A,HG02074,SAMN26267381,VN066,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17053.0,19059.0,21971.0,SRR18158594,N/A,N/A,N/A,N/A,N/A,SAMN26267381,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210626_074001.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02074.HFSS,single,size fractionation,GENOMIC,WGS,52031.0,19235.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02074/raw_data/PacBio_HiFi/m54329U_210626_074001.hifi_reads.bam,PACBIO_SMRT,P2.2,16726.0,18473.0,21109.0,N/A,N/A,N/A,HG02074,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,35.81,35810627390.0,1861673.0,N/A,HG02074,SAMN26267381,VN066,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17601.0,19883.0,22893.0,SRR18158594,N/A,N/A,N/A,N/A,N/A,SAMN26267381,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m64076_210630_101034.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02074.HFSS,single,size fractionation,GENOMIC,WGS,48587.0,19886.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02074/raw_data/PacBio_HiFi/m64076_210630_101034.hifi_reads.bam,PACBIO_SMRT,P2.2,17187.0,19213.0,22032.0,N/A,N/A,N/A,HG02074,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.0,30996747067.0,1558716.0,N/A,HG02074,SAMN26267381,VN066,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16883.0,18741.0,21445.0,SRR29483182,N/A,N/A,N/A,N/A,N/A,SAMN26267381,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230624_204605_s4.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02074.HFSSb_m84046_230624_204605_s4,single,size fractionation,GENOMIC,WGS,56155.0,18938.0,150.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02074/raw_data/PacBio_HiFi/m84046_230624_204605_s4.hifi_reads.default.bam,PACBIO_SMRT,P1,16591.0,18220.0,20663.0,N/A,N/A,N/A,HG02074,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,110.61,110611791731.0,5840667.0,N/A,HG02074,SAMN26267381,VN066,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15708.0,17809.0,20702.0,SRR18158585,N/A,N/A,N/A,N/A,N/A,SAMN26267392,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m64076_210719_222908.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02135.HFSS3,single,size fractionation,GENOMIC,WGS,53626.0,17878.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m64076_210719_222908.hifi_reads.bam,PACBIO_SMRT,P2.2,15316.0,17143.0,19779.0,N/A,N/A,N/A,HG02135,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,26.15,26147000508.0,1462475.0,N/A,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15715.0,17837.0,20761.0,SRR18158585,N/A,N/A,N/A,N/A,N/A,SAMN26267392,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210715_074913.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02135.HFSS3,single,size fractionation,GENOMIC,WGS,52844.0,17903.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m54329U_210715_074913.hifi_reads.bam,PACBIO_SMRT,P2.2,15318.0,17164.0,19825.0,N/A,N/A,N/A,HG02135,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.88,32882058946.0,1836654.0,N/A,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15520.0,17497.0,20254.0,SRR29483221,N/A,N/A,N/A,N/A,N/A,SAMN26267392,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230602_220440_s3.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02135.HFSS3_m84046_230602_220440_s3,single,size fractionation,GENOMIC,WGS,53510.0,17594.0,183.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m84046_230602_220440_s3.hifi_reads.default.bam,PACBIO_SMRT,P1,15163.0,16892.0,19394.0,N/A,N/A,N/A,HG02135,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,24.44,24443364448.0,1389290.0,N/A,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15285.0,17087.0,19621.0,SRR29483223,N/A,N/A,N/A,N/A,N/A,SAMN26267392,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230623_210640_s1.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02135.HFSS3_m84046_230623_210640_s1,single,size fractionation,GENOMIC,WGS,46428.0,17215.0,239.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m84046_230623_210640_s1.hifi_reads.default.bam,PACBIO_SMRT,P1,14976.0,16553.0,18852.0,N/A,N/A,N/A,HG02135,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,6.76,6757940288.0,392552.0,N/A,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15345.0,17194.0,19817.0,SRR29483222,N/A,N/A,N/A,N/A,N/A,SAMN26267392,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230628_175536_s3.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02135.HFSS3_m84046_230628_175536_s3,single,size fractionation,GENOMIC,WGS,50299.0,17326.0,162.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m84046_230628_175536_s3.hifi_reads.default.bam,PACBIO_SMRT,P1,15024.0,16644.0,19006.0,N/A,N/A,N/A,HG02135,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,9.5,9496849118.0,548099.0,N/A,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15258.0,17040.0,19561.0,SRR29483225,N/A,N/A,N/A,N/A,N/A,SAMN26267392,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230707_202610_s3.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02135.HFSS3_m84046_230707_202610_s3,single,size fractionation,GENOMIC,WGS,43275.0,17162.0,422.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m84046_230707_202610_s3.hifi_reads.default.bam,PACBIO_SMRT,P1,14949.0,16511.0,18799.0,N/A,N/A,N/A,HG02135,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,7.38,7376184912.0,429774.0,N/A,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15283.0,17064.0,19574.0,SRR29483224,N/A,N/A,N/A,N/A,N/A,SAMN26267392,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230712_224626_s1.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02135.HFSS3_m84046_230712_224626_s1,single,size fractionation,GENOMIC,WGS,46258.0,17189.0,93.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02135/raw_data/PacBio_HiFi/m84046_230712_224626_s1.hifi_reads.default.bam,PACBIO_SMRT,P1,14978.0,16540.0,18821.0,N/A,N/A,N/A,HG02135,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,8.57,8573437259.0,498747.0,N/A,HG02135,SAMN26267392,VN081,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16551.0,18911.0,22142.0,SRR18158587,N/A,N/A,N/A,N/A,N/A,SAMN26267394,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210719_222842.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02293.HFSS,single,size fractionation,GENOMIC,WGS,56470.0,18948.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02293/raw_data/PacBio_HiFi/m54329U_210719_222842.hifi_reads.bam,PACBIO_SMRT,P2.2,16087.0,18129.0,21059.0,N/A,N/A,N/A,HG02293,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,34.41,34407815191.0,1815880.0,N/A,HG02293,SAMN26267394,PEL51,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16588.0,18973.0,22224.0,SRR18158587,N/A,N/A,N/A,N/A,N/A,SAMN26267394,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210721_092510.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02293.HFSS,single,size fractionation,GENOMIC,WGS,54303.0,19001.0,362.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02293/raw_data/PacBio_HiFi/m54329U_210721_092510.hifi_reads.bam,PACBIO_SMRT,P2.2,16116.0,18184.0,21136.0,N/A,N/A,N/A,HG02293,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,29.49,29489403820.0,1551989.0,N/A,HG02293,SAMN26267394,PEL51,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16720.0,19171.0,22463.0,SRR18158587,N/A,N/A,N/A,N/A,N/A,SAMN26267394,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m64076_210716_220011.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02293.HFSS,single,size fractionation,GENOMIC,WGS,59628.0,19168.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02293/raw_data/PacBio_HiFi/m64076_210716_220011.hifi_reads.bam,PACBIO_SMRT,P2.2,16225.0,18357.0,21365.0,N/A,N/A,N/A,HG02293,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.73,32725980265.0,1707292.0,N/A,HG02293,SAMN26267394,PEL51,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16133.0,18179.0,21038.0,SRR29483072,N/A,N/A,N/A,N/A,N/A,SAMN26267394,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230707_205716_s4.default--default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02293.HFSS_m84046_230707_205716_s4,single,size fractionation,GENOMIC,WGS,58469.0,18288.0,224.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02293/raw_data/PacBio_HiFi/m84046_230707_205716_s4.default--default.bam,PACBIO_SMRT,P1,15762.0,17545.0,20132.0,N/A,N/A,N/A,HG02293,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,46.86,46858961814.0,2562243.0,N/A,HG02293,SAMN26267394,PEL51,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16224.0,18309.0,21179.0,SRR29483074,N/A,N/A,N/A,N/A,N/A,SAMN26267394,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230718_233949_s3.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02293.HFSS_m84046_230718_233949_s3,single,size fractionation,GENOMIC,WGS,59398.0,18403.0,544.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02293/raw_data/PacBio_HiFi/m84046_230718_233949_s3.hifi_reads.default.bam,PACBIO_SMRT,P1,15843.0,17667.0,20276.0,N/A,N/A,N/A,HG02293,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,22.14,22143072197.0,1203172.0,N/A,HG02293,SAMN26267394,PEL51,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16081.0,18053.0,20771.0,SRR29483071,N/A,N/A,N/A,N/A,N/A,SAMN26267394,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230724_203319_s4.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02293.HFSS_m84046_230724_203319_s4,single,size fractionation,GENOMIC,WGS,42508.0,18160.0,184.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02293/raw_data/PacBio_HiFi/m84046_230724_203319_s4.hifi_reads.default.bam,PACBIO_SMRT,P1,15728.0,17464.0,19938.0,N/A,N/A,N/A,HG02293,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,8.72,8717022835.0,479989.0,N/A,HG02293,SAMN26267394,PEL51,PEL,AMR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17419.0,20184.0,23860.0,SRR29483119,N/A,N/A,N/A,N/A,N/A,SAMN17861239,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230628_175536_s3.hifi_reads.bc2057.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02559.HFSS_m84046_230628_175536_s3,single,size fractionation,GENOMIC,WGS,66441.0,20045.0,207.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02559/raw_data/PacBio_HiFi/m84046_230628_175536_s3.hifi_reads.bc2057.bam,PACBIO_SMRT,P1,16797.0,19190.0,22545.0,N/A,N/A,N/A,HG02559,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,48.11,48112123387.0,2400146.0,N/A,HG02559,SAMN17861239,BB68,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18003.0,20636.0,24265.0,SRR29483141,N/A,N/A,N/A,N/A,N/A,SAMN33758789,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230701_003325_s1.hifi_reads.bc2058.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03017.HFSS2_m84046_230701_003325_s1,single,size fractionation,GENOMIC,WGS,53663.0,20647.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m84046_230701_003325_s1.hifi_reads.bc2058.bam,PACBIO_SMRT,P1,17449.0,19740.0,22995.0,N/A,N/A,N/A,HG03017,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,27.23,27229904923.0,1318825.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17897.0,20470.0,23991.0,SRR29483143,N/A,N/A,N/A,N/A,N/A,SAMN33758789,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230707_202610_s3.hifi_reads.bc2058.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03017.HFSS2_m84046_230707_202610_s3,single,size fractionation,GENOMIC,WGS,51971.0,20478.0,765.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m84046_230707_202610_s3.hifi_reads.bc2058.bam,PACBIO_SMRT,P1,17362.0,19599.0,22761.0,N/A,N/A,N/A,HG03017,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,8.03,8032535789.0,392243.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17976.0,20585.0,24154.0,SRR29483142,N/A,N/A,N/A,N/A,N/A,SAMN33758789,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230711_233802_s3.hifi_reads.bc2058.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03017.HFSS2_m84046_230711_233802_s3,single,size fractionation,GENOMIC,WGS,56905.0,20598.0,196.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m84046_230711_233802_s3.hifi_reads.bc2058.bam,PACBIO_SMRT,P1,17426.0,19700.0,22903.0,N/A,N/A,N/A,HG03017,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,17.29,17291182646.0,839447.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16610.0,19602.0,23411.0,SRR23922661,N/A,N/A,N/A,N/A,N/A,SAMN33758790,6.2.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_211214_012740-bc1009.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03041.HFSS,single,RANDOM,GENOMIC,WGS,54806.0,19306.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m54329U_211214_012740-bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15843.0,18462.0,21965.0,N/A,N/A,N/A,HG03041,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,38.05,38046233336.0,1970604.0,N/A,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16644.0,19654.0,23489.0,SRR23922661,N/A,N/A,N/A,N/A,N/A,SAMN33758790,6.2.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_211217_080751-bc1009.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03041.HFSS,single,RANDOM,GENOMIC,WGS,58287.0,19356.0,117.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m54329U_211217_080751-bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15871.0,18510.0,22035.0,N/A,N/A,N/A,HG03041,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,37.66,37659966853.0,1945591.0,N/A,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16724.0,19757.0,23596.0,SRR23922661,N/A,N/A,N/A,N/A,N/A,SAMN33758790,6.2.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_211215_225017-bc1009.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03041.HFSS,single,RANDOM,GENOMIC,WGS,56131.0,19439.0,118.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m54329U_211215_225017-bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15931.0,18603.0,22146.0,N/A,N/A,N/A,HG03041,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,36.72,36724761349.0,1889210.0,N/A,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16090.0,18765.0,22221.0,SRR29483238,N/A,N/A,N/A,N/A,N/A,SAMN33758790,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230523_001708_s3.hifi_reads.bc1009.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03041.HFSS_m84046_230523_001708_s3,single,size fractionation,GENOMIC,WGS,58882.0,18583.0,167.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m84046_230523_001708_s3.hifi_reads.bc1009.bam,PACBIO_SMRT,P1,15448.0,17795.0,20967.0,N/A,N/A,N/A,HG03041,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,38.82,38822969583.0,2089108.0,N/A,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16061.0,18732.0,22169.0,SRR29483240,N/A,N/A,N/A,N/A,N/A,SAMN33758790,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230602_213334_s2.hifi_reads.bc1009.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03041.HFSS_m84046_230602_213334_s2,single,size fractionation,GENOMIC,WGS,44858.0,18547.0,51.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03041/raw_data/PacBio_HiFi/m84046_230602_213334_s2.hifi_reads.bc1009.bam,PACBIO_SMRT,P1,15426.0,17761.0,20918.0,N/A,N/A,N/A,HG03041,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,2.05,2054888434.0,110788.0,N/A,HG03041,SAMN33758790,GB110,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16754.0,19296.0,22712.0,SRR23922653,N/A,N/A,N/A,N/A,N/A,SAMN33758795,6.2.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_220203_054640-bc1018.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03704.HFSS4,single,RANDOM,GENOMIC,WGS,48616.0,19289.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m54329U_220203_054640-bc1018.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16218.0,18426.0,21504.0,N/A,N/A,N/A,HG03704,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,4.82,4818202256.0,249779.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16773.0,19756.0,23569.0,SRR29483161,N/A,N/A,N/A,N/A,N/A,SAMN33758795,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230720_185410_s2.hifi_reads.bc2002.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03704.HFSS5_m84046_230720_185410_s2,single,size fractionation,GENOMIC,WGS,55270.0,19506.0,94.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m84046_230720_185410_s2.hifi_reads.bc2002.bam,PACBIO_SMRT,P1,16019.0,18635.0,22124.0,N/A,N/A,N/A,HG03704,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,45.28,45275343137.0,2321098.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15689.0,18817.0,22648.0,SRR29483220,N/A,N/A,N/A,N/A,N/A,SAMN26267388,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230624_201459_s3.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG04115.HFSS_m84046_230624_201459_s3,single,size fractionation,GENOMIC,WGS,61259.0,18289.0,185.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04115/raw_data/PacBio_HiFi/m84046_230624_201459_s3.hifi_reads.default.bam,PACBIO_SMRT,P1,14713.0,17534.0,21059.0,N/A,N/A,N/A,HG04115,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,102.79,102791304261.0,5620099.0,N/A,HG04115,SAMN26267388,ST111,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16962.0,19431.0,22592.0,SRR18158603,N/A,N/A,N/A,N/A,N/A,SAMN26267390,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210517_210109-bc1003_BAK8A_OA.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04204.HFSS,single,size fractionation,GENOMIC,WGS,54149.0,19352.0,287.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04204/raw_data/PacBio_HiFi/m54329U_210517_210109-bc1003_BAK8A_OA.hifi_reads.bam,PACBIO_SMRT,P2.2,16456.0,18640.0,21590.0,N/A,N/A,N/A,HG04204,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,24.98,24982993730.0,1290942.0,N/A,HG04204,SAMN26267390,ST006,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16934.0,19409.0,22632.0,SRR18158603,N/A,N/A,N/A,N/A,N/A,SAMN26267390,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210507_224951-bc1003_BAK8A_OA.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04204.HFSS,single,size fractionation,GENOMIC,WGS,48819.0,19345.0,552.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04204/raw_data/PacBio_HiFi/m54329U_210507_224951-bc1003_BAK8A_OA.hifi_reads.bam,PACBIO_SMRT,P2.2,16436.0,18608.0,21607.0,N/A,N/A,N/A,HG04204,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,3.67,3674050040.0,189916.0,N/A,HG04204,SAMN26267390,ST006,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16942.0,19438.0,22667.0,SRR18158603,N/A,N/A,N/A,N/A,N/A,SAMN26267390,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210514_222517-bc1003_BAK8A_OA.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04204.HFSS,single,size fractionation,GENOMIC,WGS,52568.0,19359.0,59.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04204/raw_data/PacBio_HiFi/m54329U_210514_222517-bc1003_BAK8A_OA.hifi_reads.bam,PACBIO_SMRT,P2.2,16424.0,18624.0,21632.0,N/A,N/A,N/A,HG04204,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,27.88,27879875624.0,1440144.0,N/A,HG04204,SAMN26267390,ST006,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17171.0,19759.0,23019.0,SRR18158603,N/A,N/A,N/A,N/A,N/A,SAMN26267390,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210519_065152-bc1003_BAK8A_OA.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04204.HFSS,single,size fractionation,GENOMIC,WGS,55860.0,19617.0,62.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04204/raw_data/PacBio_HiFi/m54329U_210519_065152-bc1003_BAK8A_OA.hifi_reads.bam,PACBIO_SMRT,P2.2,16614.0,18916.0,21983.0,N/A,N/A,N/A,HG04204,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,30.99,30994485468.0,1579943.0,N/A,HG04204,SAMN26267390,ST006,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17264.0,19894.0,23179.0,SRR18158603,N/A,N/A,N/A,N/A,N/A,SAMN26267390,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210520_213459-bc1003_BAK8A_OA.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04204.HFSS,single,size fractionation,GENOMIC,WGS,57880.0,19734.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04204/raw_data/PacBio_HiFi/m54329U_210520_213459-bc1003_BAK8A_OA.hifi_reads.bam,PACBIO_SMRT,P2.2,16694.0,19036.0,22131.0,N/A,N/A,N/A,HG04204,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.26,32264696883.0,1634946.0,N/A,HG04204,SAMN26267390,ST006,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16521.0,18831.0,21925.0,SRR29483198,N/A,N/A,N/A,N/A,N/A,SAMN26267390,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230623_213746_s2.hifi_reads.bc1003.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG04204.HFSS_m84046_230623_213746_s2,single,size fractionation,GENOMIC,WGS,60239.0,18830.0,232.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04204/raw_data/PacBio_HiFi/m84046_230623_213746_s2.hifi_reads.bc1003.bam,PACBIO_SMRT,P1,16070.0,18088.0,20933.0,N/A,N/A,N/A,HG04204,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,62.39,62394610705.0,3313451.0,N/A,HG04204,SAMN26267390,ST006,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17205.0,19981.0,23533.0,SRR18158583,N/A,N/A,N/A,N/A,N/A,SAMN26267391,6.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m54329U_210507_224951-bc1008_BAK8A_OA.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG04228a.HFSS,single,size fractionation,GENOMIC,WGS,50556.0,19802.0,573.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04228/raw_data/PacBio_HiFi/m54329U_210507_224951-bc1008_BAK8A_OA.hifi_reads.bam,PACBIO_SMRT,P2.2,16563.0,19003.0,22307.0,N/A,N/A,N/A,HG04228,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,3.36,3359403014.0,169644.0,N/A,HG04228,SAMN26267391,ST232,STU,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18218.0,20516.0,23811.0,SRR29483082,N/A,N/A,N/A,N/A,N/A,SAMN41021660,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230716_051716_s3.hifi_reads.bc2086.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00097.HFSS_m84046_230716_051716_s3,single,size fractionation,GENOMIC,WGS,60165.0,20551.0,77.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00097/raw_data/PacBio_HiFi/m84046_230716_051716_s3.hifi_reads.bc2086.bam,PACBIO_SMRT,P1,17766.0,19795.0,22777.0,N/A,N/A,N/A,HG00097,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,56.11,56111550391.0,2730343.0,N/A,HG00097,SAMN41021660,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18220.0,20531.0,23848.0,SRR29483083,N/A,N/A,N/A,N/A,N/A,SAMN41021660,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230716_054822_s4.hifi_reads.bc2086.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00097.HFSS_m84046_230716_054822_s4,single,size fractionation,GENOMIC,WGS,53858.0,20563.0,135.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00097/raw_data/PacBio_HiFi/m84046_230716_054822_s4.hifi_reads.bc2086.bam,PACBIO_SMRT,P1,17766.0,19800.0,22810.0,N/A,N/A,N/A,HG00097,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,59.48,59475971630.0,2892254.0,N/A,HG00097,SAMN41021660,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18134.0,20372.0,23618.0,SRR29483084,N/A,N/A,N/A,N/A,N/A,SAMN41021660,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230718_223822_s1.hifi_reads.bc2086.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00097.HFSS_m84046_230718_223822_s1,single,size fractionation,GENOMIC,WGS,58103.0,20427.0,131.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00097/raw_data/PacBio_HiFi/m84046_230718_223822_s1.hifi_reads.bc2086.bam,PACBIO_SMRT,P1,17693.0,19676.0,22592.0,N/A,N/A,N/A,HG00097,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,81.99,81988073357.0,4013688.0,N/A,HG00097,SAMN41021660,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18216.0,20376.0,23263.0,SRR29483102,N/A,N/A,N/A,N/A,N/A,SAMN41021673,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230727_225904_s1.hifi_reads.bc2093.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03457.HFSS_m84046_230727_225904_s1,single,size fractionation,GENOMIC,WGS,53305.0,20347.0,125.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03457/raw_data/PacBio_HiFi/m84046_230727_225904_s1.hifi_reads.bc2093.bam,PACBIO_SMRT,P1,17800.0,19764.0,22452.0,N/A,N/A,N/A,HG03457,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,40.34,40341169723.0,1982643.0,N/A,HG03457,SAMN41021673,,MSL,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18205.0,20365.0,23238.0,SRR29483153,N/A,N/A,N/A,N/A,N/A,SAMN41021673,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230728_195023_s2.hifi_reads.bc2093.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03457.HFSS_m84046_230728_195023_s2,single,size fractionation,GENOMIC,WGS,51457.0,20335.0,212.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03457/raw_data/PacBio_HiFi/m84046_230728_195023_s2.hifi_reads.bc2093.bam,PACBIO_SMRT,P1,17791.0,19755.0,22429.0,N/A,N/A,N/A,HG03457,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,39.74,39739563028.0,1954186.0,N/A,HG03457,SAMN41021673,,MSL,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17991.0,20036.0,22816.0,SRR29483101,N/A,N/A,N/A,N/A,N/A,SAMN41021673,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230728_202047_s3.hifi_reads.bc2093.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03457.HFSS_m84046_230728_202047_s3,single,size fractionation,GENOMIC,WGS,54776.0,20048.0,113.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03457/raw_data/PacBio_HiFi/m84046_230728_202047_s3.hifi_reads.bc2093.bam,PACBIO_SMRT,P1,17602.0,19469.0,22028.0,N/A,N/A,N/A,HG03457,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,32.17,32168165375.0,1604550.0,N/A,HG03457,SAMN41021673,,MSL,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17961.0,19997.0,22775.0,SRR29483103,N/A,N/A,N/A,N/A,N/A,SAMN41021673,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230728_205153_s4.hifi_reads.bc2093.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03457.HFSS_m84046_230728_205153_s4,single,size fractionation,GENOMIC,WGS,62363.0,20011.0,104.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03457/raw_data/PacBio_HiFi/m84046_230728_205153_s4.hifi_reads.bc2093.bam,PACBIO_SMRT,P1,17574.0,19429.0,21990.0,N/A,N/A,N/A,HG03457,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,31.92,31921561388.0,1595159.0,N/A,HG03457,SAMN41021673,,MSL,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17939.0,19969.0,22719.0,SRR29483152,N/A,N/A,N/A,N/A,N/A,SAMN41021673,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230731_200859_s2.hifi_reads.bc2093.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03457.HFSS_m84046_230731_200859_s2,single,size fractionation,GENOMIC,WGS,53032.0,19977.0,65.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03457/raw_data/PacBio_HiFi/m84046_230731_200859_s2.hifi_reads.bc2093.bam,PACBIO_SMRT,P1,17555.0,19406.0,21946.0,N/A,N/A,N/A,HG03457,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,47.33,47333857834.0,2369344.0,N/A,HG03457,SAMN41021673,,MSL,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18566.0,21565.0,25434.0,SRR29483061,N/A,N/A,N/A,N/A,N/A,SAMN41021626,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230513_215634_s1.hifi_reads.bc2001.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18508.HFSS2_m84046_230513_215634_s1,single,size fractionation,GENOMIC,WGS,59160.0,21369.0,154.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18508/raw_data/PacBio_HiFi/m84046_230513_215634_s1.hifi_reads.bc2001.bam,PACBIO_SMRT,P1,17884.0,20503.0,24079.0,N/A,N/A,N/A,NA18508,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,65.5,65503405021.0,3065312.0,N/A,NA18508,SAMN41021626,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18440.0,21398.0,25254.0,SRR29483060,N/A,N/A,N/A,N/A,N/A,SAMN41021626,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230516_205603_s2.hifi_reads.bc2001.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18508.HFSS2_m84046_230516_205603_s2,single,size fractionation,GENOMIC,WGS,63991.0,21225.0,106.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18508/raw_data/PacBio_HiFi/m84046_230516_205603_s2.hifi_reads.bc2001.bam,PACBIO_SMRT,P1,17783.0,20349.0,23902.0,N/A,N/A,N/A,NA18508,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,62.04,62040051803.0,2922965.0,N/A,NA18508,SAMN41021626,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18476.0,21459.0,25360.0,SRR29483075,N/A,N/A,N/A,N/A,N/A,SAMN41021626,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230516_212709_s3.hifi_reads.bc2001.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG18508.HFSS2_m84046_230516_212709_s3,single,size fractionation,GENOMIC,WGS,71331.0,21275.0,72.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18508/raw_data/PacBio_HiFi/m84046_230516_212709_s3.hifi_reads.bc2001.bam,PACBIO_SMRT,P1,17801.0,20391.0,23993.0,N/A,N/A,N/A,NA18508,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,62.74,62737808226.0,2948816.0,N/A,NA18508,SAMN41021626,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18062.0,20748.0,24325.0,SRR29483258,N/A,N/A,N/A,N/A,N/A,SAMN41021688,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230909_231800_s4.hifi_reads.bc2035.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19190.HFSS_m84046_230909_231800_s4,single,size fractionation,GENOMIC,WGS,73514.0,20606.0,118.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19190/raw_data/PacBio_HiFi/m84046_230909_231800_s4.hifi_reads.bc2035.bam,PACBIO_SMRT,P1,17453.0,19823.0,23101.0,N/A,N/A,N/A,NA19190,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,108.91,108911448346.0,5285173.0,N/A,NA19190,SAMN41021688,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18034.0,20697.0,24253.0,SRR29483264,N/A,N/A,N/A,N/A,N/A,SAMN41021688,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230913_204538_s3.hifi_reads.bc2035.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19190.HFSS_m84046_230913_204538_s3,single,size fractionation,GENOMIC,WGS,65090.0,20563.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19190/raw_data/PacBio_HiFi/m84046_230913_204538_s3.hifi_reads.bc2035.bam,PACBIO_SMRT,P1,17426.0,19786.0,23023.0,N/A,N/A,N/A,NA19190,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,112.26,112259504727.0,5459074.0,N/A,NA19190,SAMN41021688,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18490.0,21366.0,25101.0,SRR29483097,N/A,N/A,N/A,N/A,N/A,SAMN41021611,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230428_231421_s3.hifi_reads.bc2090.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19682.HFSS_m84046_230428_231421_s3,single,size fractionation,GENOMIC,WGS,58162.0,21146.0,150.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19682/raw_data/PacBio_HiFi/m84046_230428_231421_s3.hifi_reads.bc2090.bam,PACBIO_SMRT,P1,17804.0,20356.0,23795.0,N/A,N/A,N/A,NA19682,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,48.1,48098225913.0,2274532.0,N/A,NA19682,SAMN41021611,,MXL,AMR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18285.0,21045.0,24676.0,SRR29483077,N/A,N/A,N/A,N/A,N/A,SAMN41021611,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230504_195327_s1.hifi_reads.bc2090.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19682.HFSS_m84046_230504_195327_s1,single,size fractionation,GENOMIC,WGS,60900.0,20862.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19682/raw_data/PacBio_HiFi/m84046_230504_195327_s1.hifi_reads.bc2090.bam,PACBIO_SMRT,P1,17638.0,20087.0,23410.0,N/A,N/A,N/A,NA19682,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,52.88,52882168551.0,2534850.0,N/A,NA19682,SAMN41021611,,MXL,AMR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18264.0,21023.0,24652.0,SRR29483096,N/A,N/A,N/A,N/A,N/A,SAMN41021611,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230504_202347_s2.hifi_reads.bc2090.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19682.HFSS_m84046_230504_202347_s2,single,size fractionation,GENOMIC,WGS,57024.0,20838.0,172.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19682/raw_data/PacBio_HiFi/m84046_230504_202347_s2.hifi_reads.bc2090.bam,PACBIO_SMRT,P1,17619.0,20059.0,23384.0,N/A,N/A,N/A,NA19682,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,53.85,53845834322.0,2583948.0,N/A,NA19682,SAMN41021611,,MXL,AMR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18421.0,21254.0,24954.0,SRR29483095,N/A,N/A,N/A,N/A,N/A,SAMN41021611,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230508_193709_s3.hifi_reads.bc2090.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19682.HFSS_m84046_230508_193709_s3,single,size fractionation,GENOMIC,WGS,67233.0,21052.0,166.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19682/raw_data/PacBio_HiFi/m84046_230508_193709_s3.hifi_reads.bc2090.bam,PACBIO_SMRT,P1,17751.0,20266.0,23659.0,N/A,N/A,N/A,NA19682,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,39.11,39111213756.0,1857772.0,N/A,NA19682,SAMN41021611,,MXL,AMR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17191.0,20025.0,23576.0,SRR23922642,N/A,N/A,N/A,N/A,N/A,SAMN33758801,6.3.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m64076_220916_183810-bc2060.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG20905.HFSS,single,RANDOM,GENOMIC,WGS,65512.0,19751.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/m64076_220916_183810-bc2060.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16508.0,19031.0,22356.0,N/A,N/A,N/A,NA20905,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,41.7,41700838716.0,2111321.0,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17228.0,20081.0,23645.0,SRR23922642,N/A,N/A,N/A,N/A,N/A,SAMN33758801,6.3.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m64076_220918_143117-bc2060.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG20905.HFSS,single,RANDOM,GENOMIC,WGS,69049.0,19793.0,54.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/m64076_220918_143117-bc2060.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16533.0,19077.0,22417.0,N/A,N/A,N/A,NA20905,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,43.28,43283072105.0,2186710.0,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17852.0,20849.0,24428.0,SRR23922642,N/A,N/A,N/A,N/A,N/A,SAMN33758801,6.3.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m64076_220914_214248-bc2060.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG20905.HFSS,single,RANDOM,GENOMIC,WGS,60851.0,20442.0,79.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/m64076_220914_214248-bc2060.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17087.0,19810.0,23243.0,N/A,N/A,N/A,NA20905,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,43.92,43916560522.0,2148277.0,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16722.0,19366.0,22770.0,SRR29483135,N/A,N/A,N/A,N/A,N/A,SAMN33758801,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230522_234602_s2.hifi_reads.bc2060.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG20905.HFSS_m84046_230522_234602_s2,single,size fractionation,GENOMIC,WGS,60727.0,19184.0,185.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/m84046_230522_234602_s2.hifi_reads.bc2060.bam,PACBIO_SMRT,P1,16112.0,18448.0,21605.0,N/A,N/A,N/A,NA20905,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,21.89,21887464498.0,1140898.0,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16564.0,19129.0,22502.0,SRR29483134,N/A,N/A,N/A,N/A,N/A,SAMN33758801,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230623_210640_s1.hifi_reads.bc2060.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG20905.HFSS_m84046_230623_210640_s1,single,size fractionation,GENOMIC,WGS,57118.0,18993.0,1118.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20905/raw_data/PacBio_HiFi/m84046_230623_210640_s1.hifi_reads.bc2060.bam,PACBIO_SMRT,P1,15983.0,18240.0,21338.0,N/A,N/A,N/A,NA20905,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,15.99,15990076578.0,841852.0,N/A,NA20905,SAMN33758801,,GIH,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17581.0,19752.0,22399.0,SRR29483130,N/A,N/A,N/A,N/A,N/A,SAMN41021627,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230428_231421_s3.hifi_reads.bc2094.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG21093.HFSS_m84046_230428_231421_s3,single,size fractionation,GENOMIC,WGS,69875.0,19543.0,110.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21093/raw_data/PacBio_HiFi/m84046_230428_231421_s3.hifi_reads.bc2094.bam,PACBIO_SMRT,P1,17112.0,19145.0,21685.0,N/A,N/A,N/A,NA21093,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,60.26,60257689766.0,3083311.0,N/A,NA21093,SAMN41021627,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17466.0,19584.0,22193.0,SRR29483199,N/A,N/A,N/A,N/A,N/A,SAMN41021627,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230504_195327_s1.hifi_reads.bc2094.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG21093.HFSS_m84046_230504_195327_s1,single,size fractionation,GENOMIC,WGS,55799.0,19393.0,124.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21093/raw_data/PacBio_HiFi/m84046_230504_195327_s1.hifi_reads.bc2094.bam,PACBIO_SMRT,P1,17008.0,18995.0,21488.0,N/A,N/A,N/A,NA21093,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,53.16,53155443118.0,2740877.0,N/A,NA21093,SAMN41021627,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17449.0,19567.0,22172.0,SRR29483129,N/A,N/A,N/A,N/A,N/A,SAMN41021627,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230504_202347_s2.hifi_reads.bc2094.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG21093.HFSS_m84046_230504_202347_s2,single,size fractionation,GENOMIC,WGS,56026.0,19376.0,123.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21093/raw_data/PacBio_HiFi/m84046_230504_202347_s2.hifi_reads.bc2094.bam,PACBIO_SMRT,P1,16991.0,18980.0,21470.0,N/A,N/A,N/A,NA21093,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,54.11,54112612451.0,2792692.0,N/A,NA21093,SAMN41021627,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17551.0,19704.0,22326.0,SRR29483128,N/A,N/A,N/A,N/A,N/A,SAMN41021627,v7.0.0,N/A,unaligned reads,HiFi sequencing of 24kb fractionated gDNA,m84046_230508_193709_s3.hifi_reads.bc2094.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG21093.HFSS_m84046_230508_193709_s3,single,size fractionation,GENOMIC,WGS,53286.0,19496.0,440.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21093/raw_data/PacBio_HiFi/m84046_230508_193709_s3.hifi_reads.bc2094.bam,PACBIO_SMRT,P1,17081.0,19108.0,21617.0,N/A,N/A,N/A,NA21093,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,26.41,26413339853.0,1354780.0,N/A,NA21093,SAMN41021627,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18180.0,20509.0,23778.0,SRR29483089,N/A,N/A,N/A,N/A,N/A,SAMN33758781,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230707_192442_s1.hifi_reads.bc2059.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG00639.HFSS2_m84046_230707_192442_s1,single,size fractionation,GENOMIC,WGS,59856.0,20556.0,92.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00639/raw_data/PacBio_HiFi/m84046_230707_192442_s1.hifi_reads.bc2059.bam,PACBIO_SMRT,P1,17709.0,19769.0,22709.0,N/A,N/A,N/A,HG00639,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,69.03,69026709448.0,3357938.0,N/A,HG00639,SAMN33758781,PR03,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18146.0,21004.0,24897.0,SRR23922644,N/A,N/A,N/A,N/A,N/A,SAMN33758782,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_211110_112322-bc1008.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01074_SRE.HFSS,single,RANDOM,GENOMIC,WGS,61655.0,21008.0,139.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m54329U_211110_112322-bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17537.0,19990.0,23484.0,N/A,N/A,N/A,HG01074,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,15.23,15230826716.0,724982.0,N/A,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16588.0,20463.0,25067.0,SRR23922647,N/A,N/A,N/A,N/A,N/A,SAMN33758783,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_211223_214216-bc1011.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01081.HFSS,single,RANDOM,GENOMIC,WGS,58991.0,19422.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/m54329U_211223_214216-bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15137.0,18626.0,22945.0,N/A,N/A,N/A,HG01081,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,34.52,34516634519.0,1777187.0,N/A,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16723.0,20642.0,25280.0,SRR23922647,N/A,N/A,N/A,N/A,N/A,SAMN33758783,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220103_072943-bc1011.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01081.HFSS,single,RANDOM,GENOMIC,WGS,70984.0,19600.0,62.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/m54329U_220103_072943-bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15254.0,18803.0,23168.0,N/A,N/A,N/A,HG01081,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,35.48,35477098664.0,1809964.0,N/A,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16724.0,20665.0,25307.0,SRR23922647,N/A,N/A,N/A,N/A,N/A,SAMN33758783,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220101_220852-bc1011.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG01081.HFSS,single,RANDOM,GENOMIC,WGS,66384.0,19615.0,72.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/m54329U_220101_220852-bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15259.0,18807.0,23180.0,N/A,N/A,N/A,HG01081,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,38.13,38127675820.0,1943784.0,N/A,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18721.0,21753.0,25731.0,SRR29483114,N/A,N/A,N/A,N/A,N/A,SAMN17861232,v8.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_231202_090949_s3.hifi_reads.bc2055.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01123.HFSS3_m84046_231202_090949_s3,single,size fractionation,GENOMIC,WGS,60699.0,21612.0,106.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01123/raw_data/PacBio_HiFi/m84046_231202_090949_s3.hifi_reads.bc2055.bam,PACBIO_SMRT,P1,18022.0,20671.0,24294.0,N/A,N/A,N/A,HG01123,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,45.09,45092269241.0,2086408.0,N/A,HG01123,SAMN17861232,CLM02,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17826.0,20574.0,24233.0,SRR29483154,N/A,N/A,N/A,N/A,N/A,SAMN17861233,v8.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_231202_090949_s3.hifi_reads.bc2054.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01258.HFSS2_m84046_231202_090949_s3,single,size fractionation,GENOMIC,WGS,65204.0,20494.0,74.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01258/raw_data/PacBio_HiFi/m84046_231202_090949_s3.hifi_reads.bc2054.bam,PACBIO_SMRT,P1,17228.0,19622.0,22959.0,N/A,N/A,N/A,HG01258,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,50.29,50288278175.0,2453786.0,N/A,HG01258,SAMN17861233,CLM16,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18403.0,21230.0,25048.0,SRR23922668,N/A,N/A,N/A,N/A,N/A,SAMN33758786,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m64076_211109_232223-bc1003.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02451_SRE.HFSS,single,RANDOM,GENOMIC,WGS,58519.0,21225.0,139.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02451/raw_data/PacBio_HiFi/m64076_211109_232223-bc1003.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17810.0,20246.0,23690.0,N/A,N/A,N/A,HG02451,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,12.87,12874949688.0,606568.0,N/A,HG02451,SAMN33758786,BB46,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16940.0,19656.0,23239.0,SRR23922665,N/A,N/A,N/A,N/A,N/A,SAMN33758787,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_211204_121716-bc1002.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02735.HFSS2,single,RANDOM,GENOMIC,WGS,57951.0,19522.0,55.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m54329U_211204_121716-bc1002.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16317.0,18697.0,21974.0,N/A,N/A,N/A,HG02735,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.72,31721863148.0,1624922.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17011.0,19773.0,23407.0,SRR23922665,N/A,N/A,N/A,N/A,N/A,SAMN33758787,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_211209_115915-bc1002.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02735.HFSS2,single,RANDOM,GENOMIC,WGS,62313.0,19615.0,53.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m54329U_211209_115915-bc1002.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16371.0,18792.0,22115.0,N/A,N/A,N/A,HG02735,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,32.46,32462661287.0,1654923.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17062.0,19856.0,23486.0,SRR23922665,N/A,N/A,N/A,N/A,N/A,SAMN33758787,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m64076_211209_102926-bc1002.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02735.HFSS2,single,RANDOM,GENOMIC,WGS,59898.0,19674.0,59.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m64076_211209_102926-bc1002.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16411.0,18859.0,22198.0,N/A,N/A,N/A,HG02735,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,36.78,36782283250.0,1869576.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16617.0,20225.0,24689.0,SRR23922662,N/A,N/A,N/A,N/A,N/A,SAMN33758789,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_211225_070909-bc1012.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03017.HFSS,single,RANDOM,GENOMIC,WGS,64185.0,19500.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m54329U_211225_070909-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15437.0,18613.0,22719.0,N/A,N/A,N/A,HG03017,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,34.05,34046953548.0,1745970.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16707.0,20379.0,24868.0,SRR23922662,N/A,N/A,N/A,N/A,N/A,SAMN33758789,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m64076_220216_013707-bc1012.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03017.HFSS,single,RANDOM,GENOMIC,WGS,53564.0,19618.0,136.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m64076_220216_013707-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15514.0,18737.0,22888.0,N/A,N/A,N/A,HG03017,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,8.14,8141215131.0,414973.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16960.0,20748.0,25330.0,SRR23922662,N/A,N/A,N/A,N/A,N/A,SAMN33758789,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220117_123334-bc1012.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03017.HFSS,single,RANDOM,GENOMIC,WGS,67494.0,19961.0,52.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m54329U_220117_123334-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15714.0,19049.0,23321.0,N/A,N/A,N/A,HG03017,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,28.78,28780552619.0,1441796.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16992.0,20799.0,25417.0,SRR23922662,N/A,N/A,N/A,N/A,N/A,SAMN33758789,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220109_103416-bc1012.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03017.HFSS,single,RANDOM,GENOMIC,WGS,61362.0,20013.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m54329U_220109_103416-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,15745.0,19090.0,23391.0,N/A,N/A,N/A,HG03017,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,31.4,31400943238.0,1569013.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18187.0,21954.0,26294.0,SRR23922662,N/A,N/A,N/A,N/A,N/A,SAMN33758789,6.3.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m64076_221001_041132-bc1012.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03017.HFSS,single,RANDOM,GENOMIC,WGS,67114.0,21129.0,396.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03017/raw_data/PacBio_HiFi/m64076_221001_041132-bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,16904.0,20408.0,24540.0,N/A,N/A,N/A,HG03017,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,15.3,15298343686.0,724011.0,N/A,HG03017,SAMN33758789,PK35,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18311.0,21741.0,25979.0,SRR23922659,N/A,N/A,N/A,N/A,N/A,SAMN33758792,6.3.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220519_225150-bc2019.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03139.HFSS,single,RANDOM,GENOMIC,WGS,69263.0,21306.0,81.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/m54329U_220519_225150-bc2019.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17377.0,20423.0,24372.0,N/A,N/A,N/A,HG03139,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.82,39824520384.0,1869144.0,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18495.0,21985.0,26234.0,SRR23922659,N/A,N/A,N/A,N/A,N/A,SAMN33758792,6.3.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220525_111437-bc2019.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03139.HFSS,single,RANDOM,GENOMIC,WGS,66085.0,21499.0,90.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/m54329U_220525_111437-bc2019.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17524.0,20644.0,24640.0,N/A,N/A,N/A,HG03139,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,43.17,43172373160.0,2008028.0,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18531.0,22043.0,26312.0,SRR23922659,N/A,N/A,N/A,N/A,N/A,SAMN33758792,6.3.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220523_155616-bc2019.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03139.HFSS,single,RANDOM,GENOMIC,WGS,69240.0,21547.0,87.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/m54329U_220523_155616-bc2019.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17554.0,20687.0,24701.0,N/A,N/A,N/A,HG03139,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,45.15,45152468620.0,2095470.0,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17994.0,21265.0,25337.0,SRR29483267,N/A,N/A,N/A,N/A,N/A,SAMN33758792,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230602_220440_s3.hifi_reads.bc2019.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03139.HFSS_m84046_230602_220440_s3,single,size fractionation,GENOMIC,WGS,65959.0,20902.0,373.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/m84046_230602_220440_s3.hifi_reads.bc2019.bam,PACBIO_SMRT,P1,17129.0,20033.0,23812.0,N/A,N/A,N/A,HG03139,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,29.66,29658674895.0,1418934.0,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17513.0,20548.0,24391.0,SRR29483073,N/A,N/A,N/A,N/A,N/A,SAMN33758792,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230623_210640_s1.hifi_reads.bc2019.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03139.HFSS_m84046_230623_210640_s1,single,size fractionation,GENOMIC,WGS,53529.0,20305.0,576.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03139/raw_data/PacBio_HiFi/m84046_230623_210640_s1.hifi_reads.bc2019.bam,PACBIO_SMRT,P1,16759.0,19438.0,22972.0,N/A,N/A,N/A,HG03139,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,9.2,9203503033.0,453258.0,N/A,HG03139,SAMN33758792,,ESN,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19138.0,21453.0,24638.0,SRR29483236,N/A,N/A,N/A,N/A,N/A,SAMN33758794,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230628_210130_s1.bc2063--bc2063.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03239.HFSS2_m84046_230628_210130_s1,single,size fractionation,GENOMIC,WGS,54941.0,21468.0,74.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/m84046_230628_210130_s1.bc2063--bc2063.bam,PACBIO_SMRT,P1,18668.0,20762.0,23665.0,N/A,N/A,N/A,HG03239,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,42.75,42746369705.0,1991153.0,N/A,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19102.0,21406.0,24603.0,SRR29483237,N/A,N/A,N/A,N/A,N/A,SAMN33758794,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230703_225306_s4.hifi_reads.bc2063.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03239.HFSS2_m84046_230703_225306_s4,single,size fractionation,GENOMIC,WGS,60287.0,21430.0,195.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03239/raw_data/PacBio_HiFi/m84046_230703_225306_s4.hifi_reads.bc2063.bam,PACBIO_SMRT,P1,18634.0,20721.0,23619.0,N/A,N/A,N/A,HG03239,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,13.19,13194840551.0,615696.0,N/A,HG03239,SAMN33758794,PK41,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16931.0,20064.0,24078.0,SRR23922654,N/A,N/A,N/A,N/A,N/A,SAMN33758795,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220203_054640-bc1001.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03704.HFSS3,single,RANDOM,GENOMIC,WGS,64236.0,19805.0,77.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m54329U_220203_054640-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16127.0,18857.0,22528.0,N/A,N/A,N/A,HG03704,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,15.52,15515677051.0,783402.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17016.0,20217.0,24294.0,SRR23922654,N/A,N/A,N/A,N/A,N/A,SAMN33758795,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220207_224702-bc1001.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03704.HFSS3,single,RANDOM,GENOMIC,WGS,63954.0,19930.0,65.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m54329U_220207_224702-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16192.0,18974.0,22705.0,N/A,N/A,N/A,HG03704,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,27.43,27431572003.0,1376378.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17037.0,20253.0,24361.0,SRR23922654,N/A,N/A,N/A,N/A,N/A,SAMN33758795,6.2.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m64076_220216_013707-bc1001.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03704.HFSS3,single,RANDOM,GENOMIC,WGS,62497.0,19965.0,54.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m64076_220216_013707-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,16204.0,19002.0,22753.0,N/A,N/A,N/A,HG03704,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,12.14,12144176455.0,608249.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16602.0,19545.0,23299.0,SRR29483160,N/A,N/A,N/A,N/A,N/A,SAMN33758795,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230617_040148_s2.hifi_reads.bc1001.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG03704.HFSS3_m84046_230617_040148_s2,single,size fractionation,GENOMIC,WGS,56891.0,19344.0,238.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m84046_230617_040148_s2.hifi_reads.bc1001.bam,PACBIO_SMRT,P1,15892.0,18445.0,21886.0,N/A,N/A,N/A,HG03704,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,13.38,13378951859.0,691613.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19339.0,21716.0,25155.0,SRR29483146,N/A,N/A,N/A,N/A,N/A,SAMN41021637,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230602_203207_s4.hifi_reads.bc2043.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00126.HFSS_m84046_230602_203207_s4,single,size fractionation,GENOMIC,WGS,72198.0,21838.0,114.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00126/raw_data/PacBio_HiFi/m84046_230602_203207_s4.hifi_reads.bc2043.bam,PACBIO_SMRT,P1,18891.0,20975.0,24050.0,N/A,N/A,N/A,HG00126,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,31.21,31211081209.0,1429169.0,N/A,HG00126,SAMN41021637,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19001.0,21095.0,24190.0,SRR29483144,N/A,N/A,N/A,N/A,N/A,SAMN41021637,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230617_043254_s3.hifi_reads.bc2043.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00126.HFSS_m84046_230617_043254_s3,single,size fractionation,GENOMIC,WGS,65475.0,21250.0,221.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00126/raw_data/PacBio_HiFi/m84046_230617_043254_s3.hifi_reads.bc2043.bam,PACBIO_SMRT,P1,18611.0,20482.0,23230.0,N/A,N/A,N/A,HG00126,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,24.39,24387352695.0,1147622.0,N/A,HG00126,SAMN41021637,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19050.0,21192.0,24330.0,SRR29483148,N/A,N/A,N/A,N/A,N/A,SAMN41021637,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230617_050400_s4.hifi_reads.bc2043.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00126.HFSS_m84046_230617_050400_s4,single,size fractionation,GENOMIC,WGS,66961.0,21345.0,441.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00126/raw_data/PacBio_HiFi/m84046_230617_050400_s4.hifi_reads.bc2043.bam,PACBIO_SMRT,P1,18650.0,20561.0,23358.0,N/A,N/A,N/A,HG00126,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,27.01,27014561078.0,1265571.0,N/A,HG00126,SAMN41021637,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19066.0,21223.0,24390.0,SRR29483149,N/A,N/A,N/A,N/A,N/A,SAMN41021637,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230621_231827_s1.hifi_reads.bc2043.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00126.HFSS_m84046_230621_231827_s1,single,size fractionation,GENOMIC,WGS,61779.0,21377.0,101.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00126/raw_data/PacBio_HiFi/m84046_230621_231827_s1.hifi_reads.bc2043.bam,PACBIO_SMRT,P1,18665.0,20584.0,23411.0,N/A,N/A,N/A,HG00126,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,55.42,55422349206.0,2592602.0,N/A,HG00126,SAMN41021637,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19090.0,21277.0,24496.0,SRR29483145,N/A,N/A,N/A,N/A,N/A,SAMN41021637,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230621_234848_s2.hifi_reads.bc2043.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00126.HFSS_m84046_230621_234848_s2,single,size fractionation,GENOMIC,WGS,61977.0,21432.0,87.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00126/raw_data/PacBio_HiFi/m84046_230621_234848_s2.hifi_reads.bc2043.bam,PACBIO_SMRT,P1,18681.0,20624.0,23493.0,N/A,N/A,N/A,HG00126,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,59.61,59614431287.0,2781508.0,N/A,HG00126,SAMN41021637,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18299.0,21233.0,24994.0,SRR23922639,N/A,N/A,N/A,N/A,N/A,SAMN33758799,6.3.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220918_114340-bc2061.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG19043.HFSS,single,RANDOM,GENOMIC,WGS,68642.0,20980.0,91.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/m54329U_220918_114340-bc2061.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17591.0,20198.0,23685.0,N/A,N/A,N/A,NA19043,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,41.39,41394833271.0,1972976.0,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18360.0,21333.0,25123.0,SRR23922639,N/A,N/A,N/A,N/A,N/A,SAMN33758799,6.3.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220920_065703-bc2061.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG19043.HFSS,single,RANDOM,GENOMIC,WGS,73652.0,21064.0,59.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/m54329U_220920_065703-bc2061.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17643.0,20280.0,23804.0,N/A,N/A,N/A,NA19043,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,44.05,44045561368.0,2090945.0,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18546.0,21557.0,25367.0,SRR23922639,N/A,N/A,N/A,N/A,N/A,SAMN33758799,6.3.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m54329U_220916_162216-bc2061.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,PG19043.HFSS,single,RANDOM,GENOMIC,WGS,64342.0,21267.0,92.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/m54329U_220916_162216-bc2061.5mc.hifi_reads.bam,PACBIO_SMRT,P3.2,17811.0,20499.0,24051.0,N/A,N/A,N/A,NA19043,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,43.52,43517972648.0,2046237.0,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17898.0,20663.0,24260.0,SRR29483132,N/A,N/A,N/A,N/A,N/A,SAMN33758799,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230519_231055_s2.hifi_reads.bc2061.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19043.HFSS_m84046_230519_231055_s2,single,size fractionation,GENOMIC,WGS,53274.0,20453.0,208.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/m84046_230519_231055_s2.hifi_reads.bc2061.bam,PACBIO_SMRT,P1,17235.0,19694.0,23011.0,N/A,N/A,N/A,NA19043,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,27.85,27852231438.0,1361729.0,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17843.0,20581.0,24187.0,SRR29483133,N/A,N/A,N/A,N/A,N/A,SAMN33758799,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230712_000908_s4.hifi_reads.bc2061.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19043.HFSS_m84046_230712_000908_s4,single,size fractionation,GENOMIC,WGS,52679.0,20399.0,703.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19043/raw_data/PacBio_HiFi/m84046_230712_000908_s4.hifi_reads.bc2061.bam,PACBIO_SMRT,P1,17194.0,19625.0,22917.0,N/A,N/A,N/A,NA19043,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,9.57,9568200153.0,469037.0,N/A,NA19043,SAMN33758799,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17815.0,20299.0,23660.0,SRR29483268,N/A,N/A,N/A,N/A,N/A,SAMN41021612,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230428_224315_s2.hifi_reads.bc2091.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19700.HFSS_m84046_230428_224315_s2,single,size fractionation,GENOMIC,WGS,57226.0,20222.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19700/raw_data/PacBio_HiFi/m84046_230428_224315_s2.hifi_reads.bc2091.bam,PACBIO_SMRT,P1,17282.0,19474.0,22536.0,N/A,N/A,N/A,NA19700,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,43.12,43118953859.0,2132234.0,N/A,NA19700,SAMN41021612,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18012.0,20626.0,24141.0,SRR29483251,N/A,N/A,N/A,N/A,N/A,SAMN41021612,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230502_203455_s3.hifi_reads.bc2091.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19700.HFSS_m84046_230502_203455_s3,single,size fractionation,GENOMIC,WGS,60828.0,20519.0,308.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19700/raw_data/PacBio_HiFi/m84046_230502_203455_s3.hifi_reads.bc2091.bam,PACBIO_SMRT,P1,17441.0,19741.0,22948.0,N/A,N/A,N/A,NA19700,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,49.6,49604792343.0,2417394.0,N/A,NA19700,SAMN41021612,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18014.0,20622.0,24114.0,SRR29483269,N/A,N/A,N/A,N/A,N/A,SAMN41021612,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230502_210601_s4.hifi_reads.bc2091.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19700.HFSS_m84046_230502_210601_s4,single,size fractionation,GENOMIC,WGS,68960.0,20514.0,78.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19700/raw_data/PacBio_HiFi/m84046_230502_210601_s4.hifi_reads.bc2091.bam,PACBIO_SMRT,P1,17443.0,19743.0,22936.0,N/A,N/A,N/A,NA19700,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,45.25,45253526042.0,2205939.0,N/A,NA19700,SAMN41021612,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17862.0,20373.0,23769.0,SRR29483250,N/A,N/A,N/A,N/A,N/A,SAMN41021612,v7.0.0,N/A,unaligned reads,HiFi sequencing of 25kb fractionated gDNA,m84046_230508_200815_s4.hifi_reads.bc2091.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19700.HFSS_m84046_230508_200815_s4,single,size fractionation,GENOMIC,WGS,61204.0,20292.0,276.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19700/raw_data/PacBio_HiFi/m84046_230508_200815_s4.hifi_reads.bc2091.bam,PACBIO_SMRT,P1,17320.0,19533.0,22629.0,N/A,N/A,N/A,NA19700,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,49.92,49918934430.0,2459967.0,N/A,NA19700,SAMN41021612,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17727.0,20515.0,24254.0,SRR29483186,N/A,N/A,N/A,N/A,N/A,SAMN33758782,v7.0.0,N/A,unaligned reads,HiFi sequencing of 26kb fractionated gDNA,m84046_230712_231732_s2.hifi_reads.bc2061.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01074.HFSS3_m84046_230712_231732_s2,single,size fractionation,GENOMIC,WGS,62885.0,20441.0,73.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m84046_230712_231732_s2.hifi_reads.bc2061.bam,PACBIO_SMRT,P1,17105.0,19521.0,22903.0,N/A,N/A,N/A,HG01074,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,36.58,36576237795.0,1789356.0,N/A,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17745.0,20525.0,24244.0,SRR29483147,N/A,N/A,N/A,N/A,N/A,SAMN33758782,v7.0.0,N/A,unaligned reads,HiFi sequencing of 26kb fractionated gDNA,m84046_230719_001055_s4.hifi_reads.bc2061.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01074.HFSS3_m84046_230719_001055_s4,single,size fractionation,GENOMIC,WGS,56330.0,20450.0,270.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01074/raw_data/PacBio_HiFi/m84046_230719_001055_s4.hifi_reads.bc2061.bam,PACBIO_SMRT,P1,17126.0,19537.0,22909.0,N/A,N/A,N/A,HG01074,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,18.47,18474875553.0,903402.0,N/A,HG01074,SAMN33758782,PR18,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18662.0,21906.0,26034.0,SRR29483271,N/A,N/A,N/A,N/A,N/A,SAMN17861234,v8.0.0,N/A,unaligned reads,HiFi sequencing of 26kb fractionated gDNA,m84046_231202_071034_s1.hifi_reads.bc2053.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01358.HFSS2_m84046_231202_071034_s1,single,size fractionation,GENOMIC,WGS,65908.0,21635.0,63.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m84046_231202_071034_s1.hifi_reads.bc2053.bam,PACBIO_SMRT,P1,17831.0,20701.0,24489.0,N/A,N/A,N/A,HG01358,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,23.73,23725857199.0,1096627.0,N/A,HG01358,SAMN17861234,CLM31,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18580.0,21794.0,25898.0,SRR29483270,N/A,N/A,N/A,N/A,N/A,SAMN17861234,v8.0.0,N/A,unaligned reads,HiFi sequencing of 26kb fractionated gDNA,m84046_231202_110908_s4.hifi_reads.bc2053.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01358.HFSS2_m84046_231202_110908_s4,single,size fractionation,GENOMIC,WGS,61399.0,21541.0,97.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01358/raw_data/PacBio_HiFi/m84046_231202_110908_s4.hifi_reads.bc2053.bam,PACBIO_SMRT,P1,17767.0,20614.0,24354.0,N/A,N/A,N/A,HG01358,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,22.54,22537442552.0,1046235.0,N/A,HG01358,SAMN17861234,CLM31,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17566.0,20026.0,23391.0,SRR18158595,N/A,N/A,N/A,N/A,N/A,SAMN26267382,6.0.0,N/A,unaligned reads,HiFi sequencing of 26kb fractionated gDNA,m54329U_210705_145805.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02132.HFSS,single,size fractionation,GENOMIC,WGS,54001.0,20048.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02132/raw_data/PacBio_HiFi/m54329U_210705_145805.hifi_reads.bam,PACBIO_SMRT,P2.2,17091.0,19228.0,22296.0,N/A,N/A,N/A,HG02132,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,33.68,33675370058.0,1679725.0,N/A,HG02132,SAMN26267382,VN080,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17581.0,20057.0,23441.0,SRR18158595,N/A,N/A,N/A,N/A,N/A,SAMN26267382,6.0.0,N/A,unaligned reads,HiFi sequencing of 26kb fractionated gDNA,m54329U_210627_170630.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02132.HFSS,single,size fractionation,GENOMIC,WGS,60968.0,20060.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02132/raw_data/PacBio_HiFi/m54329U_210627_170630.hifi_reads.bam,PACBIO_SMRT,P2.2,17094.0,19245.0,22334.0,N/A,N/A,N/A,HG02132,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,39.21,39213248472.0,1954721.0,N/A,HG02132,SAMN26267382,VN080,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17605.0,20088.0,23460.0,SRR18158595,N/A,N/A,N/A,N/A,N/A,SAMN26267382,6.0.0,N/A,unaligned reads,HiFi sequencing of 26kb fractionated gDNA,m54329U_210704_040110.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG02132.HFSS,single,size fractionation,GENOMIC,WGS,57821.0,20099.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02132/raw_data/PacBio_HiFi/m54329U_210704_040110.hifi_reads.bam,PACBIO_SMRT,P2.2,17121.0,19279.0,22365.0,N/A,N/A,N/A,HG02132,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,30.6,30602363971.0,1522575.0,N/A,HG02132,SAMN26267382,VN080,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17318.0,19591.0,22726.0,SRR29483254,N/A,N/A,N/A,N/A,N/A,SAMN26267382,v7.0.0,N/A,unaligned reads,HiFi sequencing of 26kb fractionated gDNA,m84046_230603_204152_s4.hifi_reads.default.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02132.HFSSc_m84046_230603_204152_s4,single,size fractionation,GENOMIC,WGS,57148.0,19635.0,276.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02132/raw_data/PacBio_HiFi/m84046_230603_204152_s4.hifi_reads.default.bam,PACBIO_SMRT,P1,16890.0,18876.0,21735.0,N/A,N/A,N/A,HG02132,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,67.41,67412093607.0,3433233.0,N/A,HG02132,SAMN26267382,VN080,KHV,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17853.0,20671.0,24461.0,SRR23922655,N/A,N/A,N/A,N/A,N/A,SAMN33758795,6.2.0,N/A,unaligned reads,HiFi sequencing of 26kb fractionated gDNA,m54329U_211111_222027-bc1001.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03704_SRE.HFSS,single,RANDOM,GENOMIC,WGS,67087.0,20659.0,727.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m54329U_211111_222027-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17248.0,19681.0,23109.0,N/A,N/A,N/A,HG03704,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,20.85,20852506753.0,1009358.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17908.0,20760.0,24604.0,SRR23922655,N/A,N/A,N/A,N/A,N/A,SAMN33758795,6.2.0,N/A,unaligned reads,HiFi sequencing of 26kb fractionated gDNA,m54329U_211105_213234-bc1001.5mc.hifi_reads.bam,N/A,kmiyamot@uw.edu,University of Washington,PacBio Sequel II,HG03704_SRE.HFSS,single,RANDOM,GENOMIC,WGS,61181.0,20735.0,493.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03704/raw_data/PacBio_HiFi/m54329U_211105_213234-bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2.2,17290.0,19755.0,23225.0,N/A,N/A,N/A,HG03704,N/A,C2,Megaruptor 3,PippinHT,SRP305758,N/A,25.14,25139477214.0,1212386.0,N/A,HG03704,SAMN33758795,PK60,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18187.0,21393.0,25429.0,SRR29483116,N/A,N/A,N/A,N/A,N/A,SAMN33758780,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230720_182350_s1.hifi_reads.bc2004.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG00558.HFSS2_m84046_230720_182350_s1,single,size fractionation,GENOMIC,WGS,60806.0,21085.0,151.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00558/raw_data/PacBio_HiFi/m84046_230720_182350_s1.hifi_reads.bc2004.bam,PACBIO_SMRT,P1,17361.0,20208.0,23908.0,N/A,N/A,N/A,HG00558,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,23.14,23136924177.0,1097268.0,N/A,HG00558,SAMN33758780,SH045,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18986.0,22251.0,26513.0,SRR29483098,N/A,N/A,N/A,N/A,N/A,SAMN17861235,v8.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_231202_071034_s1.hifi_reads.bc2052.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01361.HFSS3_m84046_231202_071034_s1,single,size fractionation,GENOMIC,WGS,72539.0,22058.0,51.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01361/raw_data/PacBio_HiFi/m84046_231202_071034_s1.hifi_reads.bc2052.bam,PACBIO_SMRT,P1,18204.0,21031.0,24921.0,N/A,N/A,N/A,HG01361,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,75.65,75651333730.0,3429635.0,N/A,HG01361,SAMN17861235,CLM32,CLM,AMR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17223.0,19884.0,23464.0,SRR29483203,N/A,N/A,N/A,N/A,N/A,SAMN33758787,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230628_175536_s3.hifi_reads.bc2062.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02735.HFSS_m84046_230628_175536_s3,single,size fractionation,GENOMIC,WGS,58136.0,19828.0,117.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m84046_230628_175536_s3.hifi_reads.bc2062.bam,PACBIO_SMRT,P1,16632.0,18951.0,22183.0,N/A,N/A,N/A,HG02735,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,35.08,35078406524.0,1769118.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17093.0,19661.0,23147.0,SRR29483204,N/A,N/A,N/A,N/A,N/A,SAMN33758787,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230703_225306_s4.hifi_reads.bc2062.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02735.HFSS_m84046_230703_225306_s4,single,size fractionation,GENOMIC,WGS,68232.0,19634.0,80.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m84046_230703_225306_s4.hifi_reads.bc2062.bam,PACBIO_SMRT,P1,16531.0,18772.0,21903.0,N/A,N/A,N/A,HG02735,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,7.99,7992405067.0,407052.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17018.0,19561.0,22975.0,SRR29483201,N/A,N/A,N/A,N/A,N/A,SAMN33758787,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230707_192442_s1.hifi_reads.bc2062.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02735.HFSS_m84046_230707_192442_s1,single,size fractionation,GENOMIC,WGS,57257.0,19528.0,121.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m84046_230707_192442_s1.hifi_reads.bc2062.bam,PACBIO_SMRT,P1,16472.0,18685.0,21775.0,N/A,N/A,N/A,HG02735,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,8.8,8797263927.0,450494.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17067.0,19632.0,23110.0,SRR29483202,N/A,N/A,N/A,N/A,N/A,SAMN33758787,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230711_230656_s2.hifi_reads.bc2062.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02735.HFSS_m84046_230711_230656_s2,single,size fractionation,GENOMIC,WGS,58940.0,19604.0,131.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02735/raw_data/PacBio_HiFi/m84046_230711_230656_s2.hifi_reads.bc2062.bam,PACBIO_SMRT,P1,16508.0,18748.0,21880.0,N/A,N/A,N/A,HG02735,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,19.62,19620926536.0,1000841.0,N/A,HG02735,SAMN33758787,PK26,PJL,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19292.0,21676.0,25074.0,SRR29483107,N/A,N/A,N/A,N/A,N/A,SAMN41021638,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230719_001055_s4.hifi_reads.bc2085.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00133.HFSS2_m84046_230719_001055_s4,single,size fractionation,GENOMIC,WGS,67080.0,21796.0,96.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230719_001055_s4.hifi_reads.bc2085.bam,PACBIO_SMRT,P1,18839.0,20947.0,24008.0,N/A,N/A,N/A,HG00133,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,23.52,23522900809.0,1079223.0,N/A,HG00133,SAMN41021638,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19469.0,22259.0,26112.0,SRR29483207,N/A,N/A,N/A,N/A,N/A,SAMN41021659,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230716_051716_s3.hifi_reads.bc2087.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00272.HFSS_m84046_230716_051716_s3,single,size fractionation,GENOMIC,WGS,62245.0,22209.0,70.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00272/raw_data/PacBio_HiFi/m84046_230716_051716_s3.hifi_reads.bc2087.bam,PACBIO_SMRT,P1,18841.0,21311.0,24765.0,N/A,N/A,N/A,HG00272,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,55.89,55893022230.0,2516610.0,N/A,HG00272,SAMN41021659,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19487.0,22300.0,26169.0,SRR29483227,N/A,N/A,N/A,N/A,N/A,SAMN41021659,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230716_054822_s4.hifi_reads.bc2087.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00272.HFSS_m84046_230716_054822_s4,single,size fractionation,GENOMIC,WGS,71087.0,22239.0,146.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00272/raw_data/PacBio_HiFi/m84046_230716_054822_s4.hifi_reads.bc2087.bam,PACBIO_SMRT,P1,18854.0,21337.0,24814.0,N/A,N/A,N/A,HG00272,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,59.28,59280573492.0,2665556.0,N/A,HG00272,SAMN41021659,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19353.0,22079.0,25872.0,SRR29483226,N/A,N/A,N/A,N/A,N/A,SAMN41021659,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230718_223822_s1.hifi_reads.bc2087.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00272.HFSS_m84046_230718_223822_s1,single,size fractionation,GENOMIC,WGS,54405.0,22049.0,201.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00272/raw_data/PacBio_HiFi/m84046_230718_223822_s1.hifi_reads.bc2087.bam,PACBIO_SMRT,P1,18745.0,21161.0,24545.0,N/A,N/A,N/A,HG00272,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,28.65,28648842428.0,1299274.0,N/A,HG00272,SAMN41021659,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19451.0,22207.0,26022.0,SRR29483208,N/A,N/A,N/A,N/A,N/A,SAMN41021659,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230719_001055_s4.hifi_reads.bc2087.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00272.HFSS_m84046_230719_001055_s4,single,size fractionation,GENOMIC,WGS,60184.0,22165.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00272/raw_data/PacBio_HiFi/m84046_230719_001055_s4.hifi_reads.bc2087.bam,PACBIO_SMRT,P1,18831.0,21277.0,24693.0,N/A,N/A,N/A,HG00272,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,66.54,66535915752.0,3001821.0,N/A,HG00272,SAMN41021659,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18844.0,21346.0,24661.0,SRR29483192,N/A,N/A,N/A,N/A,N/A,SAMN41021628,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230428_224315_s2.hifi_reads.bc2095.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03611.HFSS_m84046_230428_224315_s2,single,size fractionation,GENOMIC,WGS,70469.0,21240.0,97.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03611/raw_data/PacBio_HiFi/m84046_230428_224315_s2.hifi_reads.bc2095.bam,PACBIO_SMRT,P1,18299.0,20564.0,23620.0,N/A,N/A,N/A,HG03611,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,50.73,50725357081.0,2388156.0,N/A,HG03611,SAMN41021628,,BEB,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19051.0,21666.0,25125.0,SRR29483193,N/A,N/A,N/A,N/A,N/A,SAMN41021628,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230502_203455_s3.hifi_reads.bc2095.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03611.HFSS_m84046_230502_203455_s3,single,size fractionation,GENOMIC,WGS,61936.0,21530.0,90.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03611/raw_data/PacBio_HiFi/m84046_230502_203455_s3.hifi_reads.bc2095.bam,PACBIO_SMRT,P1,18474.0,20832.0,24030.0,N/A,N/A,N/A,HG03611,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,55.04,55038711682.0,2556363.0,N/A,HG03611,SAMN41021628,,BEB,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19055.0,21657.0,25096.0,SRR29483194,N/A,N/A,N/A,N/A,N/A,SAMN41021628,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230502_210601_s4.hifi_reads.bc2095.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03611.HFSS_m84046_230502_210601_s4,single,size fractionation,GENOMIC,WGS,64183.0,21525.0,163.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03611/raw_data/PacBio_HiFi/m84046_230502_210601_s4.hifi_reads.bc2095.bam,PACBIO_SMRT,P1,18482.0,20831.0,24004.0,N/A,N/A,N/A,HG03611,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,50.19,50186456480.0,2331526.0,N/A,HG03611,SAMN41021628,,BEB,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18945.0,21483.0,24862.0,SRR29483191,N/A,N/A,N/A,N/A,N/A,SAMN41021628,v7.0.0,N/A,unaligned reads,HiFi sequencing of 27kb fractionated gDNA,m84046_230508_193709_s3.hifi_reads.bc2095.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG03611.HFSS_m84046_230508_193709_s3,single,size fractionation,GENOMIC,WGS,65660.0,21373.0,87.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03611/raw_data/PacBio_HiFi/m84046_230508_193709_s3.hifi_reads.bc2095.bam,PACBIO_SMRT,P1,18387.0,20681.0,23796.0,N/A,N/A,N/A,HG03611,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,36.61,36610166478.0,1712887.0,N/A,HG03611,SAMN41021628,,BEB,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,21625.0,24531.0,28292.0,SRR29483106,N/A,N/A,N/A,N/A,N/A,SAMN41021638,v7.0.0,N/A,unaligned reads,HiFi sequencing of 29kb fractionated gDNA,m84046_230602_203207_s4.hifi_reads.bc2045.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00133.HFSS_m84046_230602_203207_s4,single,size fractionation,GENOMIC,WGS,72239.0,24306.0,355.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230602_203207_s4.hifi_reads.bc2045.bam,PACBIO_SMRT,P1,20931.0,23631.0,27114.0,N/A,N/A,N/A,HG00133,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,31.58,31577829326.0,1299153.0,N/A,HG00133,SAMN41021638,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,21024.0,23704.0,27160.0,SRR29483109,N/A,N/A,N/A,N/A,N/A,SAMN41021638,v7.0.0,N/A,unaligned reads,HiFi sequencing of 29kb fractionated gDNA,m84046_230617_043254_s3.hifi_reads.bc2045.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00133.HFSS_m84046_230617_043254_s3,single,size fractionation,GENOMIC,WGS,63763.0,23515.0,204.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230617_043254_s3.hifi_reads.bc2045.bam,PACBIO_SMRT,P1,20391.0,22908.0,26092.0,N/A,N/A,N/A,HG00133,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,26.57,26568174953.0,1129803.0,N/A,HG00133,SAMN41021638,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,21132.0,23874.0,27395.0,SRR29483108,N/A,N/A,N/A,N/A,N/A,SAMN41021638,v7.0.0,N/A,unaligned reads,HiFi sequencing of 29kb fractionated gDNA,m84046_230617_050400_s4.hifi_reads.bc2045.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00133.HFSS_m84046_230617_050400_s4,single,size fractionation,GENOMIC,WGS,71360.0,23674.0,496.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230617_050400_s4.hifi_reads.bc2045.bam,PACBIO_SMRT,P1,20482.0,23047.0,26301.0,N/A,N/A,N/A,HG00133,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,30.05,30053356453.0,1269426.0,N/A,HG00133,SAMN41021638,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,21149.0,23887.0,27366.0,SRR29483110,N/A,N/A,N/A,N/A,N/A,SAMN41021638,v7.0.0,N/A,unaligned reads,HiFi sequencing of 29kb fractionated gDNA,m84046_230621_231827_s1.hifi_reads.bc2045.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00133.HFSS_m84046_230621_231827_s1,single,size fractionation,GENOMIC,WGS,66619.0,23673.0,129.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230621_231827_s1.hifi_reads.bc2045.bam,PACBIO_SMRT,P1,20500.0,23070.0,26294.0,N/A,N/A,N/A,HG00133,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,44.44,44444296421.0,1877396.0,N/A,HG00133,SAMN41021638,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,21210.0,23986.0,27519.0,SRR29483105,N/A,N/A,N/A,N/A,N/A,SAMN41021638,v7.0.0,N/A,unaligned reads,HiFi sequencing of 29kb fractionated gDNA,m84046_230621_234848_s2.hifi_reads.bc2045.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00133.HFSS_m84046_230621_234848_s2,single,size fractionation,GENOMIC,WGS,66274.0,23765.0,131.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00133/raw_data/PacBio_HiFi/m84046_230621_234848_s2.hifi_reads.bc2045.bam,PACBIO_SMRT,P1,20553.0,23142.0,26421.0,N/A,N/A,N/A,HG00133,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,48.28,48277281549.0,2031393.0,N/A,HG00133,SAMN41021638,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17382.0,21006.0,25610.0,SRR29483122,N/A,N/A,N/A,N/A,N/A,SAMN33758783,v7.0.0,N/A,unaligned reads,HiFi sequencing of 30kb fractionated gDNA,m84046_230628_210130_s1.bc2065--bc2065.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01081.HFSS2_m84046_230628_210130_s1,single,size fractionation,GENOMIC,WGS,59312.0,20555.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/m84046_230628_210130_s1.bc2065--bc2065.bam,PACBIO_SMRT,P1,16320.0,19465.0,23603.0,N/A,N/A,N/A,HG01081,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,41.55,41547174663.0,2021262.0,N/A,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17533.0,21259.0,26015.0,SRR29483123,N/A,N/A,N/A,N/A,N/A,SAMN33758783,v7.0.0,N/A,unaligned reads,HiFi sequencing of 30kb fractionated gDNA,m84046_230707_205716_s4.bc2065--bc2065.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG01081.HFSS2_m84046_230707_205716_s4,single,size fractionation,GENOMIC,WGS,65603.0,20767.0,353.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01081/raw_data/PacBio_HiFi/m84046_230707_205716_s4.bc2065--bc2065.bam,PACBIO_SMRT,P1,16417.0,19643.0,23928.0,N/A,N/A,N/A,HG01081,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,15.55,15545477788.0,748539.0,N/A,HG01081,SAMN33758783,PR21,PUR,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20100.0,23348.0,27768.0,SRR29483165,N/A,N/A,N/A,N/A,N/A,SAMN41021639,v7.0.0,N/A,unaligned reads,HiFi sequencing of 30kb fractionated gDNA,m84046_230623_203534_s4.hifi_reads.bc2052.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00290.HFSS_m84046_230623_203534_s4,single,size fractionation,GENOMIC,WGS,76067.0,23190.0,81.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00290/raw_data/PacBio_HiFi/m84046_230623_203534_s4.hifi_reads.bc2052.bam,PACBIO_SMRT,P1,19302.0,22141.0,26079.0,N/A,N/A,N/A,HG00290,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,48.93,48925804619.0,2109741.0,N/A,HG00290,SAMN41021639,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20231.0,23502.0,27916.0,SRR29483113,N/A,N/A,N/A,N/A,N/A,SAMN41021639,v7.0.0,N/A,unaligned reads,HiFi sequencing of 30kb fractionated gDNA,m84046_230627_201017_s1.hifi_reads.bc2052.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00290.HFSS_m84046_230627_201017_s1,single,size fractionation,GENOMIC,WGS,65547.0,23319.0,95.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00290/raw_data/PacBio_HiFi/m84046_230627_201017_s1.hifi_reads.bc2052.bam,PACBIO_SMRT,P1,19421.0,22295.0,26247.0,N/A,N/A,N/A,HG00290,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,52.13,52132844954.0,2235593.0,N/A,HG00290,SAMN41021639,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20301.0,23645.0,28142.0,SRR29483166,N/A,N/A,N/A,N/A,N/A,SAMN41021639,v7.0.0,N/A,unaligned reads,HiFi sequencing of 30kb fractionated gDNA,m84046_230627_204123_s2.hifi_reads.bc2052.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00290.HFSS_m84046_230627_204123_s2,single,size fractionation,GENOMIC,WGS,70791.0,23446.0,71.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00290/raw_data/PacBio_HiFi/m84046_230627_204123_s2.hifi_reads.bc2052.bam,PACBIO_SMRT,P1,19471.0,22398.0,26424.0,N/A,N/A,N/A,HG00290,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,59.21,59212119276.0,2525417.0,N/A,HG00290,SAMN41021639,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19901.0,23010.0,27163.0,SRR29483112,N/A,N/A,N/A,N/A,N/A,SAMN41021639,v7.0.0,N/A,unaligned reads,HiFi sequencing of 30kb fractionated gDNA,m84046_230630_233157_s3.bc2052--bc2052.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00290.HFSS_m84046_230630_233157_s3,single,size fractionation,GENOMIC,WGS,61418.0,22851.0,248.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00290/raw_data/PacBio_HiFi/m84046_230630_233157_s3.bc2052--bc2052.bam,PACBIO_SMRT,P1,19152.0,21892.0,25649.0,N/A,N/A,N/A,HG00290,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,24.71,24710313352.0,1081336.0,N/A,HG00290,SAMN41021639,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19912.0,22984.0,27160.0,SRR29483111,N/A,N/A,N/A,N/A,N/A,SAMN41021639,v7.0.0,N/A,unaligned reads,HiFi sequencing of 30kb fractionated gDNA,m84046_230712_224626_s1.hifi_reads.bc2052.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG00290.HFSS_m84046_230712_224626_s1,single,size fractionation,GENOMIC,WGS,67558.0,22852.0,299.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00290/raw_data/PacBio_HiFi/m84046_230712_224626_s1.hifi_reads.bc2052.bam,PACBIO_SMRT,P1,19159.0,21877.0,25619.0,N/A,N/A,N/A,HG00290,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,11.1,11095310100.0,485522.0,N/A,HG00290,SAMN41021639,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20589.0,24374.0,29576.0,SRR29483069,N/A,N/A,N/A,N/A,N/A,SAMN41021640,v7.0.0,N/A,unaligned reads,HiFi sequencing of 31kb fractionated gDNA,m84046_230623_203534_s4.hifi_reads.bc2053.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19443.HFSS_m84046_230623_203534_s4,single,size fractionation,GENOMIC,WGS,65167.0,24043.0,395.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19443/raw_data/PacBio_HiFi/m84046_230623_203534_s4.hifi_reads.bc2053.bam,PACBIO_SMRT,P1,19576.0,22812.0,27402.0,N/A,N/A,N/A,NA19443,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,56.71,56713043234.0,2358793.0,N/A,NA19443,SAMN41021640,,LWK,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20719.0,24513.0,29644.0,SRR29483067,N/A,N/A,N/A,N/A,N/A,SAMN41021640,v7.0.0,N/A,unaligned reads,HiFi sequencing of 31kb fractionated gDNA,m84046_230627_201017_s1.hifi_reads.bc2053.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19443.HFSS_m84046_230627_201017_s1,single,size fractionation,GENOMIC,WGS,69047.0,24154.0,284.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19443/raw_data/PacBio_HiFi/m84046_230627_201017_s1.hifi_reads.bc2053.bam,PACBIO_SMRT,P1,19705.0,22975.0,27549.0,N/A,N/A,N/A,NA19443,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,45.57,45568679596.0,1886575.0,N/A,NA19443,SAMN41021640,,LWK,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20845.0,24761.0,30036.0,SRR29483068,N/A,N/A,N/A,N/A,N/A,SAMN41021640,v7.0.0,N/A,unaligned reads,HiFi sequencing of 31kb fractionated gDNA,m84046_230627_204123_s2.hifi_reads.bc2053.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19443.HFSS_m84046_230627_204123_s2,single,size fractionation,GENOMIC,WGS,68598.0,24367.0,118.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19443/raw_data/PacBio_HiFi/m84046_230627_204123_s2.hifi_reads.bc2053.bam,PACBIO_SMRT,P1,19785.0,23141.0,27839.0,N/A,N/A,N/A,NA19443,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,52.2,52195530984.0,2142052.0,N/A,NA19443,SAMN41021640,,LWK,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20294.0,23869.0,28673.0,SRR29483066,N/A,N/A,N/A,N/A,N/A,SAMN41021640,v7.0.0,N/A,unaligned reads,HiFi sequencing of 31kb fractionated gDNA,m84046_230701_000218_s4.hifi_reads.bc2053.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19443.HFSS_m84046_230701_000218_s4,single,size fractionation,GENOMIC,WGS,63048.0,23566.0,283.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19443/raw_data/PacBio_HiFi/m84046_230701_000218_s4.hifi_reads.bc2053.bam,PACBIO_SMRT,P1,19361.0,22443.0,26745.0,N/A,N/A,N/A,NA19443,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,26.42,26416408863.0,1120935.0,N/A,NA19443,SAMN41021640,,LWK,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,20795.0,24663.0,29903.0,SRR29483070,N/A,N/A,N/A,N/A,N/A,SAMN41021640,v7.0.0,N/A,unaligned reads,HiFi sequencing of 31kb fractionated gDNA,m84046_230712_231732_s2.hifi_reads.bc2053.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,PG19443.HFSS_m84046_230712_231732_s2,single,size fractionation,GENOMIC,WGS,60102.0,24287.0,568.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19443/raw_data/PacBio_HiFi/m84046_230712_231732_s2.hifi_reads.bc2053.bam,PACBIO_SMRT,P1,19750.0,23071.0,27722.0,N/A,N/A,N/A,NA19443,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,13.93,13925497069.0,573361.0,N/A,NA19443,SAMN41021640,,LWK,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17268.0,21072.0,26697.0,SRR29483249,N/A,N/A,N/A,N/A,N/A,SAMN17861238,v7.0.0,N/A,unaligned reads,HiFi sequencing of 37kb fractionated gDNA,m84046_230707_195504_s2.hifi_reads.bc2067.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02486.HFSS_m84046_230707_195504_s2,single,size fractionation,GENOMIC,WGS,72036.0,20969.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02486/raw_data/PacBio_HiFi/m84046_230707_195504_s2.hifi_reads.bc2067.bam,PACBIO_SMRT,P1,16342.0,19259.0,23914.0,N/A,N/A,N/A,HG02486,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,26.35,26347065832.0,1256460.0,N/A,HG02486,SAMN17861238,BB55,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17015.0,20540.0,25788.0,SRR29483248,N/A,N/A,N/A,N/A,N/A,SAMN17861238,v7.0.0,N/A,unaligned reads,HiFi sequencing of 37kb fractionated gDNA,m84046_230707_202610_s3.hifi_reads.bc2067.bam,N/A,kmiyamot@uw.edu,University of Washington,Revio,HG02486.HFSS_m84046_230707_202610_s3,single,size fractionation,GENOMIC,WGS,69861.0,20515.0,268.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02486/raw_data/PacBio_HiFi/m84046_230707_202610_s3.hifi_reads.bc2067.bam,PACBIO_SMRT,P1,16188.0,18919.0,23266.0,N/A,N/A,N/A,HG02486,N/A,C1,Megaruptor 3,Pippin HT,SRP305758,N/A,25.54,25537218642.0,1244789.0,N/A,HG02486,SAMN17861238,BB55,ACB,AFR,YR1 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18509.0,21228.0,24912.0,SRR29396926,N/A,N/A,N/A,N/A,N/A,SAMN41021696,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231027_202621_s3.hifi_reads.bc2070.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00106_lib1_m84081_231027_202621_s3_m84081_231027_202621_s3,single,size fractionation,GENOMIC,WGS,77433.0,21103.0,96.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00106/raw_data/PacBio_HiFi/m84081_231027_202621_s3.hifi_reads.bc2070.bam,PACBIO_SMRT,Revio P1,17907.0,20285.0,23650.0,N/A,N/A,N/A,HG00106,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,86.52,86515704685.0,4099673.0,N/A,HG00106,SAMN41021696,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18829.0,21822.0,25832.0,SRR29396925,N/A,N/A,N/A,N/A,N/A,SAMN41021696,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231029_023649_s3.hifi_reads.bc2070.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00106_lib1_m84081_231029_023649_s3_m84081_231029_023649_s3,single,size fractionation,GENOMIC,WGS,67088.0,21638.0,120.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00106/raw_data/PacBio_HiFi/m84081_231029_023649_s3.hifi_reads.bc2070.bam,PACBIO_SMRT,Revio P1,18150.0,20737.0,24408.0,N/A,N/A,N/A,HG00106,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,86.6,86599346640.0,4002067.0,N/A,HG00106,SAMN41021696,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18546.0,21296.0,25075.0,SRR29396914,N/A,N/A,N/A,N/A,N/A,SAMN41021696,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231112_034048_s4.hifi_reads.bc2070.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00106_lib1_m84081_231112_034048_s4_m84081_231112_034048_s4,single,size fractionation,GENOMIC,WGS,59221.0,21198.0,134.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00106/raw_data/PacBio_HiFi/m84081_231112_034048_s4.hifi_reads.bc2070.bam,PACBIO_SMRT,Revio P1,17936.0,20335.0,23756.0,N/A,N/A,N/A,HG00106,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,17.46,17464604937.0,823862.0,N/A,HG00106,SAMN41021696,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17714.0,19547.0,22192.0,SRR29396903,N/A,N/A,N/A,N/A,N/A,SAMN41021697,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231110_195735_s1.hifi_reads.bc2071.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00117_lib1_m84081_231110_195735_s1_m84081_231110_195735_s1,single,size fractionation,GENOMIC,WGS,58989.0,19490.0,141.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00117/raw_data/PacBio_HiFi/m84081_231110_195735_s1.hifi_reads.bc2071.bam,PACBIO_SMRT,Revio P1,17367.0,19007.0,21433.0,N/A,N/A,N/A,HG00117,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,92.66,92655924917.0,4753908.0,N/A,HG00117,SAMN41021697,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17795.0,19687.0,22372.0,SRR29396892,N/A,N/A,N/A,N/A,N/A,SAMN41021697,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231112_020730_s1.hifi_reads.bc2071.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00117_lib1_m84081_231112_020730_s1_m84081_231112_020730_s1,single,size fractionation,GENOMIC,WGS,60579.0,19696.0,95.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00117/raw_data/PacBio_HiFi/m84081_231112_020730_s1.hifi_reads.bc2071.bam,PACBIO_SMRT,Revio P1,17457.0,19143.0,21621.0,N/A,N/A,N/A,HG00117,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,104.13,104125394431.0,5286393.0,N/A,HG00117,SAMN41021697,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18565.0,20268.0,22546.0,SRR29396881,N/A,N/A,N/A,N/A,N/A,SAMN41021634,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230616_182824_s3.hifi_reads.bc2013.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00146_lib1_m84081_230616_182824_s3_m84081_230616_182824_s3,single,size fractionation,GENOMIC,WGS,60682.0,20383.0,104.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00146/raw_data/PacBio_HiFi/m84081_230616_182824_s3.hifi_reads.bc2013.bam,PACBIO_SMRT,Revio P1,18255.0,19863.0,21947.0,N/A,N/A,N/A,HG00146,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,113.25,113249664653.0,5556039.0,N/A,HG00146,SAMN41021634,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18538.0,20235.0,22498.0,SRR29396855,N/A,N/A,N/A,N/A,N/A,SAMN41021634,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230616_185930_s4.hifi_reads.bc2013.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00146_lib1_m84081_230616_185930_s4_m84081_230616_185930_s4,single,size fractionation,GENOMIC,WGS,58620.0,20349.0,67.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00146/raw_data/PacBio_HiFi/m84081_230616_185930_s4.hifi_reads.bc2013.bam,PACBIO_SMRT,Revio P1,18230.0,19832.0,21906.0,N/A,N/A,N/A,HG00146,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,112.06,112060886510.0,5506717.0,N/A,HG00146,SAMN41021634,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16572.0,18682.0,20737.0,SRR29396866,N/A,N/A,N/A,N/A,N/A,SAMN41021635,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230623_202140_s1.hifi_reads.bc2014.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00232_lib1_m84081_230623_202140_s1_m84081_230623_202140_s1,single,size fractionation,GENOMIC,WGS,49595.0,18385.0,98.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230623_202140_s1.hifi_reads.bc2014.bam,PACBIO_SMRT,Revio P1,16076.0,18183.0,20208.0,N/A,N/A,N/A,HG00232,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,81.31,81313868165.0,4422744.0,N/A,HG00232,SAMN41021635,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16716.0,18822.0,20895.0,SRR29396847,N/A,N/A,N/A,N/A,N/A,SAMN41021635,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230623_205201_s2.hifi_reads.bc2014.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00232_lib1_m84081_230623_205201_s2_m84081_230623_205201_s2,single,size fractionation,GENOMIC,WGS,53546.0,18530.0,110.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230623_205201_s2.hifi_reads.bc2014.bam,PACBIO_SMRT,Revio P1,16210.0,18325.0,20354.0,N/A,N/A,N/A,HG00232,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,82.64,82640938538.0,4459695.0,N/A,HG00232,SAMN41021635,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18323.0,19799.0,21713.0,SRR29396836,N/A,N/A,N/A,N/A,N/A,SAMN41021635,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230714_201817_s1.hifi_reads.bc2014.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00232_lib1_m84081_230714_201817_s1_m84081_230714_201817_s1,single,size fractionation,GENOMIC,WGS,70267.0,19860.0,431.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230714_201817_s1.hifi_reads.bc2014.bam,PACBIO_SMRT,Revio P1,18065.0,19484.0,21267.0,N/A,N/A,N/A,HG00232,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,6.3,6302465374.0,317329.0,N/A,HG00232,SAMN41021635,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18313.0,19795.0,21716.0,SRR29396924,N/A,N/A,N/A,N/A,N/A,SAMN41021635,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230714_205519_s2.hifi_reads.bc2014.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00232_lib1_m84081_230714_205519_s2_m84081_230714_205519_s2,single,size fractionation,GENOMIC,WGS,52961.0,19856.0,405.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230714_205519_s2.hifi_reads.bc2014.bam,PACBIO_SMRT,Revio P1,18063.0,19476.0,21260.0,N/A,N/A,N/A,HG00232,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,7.01,7010861592.0,353075.0,N/A,HG00232,SAMN41021635,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18300.0,19779.0,21693.0,SRR29396923,N/A,N/A,N/A,N/A,N/A,SAMN41021635,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230714_212624_s3.hifi_reads.bc2014.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00232_lib1_m84081_230714_212624_s3_m84081_230714_212624_s3,single,size fractionation,GENOMIC,WGS,52520.0,19843.0,503.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230714_212624_s3.hifi_reads.bc2014.bam,PACBIO_SMRT,Revio P1,18046.0,19460.0,21241.0,N/A,N/A,N/A,HG00232,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,7.64,7637421327.0,384888.0,N/A,HG00232,SAMN41021635,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18366.0,19870.0,21834.0,SRR29396922,N/A,N/A,N/A,N/A,N/A,SAMN41021635,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230714_215730_s4.hifi_reads.bc2014.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00232_lib1_m84081_230714_215730_s4_m84081_230714_215730_s4,single,size fractionation,GENOMIC,WGS,51376.0,19943.0,169.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00232/raw_data/PacBio_HiFi/m84081_230714_215730_s4.hifi_reads.bc2014.bam,PACBIO_SMRT,Revio P1,18108.0,19543.0,21367.0,N/A,N/A,N/A,HG00232,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,7.96,7956857338.0,398971.0,N/A,HG00232,SAMN41021635,,GBR,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17642.0,19342.0,21981.0,SRR29396921,N/A,N/A,N/A,N/A,N/A,SAMN41021632,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230610_202430_s3.hifi_reads.bc2011.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00320_lib1_m84081_230610_202430_s3_m84081_230610_202430_s3,single,size fractionation,GENOMIC,WGS,60709.0,19726.0,81.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00320/raw_data/PacBio_HiFi/m84081_230610_202430_s3.hifi_reads.bc2011.bam,PACBIO_SMRT,Revio P1,17326.0,18861.0,21063.0,N/A,N/A,N/A,HG00320,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,89.16,89163244941.0,4519882.0,N/A,HG00320,SAMN41021632,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17646.0,19363.0,22068.0,SRR29396920,N/A,N/A,N/A,N/A,N/A,SAMN41021632,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230610_205536_s4.hifi_reads.bc2011.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00320_lib1_m84081_230610_205536_s4_m84081_230610_205536_s4,single,size fractionation,GENOMIC,WGS,69079.0,19771.0,117.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00320/raw_data/PacBio_HiFi/m84081_230610_205536_s4.hifi_reads.bc2011.bam,PACBIO_SMRT,Revio P1,17324.0,18869.0,21103.0,N/A,N/A,N/A,HG00320,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,122.35,122345830061.0,6188084.0,N/A,HG00320,SAMN41021632,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17219.0,19652.0,22061.0,SRR29396919,N/A,N/A,N/A,N/A,N/A,SAMN41021636,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230623_212309_s3.hifi_reads.bc2015.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00321_lib1_m84081_230623_212309_s3_m84081_230623_212309_s3,single,size fractionation,GENOMIC,WGS,54945.0,19328.0,121.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00321/raw_data/PacBio_HiFi/m84081_230623_212309_s3.hifi_reads.bc2015.bam,PACBIO_SMRT,Revio P1,16644.0,19027.0,21383.0,N/A,N/A,N/A,HG00321,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,87.77,87765176697.0,4540789.0,N/A,HG00321,SAMN41021636,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17309.0,19749.0,22192.0,SRR29396918,N/A,N/A,N/A,N/A,N/A,SAMN41021636,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230623_215414_s4.hifi_reads.bc2015.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00321_lib1_m84081_230623_215414_s4_m84081_230623_215414_s4,single,size fractionation,GENOMIC,WGS,58041.0,19429.0,100.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00321/raw_data/PacBio_HiFi/m84081_230623_215414_s4.hifi_reads.bc2015.bam,PACBIO_SMRT,Revio P1,16717.0,19122.0,21494.0,N/A,N/A,N/A,HG00321,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,87.05,87052360386.0,4480452.0,N/A,HG00321,SAMN41021636,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19023.0,20701.0,22882.0,SRR29396917,N/A,N/A,N/A,N/A,N/A,SAMN41021636,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230630_190803_s1.hifi_reads.bc2015.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00321_lib1_m84081_230630_190803_s1_m84081_230630_190803_s1,single,size fractionation,GENOMIC,WGS,49486.0,20762.0,182.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00321/raw_data/PacBio_HiFi/m84081_230630_190803_s1.hifi_reads.bc2015.bam,PACBIO_SMRT,Revio P1,18719.0,20324.0,22343.0,N/A,N/A,N/A,HG00321,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,6.7,6703217313.0,322856.0,N/A,HG00321,SAMN41021636,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19059.0,20746.0,22950.0,SRR29396916,N/A,N/A,N/A,N/A,N/A,SAMN41021636,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230630_193909_s2.hifi_reads.bc2015.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00321_lib1_m84081_230630_193909_s2_m84081_230630_193909_s2,single,size fractionation,GENOMIC,WGS,49979.0,20812.0,389.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00321/raw_data/PacBio_HiFi/m84081_230630_193909_s2.hifi_reads.bc2015.bam,PACBIO_SMRT,Revio P1,18755.0,20362.0,22397.0,N/A,N/A,N/A,HG00321,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,7.95,7946873289.0,381838.0,N/A,HG00321,SAMN41021636,,FIN,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18631.0,20539.0,23013.0,SRR29396915,N/A,N/A,N/A,N/A,N/A,SAMN41708788,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230714_212624_s3.hifi_reads.bc2021.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00384_lib1_m84081_230714_212624_s3_m84081_230714_212624_s3,single,size fractionation,GENOMIC,WGS,65604.0,20514.0,125.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00384/raw_data/PacBio_HiFi/m84081_230714_212624_s3.hifi_reads.bc2021.bam,PACBIO_SMRT,Revio P1,18246.0,20053.0,22342.0,N/A,N/A,N/A,HG00384,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,87.24,87240672013.0,4252735.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18726.0,20664.0,23182.0,SRR29396913,N/A,N/A,N/A,N/A,N/A,SAMN41708788,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230714_215730_s4.hifi_reads.bc2021.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00384_lib1_m84081_230714_215730_s4_m84081_230714_215730_s4,single,size fractionation,GENOMIC,WGS,68989.0,20643.0,168.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00384/raw_data/PacBio_HiFi/m84081_230714_215730_s4.hifi_reads.bc2021.bam,PACBIO_SMRT,Revio P1,18337.0,20167.0,22494.0,N/A,N/A,N/A,HG00384,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,91.3,91298102319.0,4422543.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18377.0,20134.0,22352.0,SRR29396912,N/A,N/A,N/A,N/A,N/A,SAMN41708788,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230721_175633_s1.hifi_reads.bc2021.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00384_lib1_m84081_230721_175633_s1_m84081_230721_175633_s1,single,size fractionation,GENOMIC,WGS,58703.0,20120.0,317.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00384/raw_data/PacBio_HiFi/m84081_230721_175633_s1.hifi_reads.bc2021.bam,PACBIO_SMRT,Revio P1,18030.0,19719.0,21788.0,N/A,N/A,N/A,HG00384,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,5.58,5580145860.0,277337.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18398.0,20167.0,22384.0,SRR29396911,N/A,N/A,N/A,N/A,N/A,SAMN41708788,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230721_182654_s2.hifi_reads.bc2021.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG00384_lib1_m84081_230721_182654_s2_m84081_230721_182654_s2,single,size fractionation,GENOMIC,WGS,47639.0,20151.0,117.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00384/raw_data/PacBio_HiFi/m84081_230721_182654_s2.hifi_reads.bc2021.bam,PACBIO_SMRT,Revio P1,18055.0,19753.0,21815.0,N/A,N/A,N/A,HG00384,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,5.79,5787641754.0,287210.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16106.0,17401.0,19434.0,SRR29396910,N/A,N/A,N/A,N/A,N/A,SAMN41708789,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230624_203119_s1.hifi_reads.bc2016.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01248_lib1_m84081_230624_203119_s1_m84081_230624_203119_s1,single,size fractionation,GENOMIC,WGS,61976.0,17882.0,66.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01248/raw_data/PacBio_HiFi/m84081_230624_203119_s1.hifi_reads.bc2016.bam,PACBIO_SMRT,Revio P1,15906.0,17070.0,18759.0,N/A,N/A,N/A,HG01248,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,89.19,89192360395.0,4987552.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16091.0,17375.0,19381.0,SRR29396909,N/A,N/A,N/A,N/A,N/A,SAMN41708789,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230624_210225_s2.hifi_reads.bc2016.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01248_lib1_m84081_230624_210225_s2_m84081_230624_210225_s2,single,size fractionation,GENOMIC,WGS,60735.0,17854.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01248/raw_data/PacBio_HiFi/m84081_230624_210225_s2.hifi_reads.bc2016.bam,PACBIO_SMRT,Revio P1,15893.0,17050.0,18723.0,N/A,N/A,N/A,HG01248,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,95.0,94995476037.0,5320601.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15793.0,16767.0,17911.0,SRR29396908,N/A,N/A,N/A,N/A,N/A,SAMN41708789,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230628_183924_s1.hifi_reads.bc2016.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01248_lib1_m84081_230628_183924_s1_m84081_230628_183924_s1,single,size fractionation,GENOMIC,WGS,32129.0,16750.0,386.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01248/raw_data/PacBio_HiFi/m84081_230628_183924_s1.hifi_reads.bc2016.bam,PACBIO_SMRT,Revio P1,15675.0,16622.0,17744.0,N/A,N/A,N/A,HG01248,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,3.95,3946167499.0,235592.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15805.0,16781.0,17940.0,SRR29396907,N/A,N/A,N/A,N/A,N/A,SAMN41708789,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230628_190945_s2.hifi_reads.bc2016.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01248_lib1_m84081_230628_190945_s2_m84081_230628_190945_s2,single,size fractionation,GENOMIC,WGS,32308.0,16767.0,166.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01248/raw_data/PacBio_HiFi/m84081_230628_190945_s2.hifi_reads.bc2016.bam,PACBIO_SMRT,Revio P1,15689.0,16634.0,17769.0,N/A,N/A,N/A,HG01248,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,4.1,4098992812.0,244457.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16603.0,18371.0,20789.0,SRR29396906,N/A,N/A,N/A,N/A,N/A,SAMN41708787,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231027_205726_s4.hifi_reads.bc2068.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01785_lib1_m84081_231027_205726_s4_m84081_231027_205726_s4,single,size fractionation,GENOMIC,WGS,55706.0,18463.0,154.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01785/raw_data/PacBio_HiFi/m84081_231027_205726_s4.hifi_reads.bc2068.bam,PACBIO_SMRT,Revio P1,16282.0,17891.0,20106.0,N/A,N/A,N/A,HG01785,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,69.13,69132600711.0,3744219.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16703.0,18530.0,21036.0,SRR29396905,N/A,N/A,N/A,N/A,N/A,SAMN41708787,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231029_030755_s4.hifi_reads.bc2068.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01785_lib1_m84081_231029_030755_s4_m84081_231029_030755_s4,single,size fractionation,GENOMIC,WGS,55915.0,18627.0,101.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01785/raw_data/PacBio_HiFi/m84081_231029_030755_s4.hifi_reads.bc2068.bam,PACBIO_SMRT,Revio P1,16370.0,18025.0,20317.0,N/A,N/A,N/A,HG01785,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,62.55,62547368039.0,3357874.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16721.0,18558.0,21059.0,SRR29396904,N/A,N/A,N/A,N/A,N/A,SAMN41708787,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231122_210358_s4.hifi_reads.bc2068.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01785_lib1_m84081_231122_210358_s4_m84081_231122_210358_s4,single,size fractionation,GENOMIC,WGS,60041.0,18654.0,129.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01785/raw_data/PacBio_HiFi/m84081_231122_210358_s4.hifi_reads.bc2068.bam,PACBIO_SMRT,Revio P1,16385.0,18051.0,20338.0,N/A,N/A,N/A,HG01785,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,37.65,37653152376.0,2018483.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16693.0,18507.0,21003.0,SRR29396902,N/A,N/A,N/A,N/A,N/A,SAMN41708787,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231124_031433_s4.hifi_reads.bc2068.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01785_lib1_m84081_231124_031433_s4_m84081_231124_031433_s4,single,size fractionation,GENOMIC,WGS,60926.0,18608.0,96.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01785/raw_data/PacBio_HiFi/m84081_231124_031433_s4.hifi_reads.bc2068.bam,PACBIO_SMRT,Revio P1,16363.0,18008.0,20291.0,N/A,N/A,N/A,HG01785,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,42.0,41997271684.0,2256941.0,N/A,,,,,, -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16076.0,18208.0,20275.0,SRR29396901,N/A,N/A,N/A,N/A,N/A,SAMN41021633,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230616_172650_s1.hifi_reads.bc2012.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01786_lib1_m84081_230616_172650_s1_m84081_230616_172650_s1,single,size fractionation,GENOMIC,WGS,50578.0,17901.0,196.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01786/raw_data/PacBio_HiFi/m84081_230616_172650_s1.hifi_reads.bc2012.bam,PACBIO_SMRT,Revio P1,15623.0,17685.0,19754.0,N/A,N/A,N/A,HG01786,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,113.0,112999869409.0,6312457.0,N/A,HG01786,SAMN41021633,,IBS,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16115.0,18250.0,20321.0,SRR29396900,N/A,N/A,N/A,N/A,N/A,SAMN41021633,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230616_175717_s2.hifi_reads.bc2012.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01786_lib1_m84081_230616_175717_s2_m84081_230616_175717_s2,single,size fractionation,GENOMIC,WGS,59847.0,17946.0,67.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01786/raw_data/PacBio_HiFi/m84081_230616_175717_s2.hifi_reads.bc2012.bam,PACBIO_SMRT,Revio P1,15658.0,17729.0,19799.0,N/A,N/A,N/A,HG01786,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,114.9,114898048594.0,6402094.0,N/A,HG01786,SAMN41021633,,IBS,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17915.0,20556.0,24118.0,SRR29396899,N/A,N/A,N/A,N/A,N/A,SAMN41021698,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231209_031410_s3.hifi_reads.bc2002.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01798_lib1_m84081_231209_031410_s3_m84081_231209_031410_s3,single,size fractionation,GENOMIC,WGS,72053.0,20511.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01798/raw_data/PacBio_HiFi/m84081_231209_031410_s3.hifi_reads.bc2002.bam,PACBIO_SMRT,Revio P1,17361.0,19647.0,22911.0,N/A,N/A,N/A,HG01798,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,131.49,131487040767.0,6410544.0,N/A,HG01798,SAMN41021698,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17859.0,20457.0,23995.0,SRR29396898,N/A,N/A,N/A,N/A,N/A,SAMN41021698,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231209_034516_s4.hifi_reads.bc2002.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01798_lib1_m84081_231209_034516_s4_m84081_231209_034516_s4,single,size fractionation,GENOMIC,WGS,71376.0,20431.0,152.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01798/raw_data/PacBio_HiFi/m84081_231209_034516_s4.hifi_reads.bc2002.bam,PACBIO_SMRT,Revio P1,17318.0,19570.0,22802.0,N/A,N/A,N/A,HG01798,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,118.99,118994102370.0,5823951.0,N/A,HG01798,SAMN41021698,,CDX,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18044.0,20025.0,22730.0,SRR29396897,N/A,N/A,N/A,N/A,N/A,SAMN41021684,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231103_210721_s4.hifi_reads.bc2069.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01894_lib1_m84081_231103_210721_s4_m84081_231103_210721_s4,single,size fractionation,GENOMIC,WGS,68862.0,19872.0,78.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01894/raw_data/PacBio_HiFi/m84081_231103_210721_s4.hifi_reads.bc2069.bam,PACBIO_SMRT,Revio P1,17619.0,19444.0,21948.0,N/A,N/A,N/A,HG01894,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,99.24,99237532921.0,4993697.0,N/A,HG01894,SAMN41021684,,ACB,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18104.0,20117.0,22844.0,SRR29396896,N/A,N/A,N/A,N/A,N/A,SAMN41021684,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231105_014442_s1.hifi_reads.bc2069.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG01894_lib1_m84081_231105_014442_s1_m84081_231105_014442_s1,single,size fractionation,GENOMIC,WGS,66222.0,19978.0,112.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01894/raw_data/PacBio_HiFi/m84081_231105_014442_s1.hifi_reads.bc2069.bam,PACBIO_SMRT,Revio P1,17679.0,19531.0,22063.0,N/A,N/A,N/A,HG01894,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,102.95,102950156305.0,5152973.0,N/A,HG01894,SAMN41021684,,ACB,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19131.0,21984.0,25894.0,SRR29396895,N/A,N/A,N/A,N/A,N/A,SAMN41021683,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231027_195514_s2.hifi_reads.bc2067.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03343_lib1_m84081_231027_195514_s2_m84081_231027_195514_s2,single,size fractionation,GENOMIC,WGS,65357.0,21823.0,93.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231027_195514_s2.hifi_reads.bc2067.bam,PACBIO_SMRT,Revio P1,18478.0,20971.0,24504.0,N/A,N/A,N/A,HG03343,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,80.39,80389909890.0,3683635.0,N/A,HG03343,SAMN41021683,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19209.0,22113.0,26029.0,SRR29396894,N/A,N/A,N/A,N/A,N/A,SAMN41021683,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231029_020543_s2.hifi_reads.bc2067.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03343_lib1_m84081_231029_020543_s2_m84081_231029_020543_s2,single,size fractionation,GENOMIC,WGS,67011.0,21937.0,131.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231029_020543_s2.hifi_reads.bc2067.bam,PACBIO_SMRT,Revio P1,18542.0,21085.0,24644.0,N/A,N/A,N/A,HG03343,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,76.38,76377325201.0,3481519.0,N/A,HG03343,SAMN41021683,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19006.0,21714.0,25367.0,SRR29396893,N/A,N/A,N/A,N/A,N/A,SAMN41021683,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231112_023836_s2.hifi_reads.bc2067.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03343_lib1_m84081_231112_023836_s2_m84081_231112_023836_s2,single,size fractionation,GENOMIC,WGS,64938.0,21611.0,96.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231112_023836_s2.hifi_reads.bc2067.bam,PACBIO_SMRT,Revio P1,18408.0,20799.0,24117.0,N/A,N/A,N/A,HG03343,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,23.81,23811565860.0,1101791.0,N/A,HG03343,SAMN41021683,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19100.0,21896.0,25690.0,SRR29396891,N/A,N/A,N/A,N/A,N/A,SAMN41021683,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231119_015049_s1.hifi_reads.bc2067.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03343_lib1_m84081_231119_015049_s1_m84081_231119_015049_s1,single,size fractionation,GENOMIC,WGS,58315.0,21759.0,236.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231119_015049_s1.hifi_reads.bc2067.bam,PACBIO_SMRT,Revio P1,18472.0,20925.0,24369.0,N/A,N/A,N/A,HG03343,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,3.83,3829545883.0,175994.0,N/A,HG03343,SAMN41021683,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19070.0,21916.0,25762.0,SRR29396890,N/A,N/A,N/A,N/A,N/A,SAMN41021683,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231119_022155_s2.hifi_reads.bc2067.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03343_lib1_m84081_231119_022155_s2_m84081_231119_022155_s2,single,size fractionation,GENOMIC,WGS,59141.0,21766.0,105.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231119_022155_s2.hifi_reads.bc2067.bam,PACBIO_SMRT,Revio P1,18430.0,20912.0,24406.0,N/A,N/A,N/A,HG03343,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,4.12,4116704775.0,189126.0,N/A,HG03343,SAMN41021683,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,19107.0,21952.0,25819.0,SRR29396889,N/A,N/A,N/A,N/A,N/A,SAMN41021683,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231119_025301_s3.hifi_reads.bc2067.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03343_lib1_m84081_231119_025301_s3_m84081_231119_025301_s3,single,size fractionation,GENOMIC,WGS,51526.0,21808.0,528.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03343/raw_data/PacBio_HiFi/m84081_231119_025301_s3.hifi_reads.bc2067.bam,PACBIO_SMRT,Revio P1,18462.0,20945.0,24475.0,N/A,N/A,N/A,HG03343,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,3.91,3912424496.0,179401.0,N/A,HG03343,SAMN41021683,,ESN,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18380.0,20864.0,24295.0,SRR29396888,N/A,N/A,N/A,N/A,N/A,SAMN41021700,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231207_210341_s3.hifi_reads.bc2003.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03388_lib1_m84081_231207_210341_s3_m84081_231207_210341_s3,single,size fractionation,GENOMIC,WGS,72686.0,20836.0,162.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03388/raw_data/PacBio_HiFi/m84081_231207_210341_s3.hifi_reads.bc2003.bam,PACBIO_SMRT,Revio P1,17871.0,20053.0,23185.0,N/A,N/A,N/A,HG03388,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,129.7,129702255571.0,6224816.0,N/A,HG03388,SAMN41021700,,MSL,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18383.0,20870.0,24306.0,SRR29396887,N/A,N/A,N/A,N/A,N/A,SAMN41021700,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231207_213447_s4.hifi_reads.bc2003.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03388_lib1_m84081_231207_213447_s4_m84081_231207_213447_s4,single,size fractionation,GENOMIC,WGS,73270.0,20845.0,69.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03388/raw_data/PacBio_HiFi/m84081_231207_213447_s4.hifi_reads.bc2003.bam,PACBIO_SMRT,Revio P1,17874.0,20060.0,23196.0,N/A,N/A,N/A,HG03388,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,120.72,120724810545.0,5791516.0,N/A,HG03388,SAMN41021700,,MSL,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18183.0,19680.0,21584.0,SRR29396886,N/A,N/A,N/A,N/A,N/A,SAMN41021647,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230624_213331_s3.hifi_reads.bc2017.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03784_lib1_m84081_230624_213331_s3_m84081_230624_213331_s3,single,size fractionation,GENOMIC,WGS,52498.0,19740.0,112.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03784/raw_data/PacBio_HiFi/m84081_230624_213331_s3.hifi_reads.bc2017.bam,PACBIO_SMRT,Revio P1,17942.0,19367.0,21164.0,N/A,N/A,N/A,HG03784,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,101.37,101373501273.0,5135431.0,N/A,HG03784,SAMN41021647,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18197.0,19700.0,21609.0,SRR29396885,N/A,N/A,N/A,N/A,N/A,SAMN41021647,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230624_220437_s4.hifi_reads.bc2017.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03784_lib1_m84081_230624_220437_s4_m84081_230624_220437_s4,single,size fractionation,GENOMIC,WGS,52968.0,19759.0,109.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03784/raw_data/PacBio_HiFi/m84081_230624_220437_s4.hifi_reads.bc2017.bam,PACBIO_SMRT,Revio P1,17955.0,19386.0,21188.0,N/A,N/A,N/A,HG03784,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,92.33,92325346149.0,4672355.0,N/A,HG03784,SAMN41021647,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,12883.0,16614.0,21492.0,SRR29396884,N/A,N/A,N/A,N/A,N/A,SAMN37797112,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230516_194621_s2.hifi_reads.bc1019.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03792_lib1_m84081_230516_194621_s2_m84081_230516_194621_s2,single,size fractionation,GENOMIC,WGS,57876.0,16097.0,272.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03792/raw_data/PacBio_HiFi/m84081_230516_194621_s2.hifi_reads.bc1019.bam,PACBIO_SMRT,Revio P1,12554.0,13686.0,19898.0,N/A,N/A,N/A,HG03792,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,96.93,96934869826.0,6021669.0,N/A,HG03792,SAMN37797112,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15778.0,17596.0,20589.0,SRR29396883,N/A,N/A,N/A,N/A,N/A,SAMN37797112,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230519_183943_s4.hifi_reads.bc1019.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03792_lib1_m84081_230519_183943_s4_m84081_230519_183943_s4,single,size fractionation,GENOMIC,WGS,58126.0,17831.0,70.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03792/raw_data/PacBio_HiFi/m84081_230519_183943_s4.hifi_reads.bc1019.bam,PACBIO_SMRT,Revio P1,15463.0,17021.0,19621.0,N/A,N/A,N/A,HG03792,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,104.38,104383006633.0,5853810.0,N/A,HG03792,SAMN37797112,,ITU,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18620.0,21241.0,24890.0,SRR29396882,N/A,N/A,N/A,N/A,N/A,SAMN41021699,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231207_203234_s2.hifi_reads.bc2004.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03919_lib1_m84081_231207_203234_s2_m84081_231207_203234_s2,single,size fractionation,GENOMIC,WGS,72543.0,21199.0,76.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03919/raw_data/PacBio_HiFi/m84081_231207_203234_s2.hifi_reads.bc2004.bam,PACBIO_SMRT,Revio P1,18059.0,20357.0,23658.0,N/A,N/A,N/A,HG03919,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,140.54,140544542753.0,6629555.0,N/A,HG03919,SAMN41021699,,BEB,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18575.0,21188.0,24867.0,SRR29396880,N/A,N/A,N/A,N/A,N/A,SAMN41021699,8.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231222_081401_s1.hifi_reads.bc2004.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03919_lib1_m84081_231222_081401_s1_m84081_231222_081401_s1,single,size fractionation,GENOMIC,WGS,63119.0,21167.0,110.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03919/raw_data/PacBio_HiFi/m84081_231222_081401_s1.hifi_reads.bc2004.bam,PACBIO_SMRT,Revio P1,18019.0,20300.0,23614.0,N/A,N/A,N/A,HG03919,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,13.19,13190463788.0,623139.0,N/A,HG03919,SAMN41021699,,BEB,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18730.0,21474.0,25246.0,SRR29396879,N/A,N/A,N/A,N/A,N/A,SAMN41021699,8.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231222_101332_s2.hifi_reads.bc2004.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03919_lib1_m84081_231222_101332_s2_m84081_231222_101332_s2,single,size fractionation,GENOMIC,WGS,63775.0,21391.0,186.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03919/raw_data/PacBio_HiFi/m84081_231222_101332_s2.hifi_reads.bc2004.bam,PACBIO_SMRT,Revio P1,18140.0,20529.0,23965.0,N/A,N/A,N/A,HG03919,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,17.11,17107725274.0,799745.0,N/A,HG03919,SAMN41021699,,BEB,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18799.0,21588.0,25372.0,SRR29396877,N/A,N/A,N/A,N/A,N/A,SAMN41021699,8.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231222_121301_s3.hifi_reads.bc2004.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03919_lib1_m84081_231222_121301_s3_m84081_231222_121301_s3,single,size fractionation,GENOMIC,WGS,68308.0,21488.0,153.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03919/raw_data/PacBio_HiFi/m84081_231222_121301_s3.hifi_reads.bc2004.bam,PACBIO_SMRT,Revio P1,18200.0,20624.0,24100.0,N/A,N/A,N/A,HG03919,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,17.39,17390549679.0,809277.0,N/A,HG03919,SAMN41021699,,BEB,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18709.0,21455.0,25198.0,SRR29396876,N/A,N/A,N/A,N/A,N/A,SAMN41021699,8.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231222_141231_s4.hifi_reads.bc2004.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,HG03919_lib1_m84081_231222_141231_s4_m84081_231222_141231_s4,single,size fractionation,GENOMIC,WGS,73649.0,21367.0,170.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03919/raw_data/PacBio_HiFi/m84081_231222_141231_s4.hifi_reads.bc2004.bam,PACBIO_SMRT,Revio P1,18120.0,20509.0,23937.0,N/A,N/A,N/A,HG03919,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,17.33,17327703121.0,810924.0,N/A,HG03919,SAMN41021699,,BEB,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16374.0,17931.0,20599.0,SRR29396875,N/A,N/A,N/A,N/A,N/A,SAMN41021669,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230714_201817_s1.hifi_reads.bc2020.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18565_lib1_m84081_230714_201817_s1_m84081_230714_201817_s1,single,size fractionation,GENOMIC,WGS,61109.0,18377.0,69.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18565/raw_data/PacBio_HiFi/m84081_230714_201817_s1.hifi_reads.bc2020.bam,PACBIO_SMRT,Revio P1,16103.0,17487.0,19619.0,N/A,N/A,N/A,NA18565,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,80.17,80173317654.0,4362524.0,N/A,NA18565,SAMN41021669,,CHB,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16369.0,17921.0,20603.0,SRR29396850,N/A,N/A,N/A,N/A,N/A,SAMN41021669,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230714_205519_s2.hifi_reads.bc2020.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18565_lib1_m84081_230714_205519_s2_m84081_230714_205519_s2,single,size fractionation,GENOMIC,WGS,62662.0,18381.0,127.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18565/raw_data/PacBio_HiFi/m84081_230714_205519_s2.hifi_reads.bc2020.bam,PACBIO_SMRT,Revio P1,16099.0,17478.0,19611.0,N/A,N/A,N/A,NA18565,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,89.43,89433355582.0,4865353.0,N/A,NA18565,SAMN41021669,,CHB,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15896.0,16985.0,18239.0,SRR29396851,N/A,N/A,N/A,N/A,N/A,SAMN41021669,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230728_191731_s1.hifi_reads.bc2020.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18565_lib1_m84081_230728_191731_s1_m84081_230728_191731_s1,single,size fractionation,GENOMIC,WGS,40638.0,16954.0,115.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18565/raw_data/PacBio_HiFi/m84081_230728_191731_s1.hifi_reads.bc2020.bam,PACBIO_SMRT,Revio P1,15749.0,16808.0,18036.0,N/A,N/A,N/A,NA18565,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,25.52,25516860218.0,1505035.0,N/A,NA18565,SAMN41021669,,CHB,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16700.0,19282.0,21832.0,SRR29396852,N/A,N/A,N/A,N/A,N/A,SAMN41021619,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230601_202307_s1.hifi_reads.bc2007.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18608_lib1_m84081_230601_202307_s1_m84081_230601_202307_s1,single,size fractionation,GENOMIC,WGS,55691.0,18947.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18608/raw_data/PacBio_HiFi/m84081_230601_202307_s1.hifi_reads.bc2007.bam,PACBIO_SMRT,Revio P1,16136.0,18571.0,21088.0,N/A,N/A,N/A,NA18608,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,38.3,38302395427.0,2021458.0,N/A,NA18608,SAMN41021619,,CHB,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17367.0,19920.0,22570.0,SRR29396853,N/A,N/A,N/A,N/A,N/A,SAMN41021619,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230601_210338_s2.hifi_reads.bc2007.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18608_lib1_m84081_230601_210338_s2_m84081_230601_210338_s2,single,size fractionation,GENOMIC,WGS,59027.0,19576.0,102.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18608/raw_data/PacBio_HiFi/m84081_230601_210338_s2.hifi_reads.bc2007.bam,PACBIO_SMRT,Revio P1,16693.0,19229.0,21770.0,N/A,N/A,N/A,NA18608,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,126.14,126144469880.0,6443731.0,N/A,NA18608,SAMN41021619,,CHB,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14946.0,15796.0,16779.0,SRR29396854,N/A,N/A,N/A,N/A,N/A,SAMN41021619,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230623_202140_s1.hifi_reads.bc2007.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18608_lib1_m84081_230623_202140_s1_m84081_230623_202140_s1,single,size fractionation,GENOMIC,WGS,37936.0,15785.0,222.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18608/raw_data/PacBio_HiFi/m84081_230623_202140_s1.hifi_reads.bc2007.bam,PACBIO_SMRT,Revio P1,14852.0,15680.0,16650.0,N/A,N/A,N/A,NA18608,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,13.51,13512296010.0,856010.0,N/A,NA18608,SAMN41021619,,CHB,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14970.0,15823.0,16816.0,SRR29396856,N/A,N/A,N/A,N/A,N/A,SAMN41021619,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230623_205201_s2.hifi_reads.bc2007.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18608_lib1_m84081_230623_205201_s2_m84081_230623_205201_s2,single,size fractionation,GENOMIC,WGS,35337.0,15815.0,106.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18608/raw_data/PacBio_HiFi/m84081_230623_205201_s2.hifi_reads.bc2007.bam,PACBIO_SMRT,Revio P1,14877.0,15705.0,16685.0,N/A,N/A,N/A,NA18608,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,13.0,13001339007.0,822059.0,N/A,NA18608,SAMN41021619,,CHB,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16437.0,18517.0,21881.0,SRR29396857,N/A,N/A,N/A,N/A,N/A,SAMN41021621,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230609_201402_s3.hifi_reads.bc2009.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18952_lib1_m84081_230609_201402_s3_m84081_230609_201402_s3,single,size fractionation,GENOMIC,WGS,60825.0,18761.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18952/raw_data/PacBio_HiFi/m84081_230609_201402_s3.hifi_reads.bc2009.bam,PACBIO_SMRT,Revio P1,16068.0,17806.0,20751.0,N/A,N/A,N/A,NA18952,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,114.63,114630102801.0,6109785.0,N/A,NA18952,SAMN41021621,,JPT,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16463.0,18574.0,21974.0,SRR29396858,N/A,N/A,N/A,N/A,N/A,SAMN41021621,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230609_204508_s4.hifi_reads.bc2009.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18952_lib1_m84081_230609_204508_s4_m84081_230609_204508_s4,single,size fractionation,GENOMIC,WGS,59176.0,18813.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18952/raw_data/PacBio_HiFi/m84081_230609_204508_s4.hifi_reads.bc2009.bam,PACBIO_SMRT,Revio P1,16090.0,17847.0,20830.0,N/A,N/A,N/A,NA18952,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,121.87,121866756120.0,6477676.0,N/A,NA18952,SAMN41021621,,JPT,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18405.0,20084.0,22257.0,SRR29396859,N/A,N/A,N/A,N/A,N/A,SAMN41021620,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230601_213444_s3.hifi_reads.bc2008.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18974_lib1_m84081_230601_213444_s3_m84081_230601_213444_s3,single,size fractionation,GENOMIC,WGS,57105.0,20164.0,108.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18974/raw_data/PacBio_HiFi/m84081_230601_213444_s3.hifi_reads.bc2008.bam,PACBIO_SMRT,Revio P1,18100.0,19697.0,21703.0,N/A,N/A,N/A,NA18974,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,122.72,122716117340.0,6085854.0,N/A,NA18974,SAMN41021620,,JPT,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18446.0,20144.0,22355.0,SRR29396860,N/A,N/A,N/A,N/A,N/A,SAMN41021620,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230601_220550_s4.hifi_reads.bc2008.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18974_lib1_m84081_230601_220550_s4_m84081_230601_220550_s4,single,size fractionation,GENOMIC,WGS,59690.0,20232.0,110.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18974/raw_data/PacBio_HiFi/m84081_230601_220550_s4.hifi_reads.bc2008.bam,PACBIO_SMRT,Revio P1,18138.0,19749.0,21784.0,N/A,N/A,N/A,NA18974,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,130.05,130053489701.0,6428043.0,N/A,NA18974,SAMN41021620,,JPT,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18353.0,19960.0,21963.0,SRR29396861,N/A,N/A,N/A,N/A,N/A,SAMN41021622,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230610_192218_s1.hifi_reads.bc2010.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18976_lib1_m84081_230610_192218_s1_m84081_230610_192218_s1,single,size fractionation,GENOMIC,WGS,56767.0,19991.0,211.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18976/raw_data/PacBio_HiFi/m84081_230610_192218_s1.hifi_reads.bc2010.bam,PACBIO_SMRT,Revio P1,18064.0,19603.0,21493.0,N/A,N/A,N/A,NA18976,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,111.51,111506398484.0,5577778.0,N/A,NA18976,SAMN41021622,,JPT,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18294.0,19884.0,21860.0,SRR29396862,N/A,N/A,N/A,N/A,N/A,SAMN41021622,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230610_195324_s2.hifi_reads.bc2010.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA18976_lib1_m84081_230610_195324_s2_m84081_230610_195324_s2,single,size fractionation,GENOMIC,WGS,57421.0,19905.0,124.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18976/raw_data/PacBio_HiFi/m84081_230610_195324_s2.hifi_reads.bc2010.bam,PACBIO_SMRT,Revio P1,18008.0,19535.0,21403.0,N/A,N/A,N/A,NA18976,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,116.01,116006257856.0,5827789.0,N/A,NA18976,SAMN41021622,,JPT,EAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17716.0,19923.0,23009.0,SRR29396863,N/A,N/A,N/A,N/A,N/A,SAMN41021682,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231027_192451_s1.hifi_reads.bc2066.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19099_lib1_m84081_231027_192451_s1_m84081_231027_192451_s1,single,size fractionation,GENOMIC,WGS,68354.0,19999.0,134.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19099/raw_data/PacBio_HiFi/m84081_231027_192451_s1.hifi_reads.bc2066.bam,PACBIO_SMRT,Revio P1,17304.0,19241.0,22055.0,N/A,N/A,N/A,NA19099,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,71.42,71420056983.0,3571017.0,N/A,NA19099,SAMN41021682,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17859.0,20167.0,23322.0,SRR29396864,N/A,N/A,N/A,N/A,N/A,SAMN41021682,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231029_013437_s1.hifi_reads.bc2066.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19099_lib1_m84081_231029_013437_s1_m84081_231029_013437_s1,single,size fractionation,GENOMIC,WGS,64507.0,20214.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19099/raw_data/PacBio_HiFi/m84081_231029_013437_s1.hifi_reads.bc2066.bam,PACBIO_SMRT,Revio P1,17421.0,19447.0,22342.0,N/A,N/A,N/A,NA19099,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,67.43,67429698005.0,3335768.0,N/A,NA19099,SAMN41021682,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17827.0,20119.0,23306.0,SRR29396865,N/A,N/A,N/A,N/A,N/A,SAMN41021682,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231122_210358_s4.hifi_reads.bc2066.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19099_lib1_m84081_231122_210358_s4_m84081_231122_210358_s4,single,size fractionation,GENOMIC,WGS,67431.0,20194.0,109.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19099/raw_data/PacBio_HiFi/m84081_231122_210358_s4.hifi_reads.bc2066.bam,PACBIO_SMRT,Revio P1,17394.0,19399.0,22303.0,N/A,N/A,N/A,NA19099,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,29.88,29875159090.0,1479407.0,N/A,NA19099,SAMN41021682,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17785.0,20050.0,23188.0,SRR29396867,N/A,N/A,N/A,N/A,N/A,SAMN41021682,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231124_031433_s4.hifi_reads.bc2066.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19099_lib1_m84081_231124_031433_s4_m84081_231124_031433_s4,single,size fractionation,GENOMIC,WGS,58771.0,20121.0,159.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19099/raw_data/PacBio_HiFi/m84081_231124_031433_s4.hifi_reads.bc2066.bam,PACBIO_SMRT,Revio P1,17362.0,19344.0,22214.0,N/A,N/A,N/A,NA19099,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,33.0,32997796125.0,1639967.0,N/A,NA19099,SAMN41021682,,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15850.0,18107.0,20460.0,SRR29396868,N/A,N/A,N/A,N/A,N/A,SAMN37797088,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230508_200546_s2.hifi_reads.bc2003.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19120_lib1_m84081_230508_200546_s2_m84081_230508_200546_s2,single,size fractionation,GENOMIC,WGS,55134.0,17886.0,141.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19120/raw_data/PacBio_HiFi/m84081_230508_200546_s2.hifi_reads.bc2003.bam,PACBIO_SMRT,Revio P1,15453.0,17439.0,19846.0,N/A,N/A,N/A,NA19120,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,108.12,108117696397.0,6044757.0,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15681.0,17843.0,20250.0,SRR29396869,N/A,N/A,N/A,N/A,N/A,SAMN37797088,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230511_183900_s4.hifi_reads.bc2003.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19120_lib1_m84081_230511_183900_s4_m84081_230511_183900_s4,single,size fractionation,GENOMIC,WGS,52931.0,17696.0,104.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19120/raw_data/PacBio_HiFi/m84081_230511_183900_s4.hifi_reads.bc2003.bam,PACBIO_SMRT,Revio P1,15317.0,17177.0,19632.0,N/A,N/A,N/A,NA19120,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,110.42,110418103547.0,6239650.0,N/A,NA19120,SAMN37797088,Y060,YRI,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17383.0,20239.0,24086.0,SRR29396870,N/A,N/A,N/A,N/A,N/A,SAMN41021685,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231209_021158_s1.hifi_reads.bc2001.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19834_lib1_m84081_231209_021158_s1_m84081_231209_021158_s1,single,size fractionation,GENOMIC,WGS,74893.0,20177.0,121.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19834/raw_data/PacBio_HiFi/m84081_231209_021158_s1.hifi_reads.bc2001.bam,PACBIO_SMRT,Revio P1,16746.0,19185.0,22651.0,N/A,N/A,N/A,NA19834,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,126.56,126557623344.0,6272240.0,N/A,NA19834,SAMN41021685,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17317.0,20155.0,24001.0,SRR29396871,N/A,N/A,N/A,N/A,N/A,SAMN41021685,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231209_024304_s2.hifi_reads.bc2001.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19834_lib1_m84081_231209_024304_s2_m84081_231209_024304_s2,single,size fractionation,GENOMIC,WGS,75079.0,20104.0,71.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19834/raw_data/PacBio_HiFi/m84081_231209_024304_s2.hifi_reads.bc2001.bam,PACBIO_SMRT,Revio P1,16688.0,19103.0,22563.0,N/A,N/A,N/A,NA19834,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,132.28,132283331917.0,6579738.0,N/A,NA19834,SAMN41021685,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16483.0,18789.0,20901.0,SRR29396872,N/A,N/A,N/A,N/A,N/A,SAMN41021607,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230523_180945_s1.hifi_reads.bc2005.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19909_lib1_m84081_230523_180945_s1_m84081_230523_180945_s1,single,size fractionation,GENOMIC,WGS,57607.0,18430.0,106.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_230523_180945_s1.hifi_reads.bc2005.bam,PACBIO_SMRT,Revio P1,15942.0,18242.0,20340.0,N/A,N/A,N/A,NA19909,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,96.3,96297665360.0,5224855.0,N/A,NA19909,SAMN41021607,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16837.0,19008.0,21069.0,SRR29396873,N/A,N/A,N/A,N/A,N/A,SAMN41021607,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230525_172954_s3.hifi_reads.bc2005.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19909_lib1_m84081_230525_172954_s3_m84081_230525_172954_s3,single,size fractionation,GENOMIC,WGS,61002.0,18665.0,147.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_230525_172954_s3.hifi_reads.bc2005.bam,PACBIO_SMRT,Revio P1,16265.0,18511.0,20525.0,N/A,N/A,N/A,NA19909,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,101.88,101875080979.0,5457862.0,N/A,NA19909,SAMN41021607,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,9208.0,16322.0,22107.0,SRR29396874,N/A,N/A,N/A,N/A,N/A,SAMN41021607,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230609_194256_s2.hifi_reads.bc2001.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19909_lib1_m84081_230609_194256_s2_m84081_230609_194256_s2,single,size fractionation,GENOMIC,WGS,68370.0,10935.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_230609_194256_s2.hifi_reads.bc2001.bam,PACBIO_SMRT,Revio P1,4569.0,8259.0,16194.0,N/A,N/A,N/A,NA19909,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,75.08,75084927598.0,6866185.0,N/A,NA19909,SAMN41021607,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18349.0,20277.0,22620.0,SRR29396849,N/A,N/A,N/A,N/A,N/A,SAMN41021607,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230728_194836_s2.hifi_reads.bc2029.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19909_lib1_m84081_230728_194836_s2_m84081_230728_194836_s2,single,size fractionation,GENOMIC,WGS,59827.0,20203.0,81.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_230728_194836_s2.hifi_reads.bc2029.bam,PACBIO_SMRT,Revio P1,17957.0,19803.0,22006.0,N/A,N/A,N/A,NA19909,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,97.32,97319859213.0,4817014.0,N/A,NA19909,SAMN41021607,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18269.0,20173.0,22480.0,SRR29396848,N/A,N/A,N/A,N/A,N/A,SAMN41021607,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230728_201942_s3.hifi_reads.bc2029.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19909_lib1_m84081_230728_201942_s3_m84081_230728_201942_s3,single,size fractionation,GENOMIC,WGS,69516.0,20097.0,186.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_230728_201942_s3.hifi_reads.bc2029.bam,PACBIO_SMRT,Revio P1,17882.0,19709.0,21881.0,N/A,N/A,N/A,NA19909,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,99.46,99459938408.0,4948799.0,N/A,NA19909,SAMN41021607,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16382.0,18616.0,21670.0,SRR29396846,N/A,N/A,N/A,N/A,N/A,SAMN41021607,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_231207_200206_s1.hifi_reads.bc2008.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA19909_lib1_m84081_231207_200206_s1_m84081_231207_200206_s1,single,size fractionation,GENOMIC,WGS,64325.0,18557.0,194.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19909/raw_data/PacBio_HiFi/m84081_231207_200206_s1.hifi_reads.bc2008.bam,PACBIO_SMRT,Revio P1,15890.0,17884.0,20653.0,N/A,N/A,N/A,NA19909,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,117.98,117981479384.0,6357730.0,N/A,NA19909,SAMN41021607,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18437.0,20033.0,22430.0,SRR29396845,N/A,N/A,N/A,N/A,N/A,SAMN41021608,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230516_191559_s1.hifi_reads.bc2004.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA20282_lib1_m84081_230516_191559_s1_m84081_230516_191559_s1,single,size fractionation,GENOMIC,WGS,59671.0,20325.0,80.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20282/raw_data/PacBio_HiFi/m84081_230516_191559_s1.hifi_reads.bc2004.bam,PACBIO_SMRT,Revio P1,18184.0,19636.0,21758.0,N/A,N/A,N/A,NA20282,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,110.93,110933334360.0,5457889.0,N/A,NA20282,SAMN41021608,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18405.0,19965.0,22284.0,SRR29396844,N/A,N/A,N/A,N/A,N/A,SAMN41021608,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230519_180923_s3.hifi_reads.bc2004.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA20282_lib1_m84081_230519_180923_s3_m84081_230519_180923_s3,single,size fractionation,GENOMIC,WGS,63641.0,20251.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20282/raw_data/PacBio_HiFi/m84081_230519_180923_s3.hifi_reads.bc2004.bam,PACBIO_SMRT,Revio P1,18160.0,19586.0,21648.0,N/A,N/A,N/A,NA20282,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,105.47,105471260068.0,5208064.0,N/A,NA20282,SAMN41021608,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17149.0,19520.0,21918.0,SRR29396843,N/A,N/A,N/A,N/A,N/A,SAMN41021609,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230523_184006_s2.hifi_reads.bc2006.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA20346_lib1_m84081_230523_184006_s2_m84081_230523_184006_s2,single,size fractionation,GENOMIC,WGS,49406.0,18873.0,98.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20346/raw_data/PacBio_HiFi/m84081_230523_184006_s2.hifi_reads.bc2006.bam,PACBIO_SMRT,Revio P1,16365.0,18835.0,21147.0,N/A,N/A,N/A,NA20346,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,87.48,87476288770.0,4634901.0,N/A,NA20346,SAMN41021609,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17649.0,19871.0,22305.0,SRR29396842,N/A,N/A,N/A,N/A,N/A,SAMN41021609,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230525_180017_s4.hifi_reads.bc2006.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA20346_lib1_m84081_230525_180017_s4_m84081_230525_180017_s4,single,size fractionation,GENOMIC,WGS,57217.0,19342.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20346/raw_data/PacBio_HiFi/m84081_230525_180017_s4.hifi_reads.bc2006.bam,PACBIO_SMRT,Revio P1,16880.0,19243.0,21521.0,N/A,N/A,N/A,NA20346,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,98.95,98945478632.0,5115540.0,N/A,NA20346,SAMN41021609,,ASW,AFR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17402.0,18694.0,20298.0,SRR29396841,N/A,N/A,N/A,N/A,N/A,SAMN41021671,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230715_203436_s1.hifi_reads.bc2022.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA20809_lib1_m84081_230715_203436_s1_m84081_230715_203436_s1,single,size fractionation,GENOMIC,WGS,52070.0,18703.0,95.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20809/raw_data/PacBio_HiFi/m84081_230715_203436_s1.hifi_reads.bc2022.bam,PACBIO_SMRT,Revio P1,17209.0,18451.0,19993.0,N/A,N/A,N/A,NA20809,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,87.08,87078143934.0,4655640.0,N/A,NA20809,SAMN41021671,,TSI,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17345.0,18621.0,20208.0,SRR29396840,N/A,N/A,N/A,N/A,N/A,SAMN41021671,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230715_210542_s2.hifi_reads.bc2022.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA20809_lib1_m84081_230715_210542_s2_m84081_230715_210542_s2,single,size fractionation,GENOMIC,WGS,60584.0,18628.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20809/raw_data/PacBio_HiFi/m84081_230715_210542_s2.hifi_reads.bc2022.bam,PACBIO_SMRT,Revio P1,17154.0,18382.0,19906.0,N/A,N/A,N/A,NA20809,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,85.38,85378958115.0,4583245.0,N/A,NA20809,SAMN41021671,,TSI,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17351.0,18625.0,20198.0,SRR29396839,N/A,N/A,N/A,N/A,N/A,SAMN41021671,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230728_191731_s1.hifi_reads.bc2022.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA20809_lib1_m84081_230728_191731_s1_m84081_230728_191731_s1,single,size fractionation,GENOMIC,WGS,46117.0,18628.0,260.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20809/raw_data/PacBio_HiFi/m84081_230728_191731_s1.hifi_reads.bc2022.bam,PACBIO_SMRT,Revio P1,17161.0,18388.0,19904.0,N/A,N/A,N/A,NA20809,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,10.97,10969903547.0,588891.0,N/A,NA20809,SAMN41021671,,TSI,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17040.0,18491.0,20674.0,SRR29396838,N/A,N/A,N/A,N/A,N/A,SAMN41021670,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230727_200855_s3.hifi_reads.bc2028.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA20818_lib1_m84081_230727_200855_s3_m84081_230727_200855_s3,single,size fractionation,GENOMIC,WGS,64756.0,18870.0,102.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20818/raw_data/PacBio_HiFi/m84081_230727_200855_s3.hifi_reads.bc2028.bam,PACBIO_SMRT,Revio P1,16809.0,18127.0,20004.0,N/A,N/A,N/A,NA20818,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,114.66,114656228354.0,6076049.0,N/A,NA20818,SAMN41021670,,TSI,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16986.0,18401.0,20499.0,SRR29396837,N/A,N/A,N/A,N/A,N/A,SAMN41021670,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230727_204001_s4.hifi_reads.bc2028.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA20818_lib1_m84081_230727_204001_s4_m84081_230727_204001_s4,single,size fractionation,GENOMIC,WGS,61009.0,18756.0,142.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20818/raw_data/PacBio_HiFi/m84081_230727_204001_s4.hifi_reads.bc2028.bam,PACBIO_SMRT,Revio P1,16763.0,18053.0,19875.0,N/A,N/A,N/A,NA20818,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,109.29,109290854662.0,5826771.0,N/A,NA20818,SAMN41021670,,TSI,EUR,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17189.0,19137.0,21757.0,SRR29396835,N/A,N/A,N/A,N/A,N/A,SAMN37797095,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230508_193526_s1.hifi_reads.bc2002.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA20858_lib1_m84081_230508_193526_s1_m84081_230508_193526_s1,single,size fractionation,GENOMIC,WGS,64082.0,19195.0,78.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20858/raw_data/PacBio_HiFi/m84081_230508_193526_s1.hifi_reads.bc2002.bam,PACBIO_SMRT,Revio P1,16558.0,18539.0,20779.0,N/A,N/A,N/A,NA20858,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,103.68,103680551157.0,5401183.0,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17530.0,19535.0,22627.0,SRR29396834,N/A,N/A,N/A,N/A,N/A,SAMN37797095,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230511_180835_s3.hifi_reads.bc2002.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA20858_lib1_m84081_230511_180835_s3_m84081_230511_180835_s3,single,size fractionation,GENOMIC,WGS,63295.0,19757.0,161.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20858/raw_data/PacBio_HiFi/m84081_230511_180835_s3.hifi_reads.bc2002.bam,PACBIO_SMRT,Revio P1,16967.0,18868.0,21313.0,N/A,N/A,N/A,NA20858,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,84.88,84879874354.0,4296083.0,N/A,NA20858,SAMN37797095,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16045.0,18323.0,21128.0,SRR29396833,N/A,N/A,N/A,N/A,N/A,SAMN41021672,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230715_213648_s3.hifi_reads.bc2023.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA21102_lib1_m84081_230715_213648_s3_m84081_230715_213648_s3,single,size fractionation,GENOMIC,WGS,56564.0,18240.0,101.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21102/raw_data/PacBio_HiFi/m84081_230715_213648_s3.hifi_reads.bc2023.bam,PACBIO_SMRT,Revio P1,15620.0,17597.0,20316.0,N/A,N/A,N/A,NA21102,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,88.57,88572942257.0,4855740.0,N/A,NA21102,SAMN41021672,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,16117.0,18440.0,21256.0,SRR29396832,N/A,N/A,N/A,N/A,N/A,SAMN41021672,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230715_220754_s4.hifi_reads.bc2023.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA21102_lib1_m84081_230715_220754_s4_m84081_230715_220754_s4,single,size fractionation,GENOMIC,WGS,59189.0,18335.0,64.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21102/raw_data/PacBio_HiFi/m84081_230715_220754_s4.hifi_reads.bc2023.bam,PACBIO_SMRT,Revio P1,15677.0,17696.0,20435.0,N/A,N/A,N/A,NA21102,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,90.09,90093303392.0,4913513.0,N/A,NA21102,SAMN41021672,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,18436.0,20256.0,22462.0,SRR29396831,N/A,N/A,N/A,N/A,N/A,SAMN41021672,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230728_191731_s1.hifi_reads.bc2023.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA21102_lib1_m84081_230728_191731_s1_m84081_230728_191731_s1,single,size fractionation,GENOMIC,WGS,55992.0,20178.0,134.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21102/raw_data/PacBio_HiFi/m84081_230728_191731_s1.hifi_reads.bc2023.bam,PACBIO_SMRT,Revio P1,18071.0,19828.0,21900.0,N/A,N/A,N/A,NA21102,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,14.41,14411372514.0,714199.0,N/A,NA21102,SAMN41021672,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17113.0,18560.0,20532.0,SRR29396830,N/A,N/A,N/A,N/A,N/A,SAMN41021649,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230629_184915_s1.hifi_reads.bc2018.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA21144_lib1_m84081_230629_184915_s1_m84081_230629_184915_s1,single,size fractionation,GENOMIC,WGS,61642.0,18834.0,145.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21144/raw_data/PacBio_HiFi/m84081_230629_184915_s1.hifi_reads.bc2018.bam,PACBIO_SMRT,Revio P1,16863.0,18213.0,19981.0,N/A,N/A,N/A,NA21144,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,111.84,111840959974.0,5937951.0,N/A,NA21144,SAMN41021649,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,17173.0,18658.0,20720.0,SRR29396878,N/A,N/A,N/A,N/A,N/A,SAMN41021649,7.0.0,N/A,unaligned reads,sequencing of 20 kb fractionated,m84081_230629_192021_s2.hifi_reads.bc2018.bam,N/A,tgraves@wustl.edu,Washington University ,Revio,NA21144_lib1_m84081_230629_192021_s2_m84081_230629_192021_s2,single,size fractionation,GENOMIC,WGS,71081.0,18977.0,83.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA21144/raw_data/PacBio_HiFi/m84081_230629_192021_s2.hifi_reads.bc2018.bam,PACBIO_SMRT,Revio P1,16915.0,18291.0,20114.0,N/A,N/A,N/A,NA21144,N/A,Revio C1,Megaruptor 1,SageELF,SRP305758,N/A,128.16,128161101481.0,6753492.0,N/A,NA21144,SAMN41021649,,GIH,SAS,YR4 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,13634.0,16478.0,19969.0,SRR30151653,N/A,N/A,N/A,N/A,N/A,SAMN37706905,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210731_145204.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00706_PB1_m64055e_210731_145204,single,size fractionation,GENOMIC,WGS,63996.0,15917.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210731_145204.5mc.hifi_reads.bam,PACBIO_SMRT,c2,12677.0,15246.0,18454.0,N/A,N/A,N/A,HG00706,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,27.58,27575841441.0,1732468.0,N/A,HG00706,SAMN37706905,SH090,CHS,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14329.0,16983.0,20349.0,SRR30151652,N/A,N/A,N/A,N/A,N/A,SAMN37706905,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210812_050522.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00706_PB1_m64055e_210812_050522,single,size fractionation,GENOMIC,WGS,56270.0,16525.0,49.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210812_050522.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13486.0,15904.0,18972.0,N/A,N/A,N/A,HG00706,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,24.19,24186668138.0,1463583.0,N/A,HG00706,SAMN37706905,SH090,CHS,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14373.0,17069.0,20494.0,SRR30151641,N/A,N/A,N/A,N/A,N/A,SAMN37706905,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210813_141904.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00706_PB1_m64055e_210813_141904,single,size fractionation,GENOMIC,WGS,69934.0,16601.0,54.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210813_141904.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13513.0,15967.0,19082.0,N/A,N/A,N/A,HG00706,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,29.46,29455811991.0,1774263.0,N/A,HG00706,SAMN37706905,SH090,CHS,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14563.0,17300.0,20758.0,SRR30151636,N/A,N/A,N/A,N/A,N/A,SAMN37706905,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210814_234047.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00706_PB1_m64055e_210814_234047,single,size fractionation,GENOMIC,WGS,59621.0,16824.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210814_234047.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13694.0,16182.0,19336.0,N/A,N/A,N/A,HG00706,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,29.56,29562459419.0,1757155.0,N/A,HG00706,SAMN37706905,SH090,CHS,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,15138.0,18066.0,21647.0,SRR30151635,N/A,N/A,N/A,N/A,N/A,SAMN37706906,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210801_045414.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02668_PB1_m54306Ue_210801_045414,single,size fractionation,GENOMIC,WGS,57148.0,17510.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m54306Ue_210801_045414.5mc.hifi_reads.bam,PACBIO_SMRT,c2,14207.0,16874.0,20215.0,N/A,N/A,N/A,HG02668,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.57,26571933038.0,1517517.0,N/A,HG02668,SAMN37706906,GB40,GWD,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14047.0,16832.0,20429.0,SRR30151634,N/A,N/A,N/A,N/A,N/A,SAMN37706906,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210802_164702.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02668_PB1_m54306Ue_210802_164702,single,size fractionation,GENOMIC,WGS,61042.0,16391.0,64.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m54306Ue_210802_164702.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13178.0,15654.0,18901.0,N/A,N/A,N/A,HG02668,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,27.02,27022607363.0,1648600.0,N/A,HG02668,SAMN37706906,GB40,GWD,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14180.0,16991.0,20616.0,SRR30151633,N/A,N/A,N/A,N/A,N/A,SAMN37706906,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210804_021745.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02668_PB1_m54306Ue_210804_021745,single,size fractionation,GENOMIC,WGS,61259.0,16535.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m54306Ue_210804_021745.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13297.0,15799.0,19074.0,N/A,N/A,N/A,HG02668,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,19.18,19183912203.0,1160173.0,N/A,HG02668,SAMN37706906,GB40,GWD,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14002.0,16689.0,20198.0,SRR30151632,N/A,N/A,N/A,N/A,N/A,SAMN37706906,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210810_194150.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02668_PB1_m64055e_210810_194150,single,size fractionation,GENOMIC,WGS,60518.0,16307.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m64055e_210810_194150.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13193.0,15570.0,18723.0,N/A,N/A,N/A,HG02668,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,31.51,31511359527.0,1932274.0,N/A,HG02668,SAMN37706906,GB40,GWD,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14779.0,17694.0,21423.0,SRR30151631,N/A,N/A,N/A,N/A,N/A,SAMN37706907,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210716_134443.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03804_PB1_m54306Ue_210716_134443,single,size fractionation,GENOMIC,WGS,52699.0,17277.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m54306Ue_210716_134443.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13889.0,16482.0,19841.0,N/A,N/A,N/A,HG03804,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,21.52,21523857623.0,1245794.0,N/A,HG03804,SAMN37706907,BD18,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14871.0,17950.0,21842.0,SRR30151630,N/A,N/A,N/A,N/A,N/A,SAMN37706907,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210709_184151.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03804_PB1_m64055e_210709_184151,single,size fractionation,GENOMIC,WGS,56669.0,17416.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m64055e_210709_184151.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13867.0,16626.0,20146.0,N/A,N/A,N/A,HG03804,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,33.21,33213912092.0,1906994.0,N/A,HG03804,SAMN37706907,BD18,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14721.0,17741.0,21559.0,SRR30151651,N/A,N/A,N/A,N/A,N/A,SAMN37706907,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210712_200125.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03804_PB1_m64055e_210712_200125,single,size fractionation,GENOMIC,WGS,63476.0,17229.0,51.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m64055e_210712_200125.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13744.0,16447.0,19903.0,N/A,N/A,N/A,HG03804,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,28.79,28792837074.0,1671138.0,N/A,HG03804,SAMN37706907,BD18,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14820.0,17802.0,21563.0,SRR30151650,N/A,N/A,N/A,N/A,N/A,SAMN37706907,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210714_052746.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03804_PB1_m64055e_210714_052746,single,size fractionation,GENOMIC,WGS,56031.0,17305.0,49.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m64055e_210714_052746.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13857.0,16546.0,19948.0,N/A,N/A,N/A,HG03804,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,28.21,28207159246.0,1629954.0,N/A,HG03804,SAMN37706907,BD18,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,13886.0,16911.0,20654.0,SRR30151649,N/A,N/A,N/A,N/A,N/A,SAMN37706908,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210723_183738.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03816_PB3_m54306Ue_210723_183738,single,size fractionation,GENOMIC,WGS,54660.0,16321.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m54306Ue_210723_183738.5mc.hifi_reads.bam,PACBIO_SMRT,c2,12872.0,15561.0,18986.0,N/A,N/A,N/A,HG03816,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,24.45,24450898193.0,1498091.0,N/A,HG03816,SAMN37706908,BD22,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14079.0,17160.0,20956.0,SRR30151648,N/A,N/A,N/A,N/A,N/A,SAMN37706908,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210726_155147.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03816_PB3_m64055e_210726_155147,single,size fractionation,GENOMIC,WGS,55188.0,16543.0,49.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m64055e_210726_155147.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13043.0,15783.0,19263.0,N/A,N/A,N/A,HG03816,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.33,26328421546.0,1591506.0,N/A,HG03816,SAMN37706908,BD22,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14718.0,17827.0,21629.0,SRR30151647,N/A,N/A,N/A,N/A,N/A,SAMN37706908,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210728_024601.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03816_PB3_m64055e_210728_024601,single,size fractionation,GENOMIC,WGS,52349.0,17178.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m64055e_210728_024601.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13645.0,16473.0,19986.0,N/A,N/A,N/A,HG03816,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,28.04,28037716098.0,1632098.0,N/A,HG03816,SAMN37706908,BD22,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14322.0,17420.0,21236.0,SRR30151646,N/A,N/A,N/A,N/A,N/A,SAMN37706908,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210729_122949.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03816_PB3_m64055e_210729_122949,single,size fractionation,GENOMIC,WGS,57010.0,16787.0,52.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m64055e_210729_122949.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13264.0,16051.0,19547.0,N/A,N/A,N/A,HG03816,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.61,26609986781.0,1585079.0,N/A,HG03816,SAMN37706908,BD22,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14238.0,17292.0,21051.0,SRR30151645,N/A,N/A,N/A,N/A,N/A,SAMN37706909,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210725_040349.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04157_PB3_m54306Ue_210725_040349,single,size fractionation,GENOMIC,WGS,54115.0,16688.0,75.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210725_040349.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13219.0,15942.0,19398.0,N/A,N/A,N/A,HG04157,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,27.15,27148740947.0,1626778.0,N/A,HG04157,SAMN37706909,BD52,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14290.0,17339.0,21092.0,SRR30151644,N/A,N/A,N/A,N/A,N/A,SAMN37706909,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210727_144948.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04157_PB3_m54306Ue_210727_144948,single,size fractionation,GENOMIC,WGS,62026.0,16741.0,55.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210727_144948.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13280.0,15994.0,19456.0,N/A,N/A,N/A,HG04157,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,27.66,27655706749.0,1651932.0,N/A,HG04157,SAMN37706909,BD52,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14137.0,17191.0,20961.0,SRR30151643,N/A,N/A,N/A,N/A,N/A,SAMN37706909,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210729_003128.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04157_PB3_m54306Ue_210729_003128,single,size fractionation,GENOMIC,WGS,53734.0,16595.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210729_003128.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13121.0,15831.0,19295.0,N/A,N/A,N/A,HG04157,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,25.99,25986857190.0,1565878.0,N/A,HG04157,SAMN37706909,BD52,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,13675.0,16708.0,20522.0,SRR30151642,N/A,N/A,N/A,N/A,N/A,SAMN37706909,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210730_180007.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04157_PB3_m54306Ue_210730_180007,single,size fractionation,GENOMIC,WGS,55237.0,16134.0,50.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210730_180007.5mc.hifi_reads.bam,PACBIO_SMRT,c2,12673.0,15325.0,18788.0,N/A,N/A,N/A,HG04157,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.91,26908338226.0,1667725.0,N/A,HG04157,SAMN37706909,BD52,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,14021.0,16378.0,19452.0,SRR30151640,N/A,N/A,N/A,N/A,N/A,SAMN37706910,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210713_140744.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04160_PB1_m54306Ue_210713_140744,single,size fractionation,GENOMIC,WGS,53687.0,16108.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m54306Ue_210713_140744.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13392.0,15498.0,18313.0,N/A,N/A,N/A,HG04160,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.72,26720127719.0,1658709.0,N/A,HG04160,SAMN37706910,BD53,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,13549.0,15822.0,18840.0,SRR30151639,N/A,N/A,N/A,N/A,N/A,SAMN37706910,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210715_000620.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04160_PB1_m54306Ue_210715_000620,single,size fractionation,GENOMIC,WGS,48768.0,15596.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m54306Ue_210715_000620.5mc.hifi_reads.bam,PACBIO_SMRT,c2,12940.0,14970.0,17686.0,N/A,N/A,N/A,HG04160,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,22.93,22925478214.0,1469884.0,N/A,HG04160,SAMN37706910,BD53,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,13674.0,16006.0,19133.0,SRR30151638,N/A,N/A,N/A,N/A,N/A,SAMN37706910,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210711_053617.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04160_PB1_m64055e_210711_053617,single,size fractionation,GENOMIC,WGS,51475.0,15770.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m64055e_210711_053617.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13047.0,15116.0,17931.0,N/A,N/A,N/A,HG04160,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.42,26423796459.0,1675553.0,N/A,HG04160,SAMN37706910,BD53,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,False,11697.0,14386.0,17653.0,SRR30151637,N/A,N/A,N/A,N/A,N/A,SAMN37706910,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210715_181933.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04160_PB1_m64055e_210715_181933,single,size fractionation,GENOMIC,WGS,57540.0,13806.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m64055e_210715_181933.5mc.hifi_reads.bam,PACBIO_SMRT,c2,10733.0,13163.0,16156.0,N/A,N/A,N/A,HG04160,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,21.54,21543489843.0,1560360.0,N/A,HG04160,SAMN37706910,BD53,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,13634.0,16478.0,19969.0,SRR30151653,N/A,N/A,N/A,N/A,N/A,SAMN37706905,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210731_145204.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00706_PB1_m64055e_210731_145204,single,size fractionation,GENOMIC,WGS,63996.0,15917.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210731_145204.5mc.hifi_reads.bam,PACBIO_SMRT,c2,12677.0,15246.0,18454.0,N/A,N/A,N/A,HG00706,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,27.58,27575841441.0,1732468.0,N/A,HG00706,SAMN37706905,SH090,CHS,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14329.0,16983.0,20349.0,SRR30151652,N/A,N/A,N/A,N/A,N/A,SAMN37706905,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210812_050522.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00706_PB1_m64055e_210812_050522,single,size fractionation,GENOMIC,WGS,56270.0,16525.0,49.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210812_050522.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13486.0,15904.0,18972.0,N/A,N/A,N/A,HG00706,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,24.19,24186668138.0,1463583.0,N/A,HG00706,SAMN37706905,SH090,CHS,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14373.0,17069.0,20494.0,SRR30151641,N/A,N/A,N/A,N/A,N/A,SAMN37706905,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210813_141904.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00706_PB1_m64055e_210813_141904,single,size fractionation,GENOMIC,WGS,69934.0,16601.0,54.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210813_141904.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13513.0,15967.0,19082.0,N/A,N/A,N/A,HG00706,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,29.46,29455811991.0,1774263.0,N/A,HG00706,SAMN37706905,SH090,CHS,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14563.0,17300.0,20758.0,SRR30151636,N/A,N/A,N/A,N/A,N/A,SAMN37706905,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210814_234047.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00706_PB1_m64055e_210814_234047,single,size fractionation,GENOMIC,WGS,59621.0,16824.0,48.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00706/raw_data/PacBio_HiFi/primrose/m64055e_210814_234047.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13694.0,16182.0,19336.0,N/A,N/A,N/A,HG00706,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,29.56,29562459419.0,1757155.0,N/A,HG00706,SAMN37706905,SH090,CHS,EAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15138.0,18066.0,21647.0,SRR30151635,N/A,N/A,N/A,N/A,N/A,SAMN37706906,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210801_045414.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02668_PB1_m54306Ue_210801_045414,single,size fractionation,GENOMIC,WGS,57148.0,17510.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m54306Ue_210801_045414.5mc.hifi_reads.bam,PACBIO_SMRT,c2,14207.0,16874.0,20215.0,N/A,N/A,N/A,HG02668,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.57,26571933038.0,1517517.0,N/A,HG02668,SAMN37706906,GB40,GWD,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14047.0,16832.0,20429.0,SRR30151634,N/A,N/A,N/A,N/A,N/A,SAMN37706906,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210802_164702.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02668_PB1_m54306Ue_210802_164702,single,size fractionation,GENOMIC,WGS,61042.0,16391.0,64.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m54306Ue_210802_164702.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13178.0,15654.0,18901.0,N/A,N/A,N/A,HG02668,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,27.02,27022607363.0,1648600.0,N/A,HG02668,SAMN37706906,GB40,GWD,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14180.0,16991.0,20616.0,SRR30151633,N/A,N/A,N/A,N/A,N/A,SAMN37706906,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210804_021745.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02668_PB1_m54306Ue_210804_021745,single,size fractionation,GENOMIC,WGS,61259.0,16535.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m54306Ue_210804_021745.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13297.0,15799.0,19074.0,N/A,N/A,N/A,HG02668,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,19.18,19183912203.0,1160173.0,N/A,HG02668,SAMN37706906,GB40,GWD,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14002.0,16689.0,20198.0,SRR30151632,N/A,N/A,N/A,N/A,N/A,SAMN37706906,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210810_194150.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02668_PB1_m64055e_210810_194150,single,size fractionation,GENOMIC,WGS,60518.0,16307.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02668/raw_data/PacBio_HiFi/primrose/m64055e_210810_194150.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13193.0,15570.0,18723.0,N/A,N/A,N/A,HG02668,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,31.51,31511359527.0,1932274.0,N/A,HG02668,SAMN37706906,GB40,GWD,AFR,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14779.0,17694.0,21423.0,SRR30151631,N/A,N/A,N/A,N/A,N/A,SAMN37706907,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210716_134443.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03804_PB1_m54306Ue_210716_134443,single,size fractionation,GENOMIC,WGS,52699.0,17277.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m54306Ue_210716_134443.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13889.0,16482.0,19841.0,N/A,N/A,N/A,HG03804,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,21.52,21523857623.0,1245794.0,N/A,HG03804,SAMN37706907,BD18,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14871.0,17950.0,21842.0,SRR30151630,N/A,N/A,N/A,N/A,N/A,SAMN37706907,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210709_184151.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03804_PB1_m64055e_210709_184151,single,size fractionation,GENOMIC,WGS,56669.0,17416.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m64055e_210709_184151.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13867.0,16626.0,20146.0,N/A,N/A,N/A,HG03804,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,33.21,33213912092.0,1906994.0,N/A,HG03804,SAMN37706907,BD18,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14721.0,17741.0,21559.0,SRR30151651,N/A,N/A,N/A,N/A,N/A,SAMN37706907,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210712_200125.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03804_PB1_m64055e_210712_200125,single,size fractionation,GENOMIC,WGS,63476.0,17229.0,51.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m64055e_210712_200125.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13744.0,16447.0,19903.0,N/A,N/A,N/A,HG03804,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,28.79,28792837074.0,1671138.0,N/A,HG03804,SAMN37706907,BD18,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14820.0,17802.0,21563.0,SRR30151650,N/A,N/A,N/A,N/A,N/A,SAMN37706907,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210714_052746.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03804_PB1_m64055e_210714_052746,single,size fractionation,GENOMIC,WGS,56031.0,17305.0,49.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03804/raw_data/PacBio_HiFi/primrose/m64055e_210714_052746.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13857.0,16546.0,19948.0,N/A,N/A,N/A,HG03804,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,28.21,28207159246.0,1629954.0,N/A,HG03804,SAMN37706907,BD18,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,13886.0,16911.0,20654.0,SRR30151649,N/A,N/A,N/A,N/A,N/A,SAMN37706908,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210723_183738.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03816_PB3_m54306Ue_210723_183738,single,size fractionation,GENOMIC,WGS,54660.0,16321.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m54306Ue_210723_183738.5mc.hifi_reads.bam,PACBIO_SMRT,c2,12872.0,15561.0,18986.0,N/A,N/A,N/A,HG03816,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,24.45,24450898193.0,1498091.0,N/A,HG03816,SAMN37706908,BD22,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14079.0,17160.0,20956.0,SRR30151648,N/A,N/A,N/A,N/A,N/A,SAMN37706908,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210726_155147.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03816_PB3_m64055e_210726_155147,single,size fractionation,GENOMIC,WGS,55188.0,16543.0,49.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m64055e_210726_155147.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13043.0,15783.0,19263.0,N/A,N/A,N/A,HG03816,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.33,26328421546.0,1591506.0,N/A,HG03816,SAMN37706908,BD22,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14718.0,17827.0,21629.0,SRR30151647,N/A,N/A,N/A,N/A,N/A,SAMN37706908,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210728_024601.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03816_PB3_m64055e_210728_024601,single,size fractionation,GENOMIC,WGS,52349.0,17178.0,85.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m64055e_210728_024601.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13645.0,16473.0,19986.0,N/A,N/A,N/A,HG03816,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,28.04,28037716098.0,1632098.0,N/A,HG03816,SAMN37706908,BD22,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14322.0,17420.0,21236.0,SRR30151646,N/A,N/A,N/A,N/A,N/A,SAMN37706908,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210729_122949.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03816_PB3_m64055e_210729_122949,single,size fractionation,GENOMIC,WGS,57010.0,16787.0,52.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03816/raw_data/PacBio_HiFi/primrose/m64055e_210729_122949.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13264.0,16051.0,19547.0,N/A,N/A,N/A,HG03816,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.61,26609986781.0,1585079.0,N/A,HG03816,SAMN37706908,BD22,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14238.0,17292.0,21051.0,SRR30151645,N/A,N/A,N/A,N/A,N/A,SAMN37706909,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210725_040349.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04157_PB3_m54306Ue_210725_040349,single,size fractionation,GENOMIC,WGS,54115.0,16688.0,75.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210725_040349.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13219.0,15942.0,19398.0,N/A,N/A,N/A,HG04157,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,27.15,27148740947.0,1626778.0,N/A,HG04157,SAMN37706909,BD52,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14290.0,17339.0,21092.0,SRR30151644,N/A,N/A,N/A,N/A,N/A,SAMN37706909,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210727_144948.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04157_PB3_m54306Ue_210727_144948,single,size fractionation,GENOMIC,WGS,62026.0,16741.0,55.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210727_144948.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13280.0,15994.0,19456.0,N/A,N/A,N/A,HG04157,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,27.66,27655706749.0,1651932.0,N/A,HG04157,SAMN37706909,BD52,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14137.0,17191.0,20961.0,SRR30151643,N/A,N/A,N/A,N/A,N/A,SAMN37706909,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210729_003128.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04157_PB3_m54306Ue_210729_003128,single,size fractionation,GENOMIC,WGS,53734.0,16595.0,47.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210729_003128.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13121.0,15831.0,19295.0,N/A,N/A,N/A,HG04157,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,25.99,25986857190.0,1565878.0,N/A,HG04157,SAMN37706909,BD52,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,13675.0,16708.0,20522.0,SRR30151642,N/A,N/A,N/A,N/A,N/A,SAMN37706909,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210730_180007.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04157_PB3_m54306Ue_210730_180007,single,size fractionation,GENOMIC,WGS,55237.0,16134.0,50.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04157/raw_data/PacBio_HiFi/primrose/m54306Ue_210730_180007.5mc.hifi_reads.bam,PACBIO_SMRT,c2,12673.0,15325.0,18788.0,N/A,N/A,N/A,HG04157,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.91,26908338226.0,1667725.0,N/A,HG04157,SAMN37706909,BD52,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14021.0,16378.0,19452.0,SRR30151640,N/A,N/A,N/A,N/A,N/A,SAMN37706910,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210713_140744.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04160_PB1_m54306Ue_210713_140744,single,size fractionation,GENOMIC,WGS,53687.0,16108.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m54306Ue_210713_140744.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13392.0,15498.0,18313.0,N/A,N/A,N/A,HG04160,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.72,26720127719.0,1658709.0,N/A,HG04160,SAMN37706910,BD53,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,13549.0,15822.0,18840.0,SRR30151639,N/A,N/A,N/A,N/A,N/A,SAMN37706910,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_210715_000620.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04160_PB1_m54306Ue_210715_000620,single,size fractionation,GENOMIC,WGS,48768.0,15596.0,86.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m54306Ue_210715_000620.5mc.hifi_reads.bam,PACBIO_SMRT,c2,12940.0,14970.0,17686.0,N/A,N/A,N/A,HG04160,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,22.93,22925478214.0,1469884.0,N/A,HG04160,SAMN37706910,BD53,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,13674.0,16006.0,19133.0,SRR30151638,N/A,N/A,N/A,N/A,N/A,SAMN37706910,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210711_053617.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04160_PB1_m64055e_210711_053617,single,size fractionation,GENOMIC,WGS,51475.0,15770.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m64055e_210711_053617.5mc.hifi_reads.bam,PACBIO_SMRT,c2,13047.0,15116.0,17931.0,N/A,N/A,N/A,HG04160,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.42,26423796459.0,1675553.0,N/A,HG04160,SAMN37706910,BD53,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,11697.0,14386.0,17653.0,SRR30151637,N/A,N/A,N/A,N/A,N/A,SAMN37706910,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_210715_181933.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG04160_PB1_m64055e_210715_181933,single,size fractionation,GENOMIC,WGS,57540.0,13806.0,84.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG04160/raw_data/PacBio_HiFi/primrose/m64055e_210715_181933.5mc.hifi_reads.bam,PACBIO_SMRT,c2,10733.0,13163.0,16156.0,N/A,N/A,N/A,HG04160,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,21.54,21543489843.0,1560360.0,N/A,HG04160,SAMN37706910,BD53,BEB,SAS,YR2 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,19061.0,24162.0,30456.0,SRR30152007,N/A,N/A,N/A,N/A,N/A,SAMN37797091,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220722_175158.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19338_PB1_m54306Ue_220722_175158_m54306Ue_220722_175158,single,size fractionation,GENOMIC,WGS,51516.0,22936.0,171.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/primrose/m54306Ue_220722_175158.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17156.0,21545.0,27252.0,N/A,N/A,N/A,NA19338,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,40.5,40497124857.0,1765604.0,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,20016.0,25364.0,31771.0,SRR30152006,N/A,N/A,N/A,N/A,N/A,SAMN37797091,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220729_170145.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19338_PB1_m64055e_220729_170145_m64055e_220729_170145,single,size fractionation,GENOMIC,WGS,51207.0,23947.0,95.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/primrose/m64055e_220729_170145.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17944.0,22646.0,28584.0,N/A,N/A,N/A,NA19338,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,35.09,35086441089.0,1465150.0,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,19950.0,25286.0,31645.0,SRR30151951,N/A,N/A,N/A,N/A,N/A,SAMN37797091,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220731_124800.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19338_PB1_m64055e_220731_124800_m64055e_220731_124800,single,size fractionation,GENOMIC,WGS,51719.0,23871.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/primrose/m64055e_220731_124800.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17881.0,22577.0,28487.0,N/A,N/A,N/A,NA19338,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,39.14,39136064597.0,1639435.0,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,21080.0,25992.0,32361.0,SRR30151940,N/A,N/A,N/A,N/A,N/A,SAMN37797093,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220817_094430.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19468_PB1_m64055e_220817_094430_m64055e_220817_094430,single,size fractionation,GENOMIC,WGS,51454.0,25173.0,133.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/primrose/m64055e_220817_094430.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19572.0,23685.0,29407.0,N/A,N/A,N/A,NA19468,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,34.92,34921826370.0,1387230.0,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,21765.0,26889.0,33307.0,SRR30151986,N/A,N/A,N/A,N/A,N/A,SAMN37797093,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220819_064153.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19468_PB1_m64055e_220819_064153_m64055e_220819_064153,single,size fractionation,GENOMIC,WGS,51141.0,25904.0,159.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/primrose/m64055e_220819_064153.5mc.hifi_reads.bam,PACBIO_SMRT,P2,20122.0,24501.0,30376.0,N/A,N/A,N/A,NA19468,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,36.81,36811399723.0,1421052.0,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,20631.0,25357.0,31718.0,SRR30151997,N/A,N/A,N/A,N/A,N/A,SAMN37797093,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220801_170711.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19468_PB1_m64330e_220801_170711_m64330e_220801_170711,single,size fractionation,GENOMIC,WGS,51468.0,24696.0,227.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/primrose/m64330e_220801_170711.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19225.0,23134.0,28711.0,N/A,N/A,N/A,NA19468,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,36.08,36078102199.0,1460854.0,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,20784.0,25526.0,31682.0,SRR30151934,N/A,N/A,N/A,N/A,N/A,SAMN37797093,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220927_182256.demultiplex.bc1008--bc1008.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19468_PB1_m54306Ue_220927_182256_m54306Ue_220927_182256,single,size fractionation,GENOMIC,WGS,51751.0,24769.0,127.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/primrose/m54306Ue_220927_182256.demultiplex.bc1008--bc1008.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19326.0,23325.0,28833.0,N/A,N/A,N/A,NA19468,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,16.69,16691743838.0,673872.0,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,18156.0,22267.0,27731.0,SRR30151923,N/A,N/A,N/A,N/A,N/A,SAMN37797092,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220815_144205.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19391_PB1_m54306Ue_220815_144205_m54306Ue_220815_144205,single,size fractionation,GENOMIC,WGS,51001.0,21768.0,201.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19391/raw_data/PacBio_HiFi/primrose/m54306Ue_220815_144205.5mc.hifi_reads.bam,PACBIO_SMRT,P2,16933.0,20359.0,25126.0,N/A,N/A,N/A,NA19391,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,39.42,39421303285.0,1810918.0,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,18006.0,22062.0,27437.0,SRR30151980,N/A,N/A,N/A,N/A,N/A,SAMN37797092,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220819_173115.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19391_PB1_m64330e_220819_173115_m64330e_220819_173115,single,size fractionation,GENOMIC,WGS,51241.0,21572.0,120.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19391/raw_data/PacBio_HiFi/primrose/m64330e_220819_173115.5mc.hifi_reads.bam,PACBIO_SMRT,P2,16812.0,20182.0,24910.0,N/A,N/A,N/A,NA19391,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,39.22,39223153519.0,1818202.0,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,18754.0,22985.0,28384.0,SRR30151969,N/A,N/A,N/A,N/A,N/A,SAMN37797092,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220819_174259.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19391_PB1_m64334e_220819_174259_m64334e_220819_174259,single,size fractionation,GENOMIC,WGS,51485.0,22350.0,117.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19391/raw_data/PacBio_HiFi/primrose/m64334e_220819_174259.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17435.0,21060.0,25897.0,N/A,N/A,N/A,NA19391,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,37.44,37436208846.0,1674963.0,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,21674.0,26831.0,33148.0,SRR30152005,N/A,N/A,N/A,N/A,N/A,SAMN37797110,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220817_100412.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03470_PB1_m54306Ue_220817_100412_m54306Ue_220817_100412,single,size fractionation,GENOMIC,WGS,51522.0,25686.0,96.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03470/raw_data/PacBio_HiFi/primrose/m54306Ue_220817_100412.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19883.0,24417.0,30230.0,N/A,N/A,N/A,HG03470,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,38.14,38139494892.0,1484828.0,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,21598.0,26821.0,33247.0,SRR30151960,N/A,N/A,N/A,N/A,N/A,SAMN37797110,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220819_070258.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03470_PB1_m54306Ue_220819_070258_m54306Ue_220819_070258,single,size fractionation,GENOMIC,WGS,51534.0,25644.0,104.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03470/raw_data/PacBio_HiFi/primrose/m54306Ue_220819_070258.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19763.0,24349.0,30243.0,N/A,N/A,N/A,HG03470,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,45.15,45154689797.0,1760828.0,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,21306.0,26421.0,32901.0,SRR30151959,N/A,N/A,N/A,N/A,N/A,SAMN37797110,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220803_140136.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03470_PB1_m64330e_220803_140136_m64330e_220803_140136,single,size fractionation,GENOMIC,WGS,51631.0,25375.0,101.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03470/raw_data/PacBio_HiFi/primrose/m64330e_220803_140136.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19567.0,23991.0,29824.0,N/A,N/A,N/A,HG03470,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,43.07,43068072066.0,1697249.0,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,20032.0,24079.0,29330.0,SRR30151958,N/A,N/A,N/A,N/A,N/A,SAMN37797100,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220920_175231.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01784_PB1_m64055e_220920_175231_m64055e_220920_175231,single,size fractionation,GENOMIC,WGS,51040.0,23614.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01784/raw_data/PacBio_HiFi/primrose/m64055e_220920_175231.5mc.hifi_reads.bam,PACBIO_SMRT,P2,18899.0,22354.0,27082.0,N/A,N/A,N/A,HG01784,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,38.31,38314696847.0,1622540.0,N/A,HG01784,SAMN37797100,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,20642.0,24889.0,30216.0,SRR30151957,N/A,N/A,N/A,N/A,N/A,SAMN37797100,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220922_130045.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01784_PB1_m64055e_220922_130045_m64055e_220922_130045,single,size fractionation,GENOMIC,WGS,50998.0,24281.0,133.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01784/raw_data/PacBio_HiFi/primrose/m64055e_220922_130045.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19395.0,23096.0,27956.0,N/A,N/A,N/A,HG01784,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,41.39,41388556948.0,1704532.0,N/A,HG01784,SAMN37797100,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,20091.0,24148.0,29428.0,SRR30151956,N/A,N/A,N/A,N/A,N/A,SAMN37797100,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220917_122517.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01784_PB1_m64330e_220917_122517_m64330e_220917_122517,single,size fractionation,GENOMIC,WGS,51590.0,23692.0,124.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01784/raw_data/PacBio_HiFi/primrose/m64330e_220917_122517.5mc.hifi_reads.bam,PACBIO_SMRT,P2,18958.0,22422.0,27156.0,N/A,N/A,N/A,HG01784,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,40.68,40678518461.0,1716965.0,N/A,HG01784,SAMN37797100,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,19953.0,23857.0,29002.0,SRR30151955,N/A,N/A,N/A,N/A,N/A,SAMN37797089,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220907_175549.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19159_PB1_m54306Ue_220907_175549_m54306Ue_220907_175549,single,size fractionation,GENOMIC,WGS,51147.0,23508.0,149.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19159/raw_data/PacBio_HiFi/primrose/m54306Ue_220907_175549.5mc.hifi_reads.bam,PACBIO_SMRT,P2,18929.0,22239.0,26862.0,N/A,N/A,N/A,NA19159,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,46.23,46232897055.0,1966632.0,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,19192.0,22692.0,27606.0,SRR30151954,N/A,N/A,N/A,N/A,N/A,SAMN37797089,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220902_175209.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19159_PB1_m64330e_220902_175209_m64330e_220902_175209,single,size fractionation,GENOMIC,WGS,50954.0,22576.0,280.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19159/raw_data/PacBio_HiFi/primrose/m64330e_220902_175209.5mc.hifi_reads.bam,PACBIO_SMRT,P2,18342.0,21256.0,25536.0,N/A,N/A,N/A,NA19159,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,46.1,46101493223.0,2042024.0,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,20178.0,24160.0,29330.0,SRR30151953,N/A,N/A,N/A,N/A,N/A,SAMN37797089,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220907_175418.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19159_PB1_m64334e_220907_175418_m64334e_220907_175418,single,size fractionation,GENOMIC,WGS,51316.0,23768.0,250.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19159/raw_data/PacBio_HiFi/primrose/m64334e_220907_175418.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19119.0,22514.0,27187.0,N/A,N/A,N/A,NA19159,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,46.8,46798237500.0,1968924.0,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,17699.0,20108.0,23537.0,SRR30151952,N/A,N/A,N/A,N/A,N/A,SAMN37797111,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220917_121508.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03742_PB1_m64055e_220917_121508_m64055e_220917_121508,single,size fractionation,GENOMIC,WGS,50482.0,20213.0,115.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03742/raw_data/PacBio_HiFi/primrose/m64055e_220917_121508.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17216.0,19303.0,22351.0,N/A,N/A,N/A,HG03742,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,45.06,45064274340.0,2229418.0,N/A,HG03742,SAMN37797111,,ITU,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,17708.0,20105.0,23518.0,SRR30151950,N/A,N/A,N/A,N/A,N/A,SAMN37797111,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220924_080740.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03742_PB1_m64055e_220924_080740_m64055e_220924_080740,single,size fractionation,GENOMIC,WGS,50753.0,20204.0,149.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03742/raw_data/PacBio_HiFi/primrose/m64055e_220924_080740.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17228.0,19313.0,22345.0,N/A,N/A,N/A,HG03742,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,41.7,41703134220.0,2064034.0,N/A,HG03742,SAMN37797111,,ITU,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,19374.0,23540.0,28841.0,SRR30151949,N/A,N/A,N/A,N/A,N/A,SAMN37797094,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220920_181216.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA20799_PB1_m54306Ue_220920_181216_m54306Ue_220920_181216,single,size fractionation,GENOMIC,WGS,50956.0,22964.0,158.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/primrose/m54306Ue_220920_181216.5mc.hifi_reads.bam,PACBIO_SMRT,P2,18152.0,21713.0,26511.0,N/A,N/A,N/A,NA20799,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,35.58,35581760637.0,1549427.0,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,19341.0,23513.0,28801.0,SRR30151948,N/A,N/A,N/A,N/A,N/A,SAMN37797094,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220922_132103.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA20799_PB1_m54306Ue_220922_132103_m54306Ue_220922_132103,single,size fractionation,GENOMIC,WGS,50995.0,22921.0,360.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/primrose/m54306Ue_220922_132103.5mc.hifi_reads.bam,PACBIO_SMRT,P2,18114.0,21678.0,26484.0,N/A,N/A,N/A,NA20799,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,33.58,33578377768.0,1464951.0,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,18704.0,22598.0,27683.0,SRR30151947,N/A,N/A,N/A,N/A,N/A,SAMN37797094,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220927_182256.demultiplex.bc1018--bc1018.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA20799_PB1_m54306Ue_220927_182256_m54306Ue_220927_182256,single,size fractionation,GENOMIC,WGS,51136.0,22156.0,774.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/primrose/m54306Ue_220927_182256.demultiplex.bc1018--bc1018.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17614.0,20895.0,25431.0,N/A,N/A,N/A,NA20799,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,17.95,17947625220.0,810053.0,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,16326.0,18388.0,21348.0,SRR30151945,N/A,N/A,N/A,N/A,N/A,SAMN37797099,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220915_170505.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01530_PB1_m64055e_220915_170505_m64055e_220915_170505,single,size fractionation,GENOMIC,WGS,50604.0,18528.0,282.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/primrose/m64055e_220915_170505.5mc.hifi_reads.bam,PACBIO_SMRT,P2,15897.0,17719.0,20321.0,N/A,N/A,N/A,HG01530,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,47.23,47227190614.0,2548955.0,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,16427.0,18530.0,21529.0,SRR30151944,N/A,N/A,N/A,N/A,N/A,SAMN37797099,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220920_180418.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01530_PB1_m64334e_220920_180418_m64334e_220920_180418,single,size fractionation,GENOMIC,WGS,50671.0,18655.0,183.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/primrose/m64334e_220920_180418.5mc.hifi_reads.bam,PACBIO_SMRT,P2,15989.0,17845.0,20490.0,N/A,N/A,N/A,HG01530,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,43.81,43813649115.0,2348559.0,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,16626.0,18864.0,22028.0,SRR30151943,N/A,N/A,N/A,N/A,N/A,SAMN37797099,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220922_131140.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01530_PB1_m64334e_220922_131140_m64334e_220922_131140,single,size fractionation,GENOMIC,WGS,50739.0,18965.0,155.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/primrose/m64334e_220922_131140.5mc.hifi_reads.bam,PACBIO_SMRT,P2,16152.0,18115.0,20910.0,N/A,N/A,N/A,HG01530,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,45.96,45963012660.0,2423499.0,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,17571.0,20578.0,25009.0,SRR30151942,N/A,N/A,N/A,N/A,N/A,SAMN37797087,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220902_172744.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19087_PB1_m54306Ue_220902_172744_m54306Ue_220902_172744,single,size fractionation,GENOMIC,WGS,51672.0,20569.0,194.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19087/raw_data/PacBio_HiFi/primrose/m54306Ue_220902_172744.5mc.hifi_reads.bam,PACBIO_SMRT,P2,16836.0,19341.0,23111.0,N/A,N/A,N/A,NA19087,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,46.22,46222507016.0,2247170.0,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,17946.0,21148.0,25684.0,SRR30151941,N/A,N/A,N/A,N/A,N/A,SAMN37797087,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220911_090142.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19087_PB1_m64055e_220911_090142_m64055e_220911_090142,single,size fractionation,GENOMIC,WGS,51572.0,21059.0,108.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19087/raw_data/PacBio_HiFi/primrose/m64055e_220911_090142.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17157.0,19831.0,23769.0,N/A,N/A,N/A,NA19087,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,38.87,38868364644.0,1845688.0,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,17863.0,21032.0,25559.0,SRR30151939,N/A,N/A,N/A,N/A,N/A,SAMN37797087,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220913_060032.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19087_PB1_m64055e_220913_060032_m64055e_220913_060032,single,size fractionation,GENOMIC,WGS,50665.0,20959.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19087/raw_data/PacBio_HiFi/primrose/m64055e_220913_060032.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17081.0,19722.0,23638.0,N/A,N/A,N/A,NA19087,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,43.58,43576607076.0,2079114.0,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,18221.0,22357.0,27569.0,SRR30151938,N/A,N/A,N/A,N/A,N/A,SAMN37797086,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220821_125227.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA18570_PB1_m64330e_220821_125227_m64330e_220821_125227,single,size fractionation,GENOMIC,WGS,51264.0,21640.0,172.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18570/raw_data/PacBio_HiFi/primrose/m64330e_220821_125227.5mc.hifi_reads.bam,PACBIO_SMRT,P2,16869.0,20469.0,25180.0,N/A,N/A,N/A,NA18570,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,46.05,46050591401.0,2127986.0,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,17826.0,21773.0,26898.0,SRR30152003,N/A,N/A,N/A,N/A,N/A,SAMN37797086,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220815_142753.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA18570_PB1_m64334e_220815_142753_m64334e_220815_142753,single,size fractionation,GENOMIC,WGS,50893.0,21204.0,112.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18570/raw_data/PacBio_HiFi/primrose/m64334e_220815_142753.5mc.hifi_reads.bam,PACBIO_SMRT,P2,16585.0,19988.0,24514.0,N/A,N/A,N/A,NA18570,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,42.43,42430166886.0,2001019.0,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,21259.0,26063.0,31632.0,SRR30152004,N/A,N/A,N/A,N/A,N/A,SAMN37797086,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220821_130100.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA18570_PB1_m64334e_220821_130100_m64334e_220821_130100,single,size fractionation,GENOMIC,WGS,51332.0,24787.0,102.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18570/raw_data/PacBio_HiFi/primrose/m64334e_220821_130100.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19456.0,23910.0,29238.0,N/A,N/A,N/A,NA18570,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,43.94,43938908016.0,1772623.0,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,20143.0,24968.0,30987.0,SRR30151937,N/A,N/A,N/A,N/A,N/A,SAMN37797104,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220821_023435.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02391_PB1_m54306Ue_220821_023435_m54306Ue_220821_023435,single,size fractionation,GENOMIC,WGS,51847.0,24015.0,88.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02391/raw_data/PacBio_HiFi/primrose/m54306Ue_220821_023435.5mc.hifi_reads.bam,PACBIO_SMRT,P2,18550.0,22683.0,28174.0,N/A,N/A,N/A,HG02391,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,45.86,45855625550.0,1909393.0,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,19902.0,24632.0,30676.0,SRR30151981,N/A,N/A,N/A,N/A,N/A,SAMN37797104,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220821_033925.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02391_PB1_m64055e_220821_033925_m64055e_220821_033925,single,size fractionation,GENOMIC,WGS,51343.0,23767.0,136.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02391/raw_data/PacBio_HiFi/primrose/m64055e_220821_033925.5mc.hifi_reads.bam,PACBIO_SMRT,P2,18349.0,22387.0,27807.0,N/A,N/A,N/A,HG02391,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,45.99,45992454620.0,1935113.0,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,22058.0,27323.0,33685.0,SRR30151982,N/A,N/A,N/A,N/A,N/A,SAMN37797104,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220805_094849.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02391_PB1_m64330e_220805_094849_m64330e_220805_094849,single,size fractionation,GENOMIC,WGS,51754.0,26048.0,133.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02391/raw_data/PacBio_HiFi/primrose/m64330e_220805_094849.5mc.hifi_reads.bam,PACBIO_SMRT,P2,20160.0,24855.0,30793.0,N/A,N/A,N/A,HG02391,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,41.88,41882544788.0,1607865.0,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,17926.0,21181.0,25680.0,SRR30151983,N/A,N/A,N/A,N/A,N/A,SAMN37797090,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220902_174345.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19185_PB1_m64055e_220902_174345_m64055e_220902_174345,single,size fractionation,GENOMIC,WGS,50610.0,20991.0,183.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19185/raw_data/PacBio_HiFi/primrose/m64055e_220902_174345.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17086.0,19845.0,23785.0,N/A,N/A,N/A,NA19185,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,46.99,46990376639.0,2238569.0,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,18316.0,21760.0,26387.0,SRR30151984,N/A,N/A,N/A,N/A,N/A,SAMN37797090,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220907_174608.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19185_PB1_m64055e_220907_174608_m64055e_220907_174608,single,size fractionation,GENOMIC,WGS,50723.0,21473.0,109.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19185/raw_data/PacBio_HiFi/primrose/m64055e_220907_174608.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17400.0,20338.0,24443.0,N/A,N/A,N/A,NA19185,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,45.76,45757724576.0,2130932.0,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,18242.0,21711.0,26372.0,SRR30151985,N/A,N/A,N/A,N/A,N/A,SAMN37797090,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220909_131447.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA19185_PB1_m64055e_220909_131447_m64055e_220909_131447,single,size fractionation,GENOMIC,WGS,50759.0,21415.0,126.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19185/raw_data/PacBio_HiFi/primrose/m64055e_220909_131447.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17323.0,20261.0,24406.0,N/A,N/A,N/A,NA19185,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,50.32,50319900835.0,2349733.0,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,18095.0,21772.0,26657.0,SRR30151987,N/A,N/A,N/A,N/A,N/A,SAMN37797109,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220815_142254.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03458_PB1_m64055e_220815_142254_m64055e_220815_142254,single,size fractionation,GENOMIC,WGS,50474.0,21425.0,137.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03458/raw_data/PacBio_HiFi/primrose/m64055e_220815_142254.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17077.0,20196.0,24502.0,N/A,N/A,N/A,HG03458,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,46.17,46167929306.0,2154798.0,N/A,HG03458,SAMN37797109,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,18525.0,22413.0,27409.0,SRR30151988,N/A,N/A,N/A,N/A,N/A,SAMN37797109,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220823_081200.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03458_PB1_m64330e_220823_081200_m64330e_220823_081200,single,size fractionation,GENOMIC,WGS,50617.0,21919.0,120.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03458/raw_data/PacBio_HiFi/primrose/m64330e_220823_081200.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17398.0,20738.0,25237.0,N/A,N/A,N/A,HG03458,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,44.45,44445899486.0,2027705.0,N/A,HG03458,SAMN37797109,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,20975.0,25664.0,31158.0,SRR30151989,N/A,N/A,N/A,N/A,N/A,SAMN37797109,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220823_095812.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03458_PB1_m64334e_220823_095812_m64334e_220823_095812,single,size fractionation,GENOMIC,WGS,50787.0,24571.0,135.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03458/raw_data/PacBio_HiFi/primrose/m64334e_220823_095812.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19355.0,23610.0,28841.0,N/A,N/A,N/A,HG03458,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,31.61,31613679548.0,1286621.0,N/A,HG03458,SAMN37797109,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,18810.0,21897.0,26236.0,SRR30151990,N/A,N/A,N/A,N/A,N/A,SAMN37797098,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220228_165421.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01252_PB1_m54306Ue_220228_165421_m54306Ue_220228_165421,single,size fractionation,GENOMIC,WGS,59699.0,21896.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/primrose/m54306Ue_220228_165421.5mc.hifi_reads.bam,PACBIO_SMRT,P2,18118.0,20727.0,24554.0,N/A,N/A,N/A,HG01252,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,22.28,22283872315.0,1017689.0,N/A,HG01252,SAMN37797098,CLM14,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,16124.0,19792.0,24328.0,SRR30151991,N/A,N/A,N/A,N/A,N/A,SAMN37797098,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220419_182803.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01252_PB1_m54306Ue_220419_182803_m54306Ue_220419_182803,single,size fractionation,GENOMIC,WGS,62179.0,19034.0,174.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/primrose/m54306Ue_220419_182803.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14832.0,18086.0,22223.0,N/A,N/A,N/A,HG01252,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,25.06,25064791757.0,1316796.0,N/A,HG01252,SAMN37797098,CLM14,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15342.0,19265.0,24261.0,SRR30151992,N/A,N/A,N/A,N/A,N/A,SAMN37797098,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220306_155049.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01252_PB1_m64330e_220306_155049_m64330e_220306_155049,single,size fractionation,GENOMIC,WGS,64212.0,18361.0,145.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/primrose/m64330e_220306_155049.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13922.0,17239.0,21719.0,N/A,N/A,N/A,HG01252,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,23.23,23231673726.0,1265271.0,N/A,HG01252,SAMN37797098,CLM14,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,16164.0,19802.0,24344.0,SRR30151993,N/A,N/A,N/A,N/A,N/A,SAMN37797098,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220414_054422.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01252_PB1_m64330e_220414_054422_m64330e_220414_054422,single,size fractionation,GENOMIC,WGS,58714.0,19073.0,191.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/primrose/m64330e_220414_054422.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14898.0,18124.0,22227.0,N/A,N/A,N/A,HG01252,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,23.1,23100441860.0,1211135.0,N/A,HG01252,SAMN37797098,CLM14,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,16137.0,19822.0,24377.0,SRR30151994,N/A,N/A,N/A,N/A,N/A,SAMN37797098,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220419_183840.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01252_PB1_m64334e_220419_183840_m64334e_220419_183840,single,size fractionation,GENOMIC,WGS,58849.0,19056.0,65.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/primrose/m64334e_220419_183840.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14842.0,18100.0,22252.0,N/A,N/A,N/A,HG01252,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,22.37,22373384029.0,1174065.0,N/A,HG01252,SAMN37797098,CLM14,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,20005.0,23515.0,28513.0,SRR30151995,N/A,N/A,N/A,N/A,N/A,SAMN37797103,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220227_055825.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01969_PB1_m54306Ue_220227_055825_m54306Ue_220227_055825,single,size fractionation,GENOMIC,WGS,66510.0,23473.0,65.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m54306Ue_220227_055825.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19182.0,22126.0,26462.0,N/A,N/A,N/A,HG01969,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,18.94,18938830210.0,806826.0,N/A,HG01969,SAMN37797103,PEL023,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,19961.0,23516.0,28660.0,SRR30151996,N/A,N/A,N/A,N/A,N/A,SAMN37797103,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220422_144937.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01969_PB1_m54306Ue_220422_144937_m54306Ue_220422_144937,single,size fractionation,GENOMIC,WGS,67665.0,23494.0,81.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m54306Ue_220422_144937.5mc.hifi_reads.bam,PACBIO_SMRT,P2,19132.0,22078.0,26505.0,N/A,N/A,N/A,HG01969,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,34.02,34020179111.0,1448031.0,N/A,HG01969,SAMN37797103,PEL023,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14458.0,18834.0,24059.0,SRR30151998,N/A,N/A,N/A,N/A,N/A,SAMN37797103,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220506_051029.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01969_PB1_m64055e_220506_051029_m64055e_220506_051029,single,size fractionation,GENOMIC,WGS,59034.0,17632.0,50.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m64055e_220506_051029.5mc.hifi_reads.bam,PACBIO_SMRT,P2,12784.0,16415.0,21199.0,N/A,N/A,N/A,HG01969,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,22.29,22292378612.0,1264297.0,N/A,HG01969,SAMN37797103,PEL023,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15786.0,20122.0,25672.0,SRR30151999,N/A,N/A,N/A,N/A,N/A,SAMN37797103,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220305_053001.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01969_PB1_m64330e_220305_053001_m64330e_220305_053001,single,size fractionation,GENOMIC,WGS,61742.0,19007.0,67.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m64330e_220305_053001.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14113.0,17751.0,22635.0,N/A,N/A,N/A,HG01969,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,14.85,14847062963.0,781108.0,N/A,HG01969,SAMN37797103,PEL023,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,13123.0,14675.0,16767.0,SRR30152000,N/A,N/A,N/A,N/A,N/A,SAMN37797103,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220415_144515.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01969_PB1_m64334e_220415_144515_m64334e_220415_144515,single,size fractionation,GENOMIC,WGS,39606.0,14532.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m64334e_220415_144515.5mc.hifi_reads.bam,PACBIO_SMRT,P2,12750.0,14187.0,16103.0,N/A,N/A,N/A,HG01969,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,9.5,9504330901.0,654022.0,N/A,HG01969,SAMN37797103,PEL023,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14473.0,18855.0,24088.0,SRR30152001,N/A,N/A,N/A,N/A,N/A,SAMN37797103,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220517_182131.demultiplex.bc1002--bc1002.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01969_PB1_m64055e_220517_182131_m64055e_220517_182131,single,size fractionation,GENOMIC,WGS,54635.0,17628.0,58.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/primrose/m64055e_220517_182131.demultiplex.bc1002--bc1002.5mc.hifi_reads.bam,PACBIO_SMRT,P2,12768.0,16429.0,21229.0,N/A,N/A,N/A,HG01969,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,9.72,9719026793.0,551333.0,N/A,HG01969,SAMN37797103,PEL023,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15905.0,19420.0,23852.0,SRR30152002,N/A,N/A,N/A,N/A,N/A,SAMN37797097,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220312_183407.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01150_PB1_m64330e_220312_183407_m64330e_220312_183407,single,size fractionation,GENOMIC,WGS,64946.0,18733.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/primrose/m64330e_220312_183407.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14701.0,17803.0,21821.0,N/A,N/A,N/A,HG01150,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,33.48,33479741334.0,1787204.0,N/A,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15732.0,19188.0,23536.0,SRR30151917,N/A,N/A,N/A,N/A,N/A,SAMN37797097,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220314_040416.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01150_PB1_m64330e_220314_040416_m64330e_220314_040416,single,size fractionation,GENOMIC,WGS,60687.0,18518.0,70.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/primrose/m64330e_220314_040416.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14558.0,17608.0,21543.0,N/A,N/A,N/A,HG01150,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,30.98,30983320047.0,1673110.0,N/A,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15574.0,18928.0,23149.0,SRR30151916,N/A,N/A,N/A,N/A,N/A,SAMN37797097,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220306_054934.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01150_PB1_m64334e_220306_054934_m64334e_220306_054934,single,size fractionation,GENOMIC,WGS,64797.0,18306.0,79.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/primrose/m64334e_220306_054934.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14448.0,17415.0,21235.0,N/A,N/A,N/A,HG01150,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,32.27,32272473361.0,1762889.0,N/A,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15385.0,18565.0,22532.0,SRR30151915,N/A,N/A,N/A,N/A,N/A,SAMN37797097,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220402_052301.demultiplex.bc1015--bc1015.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01150_PB1_m54306Ue_220402_052301_m54306Ue_220402_052301,single,size fractionation,GENOMIC,WGS,56471.0,18047.0,82.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/primrose/m54306Ue_220402_052301.demultiplex.bc1015--bc1015.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14369.0,17200.0,20806.0,N/A,N/A,N/A,HG01150,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,7.58,7580552350.0,420036.0,N/A,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15476.0,18801.0,22940.0,SRR30151936,N/A,N/A,N/A,N/A,N/A,SAMN37797097,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220412_183749.demultiplex.bc1015--bc1015.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01150_PB1_m64334e_220412_183749_m64334e_220412_183749,single,size fractionation,GENOMIC,WGS,56437.0,18210.0,785.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/primrose/m64334e_220412_183749.demultiplex.bc1015--bc1015.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14398.0,17328.0,21106.0,N/A,N/A,N/A,HG01150,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,9.69,9693198556.0,532298.0,N/A,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,19556.0,23027.0,27873.0,SRR30151935,N/A,N/A,N/A,N/A,N/A,SAMN37797105,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220225_190349.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02514_PB1_m54306Ue_220225_190349_m54306Ue_220225_190349,single,size fractionation,GENOMIC,WGS,64880.0,22999.0,192.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/primrose/m54306Ue_220225_190349.5mc.hifi_reads.bam,PACBIO_SMRT,P2,18761.0,21654.0,25900.0,N/A,N/A,N/A,HG02514,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,15.67,15671912691.0,681405.0,N/A,HG02514,SAMN37797105,VN087,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,13866.0,16492.0,19847.0,SRR30151933,N/A,N/A,N/A,N/A,N/A,SAMN37797105,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220421_052313.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02514_PB1_m54306Ue_220421_052313_m54306Ue_220421_052313,single,size fractionation,GENOMIC,WGS,58533.0,16135.0,79.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/primrose/m54306Ue_220421_052313.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13090.0,15426.0,18468.0,N/A,N/A,N/A,HG02514,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,31.69,31688645215.0,1963936.0,N/A,HG02514,SAMN37797105,VN087,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,16222.0,20266.0,25410.0,SRR30151932,N/A,N/A,N/A,N/A,N/A,SAMN37797105,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220303_183543.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02514_PB1_m64330e_220303_183543_m64330e_220303_183543,single,size fractionation,GENOMIC,WGS,58548.0,19417.0,293.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/primrose/m64330e_220303_183543.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14789.0,18234.0,22842.0,N/A,N/A,N/A,HG02514,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,14.01,14011797437.0,721617.0,N/A,HG02514,SAMN37797105,VN087,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14002.0,16628.0,19975.0,SRR30151931,N/A,N/A,N/A,N/A,N/A,SAMN37797105,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220417_033652.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02514_PB1_m64330e_220417_033652_m64330e_220417_033652,single,size fractionation,GENOMIC,WGS,57274.0,16268.0,79.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/primrose/m64330e_220417_033652.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13228.0,15572.0,18615.0,N/A,N/A,N/A,HG02514,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,30.94,30936543655.0,1901650.0,N/A,HG02514,SAMN37797105,VN087,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14597.0,17508.0,21137.0,SRR30151930,N/A,N/A,N/A,N/A,N/A,SAMN37797105,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220426_185110.demultiplex.bc1001--bc1001.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02514_PB1_m64334e_220426_185110_m64334e_220426_185110,single,size fractionation,GENOMIC,WGS,58871.0,17012.0,54.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/primrose/m64334e_220426_185110.demultiplex.bc1001--bc1001.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13692.0,16299.0,19638.0,N/A,N/A,N/A,HG02514,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,15.82,15823874531.0,930158.0,N/A,HG02514,SAMN37797105,VN087,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14806.0,18269.0,22720.0,SRR30151929,N/A,N/A,N/A,N/A,N/A,SAMN37797096,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220304_184221.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00658_PB1_m64055e_220304_184221_m64055e_220304_184221,single,size fractionation,GENOMIC,WGS,59283.0,17506.0,176.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64055e_220304_184221.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13570.0,16565.0,20560.0,N/A,N/A,N/A,HG00658,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,18.92,18919774271.0,1080733.0,N/A,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,13569.0,15866.0,18763.0,SRR30151928,N/A,N/A,N/A,N/A,N/A,SAMN37797096,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220403_045718.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00658_PB1_m64055e_220403_045718_m64055e_220403_045718,single,size fractionation,GENOMIC,WGS,51430.0,15292.0,159.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64055e_220403_045718.5mc.hifi_reads.bam,PACBIO_SMRT,P2,12772.0,14937.0,17615.0,N/A,N/A,N/A,HG00658,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,15.08,15083805889.0,986362.0,N/A,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14163.0,17908.0,22590.0,SRR30151927,N/A,N/A,N/A,N/A,N/A,SAMN37797096,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220504_181614.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00658_PB1_m64055e_220504_181614_m64055e_220504_181614,single,size fractionation,GENOMIC,WGS,57037.0,17086.0,87.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64055e_220504_181614.5mc.hifi_reads.bam,PACBIO_SMRT,P2,12858.0,15976.0,20204.0,N/A,N/A,N/A,HG00658,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,18.06,18061539277.0,1057088.0,N/A,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,19278.0,21837.0,25662.0,SRR30151926,N/A,N/A,N/A,N/A,N/A,SAMN37797096,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220225_192221.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00658_PB1_m64330e_220225_192221_m64330e_220225_192221,single,size fractionation,GENOMIC,WGS,57048.0,22096.0,193.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64330e_220225_192221.5mc.hifi_reads.bam,PACBIO_SMRT,P2,18818.0,20985.0,24337.0,N/A,N/A,N/A,HG00658,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,16.11,16114668851.0,729270.0,N/A,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15053.0,18478.0,22690.0,SRR30151925,N/A,N/A,N/A,N/A,N/A,SAMN37797096,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220512_181140.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00658_PB1_m64330e_220512_181140_m64330e_220512_181140,single,size fractionation,GENOMIC,WGS,60879.0,17679.0,144.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64330e_220512_181140.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13762.0,16859.0,20701.0,N/A,N/A,N/A,HG00658,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,23.51,23514775757.0,1330043.0,N/A,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,16006.0,19569.0,23831.0,SRR30151924,N/A,N/A,N/A,N/A,N/A,SAMN37797096,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220429_152228.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG00658_PB1_m64334e_220429_152228_m64334e_220429_152228,single,size fractionation,GENOMIC,WGS,55657.0,18616.0,189.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/primrose/m64334e_220429_152228.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14474.0,17995.0,21851.0,N/A,N/A,N/A,HG00658,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,19.62,19615164107.0,1053649.0,N/A,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15279.0,19180.0,23888.0,SRR30151922,N/A,N/A,N/A,N/A,N/A,SAMN37797101,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220415_164034.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01940_PB1_m64330e_220415_164034_m64330e_220415_164034,single,size fractionation,GENOMIC,WGS,65173.0,18142.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/primrose/m64330e_220415_164034.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13734.0,17201.0,21523.0,N/A,N/A,N/A,HG01940,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,29.85,29848671416.0,1645196.0,N/A,HG01940,SAMN37797101,PEL015,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14439.0,17758.0,22314.0,SRR30151921,N/A,N/A,N/A,N/A,N/A,SAMN37797101,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220304_185513.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01940_PB1_m64334e_220304_185513_m64334e_220304_185513,single,size fractionation,GENOMIC,WGS,65765.0,17273.0,259.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/primrose/m64334e_220304_185513.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13327.0,16162.0,19984.0,N/A,N/A,N/A,HG01940,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,13.93,13930028444.0,806419.0,N/A,HG01940,SAMN37797101,PEL015,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15588.0,19553.0,24314.0,SRR30151920,N/A,N/A,N/A,N/A,N/A,SAMN37797101,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220422_151506.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01940_PB1_m64334e_220422_151506_m64334e_220422_151506,single,size fractionation,GENOMIC,WGS,65732.0,18473.0,96.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/primrose/m64334e_220422_151506.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13989.0,17542.0,21933.0,N/A,N/A,N/A,HG01940,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,30.25,30248862465.0,1637435.0,N/A,HG01940,SAMN37797101,PEL015,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15517.0,19434.0,24124.0,SRR30151919,N/A,N/A,N/A,N/A,N/A,SAMN37797101,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220424_021126.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01940_PB1_m64334e_220424_021126_m64334e_220424_021126,single,size fractionation,GENOMIC,WGS,68924.0,18380.0,103.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/primrose/m64334e_220424_021126.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13961.0,17465.0,21800.0,N/A,N/A,N/A,HG01940,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,28.71,28711690224.0,1562113.0,N/A,HG01940,SAMN37797101,PEL015,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,16610.0,20898.0,25978.0,SRR30151918,N/A,N/A,N/A,N/A,N/A,SAMN37797101,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220426_185110.demultiplex.bc1010--bc1010.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01940_PB1_m64334e_220426_185110_m64334e_220426_185110,single,size fractionation,GENOMIC,WGS,64624.0,19757.0,63.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/primrose/m64334e_220426_185110.demultiplex.bc1010--bc1010.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14933.0,18729.0,23463.0,N/A,N/A,N/A,HG01940,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,8.17,8165347513.0,413272.0,N/A,HG01940,SAMN37797101,PEL015,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,17390.0,19466.0,22350.0,SRR30151963,N/A,N/A,N/A,N/A,N/A,SAMN37797108,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220223_194839.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03050_PB1_m64330e_220223_194839_m64330e_220223_194839,single,size fractionation,GENOMIC,WGS,58639.0,19515.0,77.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/primrose/m64330e_220223_194839.5mc.hifi_reads.bam,PACBIO_SMRT,P2,16973.0,18843.0,21459.0,N/A,N/A,N/A,HG03050,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,35.58,35577169414.0,1823052.0,N/A,HG03050,SAMN37797108,GB113,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,16859.0,19058.0,21925.0,SRR30151962,N/A,N/A,N/A,N/A,N/A,SAMN37797108,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220227_061615.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03050_PB1_m64330e_220227_061615_m64330e_220227_061615,single,size fractionation,GENOMIC,WGS,65131.0,19008.0,79.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/primrose/m64330e_220227_061615.5mc.hifi_reads.bam,PACBIO_SMRT,P2,16379.0,18387.0,21021.0,N/A,N/A,N/A,HG03050,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,31.23,31228629314.0,1642835.0,N/A,HG03050,SAMN37797108,GB113,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,16673.0,18756.0,21449.0,SRR30151961,N/A,N/A,N/A,N/A,N/A,SAMN37797108,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220402_052301.demultiplex.bc1012--bc1012.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03050_PB1_m54306Ue_220402_052301_m54306Ue_220402_052301,single,size fractionation,GENOMIC,WGS,55017.0,18725.0,79.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/primrose/m54306Ue_220402_052301.demultiplex.bc1012--bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2,16230.0,18143.0,20624.0,N/A,N/A,N/A,HG03050,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,9.39,9392895139.0,501610.0,N/A,HG03050,SAMN37797108,GB113,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,17264.0,19269.0,22047.0,SRR30151914,N/A,N/A,N/A,N/A,N/A,SAMN37797108,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220218_192631.bc1012--bc1012.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03050_PB1_m64330e_220218_192631_m64330e_220218_192631,single,size fractionation,GENOMIC,WGS,58329.0,19318.0,106.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/primrose/m64330e_220218_192631.bc1012--bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2,16864.0,18682.0,21201.0,N/A,N/A,N/A,HG03050,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.71,26710285393.0,1382611.0,N/A,HG03050,SAMN37797108,GB113,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,16778.0,18950.0,21783.0,SRR30151913,N/A,N/A,N/A,N/A,N/A,SAMN37797108,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220407_180519.demultiplex.bc1012--bc1012.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG03050_PB1_m64330e_220407_180519_m64330e_220407_180519,single,size fractionation,GENOMIC,WGS,62057.0,18910.0,123.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/primrose/m64330e_220407_180519.demultiplex.bc1012--bc1012.5mc.hifi_reads.bam,PACBIO_SMRT,P2,16305.0,18292.0,20892.0,N/A,N/A,N/A,HG03050,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,10.89,10893343672.0,576036.0,N/A,HG03050,SAMN37797108,GB113,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,18256.0,21241.0,25288.0,SRR30151979,N/A,N/A,N/A,N/A,N/A,SAMN37797107,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220223_194148.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02984_PB1_m54306Ue_220223_194148_m54306Ue_220223_194148,single,size fractionation,GENOMIC,WGS,65089.0,21219.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m54306Ue_220223_194148.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17591.0,20150.0,23760.0,N/A,N/A,N/A,HG02984,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,21.56,21557851977.0,1015947.0,N/A,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,13946.0,16107.0,18985.0,SRR30151978,N/A,N/A,N/A,N/A,N/A,SAMN37797107,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220403_050826.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02984_PB1_m64330e_220403_050826_m64330e_220403_050826,single,size fractionation,GENOMIC,WGS,48901.0,15979.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m64330e_220403_050826.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13408.0,15344.0,17937.0,N/A,N/A,N/A,HG02984,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,25.92,25922780932.0,1622283.0,N/A,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14336.0,17345.0,21044.0,SRR30151977,N/A,N/A,N/A,N/A,N/A,SAMN37797107,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220421_053305.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02984_PB1_m64334e_220421_053305_m64334e_220421_053305,single,size fractionation,GENOMIC,WGS,58810.0,16660.0,104.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m64334e_220421_053305.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13216.0,15998.0,19386.0,N/A,N/A,N/A,HG02984,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,22.72,22717109029.0,1363555.0,N/A,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14397.0,16928.0,20223.0,SRR30151976,N/A,N/A,N/A,N/A,N/A,SAMN37797107,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220428_054535.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02984_PB1_m64334e_220428_054535_m64334e_220428_054535,single,size fractionation,GENOMIC,WGS,57608.0,16626.0,89.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m64334e_220428_054535.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13681.0,15936.0,18923.0,N/A,N/A,N/A,HG02984,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,19.89,19889245475.0,1196204.0,N/A,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14292.0,17263.0,20935.0,SRR30151975,N/A,N/A,N/A,N/A,N/A,SAMN37797107,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64055e_220517_182131.demultiplex.bc1009--bc1009.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02984_PB1_m64055e_220517_182131_m64055e_220517_182131,single,size fractionation,GENOMIC,WGS,50187.0,16715.0,122.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m64055e_220517_182131.demultiplex.bc1009--bc1009.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13317.0,15970.0,19343.0,N/A,N/A,N/A,HG02984,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,2.0,2004239111.0,119906.0,N/A,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,18050.0,20898.0,24783.0,SRR30151974,N/A,N/A,N/A,N/A,N/A,SAMN37797107,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220218_191452.bc1011--bc1011.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02984_PB1_m64334e_220218_191452_m64334e_220218_191452,single,size fractionation,GENOMIC,WGS,55371.0,20914.0,61.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/primrose/m64334e_220218_191452.bc1011--bc1011.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17437.0,19878.0,23340.0,N/A,N/A,N/A,HG02984,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,17.42,17423268103.0,833071.0,N/A,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14059.0,16375.0,19439.0,SRR30151973,N/A,N/A,N/A,N/A,N/A,SAMN37797106,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220326_050928.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02841_PB1_m54306Ue_220326_050928_m54306Ue_220326_050928,single,size fractionation,GENOMIC,WGS,52400.0,16223.0,189.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/primrose/m54306Ue_220326_050928.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13479.0,15524.0,18296.0,N/A,N/A,N/A,HG02841,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,31.24,31236330105.0,1925403.0,N/A,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14095.0,16523.0,19677.0,SRR30151972,N/A,N/A,N/A,N/A,N/A,SAMN37797106,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220327_160600.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02841_PB1_m54306Ue_220327_160600_m54306Ue_220327_160600,single,size fractionation,GENOMIC,WGS,52304.0,16282.0,148.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/primrose/m54306Ue_220327_160600.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13449.0,15606.0,18475.0,N/A,N/A,N/A,HG02841,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,31.88,31882411301.0,1958075.0,N/A,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14048.0,16357.0,19398.0,SRR30151971,N/A,N/A,N/A,N/A,N/A,SAMN37797106,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220321_180258.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02841_PB1_m64334e_220321_180258_m64334e_220321_180258,single,size fractionation,GENOMIC,WGS,53376.0,16200.0,111.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/primrose/m64334e_220321_180258.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13472.0,15513.0,18265.0,N/A,N/A,N/A,HG02841,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,31.55,31549601858.0,1947398.0,N/A,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14039.0,16463.0,19604.0,SRR30151970,N/A,N/A,N/A,N/A,N/A,SAMN37797106,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220407_180519.demultiplex.bc1021--bc1021.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02841_PB1_m64330e_220407_180519_m64330e_220407_180519,single,size fractionation,GENOMIC,WGS,47984.0,16219.0,65.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/primrose/m64330e_220407_180519.demultiplex.bc1021--bc1021.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13397.0,15543.0,18406.0,N/A,N/A,N/A,HG02841,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,9.02,9018445903.0,556026.0,N/A,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,13963.0,16317.0,19383.0,SRR30151968,N/A,N/A,N/A,N/A,N/A,SAMN37797106,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64334e_220412_183749.demultiplex.bc1021--bc1021.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG02841_PB1_m64334e_220412_183749_m64334e_220412_183749,single,size fractionation,GENOMIC,WGS,52702.0,16107.0,272.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/primrose/m64334e_220412_183749.demultiplex.bc1021--bc1021.5mc.hifi_reads.bam,PACBIO_SMRT,P2,13350.0,15440.0,18231.0,N/A,N/A,N/A,HG02841,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,11.07,11067164812.0,687065.0,N/A,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15305.0,18636.0,22857.0,SRR30151967,N/A,N/A,N/A,N/A,N/A,SAMN37797102,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220409_033640.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01960_PB1_m54306Ue_220409_033640_m54306Ue_220409_033640,single,size fractionation,GENOMIC,WGS,62890.0,18090.0,145.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01960/raw_data/PacBio_HiFi/primrose/m54306Ue_220409_033640.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14273.0,17156.0,20995.0,N/A,N/A,N/A,HG01960,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,31.24,31237108828.0,1726705.0,N/A,HG01960,SAMN37797102,BB11,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15378.0,18739.0,22984.0,SRR30151966,N/A,N/A,N/A,N/A,N/A,SAMN37797102,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m54306Ue_220410_130603.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01960_PB1_m54306Ue_220410_130603_m54306Ue_220410_130603,single,size fractionation,GENOMIC,WGS,63512.0,18177.0,145.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01960/raw_data/PacBio_HiFi/primrose/m54306Ue_220410_130603.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14334.0,17245.0,21110.0,N/A,N/A,N/A,HG01960,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.11,26111870066.0,1436508.0,N/A,HG01960,SAMN37797102,BB11,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15134.0,18373.0,22509.0,SRR30151965,N/A,N/A,N/A,N/A,N/A,SAMN37797102,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220401_181429.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01960_PB1_m64330e_220401_181429_m64330e_220401_181429,single,size fractionation,GENOMIC,WGS,58485.0,17874.0,192.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01960/raw_data/PacBio_HiFi/primrose/m64330e_220401_181429.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14152.0,16939.0,20683.0,N/A,N/A,N/A,HG01960,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,26.06,26059199917.0,1457859.0,N/A,HG01960,SAMN37797102,BB11,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15184.0,18465.0,22625.0,SRR30151964,N/A,N/A,N/A,N/A,N/A,SAMN37797102,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220412_185021.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,HG01960_PB1_m64330e_220412_185021_m64330e_220412_185021,single,size fractionation,GENOMIC,WGS,58095.0,17945.0,79.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01960/raw_data/PacBio_HiFi/primrose/m64330e_220412_185021.5mc.hifi_reads.bam,PACBIO_SMRT,P2,14185.0,17011.0,20793.0,N/A,N/A,N/A,HG01960,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,30.02,30024295514.0,1673071.0,N/A,HG01960,SAMN37797102,BB11,ACB,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,18639.0,22531.0,27786.0,SRR30151946,N/A,N/A,N/A,N/A,N/A,SAMN37797094,6.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m64330e_220915_165522.5mc.hifi_reads.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Sequel II,NA20799_PB1_ m64330e_220915_165522_ m64330e_220915_165522,single,size fractionation,GENOMIC,WGS,53388.0,22162.0,200.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/primrose/m64330e_220915_165522.5mc.hifi_reads.bam,PACBIO_SMRT,P2,17565.0,20807.0,25422.0,N/A,N/A,N/A,NA20799,N/A,C2,Megaruptor 3,Pippin HT,SRP305758,N/A,35.84,35836345492.0,1617007.0,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,18804.0,23742.0,29607.0,SRR30336761,N/A,N/A,N/A,N/A,N/A,SAMN37797091,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230705_174256_s2.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19338_PB2_m84091_230705_174256_s2.hifi_reads.bc1002.bam,single,size fractionation,GENOMIC,WGS,70947.0,22498.0,53.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/m84091_230705_174256_s2.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,16955.0,21281.0,26737.0,N/A,N/A,N/A,NA19338,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,20.15,20149672331.0,895592.0,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,19215.0,24378.0,30496.0,SRR30336760,N/A,N/A,N/A,N/A,N/A,SAMN37797091,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230705_184508_s4.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19338_PB2_m84091_230705_184508_s4.hifi_reads.bc1002.bam,single,size fractionation,GENOMIC,WGS,70626.0,23018.0,183.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/m84091_230705_184508_s4.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,17229.0,21762.0,27432.0,N/A,N/A,N/A,NA19338,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,19.7,19698176409.0,855746.0,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,17667.0,20798.0,24872.0,SRR30336749,N/A,N/A,N/A,N/A,N/A,SAMN37797091,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231120_175800_s4.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19338_PB2_m84091_231120_175800_s4.hifi_reads.bc1002.bam,single,size fractionation,GENOMIC,WGS,59726.0,20554.0,118.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19338/raw_data/PacBio_HiFi/m84091_231120_175800_s4.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,16868.0,19599.0,23288.0,N/A,N/A,N/A,NA19338,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,24.02,24019833389.0,1168582.0,N/A,NA19338,SAMN37797091,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,17111.0,19968.0,23768.0,SRR30336738,N/A,N/A,N/A,N/A,N/A,SAMN37797093,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231208_194716_s4.hifi_reads.bc1008.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19468_PB2_m84091_231208_194716_s4.hifi_reads.bc1008.bam,single,size fractionation,GENOMIC,WGS,61387.0,19848.0,145.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/m84091_231208_194716_s4.hifi_reads.bc1008.bam,PACBIO_SMRT,Revio P1,16434.0,18914.0,22327.0,N/A,N/A,N/A,NA19468,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,41.12,41116262569.0,2071540.0,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,17152.0,20014.0,23806.0,SRR30336729,N/A,N/A,N/A,N/A,N/A,SAMN37797093,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231211_215746_s3.hifi_reads.bc1008.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19468_PB2_m84091_231211_215746_s3.hifi_reads.bc1008.bam,single,size fractionation,GENOMIC,WGS,54526.0,19887.0,259.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19468/raw_data/PacBio_HiFi/m84091_231211_215746_s3.hifi_reads.bc1008.bam,PACBIO_SMRT,Revio P1,16468.0,18966.0,22377.0,N/A,N/A,N/A,NA19468,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,20.11,20112027354.0,1011292.0,N/A,NA19468,SAMN37797093,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,16504.0,18935.0,22196.0,SRR30336728,N/A,N/A,N/A,N/A,N/A,SAMN37797092,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231120_175800_s4.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19391_PB3_m84091_231120_175800_s4.hifi_reads.bc1015.bam,single,size fractionation,GENOMIC,WGS,57886.0,18839.0,130.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19391/raw_data/PacBio_HiFi/m84091_231120_175800_s4.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,15963.0,18107.0,21074.0,N/A,N/A,N/A,NA19391,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,70.91,70911019454.0,3763902.0,N/A,NA19391,SAMN37797092,,LWK,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,20781.0,25534.0,31304.0,SRR30336727,N/A,N/A,N/A,N/A,N/A,SAMN37797110,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230705_174256_s2.hifi_reads.bc1009.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03470_PB1_m84091_230705_174256_s2.hifi_reads.bc1009.bam,single,size fractionation,GENOMIC,WGS,70709.0,24497.0,110.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03470/raw_data/PacBio_HiFi/m84091_230705_174256_s2.hifi_reads.bc1009.bam,PACBIO_SMRT,Revio P1,19169.0,23378.0,28738.0,N/A,N/A,N/A,HG03470,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,34.3,34295733741.0,1399961.0,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,21189.0,26154.0,32139.0,SRR30336726,N/A,N/A,N/A,N/A,N/A,SAMN37797110,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230705_184508_s4.hifi_reads.bc1009.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03470_PB1_m84091_230705_184508_s4.hifi_reads.bc1009.bam,single,size fractionation,GENOMIC,WGS,68532.0,25009.0,217.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03470/raw_data/PacBio_HiFi/m84091_230705_184508_s4.hifi_reads.bc1009.bam,PACBIO_SMRT,Revio P1,19455.0,23857.0,29458.0,N/A,N/A,N/A,HG03470,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,34.11,34109597312.0,1363854.0,N/A,HG03470,SAMN37797110,SL56,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15268.0,17021.0,19360.0,SRR30336725,N/A,N/A,N/A,N/A,N/A,SAMN37797100,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231120_182829_s1.hifi_reads.bc1019.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01784_PB2_m84091_231120_182829_s1.hifi_reads.bc1019.bam,single,size fractionation,GENOMIC,WGS,52530.0,17039.0,90.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01784/raw_data/PacBio_HiFi/m84091_231120_182829_s1.hifi_reads.bc1019.bam,PACBIO_SMRT,Revio P1,14937.0,16533.0,18694.0,N/A,N/A,N/A,HG01784,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,65.22,65222185255.0,3827674.0,N/A,HG01784,SAMN37797100,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,18976.0,22358.0,27020.0,SRR30336724,N/A,N/A,N/A,N/A,N/A,SAMN37797089,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230817_150246_s3.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19159_PB1_m84091_230817_150246_s3.hifi_reads.bc1015.bam,single,size fractionation,GENOMIC,WGS,63442.0,22237.0,176.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19159/raw_data/PacBio_HiFi/m84091_230817_150246_s3.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,18178.0,20997.0,25135.0,N/A,N/A,N/A,NA19159,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,23.69,23688286583.0,1065226.0,N/A,NA19159,SAMN37797089,Y056,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15097.0,17203.0,20097.0,SRR30336759,N/A,N/A,N/A,N/A,N/A,SAMN37797111,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231120_193041_s3.hifi_reads.bc1020.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03742_PB2_m84091_231120_193041_s3.hifi_reads.bc1020.bam,single,size fractionation,GENOMIC,WGS,54431.0,17199.0,107.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03742/raw_data/PacBio_HiFi/m84091_231120_193041_s3.hifi_reads.bc1020.bam,PACBIO_SMRT,Revio P1,14656.0,16506.0,19130.0,N/A,N/A,N/A,HG03742,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,40.82,40822247506.0,2373463.0,N/A,HG03742,SAMN37797111,,ITU,SAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,16917.0,19595.0,23188.0,SRR30336758,N/A,N/A,N/A,N/A,N/A,SAMN37797094,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231208_204928_s2.hifi_reads.bc1018.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA20799_PB2_m84091_231208_204928_s2.hifi_reads.bc1018.bam,single,size fractionation,GENOMIC,WGS,52733.0,19458.0,76.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/m84091_231208_204928_s2.hifi_reads.bc1018.bam,PACBIO_SMRT,Revio P1,16289.0,18624.0,21862.0,N/A,N/A,N/A,NA20799,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,37.47,37473687834.0,1925842.0,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,16965.0,19657.0,23271.0,SRR30336757,N/A,N/A,N/A,N/A,N/A,SAMN37797094,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231211_215746_s3.hifi_reads.bc1018.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA20799_PB2_m84091_231211_215746_s3.hifi_reads.bc1018.bam,single,size fractionation,GENOMIC,WGS,51953.0,19533.0,124.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA20799/raw_data/PacBio_HiFi/m84091_231211_215746_s3.hifi_reads.bc1018.bam,PACBIO_SMRT,Revio P1,16340.0,18689.0,21929.0,N/A,N/A,N/A,NA20799,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,28.34,28344896301.0,1451118.0,N/A,NA20799,SAMN37797094,,TSI,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15304.0,17421.0,20764.0,SRR30336756,N/A,N/A,N/A,N/A,N/A,SAMN37797099,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231208_194716_s4.hifi_reads.bc1021.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01530_PB3_m84091_231208_194716_s4.hifi_reads.bc1021.bam,single,size fractionation,GENOMIC,WGS,62111.0,17682.0,152.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/m84091_231208_194716_s4.hifi_reads.bc1021.bam,PACBIO_SMRT,Revio P1,14890.0,16636.0,19456.0,N/A,N/A,N/A,HG01530,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,14.7,14704255771.0,831560.0,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15225.0,17248.0,20482.0,SRR30336755,N/A,N/A,N/A,N/A,N/A,SAMN37797099,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231208_201822_s1.hifi_reads.bc1021.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01530_PB3_m84091_231208_201822_s1.hifi_reads.bc1021.bam,single,size fractionation,GENOMIC,WGS,62777.0,17520.0,322.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/m84091_231208_201822_s1.hifi_reads.bc1021.bam,PACBIO_SMRT,Revio P1,14829.0,16525.0,19228.0,N/A,N/A,N/A,HG01530,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,9.67,9669215846.0,551869.0,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15296.0,17395.0,20730.0,SRR30336754,N/A,N/A,N/A,N/A,N/A,SAMN37797099,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231208_204928_s2.hifi_reads.bc1021.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01530_PB3_m84091_231208_204928_s2.hifi_reads.bc1021.bam,single,size fractionation,GENOMIC,WGS,57614.0,17660.0,192.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01530/raw_data/PacBio_HiFi/m84091_231208_204928_s2.hifi_reads.bc1021.bam,PACBIO_SMRT,Revio P1,14885.0,16622.0,19423.0,N/A,N/A,N/A,HG01530,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,8.55,8552141762.0,484246.0,N/A,HG01530,SAMN37797099,,IBS,EUR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,17540.0,21029.0,25338.0,SRR30336753,N/A,N/A,N/A,N/A,N/A,SAMN37797087,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231120_185935_s2.hifi_reads.bc1016.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19087_PB2_m84091_231120_185935_s2.hifi_reads.bc1016.bam,single,size fractionation,GENOMIC,WGS,59674.0,20471.0,147.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19087/raw_data/PacBio_HiFi/m84091_231120_185935_s2.hifi_reads.bc1016.bam,PACBIO_SMRT,Revio P1,16450.0,19599.0,23547.0,N/A,N/A,N/A,NA19087,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,58.22,58221913081.0,2844047.0,N/A,NA19087,SAMN37797087,,JPT,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,16308.0,18454.0,21346.0,SRR30336752,N/A,N/A,N/A,N/A,N/A,SAMN37797086,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231120_193041_s3.hifi_reads.bc1012.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA18570_PB4_m84091_231120_193041_s3.hifi_reads.bc1012.bam,single,size fractionation,GENOMIC,WGS,57172.0,18460.0,173.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA18570/raw_data/PacBio_HiFi/m84091_231120_193041_s3.hifi_reads.bc1012.bam,PACBIO_SMRT,Revio P1,15874.0,17784.0,20430.0,N/A,N/A,N/A,NA18570,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,50.25,50245213157.0,2721746.0,N/A,NA18570,SAMN37797086,,CHB,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,16462.0,18705.0,21784.0,SRR30336751,N/A,N/A,N/A,N/A,N/A,SAMN37797104,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231120_185935_s2.hifi_reads.bc1010.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02391_PB2_m84091_231120_185935_s2.hifi_reads.bc1010.bam,single,size fractionation,GENOMIC,WGS,48026.0,18707.0,200.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02391/raw_data/PacBio_HiFi/m84091_231120_185935_s2.hifi_reads.bc1010.bam,PACBIO_SMRT,Revio P1,15980.0,17971.0,20742.0,N/A,N/A,N/A,HG02391,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,31.03,31025558943.0,1658490.0,N/A,HG02391,SAMN37797104,,CDX,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,17105.0,19663.0,23107.0,SRR30336750,N/A,N/A,N/A,N/A,N/A,SAMN37797090,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231120_182829_s1.hifi_reads.bc1017.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,NA19185_PB2_m84091_231120_182829_s1.hifi_reads.bc1017.bam,single,size fractionation,GENOMIC,WGS,64094.0,19616.0,162.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/NA19185/raw_data/PacBio_HiFi/m84091_231120_182829_s1.hifi_reads.bc1017.bam,PACBIO_SMRT,Revio P1,16543.0,18780.0,21892.0,N/A,N/A,N/A,NA19185,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,27.13,27128033641.0,1382900.0,N/A,NA19185,SAMN37797090,Y039,YRI,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,18702.0,22357.0,27038.0,SRR30336748,N/A,N/A,N/A,N/A,N/A,SAMN37797109,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231208_201822_s1.hifi_reads.bc1011.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03458_PB2_m84091_231208_201822_s1.hifi_reads.bc1011.bam,single,size fractionation,GENOMIC,WGS,63208.0,21941.0,133.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03458/raw_data/PacBio_HiFi/m84091_231208_201822_s1.hifi_reads.bc1011.bam,PACBIO_SMRT,Revio P1,17683.0,20872.0,25111.0,N/A,N/A,N/A,HG03458,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,82.19,82185612598.0,3745686.0,N/A,HG03458,SAMN37797109,,MSL,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,16982.0,19596.0,23247.0,SRR30336747,N/A,N/A,N/A,N/A,N/A,SAMN37797098,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230905_205913_s4.hifi_reads.bc1020.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01252_PB3_m84091_230905_205913_s4.hifi_reads.bc1020.bam,single,size fractionation,GENOMIC,WGS,61149.0,19611.0,159.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01252/raw_data/PacBio_HiFi/m84091_230905_205913_s4.hifi_reads.bc1020.bam,PACBIO_SMRT,Revio P1,16414.0,18668.0,21894.0,N/A,N/A,N/A,HG01252,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,51.78,51778207574.0,2640185.0,N/A,HG01252,SAMN37797098,CLM14,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,17764.0,21387.0,26025.0,SRR30336746,N/A,N/A,N/A,N/A,N/A,SAMN37797103,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240110_201841_s2.hifi_reads.bc1002.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01969_PB5_m84091_240110_201841_s2.hifi_reads.bc1002.bam,single,size fractionation,GENOMIC,WGS,65188.0,20909.0,62.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01969/raw_data/PacBio_HiFi/m84091_240110_201841_s2.hifi_reads.bc1002.bam,PACBIO_SMRT,Revio P1,16719.0,19839.0,24046.0,N/A,N/A,N/A,HG01969,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,60.01,60008819440.0,2869967.0,N/A,HG01969,SAMN37797103,PEL023,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,17631.0,20623.0,24644.0,SRR30336745,N/A,N/A,N/A,N/A,N/A,SAMN37797097,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230905_192642_s1.hifi_reads.bc1019.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01150_PB3_m84091_230905_192642_s1.hifi_reads.bc1019.bam,single,size fractionation,GENOMIC,WGS,59777.0,20466.0,147.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/m84091_230905_192642_s1.hifi_reads.bc1019.bam,PACBIO_SMRT,Revio P1,16875.0,19502.0,23080.0,N/A,N/A,N/A,HG01150,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,16.81,16813536710.0,821512.0,N/A,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,17434.0,20325.0,24157.0,SRR30336744,N/A,N/A,N/A,N/A,N/A,SAMN37797097,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230905_195701_s2.hifi_reads.bc1019.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01150_PB3_m84091_230905_195701_s2.hifi_reads.bc1019.bam,single,size fractionation,GENOMIC,WGS,56800.0,20190.0,204.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/m84091_230905_195701_s2.hifi_reads.bc1019.bam,PACBIO_SMRT,Revio P1,16730.0,19264.0,22692.0,N/A,N/A,N/A,HG01150,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,15.71,15710208724.0,778094.0,N/A,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,17602.0,20609.0,24647.0,SRR30336743,N/A,N/A,N/A,N/A,N/A,SAMN37797097,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230905_202807_s3.hifi_reads.bc1019.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01150_PB3_m84091_230905_202807_s3.hifi_reads.bc1019.bam,single,size fractionation,GENOMIC,WGS,56054.0,20455.0,175.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/m84091_230905_202807_s3.hifi_reads.bc1019.bam,PACBIO_SMRT,Revio P1,16854.0,19481.0,23065.0,N/A,N/A,N/A,HG01150,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,16.47,16465388808.0,804940.0,N/A,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,17254.0,19985.0,23648.0,SRR30336742,N/A,N/A,N/A,N/A,N/A,SAMN37797097,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231004_192043_s3.hifi_reads.bc1019.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01150_PB3_m84091_231004_192043_s3.hifi_reads.bc1019.bam,single,size fractionation,GENOMIC,WGS,52170.0,19914.0,100.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01150/raw_data/PacBio_HiFi/m84091_231004_192043_s3.hifi_reads.bc1019.bam,PACBIO_SMRT,Revio P1,16599.0,19019.0,22271.0,N/A,N/A,N/A,HG01150,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,8.17,8167494589.0,410126.0,N/A,HG01150,SAMN37797097,CLM12,CLM,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,18014.0,21232.0,25577.0,SRR30336741,N/A,N/A,N/A,N/A,N/A,SAMN37797105,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240110_194735_s1.hifi_reads.bc1001.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02514_PB4_m84091_240110_194735_s1.hifi_reads.bc1001.bam,single,size fractionation,GENOMIC,WGS,58573.0,21003.0,145.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02514/raw_data/PacBio_HiFi/m84091_240110_194735_s1.hifi_reads.bc1001.bam,PACBIO_SMRT,Revio P1,17201.0,19943.0,23820.0,N/A,N/A,N/A,HG02514,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,61.2,61203787317.0,2914041.0,N/A,HG02514,SAMN37797105,VN087,KHV,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15762.0,17647.0,20252.0,SRR30336740,N/A,N/A,N/A,N/A,N/A,SAMN37797096,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230905_192642_s1.hifi_reads.bc1018.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00658_PB3_m84091_230905_192642_s1.hifi_reads.bc1018.bam,single,size fractionation,GENOMIC,WGS,54608.0,17726.0,214.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/m84091_230905_192642_s1.hifi_reads.bc1018.bam,PACBIO_SMRT,Revio P1,15404.0,17090.0,19458.0,N/A,N/A,N/A,HG00658,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,28.95,28947533667.0,1633001.0,N/A,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15689.0,17526.0,20080.0,SRR30336739,N/A,N/A,N/A,N/A,N/A,SAMN37797096,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230905_195701_s2.hifi_reads.bc1018.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00658_PB3_m84091_230905_195701_s2.hifi_reads.bc1018.bam,single,size fractionation,GENOMIC,WGS,50180.0,17611.0,71.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/m84091_230905_195701_s2.hifi_reads.bc1018.bam,PACBIO_SMRT,Revio P1,15344.0,16987.0,19304.0,N/A,N/A,N/A,HG00658,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,28.07,28067920433.0,1593745.0,N/A,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,15740.0,17617.0,20227.0,SRR30336737,N/A,N/A,N/A,N/A,N/A,SAMN37797096,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230905_202807_s3.hifi_reads.bc1018.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG00658_PB3_m84091_230905_202807_s3.hifi_reads.bc1018.bam,single,size fractionation,GENOMIC,WGS,56570.0,17700.0,221.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG00658/raw_data/PacBio_HiFi/m84091_230905_202807_s3.hifi_reads.bc1018.bam,PACBIO_SMRT,Revio P1,15383.0,17057.0,19422.0,N/A,N/A,N/A,HG00658,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,28.36,28356016363.0,1601972.0,N/A,HG00658,SAMN37797096,SH074,CHS,EAS,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,16742.0,19020.0,22308.0,SRR30336736,N/A,N/A,N/A,N/A,N/A,SAMN37797101,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_240110_191713_s4.hifi_reads.bc1010.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01940_PB4_m84091_240110_191713_s4.hifi_reads.bc1010.bam,single,size fractionation,GENOMIC,WGS,55009.0,19030.0,205.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01940/raw_data/PacBio_HiFi/m84091_240110_191713_s4.hifi_reads.bc1010.bam,PACBIO_SMRT,Revio P1,16232.0,18226.0,21127.0,N/A,N/A,N/A,HG01940,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,57.21,57205109823.0,3005904.0,N/A,HG01940,SAMN37797101,PEL015,PEL,AMR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,16062.0,18284.0,21493.0,SRR30336735,N/A,N/A,N/A,N/A,N/A,SAMN37797108,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230905_205913_s4.hifi_reads.bc1017.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG03050_PB3_m84091_230905_205913_s4.hifi_reads.bc1017.bam,single,size fractionation,GENOMIC,WGS,53531.0,18401.0,242.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG03050/raw_data/PacBio_HiFi/m84091_230905_205913_s4.hifi_reads.bc1017.bam,PACBIO_SMRT,Revio P1,15612.0,17537.0,20350.0,N/A,N/A,N/A,HG03050,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,32.47,32472953202.0,1764709.0,N/A,HG03050,SAMN37797108,GB113,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,17003.0,19474.0,22983.0,SRR30336734,N/A,N/A,N/A,N/A,N/A,SAMN37797107,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_231004_192043_s3.hifi_reads.bc1016.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02984_PB3_m84091_231004_192043_s3.hifi_reads.bc1016.bam,single,size fractionation,GENOMIC,WGS,59887.0,19543.0,164.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02984/raw_data/PacBio_HiFi/m84091_231004_192043_s3.hifi_reads.bc1016.bam,PACBIO_SMRT,Revio P1,16490.0,18628.0,21721.0,N/A,N/A,N/A,HG02984,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,72.66,72663560503.0,3717971.0,N/A,HG02984,SAMN37797107,GB97,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14616.0,16267.0,18519.0,SRR30336733,N/A,N/A,N/A,N/A,N/A,SAMN37797106,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230905_192642_s1.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02841_PB3_m84091_230905_192642_s1.hifi_reads.bc1015.bam,single,size fractionation,GENOMIC,WGS,70436.0,16387.0,101.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/m84091_230905_192642_s1.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,14330.0,15798.0,17874.0,N/A,N/A,N/A,HG02841,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,26.41,26410820072.0,1611638.0,N/A,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14558.0,16167.0,18380.0,SRR30336732,N/A,N/A,N/A,N/A,N/A,SAMN37797106,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230905_195701_s2.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02841_PB3_m84091_230905_195701_s2.hifi_reads.bc1015.bam,single,size fractionation,GENOMIC,WGS,65476.0,16286.0,104.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/m84091_230905_195701_s2.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,14284.0,15715.0,17757.0,N/A,N/A,N/A,HG02841,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,25.98,25976366531.0,1595006.0,N/A,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,14588.0,16230.0,18476.0,SRR30336731,N/A,N/A,N/A,N/A,N/A,SAMN37797106,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230905_202807_s3.hifi_reads.bc1015.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG02841_PB3_m84091_230905_202807_s3.hifi_reads.bc1015.bam,single,size fractionation,GENOMIC,WGS,74486.0,16355.0,101.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG02841/raw_data/PacBio_HiFi/m84091_230905_202807_s3.hifi_reads.bc1015.bam,PACBIO_SMRT,Revio P1,14306.0,15762.0,17832.0,N/A,N/A,N/A,HG02841,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,25.93,25930880331.0,1585432.0,N/A,HG02841,SAMN37797106,GB74,GWD,AFR,YR3 -N/A,N/A,N/A,N/A,N/A,N/A,,N/A,True,16765.0,19261.0,22723.0,SRR30336730,N/A,N/A,N/A,N/A,N/A,SAMN37797102,7.0.0,N/A,unaligned reads,HiFi sequencing of 20kb fractionated gDNA,m84091_230817_150246_s3.hifi_reads.bc1012.bam,N/A,vgl-lab@rockefeller.edu,Rockefeller University,Revio,HG01960_PB3_m84091_230817_150246_s3.hifi_reads.bc1012.bam,single,size fractionation,GENOMIC,WGS,57666.0,19297.0,70.0,,N/A,N/A,s3://human-pangenomics/working/HPRC/HG01960/raw_data/PacBio_HiFi/m84091_230817_150246_s3.hifi_reads.bc1012.bam,PACBIO_SMRT,Revio P1,16237.0,18402.0,21481.0,N/A,N/A,N/A,HG01960,N/A,Revio C1,Megaruptor 3,Pippin HT,SRP305758,N/A,51.52,51521920991.0,2669847.0,N/A,HG01960,SAMN37797102,BB11,ACB,AFR,YR3 diff --git a/package.json b/package.json index e1bebad..5163a88 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,8 @@ "prepare": "husky install .husky", "test": "jest --runInBand", "test:e2e": "playwright test --trace retain-on-failure", - "build-hprc-db": "esrun files/build-catalog.ts" + "build-catalog": "esrun catalog-build/build-catalog.ts", + "build-catalog-source": "python3 catalog-build/build-sequencing-data.py && python3 catalog-build/build-assemblies.py && python3 catalog-build/build-annotations.py" }, "dependencies": { "@databiosphere/findable-ui": "15.0.0", diff --git a/site-config/hprc-data-explorer/local/index/alignmentEntityConfig.ts b/site-config/hprc-data-explorer/local/index/alignmentEntityConfig.ts index a0464da..819a425 100644 --- a/site-config/hprc-data-explorer/local/index/alignmentEntityConfig.ts +++ b/site-config/hprc-data-explorer/local/index/alignmentEntityConfig.ts @@ -116,5 +116,5 @@ export const alignmentEntityConfig: EntityConfig = { enableTab: false, }, route: "alignments", - staticLoadFile: "files/out/alignments.json", + staticLoadFile: "catalog/alignments.json", }; diff --git a/site-config/hprc-data-explorer/local/index/annotationEntityConfig.ts b/site-config/hprc-data-explorer/local/index/annotationEntityConfig.ts index 097d657..7a99a00 100644 --- a/site-config/hprc-data-explorer/local/index/annotationEntityConfig.ts +++ b/site-config/hprc-data-explorer/local/index/annotationEntityConfig.ts @@ -117,5 +117,5 @@ export const annotationEntityConfig: EntityConfig = enableTab: false, }, route: "annotations", - staticLoadFile: "files/out/annotations.json", + staticLoadFile: "catalog/annotations.json", }; diff --git a/site-config/hprc-data-explorer/local/index/assemblyEntityConfig.ts b/site-config/hprc-data-explorer/local/index/assemblyEntityConfig.ts index 1fa2917..6b99db3 100644 --- a/site-config/hprc-data-explorer/local/index/assemblyEntityConfig.ts +++ b/site-config/hprc-data-explorer/local/index/assemblyEntityConfig.ts @@ -272,5 +272,5 @@ export const assemblyEntityConfig: EntityConfig = { enableTab: false, }, route: "assemblies", - staticLoadFile: "files/out/assemblies.json", + staticLoadFile: "catalog/assemblies.json", }; diff --git a/site-config/hprc-data-explorer/local/index/rawSequencingDataEntityConfig.ts b/site-config/hprc-data-explorer/local/index/rawSequencingDataEntityConfig.ts index b1db0cc..7b3d9a8 100644 --- a/site-config/hprc-data-explorer/local/index/rawSequencingDataEntityConfig.ts +++ b/site-config/hprc-data-explorer/local/index/rawSequencingDataEntityConfig.ts @@ -947,5 +947,5 @@ export const rawSequencingDataEntityConfig: EntityConfig